修复一些已知问题 (#294)

This commit is contained in:
小胡 2025-03-27 09:05:55 +08:00 committed by GitHub
parent 087432fe60
commit 9e819c12e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
52 changed files with 920 additions and 4161 deletions

View File

@ -16,7 +16,7 @@ $op = isset($_GET['op']) ? $_GET['op'] : '';
//获取所有标签top50
//$tags = DB::fetch_all("SELECT * FROM %t WHERE hot>0 ORDER BY HOT DESC limit 50", array('app_tag'),'appid');
$keyword = trim($_GET['keyword']);
$keyword = isset($_GET['keyword']) ? trim($_GET['keyword']) : '';
$tagid = intval($_GET['tagid']);
$group = intval($_GET['group']);
$page = empty($_GET['page']) ? 1 : intval($_GET['page']);

View File

@ -18,7 +18,7 @@ $cloudurl = APP_CHECK_URL."index.php";
$url=APP_CHECK_URL."market/app/list";//$cloudurl."?mod=dzzmarket&op=index_ajax";
$type=empty($_GET['type'])?1:intval($_GET['type']);
$page = empty($_GET['page'])?1:intval($_GET['page']);
$keyword=trim($_GET['keyword']);
$keyword = isset($_GET['keyword']) ? trim($_GET['keyword']) : '';
$classid=intval($_GET['classid']);
$post_data = array("siteuniqueid"=>$_G["setting"]["siteuniqueid"],"page"=>$page,"type"=>1 );
$json = curlcloudappmarket($url,$post_data);

View File

@ -57,7 +57,7 @@ if ($depid && $org = C::t('organization') -> fetch($depid)) {
}
$position = intval($_GET['position']);
$keyword = trim($_GET['keyword']);
$keyword = isset($_GET['keyword']) ? trim($_GET['keyword']) : '';
$page = empty($_GET['page']) ? 1 : intval($_GET['page']);
$perpage = 20;

View File

@ -28,7 +28,7 @@ if (submitcheck('appsubmit')) {
//获取所有标签top50
$tags = DB::fetch_all("SELECT * FROM %t WHERE hot>0 ORDER BY HOT DESC limit 50", array('app_tag'),'tagid');
$keyword = trim($_GET['keyword']);
$keyword = isset($_GET['keyword']) ? trim($_GET['keyword']) : '';
$tagid = intval($_GET['tagid']);
$group = intval($_GET['group']);
$page = empty($_GET['page']) ? 1 : intval($_GET['page']);

View File

@ -36,7 +36,7 @@ class GifMerge {
var $global_out = array();
var $logical_screen_descriptor = array();
function GifMerge($images, $t1, $t2, $t3, $loop, $dl, $xpos, $ypos, $model) {
function __construct($images, $t1, $t2, $t3, $loop, $dl, $xpos, $ypos, $model) {
if($model) {
$this->mod = $model;
}

View File

@ -26,7 +26,7 @@ function attribute2arr($values,$data=array() ){
$return = attribute2arr($v["item"]);
if($return) $data[$v['@attributes']["id"]]=$return ;
}
if(count($v['@attributes'])>1){
if (is_array($v['@attributes']) && count($v['@attributes']) > 1) {
$data[$v['@attributes']["id"]]["_attributes"] = $v['@attributes'];
unset($data[$v['@attributes']["id"]]["_attributes"]["id"]);
}

View File

@ -83,7 +83,7 @@ class Hook
if(is_array($name)){
foreach($name as $val){
$results[$key] = self::exec($val, $tag, $params, $extra,$break);
$results[$key] = self::exec($val,$break, $tag, $params, $extra);
if (false === $results[$key] || $break == true) {
break;
@ -97,7 +97,7 @@ class Hook
}else{
$results[$key] = self::exec($name, $tag, $params, $extra,$break);
$results[$key] = self::exec($name,$break, $tag, $params, $extra);
if (false === $results[$key] || $break == true) {
@ -125,7 +125,8 @@ class Hook
* @param mixed $extra 额外参数
* @return mixed
*/
public static function exec($class, $tag = '', &$params = null,$extra = null,&$break)
public static function exec($class, &$break, $tag = '', &$params = null, $extra = null)
{
if(strpos($class,'|') !== false){//判断是否规定了作用域,并判断作用域确定是否执行钩子
$rangArr = explode('|',$class);

View File

@ -317,7 +317,9 @@ class dzz_io
$relativePath=self::clean(urldecode($relativePath));
if($io=self::initIO($path)) {
$return=$io->uploadStream($file,$name,$path,$relativePath,$content_range);
if (isset($return['icoarr']) && is_array($return['icoarr']) && count($return['icoarr']) > 0) {
Hook::listen('createafter_addindex', $return['icoarr'][0]);
}
return $return;
}
else return false;

View File

@ -5,31 +5,27 @@ use \core as C;
use \core\dzz\Hook as Hook;
use \DB as DB;
use \IO as IO;
class Route{
public static function dzzRoute(&$params,$extra=null,&$break)
{
global $_G,$_config;
$mod = !empty($params[MOULD]) ? $params[MOULD]:$_config['default_mod'];
$op = !empty($params[DIVIDE]) ? $params[DIVIDE]:$_config['default_op'];
define('MOD_PATH',CURSCRIPT.'/'.CURMODULE);
define('MOD_NAME',CURMODULE);
define('MOD_URL',BASESCRIPT.'?mod='.$mod);
define('OP_NAME',$op);
if(empty($mod)){
if($_G['uid']<1 && !defined('ALLOWGUEST') && $_G['setting']['loginset']['available']){
@header("Location: user.php?mod=login".($_GET['referer']?'&referer='.$_GET['referer']:''));
exit();
}
$return = require DZZ_ROOT.'./'.CURSCRIPT.'/'.$op.EXT;
}else{
if(strpos(strtolower($mod),':')!==false){
$patharr=explode(':',$mod);
foreach($patharr as $path){
@ -43,14 +39,11 @@ class Route{
//兼容老版
if(@!file_exists($modfile='./'.CURSCRIPT.'/'.CURSCRIPT.'_'.str_replace(':','/',$mod).EXT)){
showmessage($modfile.lang('file_nonexistence',array('modfile'=>htmlspecialchars($modfile))));
}
}
}else{
if(!preg_match("/^\w+$/i",$mod) && $mod !== '') showmessage('undefined_action');
if(!preg_match("/^\w+$/i",$op)) showmessage('undefined_action');
@ -63,15 +56,9 @@ class Route{
}
}
}
//模块常量
define('MOD_PATH',CURSCRIPT.'/'.CURMODULE);
define('MOD_NAME',CURMODULE);
define('MOD_DIR',dirname($modfile));
define('MOD_URL',BASESCRIPT.'?mod='.$mod);
define('OP_NAME',$op);
// $break = true;
Hook::listen('mod_run');
return DZZ_ROOT.$modfile;

View File

@ -69,6 +69,7 @@ class table_app_open extends dzz_table
}
public function fetch_all_ext(){
global $_G;
$data = array();
if(($data = $this->fetch_cache('all')) === false) {
$data = array();
@ -77,6 +78,7 @@ class table_app_open extends dzz_table
if($value['appid']){
if($app=C::t('app_market')->fetch_by_appid($value['appid'],false)){
if($app['available']<1) continue;
if(!$_G['uid'] && $app['group'] > 0) continue;
if(!$value['icon']) $value['icon']=$app['appico'];
if(!$value['name']) $value['name']=$app['appname'];
if(!$value['url']) $value['url']=$app['appurl'];
@ -95,20 +97,18 @@ class table_app_open extends dzz_table
}
public function fetch_all_orderby_ext($uid,$ext_all=array()){
$data = array();
$appids=array();
if($config = C::t('user_field')->fetch($uid)){
if($config['applist']){
$appids=explode(',',$config['applist']);
}else{
$appids=array();
}
}
if(!$ext_all) $ext_all=self::fetch_all_ext();
foreach ($ext_all as $value) {
if($value['appid'] && !in_array($value['appid'],$appids)){
continue;
}
if ($uid == 0 || (!$value['appid'] || in_array($value['appid'], $appids))) {
$data[$value['ext']][] = $value['extid'];
}
}
return $data;
}

View File

@ -119,11 +119,11 @@ class table_attachment extends dzz_table
if($filter['aid']){
$where.=" and aid='{$filter['aid']}'";
}
$filter['sizelt']=intval($filter['sizelt']*1024*1024);
$filter['sizelt'] = (isset($filter['sizelt']) ? intval($filter['sizelt']) : 0) * 1024 * 1024;
if($filter['sizelt']>0){
$where.=" and filesize>'{$filter[sizelt]}'";
}
$filter['sizegt']=intval($filter['sizegt']*1024*1024);
$filter['sizelt'] = (isset($filter['sizegt']) ? intval($filter['sizegt']) : 0) * 1024 * 1024;
if($filter['sizegt']>0){
$where .= " and filesize < '{$filter['sizegt']}'";
}

View File

@ -76,6 +76,7 @@ class table_resources_event extends dzz_table
$starttime = strtotime($time);
$endtime = $starttime + 3600 * 24;
$events = array();
include_once libfile('function/use');
foreach (DB::fetch_all("select * from %t where gid = %d and dateline > %d and dateline < %d order by dateline desc", array($this->_table, $gid, $starttime, $endtime)) as $v) {
$v['body_data'] = unserialize($v['body_data']);
$v['body_data']['msg'] = self::emoji_decode($v['body_data']['msg']);
@ -108,6 +109,7 @@ class table_resources_event extends dzz_table
return DB::result_first("select count(*) from %t where pfid = %d and rid = '' and `type`= %d", $params);
}
$events = array();
include_once libfile('function/use');
foreach (DB::fetch_all("select * from %t where pfid = %d and rid = '' and `type`= %d order by dateline desc $limitsql", $params) as $v) {
$v['body_data'] = unserialize($v['body_data']);
$v['body_data']['msg'] = self::emoji_decode($v['body_data']['msg']);
@ -138,6 +140,7 @@ class table_resources_event extends dzz_table
}
$uid = array();
$events = array();
include_once libfile('function/use');
foreach (DB::fetch_all("select * from %t where rid = %s and `type`= %d order by dateline desc $limitsql", $params) as $v) {
$v['body_data'] = unserialize($v['body_data']);
$v['body_data']['msg'] = self::emoji_decode($v['body_data']['msg']);
@ -182,6 +185,7 @@ class table_resources_event extends dzz_table
$limitsql = $limit ? DB::limit($start, $limit) : '';
$events = array();
$uids = array();
include_once libfile('function/use');
foreach (DB::fetch_all("select * from %t $wheresql order by dateline desc $limitsql", $params) as $v) {
$v['body_data'] = unserialize($v['body_data']);
$v['body_data']['msg'] = self::emoji_decode($v['body_data']['msg']);

View File

@ -330,8 +330,11 @@ function daddslashes($string, $force = 1)
return $string;
}
function authcode($string, $operation = 'DECODE', $key = '', $expiry = 0, $ckey_length = 4)
function authcode($string = '', $operation = 'DECODE', $key = '', $expiry = 0, $ckey_length = 4)
{
if (!$string) {
return '';
}
//$ckey_length = 4;
$key = md5($key != '' ? $key : getglobal('authkey'));
$keya = md5(substr($key, 0, 16));

View File

@ -55,7 +55,7 @@ _notice.flashTitle=function(flag){
_notice.flashStep++;
if (_notice.flashStep==3) {_notice.flashStep=1;}
if (_notice.flashStep==1) {document.title="【您有新的通知】";}
if (_notice.flashStep==2) {document.title="【$_G[setting][sitename]】";}
if (_notice.flashStep==2) {document.title="【$_G['setting']['sitename']】";}
setTimeout(function(){_notice.flashTitle();},500); //循环
}
</script>

View File

@ -29,13 +29,13 @@
<!--{else}-->
<button class="btn btn-primary btn-jump" onclick="location.href='$url_forward';return false;">{lang return_to_the_naxt_level}<!--{if $param['timeout']}--><span class="num">3</span>s<!--{/if}--></button>
<!--{/if}-->
<button class="btn btn-primary btn-jump" onclick="location.href='$_G['siteurl']';return false;">首页</button>
<button class="btn btn-primary btn-jump" onclick="location.href='/';return false;">首页</button>
<!--{elseif $allowreturn}-->
<script type="text/javascript">
if(history.length > (BROWSER.ie ? 0 : 1)) {
document.write('<a class="btn btn-primary btn-jump" href="javascript:history.back()">返回</a> <a class="btn btn-info" href="$_G['siteurl']">首页</a>');
document.write('<a class="btn btn-primary btn-jump" href="javascript:history.back()">返回</a> <a class="btn btn-info" href="/">首页</a>');
} else {
document.write('<a class="btn btn-primary btn-jump" href="$_G['siteurl']">首页</a>');
document.write('<a class="btn btn-primary btn-jump" href="/">首页</a>');
}
</script>
<!--{/if}-->

View File

@ -1,4 +1,4 @@
<span>Copyright © 2012-{eval echo dgmdate(TIMESTAMP,'Y');} <a href="http://www.dzzoffice.com" target="_blank" class="dcolor">www.dzzoffice.com</a> All Rights Reserved</span><br><span>Powered By <a href="http://www.dzzoffice.com" target="_blank" class="dcolor">DzzOffice</a>&nbsp;V{eval echo CORE_VERSION}</span>
<!--{if $_G['setting']['sitebeian']}-->
<br>$_G[setting][sitebeian]
<br>$_G['setting']['sitebeian']
<!--{/if}-->

View File

@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}-->$_G[setting][sitename]</title>
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}-->$_G['setting']['sitename']</title>
<meta name="keywords" content="{if !empty($_G['setting']['metakeywords'])}{echo htmlspecialchars($_G['setting']['metakeywords'])}{/if}" />
<meta name="description" content="{if !empty($_G['setting']['metadescription'])}{echo htmlspecialchars($_G['setting']['metadescription'])} {/if}" />
<meta name="generator" content="$_G['setting']['sitename']" />

View File

@ -3,7 +3,7 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}-->$_G[setting][sitename]</title>
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}-->$_G['setting']['sitename']</title>
<meta name="keywords" content="{if !empty($_G['setting']['metakeywords'])}{echo htmlspecialchars($_G['setting']['metakeywords'])}{/if}" />
<meta name="description" content="{if !empty($_G['setting']['metadescription'])}{echo htmlspecialchars($_G['setting']['metadescription'])} {/if}" />
<meta name="generator" content="$_G['setting']['sitename']" />
@ -22,10 +22,10 @@
<script type="text/javascript" src="static/lyear/js/lyear-loading.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript" src="static/lyear/js/bootstrap-notify.min.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript">
var DZZSCRIPT='{DZZSCRIPT}',LANG='{$_G['language']}', STATICURL = 'static/', IMGDIR = '{$_G['setting']['imgdir']}', VERHASH = '{VERHASH}', charset = '{CHARSET}', dzz_uid = '{$_G['uid']}', cookiepre = '{$_G['config']['cookie']['cookiepre']}', cookiedomain = '{$_G[config]['cookie']['cookiedomain']}', cookiepath = '{$_G['config']['cookie']['cookiepath']}',attackevasive = '{$_G['config']['security']['attackevasive']}', disallowfloat = '{$_G['setting']['disallowfloat']}', REPORTURL = '{$_G['currenturl_encode']}', SITEURL = '{$_G['siteurl']}', JSPATH = '{$_G['setting']['jspath']}',MOD_PATH='{MOD_PATH}',APP_URL='{MOD_URL}',MOD_URL='{MOD_URL}',sitename='{$_G['setting']['sitename']}',ismobile = '{$_G['ismobile']}',data_theme = '{$_G['cookie']['the_site_theme']}',data_sidebarbg = '{$_G['cookie']['the_sidebar_bg']}',data_headerbg = '{$_G['cookie']['the_header_bg']}',data_logobg = '{$_G['cookie']['the_logo_bg']}';
var DZZSCRIPT='{DZZSCRIPT}',LANG='{$_G['language']}', STATICURL = 'static/', IMGDIR = '{$_G['setting']['imgdir']}', VERHASH = '{VERHASH}', charset = '{CHARSET}', dzz_uid = '{$_G['uid']}', cookiepre = '{$_G['config']['cookie']['cookiepre']}', cookiedomain = '{$_G[config]['cookie']['cookiedomain']}', cookiepath = '{$_G['config']['cookie']['cookiepath']}',attackevasive = '{$_G['config']['security']['attackevasive']}', disallowfloat = '{$_G['setting']['disallowfloat']}', REPORTURL = '{$_G['currenturl_encode']}', SITEURL = '{$_G['siteurl']}', JSPATH = '{$_G['setting']['jspath']}',MOD_PATH='{MOD_PATH}',APP_URL='{MOD_URL}',MOD_URL='{MOD_URL}',sitename='{$_G['setting']['sitename']}',ismobile = '{$_G['ismobile']}',data_theme = '{$_G['cookie']['the_site_theme']}';
</script>
<!--{hook header_tpl}-->
</head>
<body id="nv_{$_G['basescript']}" class="$bodyClass"<!--{if !empty($lyeartheme)}--> data-theme="$_G['cookie']['the_site_theme']" data-sidebarbg="$_G['cookie']['the_sidebar_bg']" data-headerbg="$_G['cookie']['the_header_bg']" data-logobg="$_G['cookie']['the_logo_bg']"<!--{/if}-->>
<body id="nv_{$_G['basescript']}" class="$bodyClass"<!--{if !empty($lyeartheme)}--> data-theme="$_G['cookie']['the_site_theme']"<!--{/if}--> style="$bodystyle">
<div id="append_parent" style="z-index:99999;"></div>
<div id="ajaxwaitid" style="z-index:99999;"></div>

View File

@ -1,5 +1,5 @@
</head>
<body id="nv_{$_G['basescript']}" class="$bodyClass" data-theme="$_G['cookie']['the_site_theme']" data-sidebarbg="$_G['cookie']['the_sidebar_bg']" data-headerbg="$_G['cookie']['the_header_bg']" data-logobg="$_G['cookie']['the_logo_bg']">
<body id="nv_{$_G['basescript']}" class="$bodyClass" data-theme="$_G['cookie']['the_site_theme']" style="$bodystyle">
<div id="append_parent" style="z-index:99999;"></div>
<div id="ajaxwaitid" style="z-index:99999;"></div>
<aside class="bs-left-container">
@ -15,8 +15,6 @@
</div>
</div>
</aside>
<div class="left-drager">
</div>
<header class="bs-top-container">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
@ -35,152 +33,9 @@
<ul class="navbar-right d-flex align-items-center">
<!--{template lyear:lyear_header_right}-->
<!--切换主题配色-->
<li class="dropdown dropdown-skin">
<a data-bs-toggle="dropdown" class="nav-link">
<i class="mdi mdi-palette fs-4"></i>
<li>
<a class="nav-link theme-toggle-btn mdi <!--{if $_G['cookie']['the_site_theme'] =='dark'}-->mdi-power-sleep<!--{else}-->mdi-white-balance-sunny<!--{/if}--> fs-4" href="javascript:;" title="切换主题">
</a>
<ul class="dropdown-menu dropdown-menu-end" data-stopPropagation="true">
<li class="lyear-skin-title"><p>主题</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_1" value="default" checked="checked">
<label class="form-check-label" for="site_theme_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_2" value="translucent-green">
<label class="form-check-label" for="site_theme_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_3" value="translucent-blue">
<label class="form-check-label" for="site_theme_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_4" value="translucent-yellow">
<label class="form-check-label" for="site_theme_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_5" value="translucent-red">
<label class="form-check-label" for="site_theme_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_6" value="translucent-pink">
<label class="form-check-label" for="site_theme_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_7" value="translucent-cyan">
<label class="form-check-label" for="site_theme_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_8" value="dark">
<label class="form-check-label" for="site_theme_8"></label>
</div>
</li>
<li class="lyear-skin-title"><p>LOGO</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_1" value="default" checked="checked">
<label class="form-check-label" for="logo_bg_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_2" value="color_2">
<label class="form-check-label" for="logo_bg_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_3" value="color_3">
<label class="form-check-label" for="logo_bg_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_4" value="color_4">
<label class="form-check-label" for="logo_bg_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_5" value="color_5">
<label class="form-check-label" for="logo_bg_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_6" value="color_6">
<label class="form-check-label" for="logo_bg_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_7" value="color_7">
<label class="form-check-label" for="logo_bg_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_8" value="color_8">
<label class="form-check-label" for="logo_bg_8"></label>
</div>
</li>
<li class="lyear-skin-title"><p>头部</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_1" value="default" checked="checked">
<label class="form-check-label" for="header_bg_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_2" value="color_2">
<label class="form-check-label" for="header_bg_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_3" value="color_3">
<label class="form-check-label" for="header_bg_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_4" value="color_4">
<label class="form-check-label" for="header_bg_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_5" value="color_5">
<label class="form-check-label" for="header_bg_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_6" value="color_6">
<label class="form-check-label" for="header_bg_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_7" value="color_7">
<label class="form-check-label" for="header_bg_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_8" value="color_8">
<label class="form-check-label" for="header_bg_8"></label>
</div>
</li>
<li class="lyear-skin-title"><p>侧边栏</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_1" value="default" checked="checked">
<label class="form-check-label" for="sidebar_bg_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_2" value="color_2">
<label class="form-check-label" for="sidebar_bg_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_3" value="color_3">
<label class="form-check-label" for="sidebar_bg_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_4" value="color_4">
<label class="form-check-label" for="sidebar_bg_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_5" value="color_5">
<label class="form-check-label" for="sidebar_bg_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_6" value="color_6">
<label class="form-check-label" for="sidebar_bg_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_7" value="color_7">
<label class="form-check-label" for="sidebar_bg_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_8" value="color_8">
<label class="form-check-label" for="sidebar_bg_8"></label>
</div>
</li>
</ul>
</li>
<!--{if !$_G['setting']['bbclosed'] || !$_G['adminid'] ==0}-->
<li>
@ -242,7 +97,7 @@
_notice.flashStep++;
if (_notice.flashStep==3) {_notice.flashStep=1;}
if (_notice.flashStep==1) {document.title="【您有新的通知】";}
if (_notice.flashStep==2) {document.title="【$_G[setting][sitename]】";}
if (_notice.flashStep==2) {document.title="【$_G['setting']['sitename']】";}
setTimeout(function(){_notice.flashTitle();},500); //循环
}
</script>

View File

@ -1,9 +1,7 @@
</head>
<body id="nv_{$_G['basescript']}" class="$bodyClass" data-theme="$_G['cookie']['the_site_theme']" data-sidebarbg="$_G['cookie']['the_sidebar_bg']" data-headerbg="$_G['cookie']['the_header_bg']" data-logobg="$_G['cookie']['the_logo_bg']">
<body id="nv_{$_G['basescript']}" class="$bodyClass" data-theme="$_G['cookie']['the_site_theme']">
<div id="append_parent" style="z-index:99999;"></div>
<div id="ajaxwaitid" style="z-index:99999;"></div>
<div class="left-drager">
</div>
<header class="bs-top-container" style="display: flex;padding-left: 0;">
<!--{template lyear:lyear_header_left}-->
<nav class="navbar navbar-expand-lg navbar-light">
@ -16,152 +14,9 @@
<ul class="navbar-right d-flex align-items-center">
<!--{template lyear:lyear_header_right}-->
<!--切换主题配色-->
<li class="dropdown dropdown-skin">
<a data-bs-toggle="dropdown" class="nav-link">
<i class="mdi mdi-palette fs-4"></i>
<li>
<a class="nav-link theme-toggle-btn mdi <!--{if $_G['cookie']['the_site_theme'] =='dark'}-->mdi-power-sleep<!--{else}-->mdi-white-balance-sunny<!--{/if}--> fs-4" href="javascript:;" title="切换主题">
</a>
<ul class="dropdown-menu dropdown-menu-end" data-stopPropagation="true">
<li class="lyear-skin-title"><p>主题</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_1" value="default" checked="checked">
<label class="form-check-label" for="site_theme_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_2" value="translucent-green">
<label class="form-check-label" for="site_theme_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_3" value="translucent-blue">
<label class="form-check-label" for="site_theme_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_4" value="translucent-yellow">
<label class="form-check-label" for="site_theme_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_5" value="translucent-red">
<label class="form-check-label" for="site_theme_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_6" value="translucent-pink">
<label class="form-check-label" for="site_theme_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_7" value="translucent-cyan">
<label class="form-check-label" for="site_theme_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="site_theme" id="site_theme_8" value="dark">
<label class="form-check-label" for="site_theme_8"></label>
</div>
</li>
<li class="lyear-skin-title"><p>LOGO</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_1" value="default" checked="checked">
<label class="form-check-label" for="logo_bg_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_2" value="color_2">
<label class="form-check-label" for="logo_bg_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_3" value="color_3">
<label class="form-check-label" for="logo_bg_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_4" value="color_4">
<label class="form-check-label" for="logo_bg_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_5" value="color_5">
<label class="form-check-label" for="logo_bg_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_6" value="color_6">
<label class="form-check-label" for="logo_bg_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_7" value="color_7">
<label class="form-check-label" for="logo_bg_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="logo_bg" id="logo_bg_8" value="color_8">
<label class="form-check-label" for="logo_bg_8"></label>
</div>
</li>
<li class="lyear-skin-title"><p>头部</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_1" value="default" checked="checked">
<label class="form-check-label" for="header_bg_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_2" value="color_2">
<label class="form-check-label" for="header_bg_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_3" value="color_3">
<label class="form-check-label" for="header_bg_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_4" value="color_4">
<label class="form-check-label" for="header_bg_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_5" value="color_5">
<label class="form-check-label" for="header_bg_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_6" value="color_6">
<label class="form-check-label" for="header_bg_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_7" value="color_7">
<label class="form-check-label" for="header_bg_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="header_bg" id="header_bg_8" value="color_8">
<label class="form-check-label" for="header_bg_8"></label>
</div>
</li>
<li class="lyear-skin-title"><p>侧边栏</p></li>
<li class="lyear-skin-li clearfix">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_1" value="default" checked="checked">
<label class="form-check-label" for="sidebar_bg_1"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_2" value="color_2">
<label class="form-check-label" for="sidebar_bg_2"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_3" value="color_3">
<label class="form-check-label" for="sidebar_bg_3"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_4" value="color_4">
<label class="form-check-label" for="sidebar_bg_4"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_5" value="color_5">
<label class="form-check-label" for="sidebar_bg_5"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_6" value="color_6">
<label class="form-check-label" for="sidebar_bg_6"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_7" value="color_7">
<label class="form-check-label" for="sidebar_bg_7"></label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="sidebar_bg" id="sidebar_bg_8" value="color_8">
<label class="form-check-label" for="sidebar_bg_8"></label>
</div>
</li>
</ul>
</li>
<!--{if !$_G['setting']['bbclosed'] || !$_G['adminid'] ==0}-->
<li>
@ -227,7 +82,7 @@ _notice.flashTitleRun = true;
_notice.flashStep++;
if (_notice.flashStep==3) {_notice.flashStep=1;}
if (_notice.flashStep==1) {document.title="【您有新的通知】";}
if (_notice.flashStep==2) {document.title="【$_G[setting][sitename]】";}
if (_notice.flashStep==2) {document.title="【$_G['setting']['sitename']】";}
setTimeout(function(){_notice.flashTitle();},500); //循环
}
</script>

View File

@ -4,7 +4,7 @@
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}-->$_G[setting][sitename]</title>
<title><!--{if !empty($navtitle)}-->$navtitle - <!--{/if}-->$_G['setting']['sitename']</title>
<meta name="keywords" content="{if !empty($_G['setting']['metakeywords'])}{echo htmlspecialchars($_G['setting']['metakeywords'])}{/if}" />
<meta name="description" content="{if !empty($_G['setting']['metadescription'])}{echo htmlspecialchars($_G['setting']['metadescription'])} {/if}" />
<meta name="generator" content="$_G['setting']['sitename']" />
@ -21,10 +21,9 @@
<script type="text/javascript" src="static/lyear/js/jquery.min.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript" src="static/lyear/js/common.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript" src="static/lyear/js/lyear-loading.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript" src="static/lyear/js/jquery.leftDrager.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript" src="static/lyear/js/bootstrap-notify.min.js?{VERHASH}" rel="preload"></script>
<script type="text/javascript">
var DZZSCRIPT='{DZZSCRIPT}',LANG='{$_G['language']}', STATICURL = 'static/', IMGDIR = '{$_G['setting']['imgdir']}', VERHASH = '{VERHASH}', charset = '{CHARSET}', dzz_uid = '{$_G['uid']}', cookiepre = '{$_G['config']['cookie']['cookiepre']}', cookiedomain = '{$_G[config]['cookie']['cookiedomain']}', cookiepath = '{$_G['config']['cookie']['cookiepath']}',attackevasive = '{$_G['config']['security']['attackevasive']}', disallowfloat = '{$_G['setting']['disallowfloat']}', REPORTURL = '{$_G['currenturl_encode']}', SITEURL = '{$_G['siteurl']}', JSPATH = '{$_G['setting']['jspath']}',MOD_PATH='{MOD_PATH}',APP_URL='{MOD_URL}',MOD_URL='{MOD_URL}',sitename='{$_G['setting']['sitename']}',ismobile = '{$_G['ismobile']}',data_theme = '{$_G['cookie']['the_site_theme']}',data_sidebarbg = '{$_G['cookie']['the_sidebar_bg']}',data_headerbg = '{$_G['cookie']['the_header_bg']}',data_logobg = '{$_G['cookie']['the_logo_bg']}';
var DZZSCRIPT='{DZZSCRIPT}',LANG='{$_G['language']}', STATICURL = 'static/', IMGDIR = '{$_G['setting']['imgdir']}', VERHASH = '{VERHASH}', charset = '{CHARSET}', dzz_uid = '{$_G['uid']}', cookiepre = '{$_G['config']['cookie']['cookiepre']}', cookiedomain = '{$_G[config]['cookie']['cookiedomain']}', cookiepath = '{$_G['config']['cookie']['cookiepath']}',attackevasive = '{$_G['config']['security']['attackevasive']}', disallowfloat = '{$_G['setting']['disallowfloat']}', REPORTURL = '{$_G['currenturl_encode']}', SITEURL = '{$_G['siteurl']}', JSPATH = '{$_G['setting']['jspath']}',MOD_PATH='{MOD_PATH}',APP_URL='{MOD_URL}',MOD_URL='{MOD_URL}',sitename='{$_G['setting']['sitename']}',ismobile = '{$_G['ismobile']}',data_theme = '{$_G['cookie']['the_site_theme']}';
</script>
<!--{hook header_tpl}-->
<script type="text/javascript">

View File

@ -45,7 +45,7 @@
<div class="copyright text-muted text-center">
Copyright ©2012-{eval echo dgmdate(TIMESTAMP,'Y');} <a href="http://www.dzzoffice.com" target="_blank" class="dcolor">DzzOffice</a> All Rights Reserved
<!--{if $_G['setting']['sitebeian']}-->
<br>$_G[setting][sitebeian]
<br>$_G['setting']['sitebeian']
<!--{/if}-->
</div>
<!--{template common/footer_ajax}-->

View File

@ -1,10 +0,0 @@
<!--{if $_GET['op']=='view'}-->
<!--{if $perm>1 || $news['authorid']==$_G[uid]}-->
<li>
<a href="{MOD_URL}&op=edit&newid=$news[newid]" title="{lang edit}" class="nav-link"><i class="mdi mdi-pencil fs-4"></i></a>
</li>
<li class="border-end">
<a href="javascript:;" title="{lang delete}" newid="$news[newid]" onclick="news_dl(this)" class="nav-link"><i class="mdi mdi-delete fs-4"></i></a>
</li>
<!--{/if}-->
<!--{/if}-->

View File

@ -12,11 +12,13 @@
<input name="sechash" type="hidden" value="$sechash" />
<!--{if $sectpl}-->
<!--{if $seccodecheck}-->
<div class="seccode-wrapper seccode_type_{$_G[setting][seccodedata][type]}">
<div class="input-group mb-3">
<span class="input-group-text" id="checkseccodeverify_$sechash"></span>
<input name="seccodeverify" class="form-control" id="seccodeverify_$sechash" type="text" autocomplete="off" style="{if $_G[setting][seccodedata][type] != 1}ime-mode:disabled;{/if}" onblur="checksec('code', '$sechash')" placeholder="{lang seccode}" />
<span class="input-group-text" id="basic-addon2">{$sectplcode[2]}
<div class="has-feedback row seccode-wrapper seccode_type_{$_G['setting']['seccodedata']['type']}">
<div class="col-7">
<span class="form-control-feedback" aria-hidden="true" id="checkseccodeverify_$sechash"></span>
<input type="text" name="seccodeverify" class="form-control" id="seccodeverify_$sechash" autocomplete="off" style="{if $_G['setting']['seccodedata']['type'] != 1}ime-mode:disabled;{/if}" onblur="checksec('code', '$sechash')" placeholder="{lang seccode}">
</div>
<div class="col-5 text-right" id="basic-addon2" style="display: flex;align-items: center;flex-wrap: wrap;">
{$sectplcode[2]}
<span id="seccode_$sechash"></span>
<a tabindex="-1" href="javascript:;" onclick="updateseccode('$sechash');doane(event);" class="seccode-refresh-guide"><span class="dzz dzz-refresh"></span></a>
<!--{if $secshow}--><script type="text/javascript" reload="1">updateseccode('$sechash');</script><!--{/if}-->
@ -24,7 +26,6 @@
<span class="help-msg"></span>
</div>
</div>
<!--{/if}-->
<!--{/if}-->
<!--{/block}-->

View File

@ -30,13 +30,13 @@
<!--{else}-->
<button class="btn btn-primary" onclick="location.href='$url_forward';return false;">{lang return_to_the_naxt_level}<!--{if $param['timeout']}--><span class="num">3</span>s<!--{/if}--></button>
<!--{/if}-->
<button class="btn btn-primary" onclick="location.href='$_G['siteurl']';return false;">首页</button>
<button class="btn btn-primary" onclick="location.href='/';return false;">首页</button>
<!--{elseif $allowreturn}-->
<script type="text/javascript">
if(history.length > (BROWSER.ie ? 0 : 1)) {
document.write('<a class="btn btn-primary" href="javascript:history.back()">返回</a> <a class="btn btn-info" href="$_G['siteurl']">首页</a>');
document.write('<a class="btn btn-primary" href="javascript:history.back()">返回</a> <a class="btn btn-info" href="/">首页</a>');
} else {
document.write('<a class="btn btn-primary" href="$_G['siteurl']">首页</a>');
document.write('<a class="btn btn-primary" href="/">首页</a>');
}
</script>
<!--{/if}-->

View File

@ -1,14 +1,14 @@
<li class="itemfeed cmt_fed" id="comment_$value1[cid]">
<a name="comment_anchor_$value1[cid]"></a>
<div class="d-flex lyear-message-item">
<a href="user.php?uid=$value1[authorid]" class="img-avatar-48" title="$value1[author]" hidefocus="true" target="_blank">{eval echo avatar_block($value1[authorid],'','img-avatar img-avatar-48');}</a>
<a href="user.php?uid=$value1[authorid]" class="img-avatar-48" title="$value1[author]" hidefocus="true" target="_blank">{eval echo avatar_block($value1['authorid'],'','img-avatar img-avatar-48');}</a>
<div class="flex-grow-1 ms-2">
<a href="user.php?uid=$value1[authorid]" title="$value1[author]" class="avatar_mcfed" hidefocus="true" target="_blank"><strong>$value1[author]</strong></a>
<!--{if $value1['rpost']}-->
<span class="text-muted m-1">{lang reply}</span>
<a href="user.php?uid=$value1[rpost][authorid]" title="$value1[rpost][author]" class="avatar_mcfed" hidefocus="true" target="_blank"><strong>$value1[rpost][author]</strong></a>
<!--{/if}-->
<div class="text-muted">$value1[dateline] $value1[xtllq] <!--{if $_G[adminid]==1}-->$value1[ip]<!--{/if}-->
<div class="text-muted">$value1['dateline'] $value1[xtllq] <!--{if $_G[adminid]==1}-->$value1[ip]<!--{/if}-->
<span class="float-end">
<!--{if $_G['uid']==$value1[authorid] || $_G[adminid]==1}-->
<a href="javascript:void(0);" class="dcolor" onclick="feed_delete('$value1[cid]','comment_$value1[cid]','$value1[pcid]')"><i class="mdi mdi-delete"></i>&nbsp;{lang delete}</a>

View File

@ -1,12 +1,12 @@
<li class="itemfeed" id="comment_$value[cid]">
<a name="comment_$value[cid]"></a>
<div class="d-flex lyear-message-item">
<a href="user.php?uid=$value[authorid]" class="img-avatar-48" title="$value[author]" hidefocus="true" target="_blank">{eval echo avatar_block($value[authorid],'','img-avatar img-avatar-48');}</a>
<a href="user.php?uid=$value['authorid']" class="img-avatar-48" title="$value[author]" hidefocus="true" target="_blank">{eval echo avatar_block($value['authorid'],'','img-avatar img-avatar-48');}</a>
<div class="flex-grow-1 ms-2">
<a href="user.php?uid=$value[authorid]" title="$value[author]" hidefocus="true" target="_blank"><strong>$value[author]</strong></a>
<div class="text-muted">$value[dateline] $value[xtllq] <!--{if $_G[adminid]==1}-->$value[ip]<!--{/if}-->
<a href="user.php?uid=$value['authorid']" title="$value[author]" hidefocus="true" target="_blank"><strong>$value[author]</strong></a>
<div class="text-muted">$value['dateline'] $value[xtllq] <!--{if $_G[adminid]==1}-->$value[ip]<!--{/if}-->
<span class="float-end">
<!--{if $_G['uid']==$value[authorid] || $_G[adminid]==1}-->
<!--{if $_G['uid']==$value['authorid'] || $_G[adminid]==1}-->
<a href="javascript:void(0);" class="dcolor" onclick="feed_delete('$value[cid]','comment_$value[cid]')"><i class="mdi mdi-delete"></i>&nbsp;{lang delete}</a>
<!--{/if}-->
<!--{if $_G['uid']>0}-->

View File

@ -2,7 +2,7 @@
<a name="comment_anchor_$value1[cid]"></a>
<div class="item_cfed">
<div class="left_icfed">
<a href="user.php?uid=$value1[authorid]" title="" hidefocus="true"> {eval echo avatar_block($value[authorid]);} </a>
<a href="user.php?uid=$value1[authorid]" title="" hidefocus="true"> {eval echo avatar_block($value['authorid']);} </a>
</div>
<div class="right_icfed">
<div class="master_cfed">
@ -97,7 +97,7 @@
<!--{/if}-->
</ul>
</div>
<span class="time_acfed">$value1[xtllq] <!--{if $_G[adminid]==1}-->$value1[ip]<!--{/if}--> $value1[dateline]</span> </div>
<span class="time_acfed">$value1[xtllq] <!--{if $_G[adminid]==1}-->$value1[ip]<!--{/if}--> $value1['dateline']</span> </div>
</div>
</div>
</div>

View File

@ -1,12 +1,12 @@
<div class="itemfeed " id="comment_$value[cid]">
<a name="comment_$value[cid]"></a>
<div class="left_ifed">
<a href="user.php?uid=$value[authorid]" title="$value[author]" hidefocus="true">{eval echo avatar_block($value[authorid]);}</a>
<a href="user.php?uid=$value['authorid']" title="$value[author]" hidefocus="true">{eval echo avatar_block($value['authorid']);}</a>
</div>
<div class="right_ifed">
<div class="main_fed">
<div class="source_fed">
<a href="user.php?uid=$value[authorid]" title="$value[author]" hidefocus="true" class="appuser_sfed skip_mmfed">$value[author]</a><span class="cont_sfed">{lang talk}</span> </div>
<a href="user.php?uid=$value['authorid']" title="$value[author]" hidefocus="true" class="appuser_sfed skip_mmfed">$value[author]</a><span class="cont_sfed">{lang talk}</span> </div>
<div class="master_mfed"> <span class="lquote_mmfed"></span><span class="content_mmfed">$value[message]</span><span class="rquote_mmfed"></span> </div>
<div class="attachment_fed">
<!--{loop $value[attachs] $attach}-->
@ -74,7 +74,7 @@
<div class="action_mfed clearfix">
<div class="btn_amfed">
<ul>
<!--{if $_G['uid']==$value[authorid] || $_G[adminid]==1}-->
<!--{if $_G['uid']==$value['authorid'] || $_G[adminid]==1}-->
<li class="more_bamfed">
<a hidefocus="true" class="dcolor" href="javascript:void(0);" onclick="feed_delete('$value[cid]','comment_$value[cid]')">{lang delete}</a>
</li>
@ -87,7 +87,7 @@
<!--{/if}-->
</ul>
</div>
$value[xtllq] <!--{if $_G[adminid]==1}-->$value[ip]<!--{/if}--> $value[dateline]</div>
$value[xtllq] <!--{if $_G[adminid]==1}-->$value[ip]<!--{/if}--> $value['dateline']</div>
</div>
<div id="comment_reply_{$value[cid]}" class="comment_ifed">
<!--{if $value[replies]>0}-->

View File

@ -301,7 +301,7 @@
<div class="col">
<div class="progress">
<!--{if $value[number]}-->
{eval $progressvalue = floor(($value[number]/$votetotal)*100);}
{eval $progressvalue = floor(($value['number']/$votetotal)*100);}
<!--{else}-->
{eval $progressvalue = '0';}
<!--{/if}-->
@ -319,7 +319,7 @@
<a href="$value[url]" target="_blank" target="_blank"><img src="$value[img]" alt="$value['content']"></a>
<div class="progress mt-2 mb-2">
<!--{if $value[number]}-->
{eval $progressvalue = floor(($value[number]/$votetotal)*100);}
{eval $progressvalue = floor(($value['number']/$votetotal)*100);}
<!--{else}-->
{eval $progressvalue = '0';}
<!--{/if}-->
@ -360,7 +360,7 @@
<div class="col">
<div class="progress">
<!--{if $value[number]}-->
{eval $progressvalue = floor(($value[number]/$votetotal)*100);}
{eval $progressvalue = floor(($value['number']/$votetotal)*100);}
<!--{else}-->
{eval $progressvalue = '0';}
<!--{/if}-->
@ -389,7 +389,7 @@
<a href="$value[url]" target="_blank" target="_blank"><img src="$value[img]" alt="$value['content']"></a>
<div class="progress mt-2 mb-2">
<!--{if $value[number]}-->
{eval $progressvalue = floor(($value[number]/$votetotal)*100);}
{eval $progressvalue = floor(($value['number']/$votetotal)*100);}
<!--{else}-->
{eval $progressvalue = '0';}
<!--{/if}-->
@ -493,7 +493,7 @@
<div class="col">
<div class="progress">
<!--{if $value[number]}-->
{eval $progressvalue = floor(($value[number]/$votetotal)*100);}
{eval $progressvalue = floor(($value['number']/$votetotal)*100);}
<!--{else}-->
{eval $progressvalue = '0';}
<!--{/if}-->
@ -511,7 +511,7 @@
<a href="$value[url]" target="_blank" target="_blank"><img src="$value[img]" alt="$value['content']"></a>
<div class="progress mt-2 mb-2">
<!--{if $value[number]}-->
{eval $progressvalue = floor(($value[number]/$votetotal)*100);}
{eval $progressvalue = floor(($value['number']/$votetotal)*100);}
<!--{else}-->
{eval $progressvalue = '0';}
<!--{/if}-->

View File

@ -318,7 +318,7 @@
<div class="col-sm-8 checkbox"> $value[content] </div>
<div class="col-sm-4">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value[number]/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value[number]/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value[number]/$votetotal)*100);}% </div>
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value['number']/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value['number']/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value['number']/$votetotal)*100);}% </div>
</div>
</div>
</div>
@ -333,7 +333,7 @@
</div>
<div class="caption text-center" style="">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value[number]/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value[number]/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value[number]/$votetotal)*100);}% </div>
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value['number']/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value['number']/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value['number']/$votetotal)*100);}% </div>
</div>
<div class="content">$value['content']</div>
</div>
@ -374,7 +374,7 @@
</div>
<div class="col-sm-4">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value[number]/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value[number]/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value[number]/$votetotal)*100);}% </div>
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value['number']/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value['number']/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value['number']/$votetotal)*100);}% </div>
</div>
</div>
<!--{/if}-->
@ -406,7 +406,7 @@
</div>
<div class="caption text-center" style="">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value[number]/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value[number]/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value[number]/$votetotal)*100);}% </div>
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value['number']/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value['number']/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value['number']/$votetotal)*100);}% </div>
</div>
<div class="content">$value['content']</div>
</div>
@ -508,7 +508,7 @@
<div class="col-sm-8 checkbox"> $value[content] </div>
<div class="col-sm-4">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value[number]/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value[number]/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value[number]/$votetotal)*100);}% </div>
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value['number']/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value['number']/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value['number']/$votetotal)*100);}% </div>
</div>
</div>
</div>
@ -523,7 +523,7 @@
</div>
<div class="caption text-center" style="">
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value[number]/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value[number]/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value[number]/$votetotal)*100);}% </div>
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="{eval echo floor(($value['number']/$votetotal)*100);}" aria-valuemin="0" aria-valuemax="100" style="width: {eval echo floor(($value['number']/$votetotal)*100);}%;min-width: 20px;"> {eval echo floor(($value['number']/$votetotal)*100);}% </div>
</div>
<div class="content">$value['content']</div>
</div>

View File

@ -372,7 +372,7 @@ if ($do == 'upload') {//上传图片文件
if (C::t('organization') -> setFolderAvailableByOrgid($orgid, intval($_GET['available']))) {
exit(json_encode(array('msg' => 'success')));
} else {
exit(json_encode(array('error' => lang('unable_set'))));
exit(json_encode(array('error' => lang('unable_set').',如果上级没有开启目录共享,下级无法开启')));
}
} elseif ($do == 'folder_indesk') {
$orgid = intval($_GET['orgid']);

View File

@ -92,7 +92,7 @@ if ($do == 'getinfo') {
exit($jsonReturn);
} elseif (isset($_G['setting']['template']) && $_G['setting']['template'] == 'lyear') {
} else {
$keyword = trim($_GET['keyword']);
$keyword = isset($_GET['keyword']) ? trim($_GET['keyword']) : '';
$username = trim($_GET['username']);
$asc = isset($_GET['asc']) ? intval($_GET['asc']) : 1;
$uid = intval($_GET['uid']);

View File

@ -13,7 +13,8 @@ define('CURSCRIPT', 'dzz');
require './core/coreBase.php';
$dzz = C::app();
$dzz->init();
if(!$path=dzzdecode(trim($_GET['s']))){
$s = isset($_GET['s']) ? trim($_GET['s']) : '';
if(!$path=dzzdecode($s)){
exit('Access Denied');
}
if (isset($_GET['sid'])) {

File diff suppressed because one or more lines are too long

View File

@ -1095,10 +1095,10 @@ textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}
.modal-sm{max-width:300px}
}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}
.modal-dialog{width:700px;margin:25px auto}
.notify{width:400px}
}@media (min-width:1200px){.modal-xl{max-width:1140px}
.modal-dialog{width:800px;max-width: 800px;}
.notify{width:500px}
}@media (min-width:1200px){.modal-xl{max-width:1140px}
.modal-dialog{width: 900px;max-width: 900px;}
}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}
.modal-fullscreen-btn{border:none;background-color:transparent;color:#000;opacity:0.6;font-size:22px;line-height:1.3;font-weight:700;margin:-0.5rem -0.5rem -0.5rem auto}
.modal-fullscreen-btn .mdi:before{width:1.5rem;height:1.5rem;vertical-align:middle;content:"\f0293";line-height:1}
@ -1266,7 +1266,7 @@ textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}
}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}
}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}
}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}
}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.modal-dialog{max-width: 900px;width: 900px;}
}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}
}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}
.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}
.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute !important;width:1px !important;height:1px !important;padding:0 !important;margin:-1px !important;overflow:hidden !important;clip:rect(0,0,0,0) !important;white-space:nowrap !important;border:0 !important}
@ -1540,7 +1540,7 @@ textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}
.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity)) !important}
.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity)) !important}
.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important}
.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important}
.has-error,.help-msg,.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important}
.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity)) !important}
.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity)) !important}
.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity)) !important}
@ -1554,7 +1554,7 @@ textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}
.text-opacity-50{--bs-text-opacity:0.5}
.text-opacity-75{--bs-text-opacity:0.75}
.text-opacity-100{--bs-text-opacity:1}
.bg{background-color:rgba(var(--bs-black-rgb),.175);border-radius:var(--radius)}
.bg{background-color:#eee;border-radius:var(--radius)}
.hbg:hover{background-color:rgba(var(--bs-black-rgb),.175);border-radius:var(--radius)}
.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity)) !important}
.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity)) !important}
@ -2532,3 +2532,9 @@ textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}
.img-avatar-more:hover span{color:#fff;background-color:rgba(0,0,0,0.65)}
[data-provide~="img-avatar-more"] ~ .img-avatar{display:none!important}
#ajaxwaitid{border-color:var(--bs-border-color);box-shadow:0 0.125rem 0.75rem rgba(var(--bs-dark-rgb),.0375);border-radius:0.125rem;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 0.5rem 1rem rgba(0,0,0,.15);border-radius:0.25rem;position:absolute;right:0}
.signin-form .has-feedback{position:relative}
.signin-form .has-feedback .form-control{padding-left:36px}
.signin-form .has-feedback .mdi{position:absolute;top:0;left:0;right:auto;width:36px;height:36px;line-height:36px;z-index:4;color:#dcdcdc;display:block;text-align:center;pointer-events:none}
.has-feedback.row .mdi{left:15px}
.flex-container{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.notify{border-color:var(--bs-border-color);box-shadow:0 0 10px 4px rgba(0,0,0,.1);border-radius:8px;max-width:400px;font-size:.875rem;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:0 solid #d3d4d3}

View File

@ -1,9 +1,3 @@
/** ----------------------------------
* 光年(Light Year Admin v5)后台管理系统模板
* 基于Bootstrap v5.1.3的一款纯静态页面模板
* http://www.bixiaguangnian.com
* yinqi<3331653644@qq.com>
-------------------------------------- */
:root{--border-radius-mini:12px;--border-radius-small:16px;--border-radius-medium:24px;--border-radius-large:32px;--sidebar-width:240px;--header-height:64px;--bs-purple:#926dde;--bs-purple-hover:#a282e3;--bs-pink:#f96197;--bs-pink-hover:#fa75a4;--bs-yellow:#fcc525;--bs-yellow-hover:#fdd04d;--bs-teal:#33cabb;--bs-teal-hover:#52d3c7;--bs-cyan:#57c7d4;--bs-cyan-hover:#77d2dc;--bs-brown:#8d6658;--bs-brown-hover:#9d7162;--bs-indigo:#6610f2;--bs-indigo-hover:#7516F4;--bs-success:#15c377;--bs-success-hover:#16d17f;--bs-info:#48b0f7;--bs-info-hover:#65bdf8;--bs-warning:#faa64b;--bs-warning-hover:#fbb264;--bs-danger:#f44236;--bs-danger-hover:#fa8181;--bs-dark:#212529;--bs-dark-hover:#393F45;--bs-secondary:#6c757d;--bs-secondary-hover:#7a838a;--bs-light:#fcfdfe;--bs-light-hover:#f9fafb;--bs-pre:#f8f9fa;--bs-pre-font:#2f6f9f;--bs-pure-black:#000000;--bs-primary-rgb:0,123,255;--bs-success-rgb:21,195,119;--bs-info-rgb:72,176,247;--bs-warning-rgb:250,166,75;--bs-danger-rgb:244,66,54;--bs-teal-rgb:51,202,187;--bs-indigo-rgb:102,16,242;--bs-purple-rgb:146,109,222;--bs-pink-rgb:249,97,151;--bs-yellow-rgb:252,197,37;--bs-cyan-rgb:87,199,212;--bs-brown-rgb:141,102,88;--bs-dark-rgb:33,37,41;--bs-secondary-rgb:108,117,125;--bs-light-rgb:252,253,254;--bs-body-color-rgb:73,80,87;--bs-gray-rgb:108,117,125;--bs-font-sans-serif:system-ui,-apple-system,"Microsoft YaHei","Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-body-font-size:14px;--bs-body-line-height:1.72;--bs-body-color:#495057;--bs-body-bg:#f4f5fa;--bs-border-color:#ededee;--bs-border-rgb:237,237,238}
html,body{height:100%;overflow:hidden}
a{color:var(--bs-primary);text-decoration:none;-webkit-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out;transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out}
@ -71,6 +65,8 @@
.btn-close:focus{box-shadow:none}
.overflow-x-hidden{overflow-x:hidden !important}
.overflow-y-hidden{overflow-y:hidden !important}
.overflow-x-auto{overflow-x:auto !important}
.overflow-y-auto{overflow-y:auto !important}
.container-fluid{padding-left:1rem !important;padding-right:1rem !important;padding-top:1rem !important;padding-bottom:0 !important}
.navbar .container-fluid{padding:0.5rem !important}
.btn{font-size:14px;padding:0.4695rem 0.75rem;-webkit-border-radius:var(--radius);border-radius:var(--radius)}
@ -536,11 +532,11 @@
.bs-left-container-info{overflow:auto;height:-moz-calc(100% - var(--header-height));height:-webkit-calc(100% - var(--header-height));height:calc(100% - var(--header-height));position:relative;background-color:var(--bs-white)}
.sidebar-header{position:relative;overflow:hidden;z-index:999;background-color:var(--bs-primary);width:100%;-webkit-box-shadow:0 1px 1px -1px rgba(var(--bs-dark-rgb),0.25);box-shadow:0 1px 1px -1px rgba(var(--bs-dark-rgb),0.25);display:flex;height:var(--header-height);align-items:center;padding:5px}
.sidebar-header:before,.sidebar-header:after{content:" ";display:table}
.sidebar-header a{display:inline-block;padding:5px}
.sidebar-header i{padding:8px}
.sidebar-header a{display:inline-block;}
.sidebar-header i{padding:8px;font-size:larger}
.brhover{border-radius:50%;padding:8px}
.brhover:hover{background-color:rgba(0,0,0,0.071)}
.sidebar-header a img{max-height:50px}
.sidebar-header a img{height:50px;width: 50px;}
.sidebar-main{-webkit-transform:translateZ(0);transform:translateZ(0)}
.nav-drawer{list-style:none;padding:0px;margin:0px}
.nav-drawer>li{position:relative;display:block}
@ -551,7 +547,7 @@
.nav-drawer>li.active>a{background-color:rgba(var(--bs-dark-rgb),.0125) !important}
.nav-drawer>.active>a:hover,.nav-drawer>.active>a:focus,.nav-drawer>.active>a:active{background-color:rgba(var(--bs-dark-rgb),.0125);border-color:var(--bs-primary)}
.nav-drawer .nav-subnav>li.active>a,.nav-drawer .nav-subnav>li>a:hover{color:var(--bs-primary);background-color:transparent}
.nav-drawer>li>a>i{position:absolute;left:21px;top:8px;font-size:1.25em}
.nav-drawer>li>a>i{position:absolute;left:18px;top:8px;font-size:1.25em}
.nav-drawer>li>a>img{position:absolute;left:15px;top:8px;font-size:1.25em}
.nav-drawer ul li ul{padding-left:15px}
.nav-item-has-subnav>a:after{position:absolute;top:12px;right:24px;font-family:'Material Design Icons';font-size:10px;line-height:2;content:'\F0142';-webkit-transition:-webkit-transform 0.3s linear;transition:-webkit-transform 0.3s linear;transition:transform 0.3s linear;transition:transform 0.3s linear,-webkit-transform 0.3s linear}
@ -560,7 +556,7 @@
.nav-item-has-subnav.open>.nav-subnav{display:block}
.nav-subnav{display:none;margin-top:8px;margin-bottom:8px}
.sidebar-footer{bottom:0;width:100%;height:96px;border-top:1px solid rgba(77,82,89,0.1);margin-top:24px;padding-top:24px;padding-right:24px;padding-bottom:24px;padding-left:24px;font-size:13px;line-height:24px}
.bs-top-container{position:fixed;top:0;right:0;left:0;z-index:110;padding-left:var(--sidebar-width);background-color:var(--bs-primary);-webkit-transition:padding 0.3s;transition:padding 0.3s;-webkit-box-shadow:0 1px 1px -1px rgb(var(--bs-dark-rgb),0.25);-moz-box-shadow:0 1px 1px -1px rgb(var(--bs-dark-rgb),0.25);box-shadow:0 1px 1px -1px rgb(var(--bs-dark-rgb),0.25)}
.bs-top-container{position:fixed;top:0;right:0;left:0;z-index:110;padding-left:var(--sidebar-width);background-color:var(--bs-primary);-webkit-box-shadow:0 1px 1px -1px rgb(var(--bs-dark-rgb),0.25);-moz-box-shadow:0 1px 1px -1px rgb(var(--bs-dark-rgb),0.25);box-shadow:0 1px 1px -1px rgb(var(--bs-dark-rgb),0.25)}
.bs-top-container .navbar{min-height:var(--header-height);padding:0;margin-bottom:0;border:0px;background-color:transparent}
.lyear-aside-toggler{margin-right:.25rem;padding:.25rem .95rem .25rem .25rem;line-height:1.5;cursor:pointer}
.lyear-aside-toggler .lyear-toggler-bar{display:block;height:2px;width:20px;background-color:#fff;margin:4px 0px;-webkit-transition:0.3s;transition:0.3s}
@ -570,7 +566,6 @@
.navbar-right{list-style:none;padding:0px;margin:0px}
.navbar-right .nav-link{color:#fff;padding:0 .5rem 0 .5rem;border-radius:var(--radius)}
.navbar-right .nav-link:hover{color:#000}
.dropdown-skin .dropdown-menu{width:264px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;-khtml-user-select:none;user-select:none}
.lyear-skin-title p{padding:5px 15px 0px 15px}
.lyear-skin-li{padding:0px 12px}
.lyear-skin-li .form-check{padding:0px;margin:0px}
@ -579,21 +574,7 @@
.lyear-skin-li .form-check-input:checked+label{position:relative}
.lyear-skin-li .form-check-input:checked+label::after{content:"\F012C";font-family:"Material Design Icons";font-size:1rem;display:block;color:var(--bs-white);width:100%;text-align:center;line-height:20px;position:absolute;top:0px;-webkit-transition:.2s;transition:.2s}
li.lyear-skin-li .form-check:first-child .form-check-input:checked+label::after{color:var(--bs-body-color)}
#header_bg_1+label,#logo_bg_1+label,#sidebar_bg_1+label,#site_theme_1+label{background-color:var(--bs-white);border:1px solid var(--bs-border-color)}
#header_bg_2+label,#logo_bg_2+label,#sidebar_bg_2+label{background-color:var(--bs-success);border:1px solid var(--bs-success)}
#header_bg_3+label,#logo_bg_3+label,#sidebar_bg_3+label{background-color:var(--bs-info);border:1px solid var(--bs-info)}
#header_bg_4+label,#logo_bg_4+label,#sidebar_bg_4+label{background-color:var(--bs-warning);border:1px solid var(--bs-warning)}
#header_bg_5+label,#logo_bg_5+label,#sidebar_bg_5+label{background-color:var(--bs-danger);border:1px solid var(--bs-danger)}
#header_bg_6+label,#logo_bg_6+label,#sidebar_bg_6+label{background-color:var(--bs-purple);border:1px solid var(--bs-purple)}
#header_bg_7+label,#logo_bg_7+label,#sidebar_bg_7+label{background-color:var(--bs-teal);border:1px solid var(--bs-teal)}
#header_bg_8+label,#logo_bg_8+label,#sidebar_bg_8+label,#site_theme_8+label{background-color:var(--bs-dark);border:1px solid var(--bs-dark)}
#site_theme_2+label{background-image:-webkit-gradient(linear,left top,right top,from(#00cef9),to(#00e6af));background-image:-webkit-linear-gradient(left,#00cef9,#00e6af);background-image:-moz-linear-gradient(left,#00cef9,#00e6af);background-image:-o-linear-gradient(left,#00cef9,#00e6af);background-image:linear-gradient(to right,#00cef9,#00e6af);background-repeat:repeat-x}
#site_theme_3+label{background-image:-webkit-gradient(linear,left top,right top,from(#9f78ff),to(#32cafe));background-image:-webkit-linear-gradient(left,#9f78ff,#32cafe);background-image:-moz-linear-gradient(left,#9f78ff,#32cafe);background-image:-o-linear-gradient(left,#9f78ff,#32cafe);background-image:linear-gradient(to right,#9f78ff,#32cafe);background-repeat:repeat-x}
#site_theme_4+label{background-image:-webkit-gradient(linear,left top,right top,from(#ff8008),to(#ffc837));background-image:-webkit-linear-gradient(left,#ff8008,#ffc837);background-image:-moz-linear-gradient(left,#ff8008,#ffc837);background-image:-o-linear-gradient(left,#ff8008,#ffc837);background-image:linear-gradient(to right,#ff8008,#ffc837);background-repeat:repeat-x}
#site_theme_5+label{background-image:-webkit-gradient(linear,left top,right top,from(#ff5858),to(#e888b7));background-image:-webkit-linear-gradient(left,#ff5858,#e888b7);background-image:-moz-linear-gradient(left,#ff5858,#e888b7);background-image:-o-linear-gradient(left,#ff5858,#e888b7);background-image:linear-gradient(to right,#ff5858,#e888b7);background-repeat:repeat-x}
#site_theme_6+label{background-image:-webkit-gradient(linear,left top,right top,from(#a376fc),to(#f96f9b));background-image:-webkit-linear-gradient(left,#a376fc,#f96f9b);background-image:-moz-linear-gradient(left,#a376fc,#f96f9b);background-image:-o-linear-gradient(left,#a376fc,#f96f9b);background-image:linear-gradient(to right,#a376fc,#f96f9b);background-repeat:repeat-x}
#site_theme_7+label{background-image:-webkit-gradient(linear,left top,right top,from(#514a9d),to(#24c6dc));background-image:-webkit-linear-gradient(left,#514a9d,#24c6dc);background-image:-moz-linear-gradient(left,#514a9d,#24c6dc);background-image:-o-linear-gradient(left,#514a9d,#24c6dc);background-image:linear-gradient(to right,#514a9d,#24c6dc);background-repeat:repeat-x}
.bs-main-container{position:absolute;overflow:auto;height:100%;width:100%;padding-left:var(--sidebar-width);-webkit-transition:padding 0.3s;transition:padding 0.3s}
.bs-main-container{position:absolute;overflow:auto;height:100%;width:100%;padding-left:var(--sidebar-width);padding-top:var(--header-height);}
@media (max-width:1279.98px){.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}
}@media (max-width:1199.98px){.table-responsive-xl>.table>tbody>tr>td,.table-responsive-xl>.table>tbody>tr>th,.table-responsive-xl>.table>tfoot>tr>td,.table-responsive-xl>.table>tfoot>tr>th,.table-responsive-xl>.table>thead>tr>td,.table-responsive-xl>.table>thead>tr>th{white-space:nowrap}
}@media (max-width:1024px){.bs-left-container{transform:translateX(-100%)}
@ -603,7 +584,7 @@
.lyear-mask-modal{background-color:rgba(var(--bs-dark-rgb),0.5);height:100%;left:0;opacity:1;top:0;visibility:visible;width:100%;z-index:120;position:fixed;-webkit-transition:visibility 0 linear 0.4s,opacity 0.4s cubic-bezier(0.4,0,0.2,1);transition:visibility 0 linear 0.4s,opacity 0.4s cubic-bezier(0.4,0,0.2,1);-webkit-transform:translateZ(0);transform:translateZ(0)}
.bs-left-container-close .bs-left-container{width:var(--sidebar-width) !important}
.bs-left-container-close .bs-top-container,.bs-left-container-close .bs-main-container{padding-left:0px !important}
}@media (min-width:1024px){.bs-left-container-close .nav-drawer>li>a{padding:12px 28px 12px 29px;height:48px}
}@media (min-width:1024px){.bs-left-container-close .nav-drawer>li>a{padding:0;height:48px}
.bs-left-container-close .nav-drawer>li>a span{display:none}
.bs-left-container-close .nav-drawer>li>a:after{content:''}
.bs-left-container-close .ps__rail-x,.bs-left-container-close .ps__rail-y{pointer-events:none}
@ -630,32 +611,18 @@
.pagination .page-item{display:none}
.pagination .page-item:first-child,.pagination .page-item:last-child{display:block}
.lyear-timeline-center .lyear-timeline-item .lyear-timeline-item-action{display:none}
}@media screen and (max-width:430px){.dropdown-skin .dropdown-menu{left:0;width:100%}
.nav-step .nav-step-item p{display:none}
}[data-headerbg='color_2'] .bs-top-container,[data-logobg='color_2'] .sidebar-header,[data-sidebarbg='color_2'] .bs-left-container-info{background-color:var(--bs-success)}
[data-headerbg='color_3'] .bs-top-container,[data-logobg='color_3'] .sidebar-header,[data-sidebarbg='color_3'] .bs-left-container-info{background-color:var(--bs-info)}
[data-headerbg='color_4'] .bs-top-container,[data-logobg='color_4'] .sidebar-header,[data-sidebarbg='color_4'] .bs-left-container-info{background-color:var(--bs-warning)}
[data-headerbg='color_5'] .bs-top-container,[data-logobg='color_5'] .sidebar-header,[data-sidebarbg='color_5'] .bs-left-container-info{background-color:var(--bs-danger)}
[data-headerbg='color_6'] .bs-top-container,[data-logobg='color_6'] .sidebar-header,[data-sidebarbg='color_6'] .bs-left-container-info{background-color:var(--bs-purple)}
[data-headerbg='color_7'] .bs-top-container,[data-logobg='color_7'] .sidebar-header,[data-sidebarbg='color_7'] .bs-left-container-info{background-color:var(--bs-teal)}
[data-headerbg='color_8'] .bs-top-container,[data-logobg='color_8'] .sidebar-header,[data-sidebarbg='color_8'] .bs-left-container-info{background-color:var(--bs-dark)}
[data-headerbg*='color_'] .bs-top-container,[data-headerbg*='color_'] .bs-top-container .topbar-right > li > a,[data-sidebarbg*='color_'] .bs-left-container-info a,[data-sidebarbg*='color_'] .sidebar-footer{color:rgba(var(--bs-white-rgb),.85)}
[data-sidebarbg*='color_'] .nav-drawer .nav-subnav > li.active > a,[data-sidebarbg*='color_'] .nav-drawer .nav-subnav > li > a:hover{color:var(--bs-white)}
[data-headerbg*='color_'] .lyear-aside-toggler .lyear-toggler-bar{background-color:var(--bs-white)}
[data-sidebarbg*='color_'] .nav-drawer > .active > a{border-color:rgba(var(--bs-white-rgb),.35);background-color:rgba(var(--bs-white-rgb),.075)!important}
[data-sidebarbg*='color_'] .nav > li > a:hover{background-color:rgba(var(--bs-white-rgb),.035)}
[data-sidebarbg*='color_'] .nav-drawer > .active > a:hover,[data-sidebarbg*='color_'] .nav-drawer > .active > a:focus,[data-sidebarbg*='color_'] .nav-drawer > .active > a:active{border-color:rgba(var(--bs-white-rgb),.35)}
[data-headerbg*='color_'] .navbar-right > li > a{color:var(--bs-white)}
body[data-theme='dark'],body[data-theme='dark'] .jconfirm .jconfirm-box,[data-theme='dark'] #lyear-loading{background-color:#282E38;color:var(--bs-gray-400)}
[data-theme='dark'] .nav-tabs .nav-link,[data-theme='dark'] .navbar-right a,[data-theme='dark'] .lyear-notifications span,[data-theme='dark'] .lyear-skin-title p,[data-theme='dark'] .form-control,[data-theme='dark'] .form-control-plaintext,[data-theme='dark'] .form-control,[data-theme='dark'] .form-select,[data-theme='dark'] .input-group-text,[data-theme='dark'] .dropdown-item,[data-theme='dark'] .lyear-divider,[data-theme='dark'] [class*='badge-outline-'],[data-theme='dark'] .breadcrumb-item.active,[data-theme='dark'] .breadcrumb-item+.breadcrumb-item::before,[data-theme='dark'] .page-link,[data-theme='dark'] .popover-header,[data-theme='dark'] .popover-body,[data-theme='dark'] .toast-header,[data-theme|='translucent'] .bg-body{color:var(--bs-gray-400)}
}@media screen and (max-width:430px){.nav-step .nav-step-item p{display:none}
}body[data-theme='dark'],body[data-theme='dark'] .jconfirm .jconfirm-box,[data-theme='dark'] #lyear-loading{background-color:#282E38;color:var(--bs-gray-400)}
[data-theme='dark'] .nav-tabs .nav-link,[data-theme='dark'] .navbar-right a,[data-theme='dark'] .lyear-notifications span,[data-theme='dark'] .lyear-skin-title p,[data-theme='dark'] .form-control,[data-theme='dark'] .form-control-plaintext,[data-theme='dark'] .form-control,[data-theme='dark'] .form-select,[data-theme='dark'] .input-group-text,[data-theme='dark'] .dropdown-item,[data-theme='dark'] .lyear-divider,[data-theme='dark'] [class*='badge-outline-'],[data-theme='dark'] .breadcrumb-item.active,[data-theme='dark'] .breadcrumb-item+.breadcrumb-item::before,[data-theme='dark'] .page-link,[data-theme='dark'] .popover-header,[data-theme='dark'] .popover-body,[data-theme='dark'] .toast-header{color:var(--bs-gray-400)}
[data-theme='dark'] .lyear-toggler-bar{background-color:var(--bs-gray-400)}
[data-theme='dark'] .sidebar-header,[data-theme='dark'] .bs-left-container-info,[data-theme='dark'] .bs-top-container,[data-theme='dark'] .card,[data-theme='dark'] .fwinmask,[data-theme='dark'] .dtheme,[data-theme='dark'] .edui-default .edui-editor,[data-theme='dark'] .edui-default .edui-editor-toolbarboxouter,[data-theme='dark'] .nav-tabs .nav-link.active,[data-theme='dark'] .nav-tabs .nav-item.show .nav-link,[data-theme='dark'] .bootstrap-table.fullscreen{background-color:#313844}
[data-theme='dark'] .lyear-dragging-tab > a,[data-theme|='translucent'] .lyear-dragging-tab > a{background-color:transparent!important}
[data-theme='dark'] .bs-left-container,[data-theme='dark'] .fwinmask,[data-theme|='translucent'] .bs-left-container{-webkit-box-shadow:0px 0px 1px rgba(var(--bs-white-rgb),.95);-moz-box-shadow:0px 0px 1px rgba(var(--bs-white-rgb),.95);box-shadow:0px 0px 1px rgba(var(--bs-white-rgb),.95)}
[data-theme='dark'] .sidebar-header,[data-theme='dark'] .bs-top-container,[data-theme|='translucent'] .sidebar-header,[data-theme|='translucent'] .bs-top-container{-webkit-box-shadow:0 1px 1px -1px rgba(var(--bs-white-rgb),0.75);-moz-box-shadow:0 1px 1px -1px rgba(var(--bs-white-rgb),0.75);box-shadow:0 1px 1px -1px rgba(var(--bs-white-rgb),0.75)}
[data-theme='dark'] .card-header,[data-theme='dark'] .table>tbody>tr>td,[data-theme='dark'] .table>tbody>tr>th,[data-theme='dark'] .table>tfoot>tr>td,[data-theme='dark'] .table>tfoot>tr>th,[data-theme='dark'] .table>thead>tr>td,[data-theme='dark'] .table>thead>tr>th,[data-theme='dark'] .border-example,[data-theme='dark'] .border-example-row,[data-theme|='translucent'] .table>tbody>tr>td,[data-theme|='translucent'] .table>tbody>tr>th,[data-theme|='translucent'] .table>tfoot>tr>td,[data-theme|='translucent'] .table>tfoot>tr>th,[data-theme|='translucent'] .table>thead>tr>td,[data-theme|='translucent'] .table>thead>tr>th,[data-theme|='translucent'] .border-example,[data-theme|='translucent'] .border-example-row,[data-theme='dark'] #header_bg_8+label,[data-theme='dark'] #logo_bg_8+label,[data-theme='dark'] #sidebar_bg_8+label,[data-theme='dark'] #site_theme_8+label,[data-theme='dark'] .lyear-divider::before,[data-theme='dark'] .lyear-divider::after,[data-theme='dark'] [class*='badge-outline-'],[data-theme='dark'] .card>.list-group,[data-theme='dark'] .list-group-item,[data-theme|='translucent'] .list-group-item,[data-theme='dark'] .card-footer,[data-theme='dark'] .modal-header,[data-theme='dark'] .modal-footer,[data-theme|='translucent'] .modal-header,[data-theme|='translucent'] .modal-footer,[data-theme='dark'] .offcanvas-start,[data-theme='dark'] .offcanvas-end,[data-theme='dark'] .offcanvas-top,[data-theme='dark'] .offcanvas-bottom,[data-theme='dark'] .popover-header,[data-theme='dark'] .edui-default .edui-editor,[data-theme='dark'] .edui-default .edui-editor-toolbarboxouter,[data-theme='dark'] .sidebar-footer{border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .table>:not(:first-child),[data-theme|='translucent'] .table>:not(:first-child){border-top-color:rgba(var(--bs-white-rgb),0.125) !important}
[data-theme='dark'] .dropdown-menu,[data-theme='dark'] .modal-content,[data-theme='dark'] .popover{background-color:#292F39;border:none;-webkit-box-shadow:0 0 5px rgba(var(--bs-black-rgb),0.75);-moz-box-shadow:0px 0px 5px rgba(var(--bs-black-rgb),0.75);box-shadow:0 0 5px rgba(var(--bs-black-rgb),0.75)}
[data-theme='dark'] .lyear-dragging-tab > a{background-color:transparent!important}
[data-theme='dark'] .bs-left-container,[data-theme='dark'] .fwinmask{-webkit-box-shadow:0px 0px 1px rgba(var(--bs-white-rgb),.95);-moz-box-shadow:0px 0px 1px rgba(var(--bs-white-rgb),.95);box-shadow:0px 0px 1px rgba(var(--bs-white-rgb),.95)}
[data-theme='dark'] .sidebar-header,[data-theme='dark'] .bs-top-container{-webkit-box-shadow:0 1px 1px -1px rgba(var(--bs-white-rgb),0.75);-moz-box-shadow:0 1px 1px -1px rgba(var(--bs-white-rgb),0.75);box-shadow:0 1px 1px -1px rgba(var(--bs-white-rgb),0.75)}
[data-theme='dark'] .card-header,[data-theme='dark'] .table>tbody>tr>td,[data-theme='dark'] .table>tbody>tr>th,[data-theme='dark'] .table>tfoot>tr>td,[data-theme='dark'] .table>tfoot>tr>th,[data-theme='dark'] .table>thead>tr>td,[data-theme='dark'] .table>thead>tr>th,[data-theme='dark'] .border-example,[data-theme='dark'] .border-example-row,[data-theme='dark'] .lyear-divider::before,[data-theme='dark'] .lyear-divider::after,[data-theme='dark'] [class*='badge-outline-'],[data-theme='dark'] .card>.list-group,[data-theme='dark'] .list-group-item,[data-theme='dark'] .card-footer,[data-theme='dark'] .modal-header,[data-theme='dark'] .modal-footer,[data-theme='dark'] .offcanvas-start,[data-theme='dark'] .offcanvas-end,[data-theme='dark'] .offcanvas-top,[data-theme='dark'] .offcanvas-bottom,[data-theme='dark'] .popover-header,[data-theme='dark'] .edui-default .edui-editor,[data-theme='dark'] .edui-default .edui-editor-toolbarboxouter,[data-theme='dark'] .sidebar-footer{border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .table>:not(:first-child){border-top-color:rgba(var(--bs-white-rgb),0.125) !important}
[data-theme='dark'] .document-header,[data-theme='dark'] .input-search.focus .form-search{color:#fff;background-color:#292F39;}
[data-theme='dark'] .layui-table-tool-panel,[data-theme='dark'] .layui-layer,[data-theme='dark'] .notify,[data-theme='dark'] .dropdown-menu,[data-theme='dark'] .modal-content,[data-theme='dark'] .popover{background-color:#292F39;border:none;-webkit-box-shadow:0 0 5px rgba(var(--bs-black-rgb),0.75);-moz-box-shadow:0px 0px 5px rgba(var(--bs-black-rgb),0.75);box-shadow:0 0 5px rgba(var(--bs-black-rgb),0.75)}
[data-theme='dark'] .offcanvas-start,[data-theme='dark'] .offcanvas-end,[data-theme='dark'] .offcanvas-top,[data-theme='dark'] .offcanvas-bottom,[data-theme='dark'] .popover-header{background-color:#292F39}
[data-theme='dark'] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,[data-theme='dark'] .bs-popover-end>.popover-arrow::after{border-right-color:#292F39}
[data-theme='dark'] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,[data-theme='dark'] .bs-popover-top>.popover-arrow::after{border-top-color:#292F39}
@ -665,35 +632,32 @@
[data-theme='dark'] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,[data-theme='dark'] .bs-popover-top>.popover-arrow::before{border-top-color:#191924}
[data-theme='dark'] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,[data-theme='dark'] .bs-popover-bottom>.popover-arrow::before{border-bottom-color:#191924}
[data-theme='dark'] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,[data-theme='dark'] .bs-popover-start>.popover-arrow::before{border-left-color:#191924}
[data-theme='dark'] .dropdown-menu .dropdown-item:focus,[data-theme='dark'] .dropdown-menu .dropdown-item:hover,[data-theme='dark'] .dropdown-menu .dropdown-item.active,[data-theme='dark'] .dropdown-menu .dropdown-item.active:focus,[data-theme='dark'] .dropdown-menu .dropdown-item.active:hover,[data-theme|='translucent'] .dropdown-menu .dropdown-item:focus,[data-theme|='translucent'] .dropdown-menu .dropdown-item:hover,[data-theme|='translucent'] .dropdown-menu .dropdown-item.active,[data-theme|='translucent'] .dropdown-menu .dropdown-item.active:focus,[data-theme|='translucent'] .dropdown-menu .dropdown-item.active:hover,[data-theme='dark'] .progress,[data-theme|='translucent'] .progress,[data-theme='dark'] .border-example-position-utils .position-relative,[data-theme|='translucent'] .border-example-position-utils .position-relative,[data-theme='dark'] .card>.card-header+.callout{background-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .dropdown-menu .dropdown-item:focus,[data-theme='dark'] .dropdown-menu .dropdown-item:hover,[data-theme='dark'] .dropdown-menu .dropdown-item.active,[data-theme='dark'] .dropdown-menu .dropdown-item.active:focus,[data-theme='dark'] .dropdown-menu .dropdown-item.active:hover,[data-theme='dark'] .progress,[data-theme='dark'] .border-example-position-utils .position-relative,[data-theme='dark'] .card>.card-header+.callout{background-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .table{--bs-table-striped-color:var(--bs-gray-400);--bs-table-striped-bg:rgba(var(--bs-white-rgb),0.075);--bs-table-active-color:var(--bs-gray-400);--bs-table-active-bg:rgba(var(--bs-black-rgb),.0375);--bs-table-hover-color:var(--bs-gray-400);--bs-table-hover-bg:rgba(var(--bs-white-rgb),0.075);color:var(--bs-gray-400);border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .callout{background:rgba(var(--bs-white-rgb),0.075);border-top-color:rgba(var(--bs-white-rgb),0.125);border-right-color:rgba(var(--bs-white-rgb),0.125);border-bottom-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] pre,[data-theme='dark'] .list-group-item{background:rgba(var(--bs-white-rgb),0.075);color:var(--bs-gray-400)}
[data-theme='dark'] .border-example-row .row>.col,[data-theme='dark'] .border-example-row .row>[class^=col-],[data-theme='dark'] .img-thumbnail,[data-theme='dark'] .form-control,[data-theme='dark'] .form-check-input,[data-theme='dark'] .form-select,[data-theme='dark'] .input-group-text,[data-theme='dark'] .page-link,[data-theme='dark'] .border-example-border-utils [class^="border"],[data-theme='dark'] .border-example-ratios .ratio,[data-theme|='translucent'] .border-example-row .row>.col,[data-theme|='translucent'] .border-example-row .row>[class^=col-],[data-theme|='translucent'] .img-thumbnail,[data-theme|='translucent'] .form-control,[data-theme|='translucent'] .form-check-input,[data-theme|='translucent'] .form-select,[data-theme|='translucent'] .input-group-text,[data-theme|='translucent'] .page-link,[data-theme|='translucent'] .border-example-border-utils [class^="border"],[data-theme|='translucent'] .border-example-ratios .ratio{background-color:rgba(var(--bs-white-rgb),0.075);border:1px solid rgba(var(--bs-white-rgb),0.125)}
[data-theme|='translucent'] .nav-stacked>li>a:hover{background:rgba(var(--bs-white-rgb),.35);color:var(--bs-primary)}
[data-theme='dark'] .border-example-row .row>.col,[data-theme='dark'] .border-example-row .row>[class^=col-],[data-theme='dark'] .img-thumbnail,[data-theme='dark'] .form-control,[data-theme='dark'] .form-check-input,[data-theme='dark'] .form-select,[data-theme='dark'] .input-group-text,[data-theme='dark'] .page-link,[data-theme='dark'] .border-example-border-utils [class^="border"],[data-theme='dark'] .border-example-ratios .ratio{background-color:rgba(var(--bs-white-rgb),0.075);border:1px solid rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .form-control:focus{border-color:rgba(var(--bs-white-rgb),0.25);box-shadow:0 0 0 0.25rem rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .form-check-input:checked,[data-theme='dark'] .form-check-input[type=checkbox]:indeterminate,[data-theme|='translucent'] .form-check-input:checked,[data-theme|='translucent'] .form-check-input[type=checkbox]:indeterminate{background-color:var(--bs-primary);border-color:var(--bs-primary)}
[data-theme='dark'] .form-select:disabled,[data-theme='dark'] .form-control:disabled,[data-theme='dark'] .form-control[readonly]{color:var(--bs-gray-600);background-color:rgba(var(--bs-white-rgb),.15)}
[data-theme='dark'] .form-check-input:checked,[data-theme='dark'] .form-check-input[type=checkbox]:indeterminate{background-color:var(--bs-primary);border-color:var(--bs-primary)}
[data-theme='dark'] .form-check-input[type=checkbox]:indeterminate,[data-theme='dark'] .form-select:disabled,[data-theme='dark'] .form-control:disabled,[data-theme='dark'] .form-control[readonly]{color:var(--bs-gray-600);background-color:rgba(var(--bs-white-rgb),.15)}
[data-theme='dark'] .form-select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ced4da' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")}
[data-theme='dark'] .form-select:disabled{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")}
[data-theme='dark'] .form-range::-webkit-slider-runnable-track{background-color:rgba(var(--bs-white-rgb),0.075)}
[data-theme='dark'] .form-range::-moz-range-track{background-color:rgba(var(--bs-white-rgb),0.075)}
[data-theme|='translucent'] .form-range::-webkit-slider-runnable-track{background-color:rgba(var(--bs-white-rgb),0.075)}
[data-theme|='translucent'] .form-range::-moz-range-track{background-color:rgba(var(--bs-white-rgb),0.075)}
[data-theme='dark'] .dropdown-divider,[data-theme|='translucent'] .dropdown-divider{border-top-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] hr.dropdown-divider,[data-theme|='translucent'] hr.dropdown-divider,[data-theme='dark'] .card-footer{background-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .dropdown-divider{border-top-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] hr.dropdown-divider,[data-theme='dark'] .card-footer{background-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .form-control.is-valid,[data-theme='dark'] .was-validated .form-control:valid,[data-theme='dark'] .form-select.is-valid,[data-theme='dark'] .was-validated .form-select:valid{border-color:var(--bs-success)}
[data-theme='dark'] .form-control.is-invalid,[data-theme='dark'] .was-validated .form-control:invalid,[data-theme='dark'] .form-select.is-invalid,[data-theme='dark'] .was-validated .form-select:invalid{border-color:var(--bs-danger)}
[data-theme='dark'] .form-select.is-invalid:not([multiple]):not([size]),[data-theme='dark'] .form-select.is-invalid:not([multiple])[size="1"],[data-theme='dark'] .was-validated .form-select:invalid:not([multiple]):not([size]),[data-theme='dark'] .was-validated .form-select:invalid:not([multiple])[size="1"]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ced4da' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e")}
[data-theme='dark'] .accordion-button{color:var(--bs-gray-400);background-color:transparent}
[data-theme='dark'] .accordion-button:not(.collapsed),[data-theme|='translucent'] .accordion-button:not(.collapsed){box-shadow:inset 0 -1px 0 rgba(var(--bs-white-rgb),0.125);background-color:rgba(var(--bs-white-rgb),0.075)}
[data-theme='dark'] .accordion-item,[data-theme|='translucent'] .accordion-item{background-color:rgba(var(--bs-white-rgb),0.075);border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .accordion-button::after,[data-theme|='translucent'] .accordion-button::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced4da'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}
[data-theme='dark'] .accordion-button:not(.collapsed){box-shadow:inset 0 -1px 0 rgba(var(--bs-white-rgb),0.125);background-color:rgba(var(--bs-white-rgb),0.075)}
[data-theme='dark'] .accordion-item{background-color:rgba(var(--bs-white-rgb),0.075);border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .accordion-button::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced4da'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}
[data-theme='dark'] .btn-outline-dark{color:var(--bs-pure-black);border-color:var(--bs-pure-black)}
[data-theme='dark'] .border-dark{border-color:var(--bs-pure-black)!important}
[data-theme='dark'] .text-dark{color:var(--bs-pure-black)!important}
[data-theme='dark'] .btn-close,[data-theme|='translucent'] .btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced4da'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}
[data-theme='dark'] .list-group-item.active,[data-theme|='translucent'] .list-group-item.active{border-color:rgba(var(--bs-white-rgb),0.125);background-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .btn-close{background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ced4da'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}
[data-theme='dark'] .list-group-item.active{border-color:rgba(var(--bs-white-rgb),0.125);background-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .list-group-item.disabled,[data-theme='dark'] .list-group-item:disabled,[data-theme='dark'] .nav-tabs .nav-link.disabled{color:var(--bs-gray-600)}
[data-theme='dark'] .navbar.navbar-light.bg-light .form-control{border-color:var(--bs-gray-300)}
[data-theme='dark'] .page-link:hover,[data-theme='dark'] .page-link:focus{color:var(--bs-gray-200);background-color:rgba(var(--bs-white-rgb),0.125)}
@ -701,132 +665,45 @@
[data-theme='dark'] .page-item.disabled .page-link{background-color:rgba(var(--bs-white-rgb),0.075);border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .toast{border:none;background-color:rgba(41,47,57,.85)}
[data-theme='dark'] .toast-header{background-color:rgba(41,47,57,.85)}
[data-theme='dark'] .border,[data-theme='dark'] .border-start,[data-theme='dark'] .border-top,[data-theme='dark'] .border-end,[data-theme='dark'] .border-bottom,[data-theme|='translucent'] .border,[data-theme|='translucent'] .border-start,[data-theme|='translucent'] .border-top,[data-theme|='translucent'] .border-end,[data-theme|='translucent'] .border-bottom{border-color:rgba(var(--bs-white-rgb),0.125)!important}
[data-theme='dark'] .border,[data-theme='dark'] .border-start,[data-theme='dark'] .border-top,[data-theme='dark'] .border-end,[data-theme='dark'] .border-bottom{border-color:rgba(var(--bs-white-rgb),0.125)!important}
[data-theme='dark'] .shadow-sm{box-shadow:0 .125rem .25rem rgba(var(--bs-black-rgb),1)!important}
[data-theme='dark'] .shadow{box-shadow:0 .5rem 1rem rgba(var(--bs-black-rgb),1)!important}
[data-theme='dark'] .shadow-lg{box-shadow:0 1rem 3rem rgba(var(--bs-black-rgb),1)!important}
[data-theme='dark'] .card-shadowed,[data-theme='dark'] .card-hover-shadow:hover{box-shadow:0 1rem 3rem rgba(var(--bs-black-rgb),1)!important}
[data-theme='dark'] .datepicker-dropdown:before,[data-theme='dark'] .datepicker-dropdown:after{border-bottom-color:#292F39}
[data-theme='dark'] .datepicker-dropdown.datepicker-orient-top:before,[data-theme='dark'] .datepicker-dropdown.datepicker-orient-top:after{border-top-color:#292F39}
[data-theme='dark'] .datepicker.datepicker-dropdown,[data-theme|='translucent'] .datepicker.datepicker-dropdown{color:var(--bs-white)}
[data-theme='dark'] .datepicker.datepicker-dropdown{color:var(--bs-white)}
[data-theme='dark'] .text-muted .dcolor{color:rgba(var(--bs-secondary-rgb),1)}
[data-theme='dark'] .nav-link,[data-theme='dark'] .dcolor,[data-theme='dark'] .nav-stacked>li>a{color:#fff}
[data-theme='dark'] .dcolor:hover{color:var(--bs-primary)}
[data-theme='dark'] .nav-pills .nav-link.active{background:rgba(var(--bs-white-rgb),.65)}
[data-theme='dark'] .nav-link:hover,[data-theme='dark'] .nav-link:focus,[data-theme='dark'] .nav-stacked>li>a:hover{background:rgba(var(--bs-white-rgb),.35);color:#fff}
[data-theme='dark'] .datepicker table tr td.day:hover,[data-theme='dark'] .datepicker table tr td.focused,[data-theme|='translucent'] .datepicker table tr td.day:hover,[data-theme|='translucent'] .datepicker table tr td.focused,[data-theme|='translucent'] .datepicker table tr td span.focused,[data-theme|='translucent'] .datepicker table tr td span:hover{background-color:rgba(var(--bs-white-rgb),.2)}
[data-theme='dark'] .datepicker table tr td.range:hover,[data-theme|='translucent'] .datepicker table tr td.range:hover{color:var(--bs-white)}
[data-theme='dark'] .datepicker table tr td.day:hover,[data-theme='dark'] .datepicker table tr td.focused{background-color:rgba(var(--bs-white-rgb),.2)}
[data-theme='dark'] .datepicker table tr td.range:hover{color:var(--bs-white)}
[data-theme='dark'] .form-control::-webkit-file-upload-button{color:#fff;background-color:rgba(var(--bs-white-rgb),.075)}
[data-theme='dark'] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:rgba(var(--bs-white-rgb),.125)}
body[data-theme|='translucent'],[data-theme|='translucent'] .card.card-fullscreen{color:rgba(var(--bs-white-rgb),.85);background-size:cover;background-attachment:fixed}
body[data-theme|='translucent'] .jconfirm .jconfirm-box{background:rgba(var(--bs-black-rgb),.125);backdrop-filter:blur(10px)}
body[data-theme|='translucent'] caption,body[data-theme|='translucent'] .figure-caption,body[data-theme|='translucent'] .lyear-timeline-date time,body[data-theme|='translucent'] .lyear-timeline-item-action{color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent'] .card.card-fullscreen{backdrop-filter:blur(10px)}
[data-theme|='translucent'] .fwinmask,[data-theme|='translucent'] .edui-default .edui-editor,[data-theme|='translucent'] .edui-default .edui-editor-toolbarboxouter,[data-theme|='translucent'] .modal-content{background:rgba(var(--bs-black-rgb),.125);backdrop-filter:blur(10px)}
body[data-theme='translucent-blue'],[data-theme='translucent-blue'] .popover,[data-theme='translucent-blue'] .dropdown-menu,[data-theme='translucent-blue'] .offcanvas,[data-theme='translucent-blue'] #lyear-loading,[data-theme='translucent-blue'] .bootstrap-table.fullscreen{background-image:-webkit-gradient(linear,left top,right top,from(#9f78ff),to(#32cafe));background-image:-webkit-linear-gradient(left,#9f78ff,#32cafe);background-image:-moz-linear-gradient(left,#9f78ff,#32cafe);background-image:-o-linear-gradient(left,#9f78ff,#32cafe);background-image:linear-gradient(to right,#9f78ff,#32cafe);background-repeat:repeat-x}
body[data-theme='translucent-red'],[data-theme='translucent-red'] .popover,[data-theme='translucent-red'] .dropdown-menu,[data-theme='translucent-red'] .offcanvas,[data-theme='translucent-red'] #lyear-loading,[data-theme='translucent-red'] .bootstrap-table.fullscreen{background-image:-webkit-gradient(linear,left top,right top,from(#ff5858),to(#e888b7));background-image:-webkit-linear-gradient(left,#ff5858,#e888b7);background-image:-moz-linear-gradient(left,#ff5858,#e888b7);background-image:-o-linear-gradient(left,#ff5858,#e888b7);background-image:linear-gradient(to right,#ff5858,#e888b7);background-repeat:repeat-x}
body[data-theme='translucent-green'],[data-theme='translucent-green'] .popover,[data-theme='translucent-green'] .dropdown-menu,[data-theme='translucent-green'] .offcanvas,[data-theme='translucent-green'] #lyear-loading,[data-theme='translucent-green'] .bootstrap-table.fullscreen{background-image:-webkit-gradient(linear,left top,right top,from(#00cef9),to(#00e6af));background-image:-webkit-linear-gradient(left,#00cef9,#00e6af);background-image:-moz-linear-gradient(left,#00cef9,#00e6af);background-image:-o-linear-gradient(left,#00cef9,#00e6af);background-image:linear-gradient(to right,#00cef9,#00e6af);background-repeat:repeat-x}
body[data-theme='translucent-yellow'],[data-theme='translucent-yellow'] .popover,[data-theme='translucent-yellow'] .dropdown-menu,[data-theme='translucent-yellow'] .offcanvas,[data-theme='translucent-yellow'] #lyear-loading,[data-theme='translucent-yellow'] .bootstrap-table.fullscreen{background-image:-webkit-gradient(linear,left top,right top,from(#ff8008),to(#ffc837));background-image:-webkit-linear-gradient(left,#ff8008,#ffc837);background-image:-moz-linear-gradient(left,#ff8008,#ffc837);background-image:-o-linear-gradient(left,#ff8008,#ffc837);background-image:linear-gradient(to right,#ff8008,#ffc837);background-repeat:repeat-x}
body[data-theme='translucent-cyan'],[data-theme='translucent-cyan'] .popover,[data-theme='translucent-cyan'] .dropdown-menu,[data-theme='translucent-cyan'] .offcanvas,[data-theme='translucent-cyan'] #lyear-loading,[data-theme='translucent-cyan'] .bootstrap-table.fullscreen{background-image:-webkit-gradient(linear,left top,right top,from(#514a9d),to(#24c6dc));background-image:-webkit-linear-gradient(left,#514a9d,#24c6dc);background-image:-moz-linear-gradient(left,#514a9d,#24c6dc);background-image:-o-linear-gradient(left,#514a9d,#24c6dc);background-image:linear-gradient(to right,#514a9d,#24c6dc);background-repeat:repeat-x}
body[data-theme='translucent-pink'],[data-theme='translucent-pink'] .popover,[data-theme='translucent-pink'] .dropdown-menu,[data-theme='translucent-pink'] .offcanvas,[data-theme='translucent-pink'] #lyear-loading,[data-theme='translucent-pink'] .bootstrap-table.fullscreen{background-image:-webkit-gradient(linear,left top,right top,from(#a376fc),to(#f96f9b));background-image:-webkit-linear-gradient(left,#a376fc,#f96f9b);background-image:-moz-linear-gradient(left,#a376fc,#f96f9b);background-image:-o-linear-gradient(left,#a376fc,#f96f9b);background-image:linear-gradient(to right,#a376fc,#f96f9b);background-repeat:repeat-x}
[data-theme|='translucent'] .datepicker-dropdown:before,[data-theme|='translucent'] .datepicker-dropdown:after{border-bottom-color:transparent}
[data-theme|='translucent'] .datepicker-dropdown.datepicker-orient-top:before,[data-theme|='translucent'] .datepicker-dropdown.datepicker-orient-top:after{border-top-color:transparent}
[data-theme|='translucent'] .sidebar-header,[data-theme|='translucent'] .nav-tabs .nav-link.active,[data-theme|='translucent'] .nav-tabs .nav-item.show .nav-link{background-color:transparent}
[data-theme|='translucent'] .bs-left-container-info,[data-theme|='translucent'] .bs-top-container,[data-theme|='translucent'] .fwinmask,[data-theme|='translucent'] .dtheme,[data-theme|='translucent'] .card,[data-theme|='translucent'] .card>.card-header+.callout{background-color:rgba(var(--bs-black-rgb),.175)}
[data-theme|='translucent']::-webkit-input-placeholder{color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent']:-moz-placeholder{color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent']::-moz-placeholder{color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent']:-ms-input-placeholder{color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent'] .sidebar-footer{border-color:rgba(var(--bs-white-rgb),.075)}
[data-theme|='translucent'] .lyear-aside-toggler .lyear-toggler-bar{background-color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent'] .card-header,[data-theme|='translucent'] .card-footer,[data-theme|='translucent'] .lyear-divider::before,[data-theme|='translucent'] .lyear-divider::after,[data-theme|='translucent'] .card>.list-group,[data-theme|='translucent'] .lyear-notifications-title,[data-theme|='translucent'] .nav-tabs,[data-theme|='translucent'] .edui-default .edui-editor,[data-theme|='translucent'] .edui-default .edui-editor-toolbarboxouter,[data-theme|='translucent'] .popover-header{border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme|='translucent'] .lyear-close-tab,[data-theme|='translucent'] .nav-tabs .nav-link,[data-theme|='translucent'] .nav-tabs .nav-link.active,[data-theme|='translucent'] .nav-tabs .nav-item.show .nav-link
[data-theme|='translucent'] .navbar-right a,[data-theme|='translucent'] .lyear-notifications span,[data-theme|='translucent'] .lyear-skin-title p,[data-theme|='translucent'] .form-control,[data-theme|='translucent'] .form-control-plaintext,[data-theme|='translucent'] .form-control,[data-theme|='translucent'] .form-select,[data-theme|='translucent'] .input-group-text,[data-theme|='translucent'] .dropdown-item,[data-theme|='translucent'] .lyear-divider,[data-theme|='translucent'] [class*='badge-outline-'],[data-theme|='translucent'] .breadcrumb-item.active,[data-theme|='translucent'] .breadcrumb-item+.breadcrumb-item::before,[data-theme|='translucent'] .page-link,[data-theme|='translucent'] .popover-header,[data-theme|='translucent'] .popover-body,[data-theme|='translucent'] .toast-header,[data-theme|='translucent'] pre,[data-theme|='translucent'] #lyear-loading,[data-theme|='translucent'] .list-group-item,[data-theme|='translucent'] .card-actions>li>a,[data-theme|='translucent'] .lyear-notifications-title a,[data-theme|='translucent'] .navbar-right a,[data-theme|='translucent'] .navbar-light .navbar-brand,[data-theme|='translucent'] .navbar-light .navbar-nav .nav-link.active,[data-theme|='translucent'] .navbar-light .navbar-nav .show>.nav-link,[data-theme|='translucent'] .navbar-light .navbar-nav .nav-link{color:rgba(var(--bs-white-rgb),.85)}
[data-theme|='translucent'] pre,[data-theme|='translucent'] .list-group-item{background-color:rgba(var(--bs-white-rgb),.075)}
[data-theme|='translucent'] .callout{border-top-color:rgba(var(--bs-white-rgb),.075);border-right-color:rgba(var(--bs-white-rgb),.075);border-bottom-color:rgba(var(--bs-white-rgb),.075)}
[data-theme|='translucent'] .card-footer{background-color:transparent}
[data-theme|='translucent'] .form-control,[data-theme|='translucent'] .form-check-input,[data-theme|='translucent'] .form-select,[data-theme|='translucent'] .input-group-text,[data-theme|='translucent'] .page-link,[data-theme|='translucent'] .border-example-border-utils [class^="border"],[data-theme|='translucent'] div.tagsinput,[data-theme='dark'] div.tagsinput{background-color:rgba(var(--bs-white-rgb),0.075);border:1px solid rgba(var(--bs-white-rgb),0.125)}
[data-theme|='translucent'] .table{--bs-table-striped-color:rgba(var(--bs-white-rgb),.85);--bs-table-striped-bg:rgba(var(--bs-white-rgb),0.075);--bs-table-active-color:rgba(var(--bs-white-rgb),.85);--bs-table-active-bg:rgba(var(--bs-black-rgb),.0375);--bs-table-hover-color:rgba(var(--bs-white-rgb),.85);--bs-table-hover-bg:rgba(var(--bs-white-rgb),0.075);color:rgba(var(--bs-white-rgb),.85);border-color:rgba(var(--bs-white-rgb),0.125)}
[data-theme|='translucent'] .form-text,[data-theme|='translucent'] .nav-pills .nav-link.active,[data-theme|='translucent'] .blockquote-footer,[data-theme|='translucent'] .nav-tabs .nav-link.disabled,[data-theme|='translucent'] .nav-link.disabled,[data-theme|='translucent'] .list-group-item.disabled,[data-theme|='translucent'] .list-group-item:disabled,[data-theme|='translucent'] .nav-tabs .nav-link.disabled,[data-theme|='translucent'] .navbar-light .navbar-nav .nav-link.disabled{color:rgba(var(--bs-white-rgb),.65)}
[data-theme|='translucent'] .text-body,[data-theme|='translucent'] .text-muted{color:rgba(var(--bs-white-rgb),.45)!important}
[data-theme|='translucent'] .form-select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f8f9fa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")}
[data-theme|='translucent'] .form-select:disabled{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e9ecef' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")}
[data-theme='dark'] .form-select[multiple],[data-theme='dark'] .form-select[size]:not([size="1"]),[data-theme|='translucent'] .form-select[multiple],[data-theme|='translucent'] .form-select[size]:not([size="1"]){background-image:none}
[data-theme|='translucent'] .form-select:not([multiple]) option{background-color:var(--bs-gray-500)}
[data-theme|='translucent'] .form-select[size]:not([size="1"]) option{background-color:transparent}
[data-theme|='translucent'] .form-select.is-invalid:not([multiple]):not([size]),[data-theme|='translucent'] .form-select.is-invalid:not([multiple])[size="1"],[data-theme|='translucent'] .was-validated .form-select:invalid:not([multiple]):not([size]),[data-theme|='translucent'] .was-validated .form-select:invalid:not([multiple])[size="1"]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ced4da' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e")}
[data-theme|='translucent'] .accordion-button{color:rgba(var(--bs-white-rgb),.85);background-color:transparent}
[data-theme|='translucent'] .modal-content,[data-theme|='translucent'] .popover,[data-theme|='translucent'] .fwinmask,[data-theme|='translucent'] .dropdown-menu,[data-theme|='translucent'] .offcanvas{border:none;-webkit-box-shadow:0 0 4px rgba(var(--bs-black-rgb),.175);-moz-box-shadow:0 0 4px rgba(var(--bs-black-rgb),.175);box-shadow:0 0 4px rgba(var(--bs-black-rgb),.175)}
[data-theme|='translucent'] .popover-header{background-color:transparent}
[data-theme|='translucent'] .toast-header{background-color:rgb(var(--bs-white-rgb),.175)}
[data-theme|='translucent'] .toast{border:none;background-color:rgb(var(--bs-white-rgb),.175)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,[data-theme|='translucent'] .bs-popover-end>.popover-arrow::after{border-right-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,[data-theme|='translucent'] .bs-popover-top>.popover-arrow::after{border-top-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,[data-theme|='translucent'] .bs-popover-bottom>.popover-arrow::after{border-bottom-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,[data-theme|='translucent'] .bs-popover-start>.popover-arrow::after{border-left-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,[data-theme|='translucent'] .bs-popover-end>.popover-arrow::before{border-right-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,[data-theme|='translucent'] .bs-popover-top>.popover-arrow::before{border-top-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,[data-theme|='translucent'] .bs-popover-bottom>.popover-arrow::before,[data-theme|='translucent'] .bs-popover-bottom .popover-header::before,[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before{border-bottom-color:rgb(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,[data-theme|='translucent'] .bs-popover-start>.popover-arrow::before{border-left-color:rgb(var(--bs-white-rgb),.375)}
[data-theme='dark'] .list-group-item-primary,[data-theme|='translucent'] .list-group-item-primary{color:#084298;background-color:rgba(207,226,255,.375)}
[data-theme='dark'] .list-group-item-secondary,[data-theme|='translucent'] .list-group-item-secondary{color:#41464b;background-color:rgba(226,227,229,.375)}
[data-theme='dark'] .list-group-item-success,[data-theme|='translucent'] .list-group-item-success{color:#0f5132;background-color:rgba(209,231,221,.375)}
[data-theme='dark'] .list-group-item-danger,[data-theme|='translucent'] .list-group-item-danger{color:#842029;background-color:rgba(248,215,218,.375)}
[data-theme='dark'] .list-group-item-warning,[data-theme|='translucent'] .list-group-item-warning{color:#664d03;background-color:rgba(255,243,205,.375)}
[data-theme='dark'] .list-group-item-info,[data-theme|='translucent'] .list-group-item-info{color:#055160;background-color:rgba(207,244,252,.375)}
[data-theme='dark'] .list-group-item-light,[data-theme|='translucent'] .list-group-item-light{color:#636464;background-color:rgba(254,254,254,.375)}
[data-theme='dark'] .list-group-item-dark,[data-theme|='translucent'] .list-group-item-dark{color:#141619;background-color:rgba(211,211,212,.375)}
[data-theme='dark'] .bg-light,[data-theme|='translucent'] .bg-light{--bs-bg-opacity:0.075;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}
[data-theme|='translucent'] .nav-drawer .nav-subnav>li.active>a,[data-theme|='translucent'] .nav-drawer .nav-subnav>li>a:hover{color:var(--bs-white)}
[data-theme|='translucent'] .nav-drawer>.active>a,[data-theme|='translucent'] .nav-tabs .nav-link.active,[data-theme|='translucent'] .nav-tabs .nav-item.show .nav-link,[data-theme|='translucent'] .nav-tabs .nav-link:hover,[data-theme|='translucent'] .nav-tabs .nav-link:focus{border-color:var(--bs-gray-300)}
[data-theme='dark'] div.tagsinput{background-color:rgba(var(--bs-white-rgb),0.075);border:1px solid rgba(var(--bs-white-rgb),0.125)}
[data-theme='dark'] .form-select[multiple],[data-theme='dark'] .form-select[size]:not([size="1"]){background-image:none}
[data-theme='dark'] .list-group-item-primary{color:#084298;background-color:rgba(207,226,255,.375)}
[data-theme='dark'] .list-group-item-secondary{color:#41464b;background-color:rgba(226,227,229,.375)}
[data-theme='dark'] .list-group-item-success{color:#0f5132;background-color:rgba(209,231,221,.375)}
[data-theme='dark'] .list-group-item-dangerr{color:#842029;background-color:rgba(248,215,218,.375)}
[data-theme='dark'] .list-group-item-warning{color:#664d03;background-color:rgba(255,243,205,.375)}
[data-theme='dark'] .list-group-item-info{color:#055160;background-color:rgba(207,244,252,.375)}
[data-theme='dark'] .list-group-item-light{color:#636464;background-color:rgba(254,254,254,.375)}
[data-theme='dark'] .list-group-item-dark{color:#141619;background-color:rgba(211,211,212,.375)}
[data-theme='dark'] .bg-light{--bs-bg-opacity:0.075;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}
[data-theme='dark'] .nav-step .nav-link,[data-theme='dark'] .nav-step .nav-link:before{background-color:rgba(var(--bs-gray-rgb),.3)}
[data-theme|='translucent'] .nav-step .nav-link,[data-theme|='translucent'] .nav-step .nav-link:before{background-color:rgba(var(--bs-white-rgb),.1)}
[data-theme|='translucent'] .nav-step .nav-item.complete .nav-link,[data-theme|='translucent'] .nav-step .nav-item.complete .nav-link::before,[data-theme|='translucent'] .nav-step .nav-item .nav-link.active,[data-theme|='translucent'] .nav-step .nav-item .nav-link.active::before{background-color:rgba(var(--bs-white-rgb),.2)}
[data-theme|='translucent'] .nav-step .nav-item.complete .nav-link::after,[data-theme|='translucent'] .nav-step .nav-item .nav-link.active::after{background-color:var(--bs-gray-300)}
[data-theme|='translucent'] .nav-step .nav-item.complete .nav-link::after{color:rgba(var(--bs-black-rgb),1)}
[data-theme|='translucent'] div.tagsinput span.tag{background-color:rgba(var(--bs-black-rgb),.075)}
[data-theme|='translucent'] div.tagsinput input{color:var(--bs-white)!important}
[data-theme|='translucent'] .form-control:focus,[data-theme|='translucent'] .form-select:focus{border-color:var(--bs-gray-300);box-shadow:0 0 0 0.25rem rgba(var(--bs-white-rgb),0.25)}
[data-theme|='translucent'] .nav-item .nav-link{color:#fff}
[data-theme|='translucent'] a:not(.btn),[data-theme|='translucent'] .nav-stacked>li>a,[data-theme|='translucent'] .nav-link{color:var(--bs-gray-300)}
[data-theme|='translucent'] .nav-link:hover,[data-theme|='translucent'] .nav-link:focus{background:rgba(var(--bs-white-rgb),.35);color:var(--bs-white)}
[data-theme|='translucent'] .nav-pills .nav-link.active,[data-theme|='translucent'] .nav-pills .show>.nav-link{background-color:rgba(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px var(--bs-white),0 0 0 0.25rem rgba(var(--bs-white-rgb),0.25)}
[data-theme|='translucent'] .form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px var(--bs-white),0 0 0 0.25rem rgba(var(--bs-white-rgb),0.25)}
[data-theme|='translucent'] .form-range::-webkit-slider-thumb{background-color:var(--bs-gray-300)}
[data-theme|='translucent'] .form-range::-webkit-slider-thumb:active{background-color:rgba(var(--bs-white-rgb),0.375)}
[data-theme|='translucent'] .form-range::-moz-range-thumb{background-color:var(--bs-gray-300)}
[data-theme|='translucent'] .form-range::-moz-range-thumb:active{background-color:rgba(var(--bs-white-rgb),0.375)}
[data-theme|='translucent'] .datepicker table tr td.active:active,[data-theme|='translucent'] .datepicker table tr td.active.highlighted:active,[data-theme|='translucent'] .datepicker table tr td.active.active,[data-theme|='translucent'] .datepicker table tr td.active.highlighted.active,[data-theme|='translucent'] .datepicker table tr td span.active:active,[data-theme|='translucent'] .datepicker table tr td span.active:hover:active,[data-theme|='translucent'] .datepicker table tr td span.active.disabled:active,[data-theme|='translucent'] .datepicker table tr td span.active.disabled:hover:active,[data-theme|='translucent'] .datepicker table tr td span.active.active,[data-theme|='translucent'] .datepicker table tr td span.active:hover.active,[data-theme|='translucent'] .datepicker table tr td span.active.disabled.active,[data-theme|='translucent'] .datepicker table tr td span.active.disabled:hover.active{background-color:var(--bs-gray-300);border-color:var(--bs-gray-300)}
[data-theme|='translucent'] .datepicker table tr td.active:active:hover,[data-theme|='translucent'] .datepicker table tr td.active.highlighted:active:hover,[data-theme|='translucent'] .datepicker table tr td.active.active:hover,[data-theme|='translucent'] .datepicker table tr td.active.highlighted.active:hover,[data-theme|='translucent'] .datepicker table tr td.active:active:focus,[data-theme|='translucent'] .datepicker table tr td.active.highlighted:active:focus,[data-theme|='translucent'] .datepicker table tr td.active.active:focus,[data-theme|='translucent'] .datepicker table tr td.active.highlighted.active:focus,[data-theme|='translucent'] .datepicker table tr td.active:active.focus,[data-theme|='translucent'] .datepicker table tr td.active.highlighted:active.focus,[data-theme|='translucent'] .datepicker table tr td.active.active.focus,[data-theme|='translucent'] .datepicker table tr td.active.highlighted.active.focus{background-color:var(--bs-white-rgb);border-color:var(--bs-white-rgb)}
[data-theme|='translucent'] .bootstrap-datetimepicker-widget.dropdown-menu.top:before,[data-theme|='translucent'] .bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-color:transparent}
[data-theme|='translucent'] .bootstrap-datetimepicker-widget table td span:hover,[data-theme|='translucent'] .bootstrap-datetimepicker-widget table thead tr:first-child th:hover,[data-theme|='translucent'] .bootstrap-datetimepicker-widget table td.day:hover,[data-theme|='translucent'] .bootstrap-datetimepicker-widget table td.hour:hover,[data-theme|='translucent'] .bootstrap-datetimepicker-widget table td.minute:hover,[data-theme|='translucent'] .bootstrap-datetimepicker-widget table td.second:hover{background:rgba(255,255,255,.375)}
[data-theme|='translucent'] .fc-unthemed th,[data-theme|='translucent'] .fc-unthemed td,[data-theme|='translucent'] .fc-unthemed thead,[data-theme|='translucent'] .fc-unthemed tbody,[data-theme|='translucent'] .fc-unthemed .fc-divider,[data-theme|='translucent'] .fc-unthemed .fc-row,[data-theme|='translucent'] .fc-unthemed .fc-content,[data-theme|='translucent'] .fc-unthemed .fc-popover,[data-theme|='translucent'] .fc-unthemed .fc-list-view,[data-theme|='translucent'] .fc-unthemed .fc-list-heading td,[data-theme|='translucent'] .card-bordered{border-color:rgba(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .fc-unthemed td.fc-today{background:rgba(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .form-control::-webkit-file-upload-button{color:#fff;background-color:rgba(var(--bs-black-rgb),.075)}
[data-theme|='translucent'] .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,[data-theme|='translucent'] .lyear-timeline-item-dot::before{background-color:rgba(var(--bs-black-rgb),.125)}
[data-theme|='translucent'] [class*='badge-outline-']{border-color:rgba(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .lyear-timeline-item-content time{color:rgba(var(--bs-white-rgb),.375)}
[data-theme|='translucent'] .alert{backdrop-filter:blur(10px)}
[data-theme|='translucent'] .alert-primary{background-color:rgba(0,123,255,.45);border-color:rgba(0,123,255,.01);color:#00EFFF}
[data-theme|='translucent'] .alert-secondary{background-color:rgba(108,117,125,.45);border-color:rgba(108,117,125,.01);color:#E9EAED}
[data-theme|='translucent'] .alert-success{background-color:rgba(21,195,119,.45);border-color:rgba(21,195,119,.01);color:#C8F6EA}
[data-theme|='translucent'] .alert-info{background-color:rgba(72,176,247,.45);border-color:rgba(72,176,247,.01);color:#DFF4FB}
[data-theme|='translucent'] .alert-warning{background-color:rgba(250,166,75,.45);border-color:rgba(250,166,75,.01);color:#FBF4E4}
[data-theme|='translucent'] .alert-danger{background-color:rgba(244,66,54,.45);border-color:rgba(244,66,54,.01);color:#fa8181}
[data-theme|='translucent'] .alert-light{background-color:rgba(253,253,254,.45);border-color:rgba(253,253,254,.01);color:#FCFDFE}
[data-theme|='translucent'] .alert-dark{background-color:rgba(33,37,41,.45);border-color:rgba(33,37,41,.01);color:#D5D9DA}
[data-theme='dark'] .select2-container--default .select2-selection--single,[data-theme|='translucent'] .select2-container--default .select2-selection--single,[data-theme='dark'] .select2-container--default .select2-selection--multiple,[data-theme|='translucent'] .select2-container--default .select2-selection--multiple,[data-theme='dark'] .select2-container--classic .select2-search--dropdown .select2-search__field,[data-theme|='translucent'] .select2-container--classic .select2-search--dropdown .select2-search__field,[data-theme='dark'] .select2-container--default .select2-search--dropdown .select2-search__field,[data-theme|='translucent'] .select2-container--default .select2-search--dropdown .select2-search__field{background-color:transparent;border-color:rgba(var(--bs-white-rgb),.5)}
[data-theme='dark'] .select2-container--default .select2-selection--single .select2-selection__rendered,[data-theme|='translucent'] .select2-container--default .select2-selection--single .select2-selection__rendered,[data-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,[data-theme|='translucent'] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,[data-theme='dark'] .select2-container--classic .select2-search--dropdown .select2-search__field,[data-theme|='translucent'] .select2-container--classic .select2-search--dropdown .select2-search__field,[data-theme='dark'] .select2-container--default .select2-search--dropdown .select2-search__field,[data-theme|='translucent'] .select2-container--default .select2-search--dropdown .select2-search__field{color:rgba(var(--bs-white-rgb),.5)}
[data-theme='dark'] .select2-container--default .select2-selection--single .select2-selection__arrow b,[data-theme|='translucent'] .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:rgba(var(--bs-white-rgb),.5) transparent transparent transparent}
[data-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice,[data-theme|='translucent'] .select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:rgba(var(--bs-white-rgb),.3);border-color:rgba(var(--bs-white-rgb),.5)}
[data-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,[data-theme|='translucent'] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:rgba(var(--bs-white-rgb),.8)}
[data-theme='dark'] .select2-container--default.select2-container--disabled .select2-selection--single,[data-theme|='translucent'] .select2-container--default.select2-container--disabled .select2-selection--single{background-color:rgba(var(--bs-secondary-rgb),.2)}
[data-theme='dark'] .select2-container--default .select2-results__option[aria-selected=true],[data-theme|='translucent'] .select2-container--default .select2-results__option[aria-selected=true]{background-color:rgba(var(--bs-white-rgb),.2)}
[data-theme='dark'] .select2-container--default .select2-selection--single,[data-theme='dark'] .select2-container--default .select2-selection--multiple,[data-theme='dark'] .select2-container--classic .select2-search--dropdown .select2-search__field,[data-theme='dark'] .select2-container--default .select2-search--dropdown .select2-search__field{background-color:transparent;border-color:rgba(var(--bs-white-rgb),.5)}
[data-theme='dark'] .select2-container--default .select2-selection--single .select2-selection__rendered,[data-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove,[data-theme='dark'] .select2-container--classic .select2-search--dropdown .select2-search__field,[data-theme='dark'] .select2-container--default .select2-search--dropdown .select2-search__field{color:rgba(var(--bs-white-rgb),.5)}
[data-theme='dark'] .select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:rgba(var(--bs-white-rgb),.5) transparent transparent transparent}
[data-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:rgba(var(--bs-white-rgb),.3);border-color:rgba(var(--bs-white-rgb),.5)}
[data-theme='dark'] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:rgba(var(--bs-white-rgb),.8)}
[data-theme='dark'] .select2-container--default.select2-container--disabled .select2-selection--single{background-color:rgba(var(--bs-secondary-rgb),.2)}
[data-theme='dark'] .select2-container--default .select2-results__option[aria-selected=true]{background-color:rgba(var(--bs-white-rgb),.2)}
[data-theme='dark'] .select2-dropdown{background-color:#292F39;border:none;-webkit-box-shadow:0 0 5px rgba(var(--bs-black-rgb),0.75);-moz-box-shadow:0px 0px 5px rgba(var(--bs-black-rgb),0.75);box-shadow:0 0 5px rgba(var(--bs-black-rgb),0.75)}
[data-theme|='translucent'] .select2-dropdown{background-color:rgba(var(--bs-white-rgb),.2);backdrop-filter:blur(10px);border:none;-webkit-box-shadow:0 0 4px rgba(var(--bs-black-rgb),.175);-moz-box-shadow:0 0 4px rgba(var(--bs-black-rgb),.175);box-shadow:0 0 4px rgba(var(--bs-black-rgb),.175)}
[data-theme='dark'] .select2-container--default.select2-container--open .select2-selection--single,[data-theme|='translucent'] .select2-container--default.select2-container--open .select2-selection--single,[data-theme='dark'] .select2-container--default.select2-container--focus .select2-selection--multiple,[data-theme|='translucent'] .select2-container--default.select2-container--focus .select2-selection--multiple,[data-theme='dark'] .select2-container--classic.select2-container--open .select2-selection--single,[data-theme|='translucent'] .select2-container--classic.select2-container--open .select2-selection--single{box-shadow:0 0 0 0.25rem rgba(var(--bs-white-rgb),0.075)}
[data-theme='dark'] .select2-container--classic.select2-container--open .select2-selection--single,[data-theme|='translucent'] .select2-container--classic.select2-container--open .select2-selection--single{border-color:#ebebeb}
[data-theme|='translucent'] .select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:rgba(var(--bs-white-rgb),.375)}
[data-theme='dark'] .select2-container--default.select2-container--open .select2-selection--single[data-theme='dark'] .select2-container--default.select2-container--focus .select2-selection--multiple,[data-theme='dark'] .select2-container--classic.select2-container--open .select2-selection--single{box-shadow:0 0 0 0.25rem rgba(var(--bs-white-rgb),0.075)}
[data-theme='dark'] .select2-container--classic.select2-container--open .select2-selection--single{border-color:#ebebeb}
.left-drager{position:absolute;padding:0px;margin:0px;overflow:visible;left:120px;cursor:default;height:100%;width:7px;top:0;background:url(../../image/common/none.gif) repeat;cursor:w-resize;z-index:1901}
.left-drager .left-drager-op{position:fixed;top:0;left:0;display:none;overflow:hidden;text-align:center;cursor:pointer;padding-left:10px;padding-right:10px}
.left-drager .left-drager-click{position:absolute;border-radius:100%;opacity:.6;background:#fff;animation:waterBtn 3s;-moz-animation:waterBtn 3s infinite;-webkit-animation:waterBtn 3s infinite;-o-animation:waterBtn 3s infinite;transform:translate(-50%,-50%) scale(1)}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,184 +0,0 @@
/*
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
* @license http://www.dzzoffice.com/licenses/license.txt
* @package DzzOffice
* @link http://www.dzzoffice.com
* @author zyx(zyx@dzz.cc)
*/
(function($)
{
//左右分栏时,调用此,可以实现点击隐藏左侧分栏,拖动改变左侧分栏的宽度
$.fn.leftDrager_layout = function(resizefunc,options)
{
var opt={
'cookieid':null, //记忆左侧大小和关闭状态的cookie标志符
'cookietime':60*60*24*30,
'leftHide':1024
}
options=$.extend(opt,options);
var $this=$(this);
var $leftContainer=$('.bs-left-container');
var $mainContainer=$('.bs-main-container');
var $middleconMenu=$('.middleconMenu');
var $topContainer=$('.bs-top-container');
var oleft=((options.cookieid && getcookie(options.cookieid+'_width'))?parseInt(getcookie(options.cookieid+'_width')):$leftContainer.outerWidth(true))|| 0;
var left=oleft;
var clientWidth = document.documentElement.clientWidth;
var setPosition=function(xx,flag){
xx=xx*1;
if(flag===true){
if(xx<10){
left=oleft;
dragerClick('hide');
return;
}else{
dragerClick('show');
}
}
/*判断最小宽度*/
var mainWidth=$mainContainer.outerWidth(true);
var minWidth=parseInt($mainContainer.css('minWidth')) ||0;
if(mainWidth-xx<minWidth){
xx=mainWidth-minWidth;
}
left=xx;
if(flag===true){
oleft=left;
}
$leftContainer.css('width',left);
$mainContainer.css('paddingLeft',left);
$middleconMenu.css('left',left+5);
$topContainer.css('paddingLeft',left);
var currentRightWidth = mainWidth - xx;
$mainContainer.trigger('leftDrager_layout.changeWidthValue',[currentRightWidth]);
$this.css('left',left);
if(options.cookieid){
setcookie(options.cookieid+'_width',left,options.cookietime);
}
};
var dragerClick=function(flag,nocookie){
if(flag==='hide'){
$mainContainer.css('paddingLeft',0);
$middleconMenu.css('left',left+5);
$topContainer.css('paddingLeft',0);
$this.css({'left':0,'cursor':'default'});
if(options.cookieid && !nocookie) setcookie(options.cookieid+'_isshow','hide',options.cookietime);
}else if(flag==='show'){
$leftContainer.css({width:left,'display':'block'});
$mainContainer.css('paddingLeft',document.documentElement.clientWidth<opt.leftHide?0:left);
$middleconMenu.css('left',left+5);
$topContainer.css('paddingLeft',document.documentElement.clientWidth<opt.leftHide?0:left);
$this.css({'left':left,'cursor':'w-resize'});
if(options.cookieid && !nocookie) setcookie(options.cookieid+'_isshow','show',options.cookietime);
}else{
if($leftContainer.width()<64 || $leftContainer.is(':hidden')){
dragerClick('show');
}else{
dragerClick('hide');
}
}
};
var dragging=function(){
$this.off('mousedown').on('mousedown',function(e){
e.preventDefault();
var x=e.clientX;
var ox=x-$this.offset().left;
var width=$this.width();
$(document).mousemove(function(e){
e.preventDefault();
var xx=e.clientX;
if((xx-ox+width)>clientWidth){
xx=clientWidth+ox-width;
}
if(xx-ox<=0){
xx=ox;
}
setPosition(xx-ox);
});
$(document).mouseup(function(e) {
$(document).off('mouseup').off('mousemove');
var xx=e.clientX;
if((xx-ox+width)>clientWidth){
xx=clientWidth+ox-width;
}
if(xx-ox<=0){
xx=ox;
}
setPosition(xx-ox,true);
});
});
};
var Layout=function(){
var headerHeight=jQuery('.bs-top-container').outerHeight(true);
var clientHeight = Math.max(document.documentElement.clientHeight, document.body.clientHeight);
jQuery('.bs-main-container').css('margin-top',headerHeight?headerHeight:0);
jQuery('.bs-main-container,.left-drager').css('height',clientHeight-headerHeight-1);
jQuery('.left-drager').css('top',headerHeight?headerHeight:0);
if(typeof(resizefunc)==='function'){
resizefunc();
}
leftHide();
};
var leftHide=function(){
if(document.documentElement.clientWidth<opt.leftHide){
dragerClick('hide',true);
}else{
if(options.cookieid && getcookie(options.cookieid+'_isshow')){
var isshow=getcookie(options.cookieid+'_isshow');
if(isshow==='hide'){
dragerClick('hide',true);
}else{
dragerClick('show',true);
}
}else{
dragerClick('show',true);
}
}
};
var init=function(){
Layout();
$this.find('.left-drager-op').off('click').on('click',function(){
dragerClick();
});
jQuery('.lyear-aside-toggler').off('click').on('click',function(){
if($leftContainer.width()<64 || $leftContainer.is(':hidden')){
dragerClick('show');
}else{
dragerClick('hide');
}
});
var isshow='';
if(options.cookieid && getcookie(options.cookieid+'_isshow')){
isshow=getcookie(options.cookieid+'_isshow');
if(isshow==='hide'){
dragerClick('hide',true);
}else{
dragerClick('show');
}
}else{
if($leftContainer.width()<64 || $leftContainer.is(':hidden')){
dragerClick('hide');
}else{
dragerClick('show');
}
}
dragging();
var resizeTimer=null;
window.onresize=function(){
if(resizeTimer){
window.clearTimeout(resizeTimer);
}
window.setTimeout(function(){Layout();},100);
};
leftHide();
};
init();
};
})(jQuery);

View File

@ -291,7 +291,7 @@ function(e, t) {
o = "object" == typeof t.offset;
e.offsetTop = (n.height() - a[1]) / 2,
e.offsetLeft = (n.width() - a[0]) / 2,
o ? (e.offsetTop = t.offset[0], e.offsetLeft = t.offset[1] || e.offsetLeft) : "auto" !== t.offset && ("t" === t.offset ? e.offsetTop = 0 : "r" === t.offset ? e.offsetLeft = n.width() - a[0] : "b" === t.offset ? e.offsetTop = n.height() - a[1] : "l" === t.offset ? e.offsetLeft = 0 : "lt" === t.offset ? (e.offsetTop = 0, e.offsetLeft = 0) : "lb" === t.offset ? (e.offsetTop = n.height() - a[1], e.offsetLeft = 0) : "rt" === t.offset ? (e.offsetTop = 0, e.offsetLeft = n.width() - a[0]) : "rb" === t.offset ? (e.offsetTop = n.height() - a[1], e.offsetLeft = n.width() - a[0]) : e.offsetTop = t.offset),
o ? (e.offsetTop = t.offset[0], e.offsetLeft = t.offset[1] || e.offsetLeft) : "auto" !== t.offset && ("t" === t.offset ? e.offsetTop = 0 : "r" === t.offset ? e.offsetLeft = n.width() - a[0] : "b" === t.offset ? e.offsetTop = n.height() - a[1] : "l" === t.offset ? e.offsetLeft = 0 : "lt" === t.offset ? (e.offsetTop = 0, e.offsetLeft = 0) : "lb" === t.offset ? (e.offsetTop = n.height() - a[1], e.offsetLeft = 0) : "rt" === t.offset ? (e.offsetTop = 15, e.offsetLeft = n.width() - a[0]-15) : "rb" === t.offset ? (e.offsetTop = n.height() - a[1], e.offsetLeft = n.width() - a[0]) : e.offsetTop = t.offset),
t.fixed || (e.offsetTop = /%$/.test(e.offsetTop) ? n.height() * parseFloat(e.offsetTop) / 100 : parseFloat(e.offsetTop), e.offsetLeft = /%$/.test(e.offsetLeft) ? n.width() * parseFloat(e.offsetLeft) / 100 : parseFloat(e.offsetLeft), e.offsetTop += n.scrollTop(), e.offsetLeft += n.scrollLeft()),
i.attr("minLeft") && (e.offsetTop = n.height() - (i.find(l[1]).outerHeight() || 0), e.offsetLeft = i.css("left")),
i.css({

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,186 +1 @@
;(function(){
$.fn.lyearloading = function(options) {
// DOM容器对象
var $this = $(this);
var defaults = {
opacity : 0.1, // 遮罩层的透明度,==0时没有遮罩层
backgroundColor : '#000000', // 遮罩层的颜色
imgUrl : '', // 加载动画使用图片
textColorClass : '', // 定义文字的颜色,当不使用图片时
spinnerColorClass : '', // 定义加载动画的颜色,当不使用图片时
spinnerSize : 'normal', // 定义加载动画的大小,当不使用图片时
spinnerText : '', // 显示的文字
zindex : 999, // 遮罩层的z-index值
};
// 融合配置项
var opts = $.extend({}, defaults, options);
// 默认样式
var maskStyle = {
'position' : 'absolute',
'width' : '100%',
'height' : '100%',
'top' : 0,
'left' : 0,
'background-color' : opts.backgroundColor,
'opacity' : opts.opacity,
'z-index' : opts.zindex,
}, textStyle = {
'position' : 'absolute',
'line-height' : '120%',
'text-align' : 'center',
'vertical-align' : 'middle',
'z-index' : opts.zindex + 1,
}, spinnerStyle = {
'position' : 'absolute',
'z-index' : opts.zindex + 1,
};
var defaultClass = 'lyear-loading';
// 初始化方法
this.init = function(){
if ($this.children('.' + defaultClass).length > 0) {
$this.children('.' + defaultClass).fadeIn(250)
} else {
var $maskHtml = $('<div />').addClass(defaultClass),
$textHtml = $('<span />').html($.trim(opts.spinnerText)).addClass(defaultClass).addClass(opts.textColorClass),
$spinnerHtml = opts.imgUrl ? $('<img />').attr('src', opts.imgUrl).addClass(defaultClass) : $('<div />').addClass('spinner-border').addClass(defaultClass).addClass(opts.spinnerColorClass).css(this.getSpinnerSize());
var toolMethods = {
resizeStyle: function() {
var $parent = $this.find('.' + defaultClass).parent(),
parentPosition = ('fixed,relative').indexOf($parent.css('position')),
isFixed = parentPosition > -1 || $parent[0] === $('.' + defaultClass)[0].offsetParent,
offsetP = isFixed ? { top: 0, left: 0 } : { top: $parent[0].offsetTop, left: $parent[0].offsetLeft },
parentW = $this.outerWidth(),
parentH = $this.outerHeight();
//if ($this.selector == 'body') { // jquery 2.*版本
if ($this[0].localName == 'body') {
maskStyle.position = 'fixed';
spinnerStyle.position = 'fixed';
textStyle.position = 'fixed';
spinnerStyle.top = $(window).height() / 2 - $spinnerHtml.outerHeight() / 2 + (opts.spinnerText ? (- 4 - $textHtml.height() / 2) : 0);
spinnerStyle.left = $(window).width() / 2 - $spinnerHtml.outerWidth() / 2;
textStyle.top = $(window).height() / 2 + $spinnerHtml.outerHeight() / 2 - 4;
textStyle.left = $(window).width() / 2 - $textHtml.outerWidth() / 2;
} else {
maskStyle.width = parentW;
maskStyle.height = parentH;
maskStyle.top = offsetP.top;
maskStyle.left = offsetP.left;
spinnerStyle.top = parentH / 2 - $spinnerHtml.outerHeight() / 2 + (opts.spinnerText ? (- 4 - $textHtml.height() / 2) : 0) + offsetP.top;
spinnerStyle.left = parentW / 2 - $spinnerHtml.outerWidth() / 2 + offsetP.left;
textStyle.top = parentH / 2 + $spinnerHtml.outerHeight() / 2 - 4 + offsetP.top;
textStyle.left = parentW / 2 - $textHtml.width() / 2 + offsetP.left;
}
$maskHtml.css(maskStyle);
$spinnerHtml.css(spinnerStyle);
$textHtml.css(textStyle);
}
};
// 遮罩层继承父元素的边框效果
maskStyle['border-top-left-radius'] = $this.css('border-top-left-radius');
maskStyle['border-top-right-radius'] = $this.css('border-top-right-radius');
maskStyle['border-bottom-left-radius'] = $this.css('border-bottom-left-radius');
maskStyle['border-bottom-right-radius'] = $this.css('border-bottom-right-radius');
opts.opacity && $maskHtml.css(maskStyle).appendTo($this);
$.trim(opts.spinnerText) && $textHtml.css(textStyle).appendTo($this);
$spinnerHtml.css(spinnerStyle).appendTo($this);
this.loadImage(opts.imgUrl, function (imgObj) {
toolMethods.resizeStyle();
}, function(e){
throw new Error(e);
});
$(window).off('resize.' + defaultClass).on('resize.' + defaultClass, function () {
toolMethods.resizeStyle();
});
}
}
this.hide = function(){
$this.children('.' + defaultClass).fadeOut(250);
}
this.show = function(){
$this.children('.' + defaultClass).fadeIn(250);
}
this.destroy = function() {
$this.children('.' + defaultClass).fadeOut(250, function() {
$(window).off('resize.' + defaultClass);
$(this).remove();
});
}
this.loadImage = function (url, callback, error) {
if (!url) {
return callback();
}
var imgObj;
imgObj = new Image();
imgObj.src = url;
if (imgObj.complete && callback) {
return callback();
}
imgObj.onload = function () {
imgObj.onload = null;
callback && callback();
};
imgObj.onerror = function (e) {
imgObj.onerror = null;
error && error(e);
};
return imgObj;
}
// 对loading设置大小的处理返回
this.getSpinnerSize = function() {
var sizeCss;
switch (options.spinnerSize) {
case 'sm' :
sizeCss = {'width': '12px', 'height' : '12px'};
break;
case 'nm' :
sizeCss = {'width': '24px', 'height' : '24px'};
break;
case 'md' :
sizeCss = {'width': '36px', 'height' : '36px'};
break;
case 'lg' :
sizeCss = {'width': '48px', 'height' : '48px'};
break;
default :
sizeCss = {'width': options.spinnerSize, 'height': options.spinnerSize};
}
return sizeCss;
};
// 自动执行初始化函数
this.init();
// 返回函数对象
return this;
}
})(jQuery);
jQuery,$.fn.lyearloading=function(e){var i=$(this),t=$.extend({},{opacity:.1,backgroundColor:"#000000",imgUrl:"",textColorClass:"",spinnerColorClass:"",spinnerSize:"normal",spinnerText:"",zindex:999},e),o={position:"absolute",width:"100%",height:"100%",top:0,left:0,"background-color":t.backgroundColor,opacity:t.opacity,"z-index":t.zindex},n={position:"absolute","line-height":"120%","text-align":"center","vertical-align":"middle","z-index":t.zindex+1},r={position:"absolute","z-index":t.zindex+1},s="lyear-loading";return this.init=function(){if(i.children(".lyear-loading").length>0)i.children(".lyear-loading").fadeIn(250);else{var e=$("<div />").addClass(s),d=$("<span />").html($.trim(t.spinnerText)).addClass(s).addClass(t.textColorClass),a=t.imgUrl?$("<img />").attr("src",t.imgUrl).addClass(s):$("<div />").addClass("spinner-border").addClass(s).addClass(t.spinnerColorClass).css(this.getSpinnerSize()),l={resizeStyle:function(){var s=i.find(".lyear-loading").parent(),l="fixed,relative".indexOf(s.css("position"))>-1||s[0]===$(".lyear-loading")[0].offsetParent?{top:0,left:0}:{top:s[0].offsetTop,left:s[0].offsetLeft},h=i.outerWidth(),p=i.outerHeight();"body"==i[0].localName?(o.position="fixed",r.position="fixed",n.position="fixed",r.top=$(window).height()/2-a.outerHeight()/2+(t.spinnerText?-4-d.height()/2:0),r.left=$(window).width()/2-a.outerWidth()/2,n.top=$(window).height()/2+a.outerHeight()/2-4,n.left=$(window).width()/2-d.outerWidth()/2):(o.width=h,o.height=p,o.top=l.top,o.left=l.left,r.top=p/2-a.outerHeight()/2+(t.spinnerText?-4-d.height()/2:0)+l.top,r.left=h/2-a.outerWidth()/2+l.left,n.top=p/2+a.outerHeight()/2-4+l.top,n.left=h/2-d.width()/2+l.left),e.css(o),a.css(r),d.css(n)}};o["border-top-left-radius"]=i.css("border-top-left-radius"),o["border-top-right-radius"]=i.css("border-top-right-radius"),o["border-bottom-left-radius"]=i.css("border-bottom-left-radius"),o["border-bottom-right-radius"]=i.css("border-bottom-right-radius"),t.opacity&&e.css(o).appendTo(i),$.trim(t.spinnerText)&&d.css(n).appendTo(i),a.css(r).appendTo(i),this.loadImage(t.imgUrl,function(e){l.resizeStyle()},function(e){throw new Error(e)}),$(window).off("resize.lyear-loading").on("resize.lyear-loading",function(){l.resizeStyle()})}},this.hide=function(){i.children(".lyear-loading").fadeOut(250)},this.show=function(){i.children(".lyear-loading").fadeIn(250)},this.destroy=function(){i.children(".lyear-loading").fadeOut(250,function(){$(window).off("resize.lyear-loading"),$(this).remove()})},this.loadImage=function(e,i,t){return e?((o=new Image).src=e,o.complete&&i?i():(o.onload=function(){o.onload=null,i&&i()},o.onerror=function(e){o.onerror=null,t&&t(e)},o)):i();var o},this.getSpinnerSize=function(){var i;switch(e.spinnerSize){case"sm":i={width:"12px",height:"12px"};break;case"nm":i={width:"24px",height:"24px"};break;case"md":i={width:"36px",height:"36px"};break;case"lg":i={width:"48px",height:"48px"};break;default:i={width:e.spinnerSize,height:e.spinnerSize}}return i},this.init(),this};

View File

@ -206,41 +206,33 @@ jQuery(document).ready( function() {
}
});
// 处理主题配色下拉选中
$(".dropdown-skin :radio").each(function(){
var $this = $(this),
radioName = $this.attr('name');
switch (radioName) {
case 'site_theme':
$this.val() == data_theme && $this.prop("checked", true);
break;
case 'logo_bg':
$this.val() == data_logobg && $this.prop("checked", true);
break;
case 'header_bg':
$this.val() == data_headerbg && $this.prop("checked", true);
break;
case 'sidebar_bg':
$this.val() == data_sidebarbg && $this.prop("checked", true);
}
});
// 设置主题配色
setTheme = function(input_name, data_name) {
$("input[name='" + input_name + "']").click(function(){
var check_theme = $(this).val();
$('body').attr(data_name, check_theme);
setcookie('the_'+input_name, check_theme);
});
$(".theme-toggle-btn").click(function(){
var currentTheme = $('body').attr('data-theme') || 'default';
var newTheme;
var newIconClass;
var oldIconClass;
if (currentTheme === 'dark') {
newTheme = 'default'; // 切换到明亮主题
newIconClass = 'mdi-white-balance-sunny';
oldIconClass = 'mdi-power-sleep';
} else {
newTheme = 'dark'; // 切换到黑暗主题
newIconClass = 'mdi-power-sleep';
oldIconClass = 'mdi-white-balance-sunny';
}
setTheme('site_theme', 'data-theme');
setTheme('sidebar_bg', 'data-sidebarbg');
setTheme('logo_bg', 'data-logobg');
setTheme('header_bg', 'data-headerbg');
$(this).removeClass(oldIconClass).addClass(newIconClass);
$('body').attr('data-theme', newTheme);
setcookie('the_site_theme', newTheme);
});
// $("input[name='site_theme']").click(function(){
// var check_theme = $(this).val();
// $('body').attr('data-theme', check_theme);
// setcookie('the_site_theme', check_theme);
// });
});
if (jQuery('.left-drager').length) {
jQuery('.left-drager').leftDrager_layout();
}
// 参考国外模板的写法获取当前的配置以data-**指插件原有的配置名)
getDataOptions = function(el, castList) {
var options = {};

View File

@ -2,78 +2,4 @@
* 数字滚动增加显示
* 主要通过class类内的scroll-numbers获取目标元素数字内容
*/
var easing = {
quadratic: function (x){
return Math.sqrt(x);
}
};
//显示总数
function range(start, stop, step){
var array = [];
for(var i = start; i < stop; i += step) array.push(i);
return array;
}
//跨度间隔并返回终值
function interpolation(fps, easing, finalValue){
function scaleIt(value){return finalValue * value; }
var x = range(0, 1, 1/fps),
y = x.map(easing).map(scaleIt);
return y;
}
//数字滚动
function animateEl(values, duration, onAnimate){
var frameIndex = 0,
fps = values.length,
id = setInterval(anime, duration/fps );
function anime(){
var current = values[frameIndex],
isLastFrame = (frameIndex === fps - 1);
onAnimate(current, frameIndex, values);
if(isLastFrame){
clearInterval(id);
}else{
frameIndex++;
}
}
}
function round(value, decimals) {
return Number(Math.round(value+'e'+decimals)+'e-'+decimals);
}
function unformat(content){
var unlocalized = content.replace('.', '').replace(',', '.'),
value = parseFloat(unlocalized);
return value;
}
//格式化输出
function format(value){
return value.toString().replace('.', ',');
}
//添加事件监听器
window.addEventListener("DOMContentLoaded", function(){
var fps = 240,//滚动帧率
els = [].slice.call(document.querySelectorAll('.scroll-numbers'));
els.forEach(function(el){
var content = (el.firstChild.textContent).trim(),
decimalPlaces = content.split(',')[1] || '',
value = unformat(content),
values = interpolation(fps, easing.quadratic, value);
//滚动持续时间1秒
animateEl(values, 1000, function (current, i, values){
var isLast = (i === values.length - 1),
value = round(current, decimalPlaces.length);
el.firstChild.textContent = isLast? content : format(value);
});
});
});
var easing={quadratic:function(n){return Math.sqrt(n)}};function range(n,t,r){for(var e=[],a=n;a<t;a+=r)e.push(a);return e}function interpolation(n,t,r){return range(0,1,1/n).map(t).map(function(n){return r*n})}function animateEl(n,t,r){var e=0,a=n.length,o=setInterval(function(){var t=n[e],i=e===a-1;r(t,e,n),i?clearInterval(o):e++},t/a)}function round(n,t){return Number(Math.round(n+"e"+t)+"e-"+t)}function unformat(n){var t=n.replace(".","").replace(",",".");return parseFloat(t)}function format(n){return n.toString().replace(".",",")}window.addEventListener("DOMContentLoaded",function(){[].slice.call(document.querySelectorAll(".scroll-numbers")).forEach(function(n){var t=n.firstChild.textContent.trim(),r=t.split(",")[1]||"",e=unformat(t);animateEl(interpolation(240,easing.quadratic,e),1e3,function(e,a,o){var i=a===o.length-1,u=round(e,r.length);n.firstChild.textContent=i?t:format(u)})})});

View File

@ -12,7 +12,7 @@ if (!defined('IN_DZZ')) {
define('NOROBOT', TRUE);
if ($_GET['action'] == 'checkusername') {
$username = trim($_GET['username']);
$username = isset($_GET['username']) ? trim($_GET['username']) : '';
$usernamelen = dstrlen($username);
if ($usernamelen < 3) {
showTips(array('error'=>lang( 'profile_nickname_tooshort')));

View File

@ -167,10 +167,10 @@ function getinvite()
if ($cookiecount == 2 || $_GET['invitecode']) {
$id = intval($cookies[0]);
$code = trim($cookies[1]);
$code = isset($cookies[1]) ? trim($cookies[1]) : '';
if ($_GET['invitecode']) {
$invite = C::t('user_invite')->fetch_by_code($_GET['invitecode']);
$code = trim($_GET['invitecode']);
$code = isset($_GET['invitecode']) ? trim($_GET['invitecode']) : '';
} else {
$invite = C::t('user_invite')->fetch($id);
}

View File

@ -33,7 +33,7 @@ if(isset($_GET['lostpwsubmit'])) {
}
$idstring = random(6);
C::t('user')->update($member['uid'], array('authstr' => "{$_G['timestamp']}\t1\t$idstring"));
C::t('user')->update($member['uid'], array('authstr' => "{$_G[timestamp]}\t1\t$idstring"));
//require_once libfile('function/mail');
$get_passwd_subject = lang('email', 'get_passwd_subject');
$get_passwd_message = lang(