From 3854a082d30c39ab3c03a3397c9098ea1f739270 Mon Sep 17 00:00:00 2001 From: koogua Date: Thu, 15 Sep 2022 16:08:04 +0800 Subject: [PATCH 1/5] =?UTF-8?q?1.=E6=9B=B4=E6=96=B0=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=9B=BE=E7=89=87=202.=E6=9B=B4=E6=96=B0=E7=9B=B4=E6=92=AD?= =?UTF-8?q?=E5=90=8D=E6=A0=BC=E5=BC=8F=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Admin/Controllers/UploadController.php | 2 + app/Http/Admin/Views/setting/storage.volt | 8 ++++ app/Library/Helper.php | 40 +++++++++++++++--- app/Models/ChapterLive.php | 4 +- app/Services/MyStorage.php | 28 ++++++++++++ db/migrations/20210403184518.php | 10 ++--- .../admin/img/default/category_icon.png | Bin 0 -> 2623 bytes .../static/admin/img/default/course_cover.png | Bin 5693 -> 15294 bytes .../static/admin/img/default/gift_cover.png | Bin 10001 -> 15294 bytes .../admin/img/default/package_cover.png | Bin 9298 -> 15294 bytes .../static/admin/img/default/slide_cover.png | Bin 0 -> 29206 bytes .../static/admin/img/default/topic_cover.png | Bin 0 -> 15294 bytes public/static/admin/img/default/vip_cover.png | Bin 16588 -> 37506 bytes 13 files changed, 78 insertions(+), 14 deletions(-) create mode 100644 public/static/admin/img/default/category_icon.png create mode 100644 public/static/admin/img/default/slide_cover.png create mode 100644 public/static/admin/img/default/topic_cover.png diff --git a/app/Http/Admin/Controllers/UploadController.php b/app/Http/Admin/Controllers/UploadController.php index 73e34e5e..b24854e9 100644 --- a/app/Http/Admin/Controllers/UploadController.php +++ b/app/Http/Admin/Controllers/UploadController.php @@ -123,8 +123,10 @@ class UploadController extends Controller $items['user_avatar'] = $service->uploadDefaultUserAvatar(); $items['course_cover'] = $service->uploadDefaultCourseCover(); $items['package_cover'] = $service->uploadDefaultPackageCover(); + $items['topic_cover'] = $service->uploadDefaultTopicCover(); $items['gift_cover'] = $service->uploadDefaultGiftCover(); $items['vip_cover'] = $service->uploadDefaultVipCover(); + $items['category_icon'] = $service->uploadDefaultCategoryIcon(); foreach ($items as $item) { if (!$item) return $this->jsonError(['msg' => '上传文件失败']); diff --git a/app/Http/Admin/Views/setting/storage.volt b/app/Http/Admin/Views/setting/storage.volt index 18c13f2f..fc7a574d 100644 --- a/app/Http/Admin/Views/setting/storage.volt +++ b/app/Http/Admin/Views/setting/storage.volt @@ -117,6 +117,10 @@ 用户头像 public/static/admin/img/default/user_cover.png + + 分类图标 + public/static/admin/img/default/category_icon.png + 课程封面 public/static/admin/img/default/course_cover.png @@ -125,6 +129,10 @@ 套餐封面 public/static/admin/img/default/package_cover.png + + 专题封面 + public/static/admin/img/default/topic_cover.png + 会员封面 public/static/admin/img/default/vip_cover.png diff --git a/app/Library/Helper.php b/app/Library/Helper.php index 29142a3c..77c43302 100644 --- a/app/Library/Helper.php +++ b/app/Library/Helper.php @@ -219,6 +219,16 @@ function kg_default_package_cover_path() return '/img/default/package_cover.png'; } +/** + * 获取默认专题封面路径 + * + * @return string + */ +function kg_default_topic_cover_path() +{ + return '/img/default/topic_cover.png'; +} + /** * 获取默认会员封面路径 * @@ -246,17 +256,17 @@ function kg_default_gift_cover_path() */ function kg_default_slide_cover_path() { - return '/img/default/course_cover.png'; + return '/img/default/slide_cover.png'; } /** - * 获取默认图标路径 + * 获取默认分类图标路径 * * @return string */ -function kg_default_icon_path() +function kg_default_category_icon_path() { - return '/img/default/user_avatar.png'; + return '/img/default/category_icon.png'; } /** @@ -333,6 +343,20 @@ function kg_cos_package_cover_url($path, $style = null) return kg_cos_img_url($path, $style); } +/** + * 获取专题封面URL + * + * @param string $path + * @param string $style + * @return string + */ +function kg_cos_topic_cover_url($path, $style = null) +{ + $path = $path ?: kg_default_topic_cover_path(); + + return kg_cos_img_url($path, $style); +} + /** * 获取会员封面URL * @@ -370,19 +394,21 @@ function kg_cos_gift_cover_url($path, $style = null) */ function kg_cos_slide_cover_url($path, $style = null) { + $path = $path ?: kg_default_slide_cover_path(); + return kg_cos_img_url($path, $style); } /** - * 获取图标URL + * 获取分类图标URL * * @param string $path * @param string $style * @return string */ -function kg_cos_icon_url($path, $style = null) +function kg_cos_category_icon_url($path, $style = null) { - $path = $path ?: kg_default_icon_path(); + $path = $path ?: kg_default_category_icon_path(); return kg_cos_img_url($path, $style); } diff --git a/app/Models/ChapterLive.php b/app/Models/ChapterLive.php index d81a15ca..44f764fa 100644 --- a/app/Models/ChapterLive.php +++ b/app/Models/ChapterLive.php @@ -99,12 +99,12 @@ class ChapterLive extends Model public static function generateStreamName($id) { - return "chapter_{$id}"; + return sprintf('chapter-%03d', $id); } public static function parseFromStreamName($streamName) { - return str_replace('chapter_', '', $streamName); + return (int)str_replace('chapter-', '', $streamName); } } diff --git a/app/Services/MyStorage.php b/app/Services/MyStorage.php index fe195294..34729ccc 100644 --- a/app/Services/MyStorage.php +++ b/app/Services/MyStorage.php @@ -77,6 +77,20 @@ class MyStorage extends Storage return $this->putFile($key, $filename); } + /** + * 上传默认话题封面 + * + * @return false|mixed|string + */ + public function uploadDefaultTopicCover() + { + $filename = static_path('admin/img/default/topic_cover.png'); + + $key = '/img/default/topic_cover.png'; + + return $this->putFile($key, $filename); + } + /** * 上传默认会员封面 * @@ -105,6 +119,20 @@ class MyStorage extends Storage return $this->putFile($key, $filename); } + /** + * 上传分类默认图标 + * + * @return false|mixed|string + */ + public function uploadDefaultCategoryIcon() + { + $filename = static_path('admin/img/default/category_icon.png'); + + $key = '/img/default/category_icon.png'; + + return $this->putFile($key, $filename); + } + /** * 上传封面图片 * diff --git a/db/migrations/20210403184518.php b/db/migrations/20210403184518.php index 5c3aa05a..cc46ce94 100644 --- a/db/migrations/20210403184518.php +++ b/db/migrations/20210403184518.php @@ -452,22 +452,22 @@ final class V20210403184518 extends AbstractMigration [ 'section' => 'mail', 'item_key' => 'smtp_username', - 'item_value' => 'abc@163.com', + 'item_value' => 'xxx@163.com', ], [ 'section' => 'mail', 'item_key' => 'smtp_password', - 'item_value' => '888888', + 'item_value' => 'xxx', ], [ 'section' => 'mail', 'item_key' => 'smtp_from_email', - 'item_value' => 'abc@163.com', + 'item_value' => 'xxx@163.com', ], [ 'section' => 'mail', 'item_key' => 'smtp_from_name', - 'item_value' => 'ABC有限公司', + 'item_value' => 'XXX有限公司', ], [ 'section' => 'pay.alipay', @@ -612,7 +612,7 @@ final class V20210403184518 extends AbstractMigration [ 'section' => 'site', 'item_key' => 'copyright', - 'item_value' => '深圳市酷瓜软件有限公司', + 'item_value' => 'XXX有限公司', ], [ 'section' => 'site', diff --git a/public/static/admin/img/default/category_icon.png b/public/static/admin/img/default/category_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a372267e081754cc8367905d0b7cc202309a861 GIT binary patch literal 2623 zcmV-F3c&S=P)EBEW{Vo2StP;>Wjn|BehCU8>&F7Siu{G1_Jgfg?5UX^g?BZPScpV z{64IiF#Yr2_HFGo$NeQMGcWtBwf0{BKIiPc_Bv2qE(Y!g_5fo*-BHG-+kOvtkFxEB z0N#QO{3Py!-byBc`+$XteiS@d2>h0K1K%h+kN_(fWfSQJe@4Ee=1swgL12RP0Wc0+ zq~ud_dU6{Ok*lCCqrA|+i(smctn z0=>a!TGw(#eaWaw0K7AU&VdX%qf?at7|5VAN6A3{B9=II2UylMW z0KWvDj&S|{2-k2WR?vM2xE6RXumm^;JO?}k?2n`)8*c-C229arbXU1yE~8v=A4>{3rmIT&E?4RpUlxgY7vImK$=W!yXU z0o-@oYQR|!U7>Oo_jQ!{$X7DWjeR>MMMrDtFCHnPT)k5 zFxlL8#9H8!5wsS0|E*FsQ5C2Imm+UUUE{MIyn!c)_)SPXPSNqfJ2vwXu1M{O`R*&Xt{Q zM=UZ!_!V6!l19b|&#QFi`Ur*>i6fusFjmRJ?gN-hnKvre{o!bzAE3lWf zGYR}2_!3ev%$2pkmw`WEEB~-Q-PfIxX4Sca{2fyVP6Br#GgB;9178PTGvHqx>1%V; zfUV@~l-GgVNLwdh5t0TzlF`qt7~YLtPM%xAgTOl!{F`AVa^_Ln&k2kdruZzn9Wsin zN95ufWaiQI`DP8re5j$Dx4$17<=WPudpOl>HrCbXb;7gQnhKW^cJ9wrKCa`I8#~Z( zeit??bS**xQ=<<;YZFAL7oCT{m$1Fyw2ba+B812!abI(Txt;V*k6`1T--$KI!)faN z*r?@DJ8HsT zR+QW55p?VS#G)730?yrkW5C~lZv*dYG}7g8=GfOay&d18%gi*C>>6>8es@Y{z%;)rk;(oO2iz(_EGU= z=u`|dS0V=VibOqw%~!+4z;1N^{5M%9PPd1SxMjf73T#J6;=$lkL^CVZX=q<=uLM?ic_k3+XO&5#K zT`qnUsmYTv`*tz1yqj}{&uqDPD+Q5GA!S+mBKp=3d=onxJLWzZu^xMyNRz-Hfv+I> zcrL%18j{9!EAS*RWx$`=GC`z_sTfnqD&To+*YE|YI5zXqs8@miaPCK=mLjvp5O#C; zW^)3#9QapGBg$vv^2#m(KN~kMq%rc*!cPWXqu|el$mi}J&!N10I@XTd)M2cmGl<>d zQvZ)KhUdv6-(|CNOSo>n{jK3&kSJokV8TCCYo32NlrzCLBs=Fu=Eif!AtaS-Iq+~I9m5#-gFizbu%GT693$+EpT?Q|MhW={)CRgwsXM?NnD$$-1o#Q<3nlJEatuRw zyv_Af$@V~-2a$s-t*$?XEbk^=;cHtiECM6QiQ&7D8b6mIuScW6-;qzMJ{v*LaD;2P zawM?*OUT3F2a!ykOOXmA$BcpC7L^*=Yz!(rala3&>1=dn4l^FkYg~0 zGw6&?34pn!Gdfku>N$;G^{_LFx{^|r831HiR*OA~x{^|*0C=jRx(Z$LZe#~B_3Pg_ zQc=BNkh@7A0C%Z*Q*dSh@Eg(%{x+I?X`^6^g}}YUO~RM}?jf)oOF@@G;6C6*{K~hV ho^HDd8zpIz@IT94*R?V&TVVhI002ovPDHLkV1iJ}-ID+S literal 0 HcmV?d00001 diff --git a/public/static/admin/img/default/course_cover.png b/public/static/admin/img/default/course_cover.png index f1c21d35feee2a2f34341b3d949d39a42ed1b7db..c09162618067cb6ae04486bba21c4e019b7072e6 100644 GIT binary patch literal 15294 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 diff --git a/public/static/admin/img/default/gift_cover.png b/public/static/admin/img/default/gift_cover.png index 6ffabcd3444a2ca6e4972c26b301326799eb9ad2..c09162618067cb6ae04486bba21c4e019b7072e6 100644 GIT binary patch literal 15294 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 diff --git a/public/static/admin/img/default/package_cover.png b/public/static/admin/img/default/package_cover.png index 39ce024eb1756fd64e06af84157385dc817bf974..c09162618067cb6ae04486bba21c4e019b7072e6 100644 GIT binary patch literal 15294 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 diff --git a/public/static/admin/img/default/slide_cover.png b/public/static/admin/img/default/slide_cover.png new file mode 100644 index 0000000000000000000000000000000000000000..5848016c590796dae669bb5703291cfb5d22030c GIT binary patch literal 29206 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 literal 0 HcmV?d00001 diff --git a/public/static/admin/img/default/topic_cover.png b/public/static/admin/img/default/topic_cover.png new file mode 100644 index 0000000000000000000000000000000000000000..c09162618067cb6ae04486bba21c4e019b7072e6 GIT binary patch literal 15294 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 UvHmncoI5iITNj%KtH6i<1I(gshX4Qo literal 16588 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 R{nG#dprW8DUnL7e{2#Mne1iZ0 From c801559b629965fb044feaa3fc26dab15cbbe548 Mon Sep 17 00:00:00 2001 From: koogua Date: Thu, 15 Sep 2022 16:08:46 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=BE=AE=E5=8D=9A?= =?UTF-8?q?=E5=88=86=E4=BA=AB=E9=93=BE=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/lib/layui/extends/helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/static/lib/layui/extends/helper.js b/public/static/lib/layui/extends/helper.js index 336d1b36..bc7e0d8d 100644 --- a/public/static/lib/layui/extends/helper.js +++ b/public/static/lib/layui/extends/helper.js @@ -57,7 +57,7 @@ layui.define(['jquery', 'layer'], function (exports) { }; helper.weiboShare = function (title, url, pic) { - var shareUrl = 'http://v.t.sina.com.cn/share/share.php?'; + var shareUrl = 'http://service.weibo.com/share/share.php?'; shareUrl += 'title=' + encodeURIComponent(title || document.title); shareUrl += '&url=' + encodeURIComponent(url || document.location); shareUrl += '&pic=' + encodeURIComponent(pic || ''); From 79a22539181dc0f4a67ccb53721dfc224d8d8a70 Mon Sep 17 00:00:00 2001 From: koogua Date: Thu, 15 Sep 2022 20:39:49 +0800 Subject: [PATCH 3/5] =?UTF-8?q?1.=E6=96=87=E7=AB=A0=E5=8D=95=E9=A1=B5?= =?UTF-8?q?=E7=AD=89=E5=A2=9E=E5=8A=A0=E5=85=B3=E9=94=AE=E5=AD=97=202.?= =?UTF-8?q?=E4=B8=93=E9=A2=98=E5=A2=9E=E5=8A=A0=E5=B0=81=E9=9D=A2=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Admin/Services/Article.php | 4 + app/Http/Admin/Services/Help.php | 4 + app/Http/Admin/Services/Package.php | 8 +- app/Http/Admin/Services/Page.php | 4 + app/Http/Admin/Services/Question.php | 4 + app/Http/Admin/Services/Topic.php | 4 + app/Http/Admin/Views/article/edit_basic.volt | 6 + app/Http/Admin/Views/help/edit.volt | 6 + app/Http/Admin/Views/page/edit.volt | 6 + app/Http/Admin/Views/question/edit_basic.volt | 6 + app/Http/Admin/Views/topic/edit.volt | 11 ++ app/Library/Helper.php | 26 ++++ app/Models/Article.php | 7 + app/Models/Category.php | 4 +- app/Models/Help.php | 7 + app/Models/Page.php | 7 + app/Models/Question.php | 7 + app/Models/Tag.php | 4 +- app/Models/Topic.php | 33 +++++ app/Services/Logic/Article/ArticleInfo.php | 1 + app/Services/Logic/Help/HelpInfo.php | 1 + app/Services/Logic/Page/PageInfo.php | 1 + app/Services/Logic/Question/QuestionInfo.php | 1 + app/Services/Logic/Topic/TopicInfo.php | 1 + app/Validators/Article.php | 13 ++ app/Validators/Course.php | 2 +- app/Validators/Help.php | 13 ++ app/Validators/Page.php | 13 ++ app/Validators/Question.php | 13 ++ app/Validators/Topic.php | 12 ++ config/errors.php | 7 +- db/migrations/20220801025747.php | 3 +- db/migrations/20220915084746.php | 127 ++++++++++++++++++ 33 files changed, 355 insertions(+), 11 deletions(-) create mode 100644 db/migrations/20220915084746.php diff --git a/app/Http/Admin/Services/Article.php b/app/Http/Admin/Services/Article.php index 3ba1443e..6a9931f2 100644 --- a/app/Http/Admin/Services/Article.php +++ b/app/Http/Admin/Services/Article.php @@ -169,6 +169,10 @@ class Article extends Service $data['title'] = $validator->checkTitle($post['title']); } + if (isset($post['keywords'])) { + $data['keywords'] = $validator->checkKeywords($post['keywords']); + } + if (isset($post['content'])) { $data['content'] = $validator->checkContent($post['content']); $data['word_count'] = WordUtil::getWordCount($data['content']); diff --git a/app/Http/Admin/Services/Help.php b/app/Http/Admin/Services/Help.php index 8e1a1144..1cdbddf1 100644 --- a/app/Http/Admin/Services/Help.php +++ b/app/Http/Admin/Services/Help.php @@ -103,6 +103,10 @@ class Help extends Service $data['content'] = $validator->checkContent($post['content']); } + if (isset($post['keywords'])) { + $data['keywords'] = $validator->checkKeywords($post['keywords']); + } + if (isset($post['priority'])) { $data['priority'] = $validator->checkPriority($post['priority']); } diff --git a/app/Http/Admin/Services/Package.php b/app/Http/Admin/Services/Package.php index ec92f2ae..c49ee55f 100644 --- a/app/Http/Admin/Services/Package.php +++ b/app/Http/Admin/Services/Package.php @@ -122,14 +122,14 @@ class Package extends Service $data = []; - if (isset($post['cover'])) { - $data['cover'] = $validator->checkCover($post['cover']); - } - if (isset($post['title'])) { $data['title'] = $validator->checkTitle($post['title']); } + if (isset($post['cover'])) { + $data['cover'] = $validator->checkCover($post['cover']); + } + if (isset($post['summary'])) { $data['summary'] = $validator->checkSummary($post['summary']); } diff --git a/app/Http/Admin/Services/Page.php b/app/Http/Admin/Services/Page.php index e48767a1..022afa64 100644 --- a/app/Http/Admin/Services/Page.php +++ b/app/Http/Admin/Services/Page.php @@ -86,6 +86,10 @@ class Page extends Service $data['content'] = $validator->checkContent($post['content']); } + if (isset($post['keywords'])) { + $data['keywords'] = $validator->checkKeywords($post['keywords']); + } + if (isset($post['published'])) { $data['published'] = $validator->checkPublishStatus($post['published']); } diff --git a/app/Http/Admin/Services/Question.php b/app/Http/Admin/Services/Question.php index d882b35d..52b548b7 100644 --- a/app/Http/Admin/Services/Question.php +++ b/app/Http/Admin/Services/Question.php @@ -167,6 +167,10 @@ class Question extends Service $data['content'] = $validator->checkContent($post['content']); } + if (isset($post['keywords'])) { + $data['keywords'] = $validator->checkKeywords($post['keywords']); + } + if (isset($post['anonymous'])) { $data['anonymous'] = $validator->checkAnonymousStatus($post['anonymous']); } diff --git a/app/Http/Admin/Services/Topic.php b/app/Http/Admin/Services/Topic.php index b463a716..55c2b581 100644 --- a/app/Http/Admin/Services/Topic.php +++ b/app/Http/Admin/Services/Topic.php @@ -112,6 +112,10 @@ class Topic extends Service $data['title'] = $validator->checkTitle($post['title']); } + if (isset($post['cover'])) { + $data['cover'] = $validator->checkCover($post['cover']); + } + if (isset($post['summary'])) { $data['summary'] = $validator->checkSummary($post['summary']); } diff --git a/app/Http/Admin/Views/article/edit_basic.volt b/app/Http/Admin/Views/article/edit_basic.volt index 05659162..d76f9e88 100644 --- a/app/Http/Admin/Views/article/edit_basic.volt +++ b/app/Http/Admin/Views/article/edit_basic.volt @@ -13,6 +13,12 @@
+
+ +
+ +
+
diff --git a/app/Http/Admin/Views/help/edit.volt b/app/Http/Admin/Views/help/edit.volt index e0f4798f..a04dcc97 100644 --- a/app/Http/Admin/Views/help/edit.volt +++ b/app/Http/Admin/Views/help/edit.volt @@ -23,6 +23,12 @@
+
+ +
+ +
+
diff --git a/app/Http/Admin/Views/page/edit.volt b/app/Http/Admin/Views/page/edit.volt index 98bca03f..3e8b4ac2 100644 --- a/app/Http/Admin/Views/page/edit.volt +++ b/app/Http/Admin/Views/page/edit.volt @@ -18,6 +18,12 @@
+
+ +
+ +
+
diff --git a/app/Http/Admin/Views/question/edit_basic.volt b/app/Http/Admin/Views/question/edit_basic.volt index e94340d9..5f9338ca 100644 --- a/app/Http/Admin/Views/question/edit_basic.volt +++ b/app/Http/Admin/Views/question/edit_basic.volt @@ -11,6 +11,12 @@
+
+ +
+ +
+
diff --git a/app/Http/Admin/Views/topic/edit.volt b/app/Http/Admin/Views/topic/edit.volt index 681d128f..f60bab0e 100644 --- a/app/Http/Admin/Views/topic/edit.volt +++ b/app/Http/Admin/Views/topic/edit.volt @@ -12,6 +12,16 @@
+
+ +
+ + +
+
+ +
+
@@ -38,6 +48,7 @@ {% block include_js %} {{ js_include('lib/xm-select.js') }} + {{ js_include('admin/js/cover.upload.js') }} {% endblock %} diff --git a/app/Library/Helper.php b/app/Library/Helper.php index 77c43302..03693d09 100644 --- a/app/Library/Helper.php +++ b/app/Library/Helper.php @@ -451,6 +451,32 @@ function kg_parse_summary($content, $length = 150) return kg_substr($content, 0, $length); } +/** + * 解析关键字 + * + * @param string $content + * @return string + */ +function kg_parse_keywords($content) +{ + $search = ['|', ';', ';', '、', ',']; + + $keywords = str_replace($search, '@', $content); + + $keywords = explode('@', $keywords); + + $list = []; + + foreach ($keywords as $keyword) { + $keyword = trim($keyword); + if (kg_strlen($keyword) > 1) { + $list[] = $keyword; + } + } + + return implode(',', $list); +} + /** * 解析内容中上传首图 * diff --git a/app/Models/Article.php b/app/Models/Article.php index 9e1072df..82629ed8 100644 --- a/app/Models/Article.php +++ b/app/Models/Article.php @@ -64,6 +64,13 @@ class Article extends Model */ public $content = ''; + /** + * 关键字 + * + * @var string + */ + public $keywords = ''; + /** * 标签 * diff --git a/app/Models/Category.php b/app/Models/Category.php index 29397dd1..73dae0b2 100644 --- a/app/Models/Category.php +++ b/app/Models/Category.php @@ -150,7 +150,7 @@ class Category extends Model public function beforeSave() { if (empty($this->icon)) { - $this->icon = kg_default_icon_path(); + $this->icon = kg_default_category_icon_path(); } elseif (Text::startsWith($this->icon, 'http')) { $this->icon = self::getIconPath($this->icon); } @@ -166,7 +166,7 @@ class Category extends Model public function afterFetch() { if (!Text::startsWith($this->icon, 'http')) { - $this->icon = kg_cos_icon_url($this->icon); + $this->icon = kg_cos_category_icon_url($this->icon); } } diff --git a/app/Models/Help.php b/app/Models/Help.php index 7886e2dd..9767b5de 100644 --- a/app/Models/Help.php +++ b/app/Models/Help.php @@ -34,6 +34,13 @@ class Help extends Model */ public $title = ''; + /** + * 关键字 + * + * @var string + */ + public $keywords = ''; + /** * 内容 * diff --git a/app/Models/Page.php b/app/Models/Page.php index 4318e8f8..d7dad7c3 100644 --- a/app/Models/Page.php +++ b/app/Models/Page.php @@ -34,6 +34,13 @@ class Page extends Model */ public $alias = ''; + /** + * 关键字 + * + * @var string + */ + public $keywords = ''; + /** * 内容 * diff --git a/app/Models/Question.php b/app/Models/Question.php index 128e1bc3..66b8e05c 100644 --- a/app/Models/Question.php +++ b/app/Models/Question.php @@ -85,6 +85,13 @@ class Question extends Model */ public $tags = []; + /** + * 关键字 + * + * @var string + */ + public $keywords = ''; + /** * 概要 * diff --git a/app/Models/Tag.php b/app/Models/Tag.php index c33d8b56..a294e00c 100644 --- a/app/Models/Tag.php +++ b/app/Models/Tag.php @@ -149,7 +149,7 @@ class Tag extends Model public function beforeSave() { if (empty($this->icon)) { - $this->icon = kg_default_icon_path(); + $this->icon = kg_default_category_icon_path(); } elseif (Text::startsWith($this->icon, 'http')) { $this->icon = self::getIconPath($this->icon); } @@ -169,7 +169,7 @@ class Tag extends Model public function afterFetch() { if (!Text::startsWith($this->icon, 'http')) { - $this->icon = kg_cos_icon_url($this->icon); + $this->icon = kg_cos_category_icon_url($this->icon); } if (is_string($this->scopes) && $this->scopes != 'all') { diff --git a/app/Models/Topic.php b/app/Models/Topic.php index 8b672d1f..861f4667 100644 --- a/app/Models/Topic.php +++ b/app/Models/Topic.php @@ -9,6 +9,7 @@ namespace App\Models; use App\Caches\MaxTopicId as MaxTopicIdCache; use Phalcon\Mvc\Model\Behavior\SoftDelete; +use Phalcon\Text; class Topic extends Model { @@ -27,6 +28,13 @@ class Topic extends Model */ public $title = ''; + /** + * 封面 + * + * @var string + */ + public $cover = ''; + /** * 简介 * @@ -96,6 +104,15 @@ class Topic extends Model $this->update_time = time(); } + public function beforeSave() + { + if (empty($this->cover)) { + $this->cover = kg_default_topic_cover_path(); + } elseif (Text::startsWith($this->cover, 'http')) { + $this->cover = self::getCoverPath($this->cover); + } + } + public function afterCreate() { $cache = new MaxTopicIdCache(); @@ -103,4 +120,20 @@ class Topic extends Model $cache->rebuild(); } + public function afterFetch() + { + if (!Text::startsWith($this->cover, 'http')) { + $this->cover = kg_cos_topic_cover_url($this->cover); + } + } + + public static function getCoverPath($url) + { + if (Text::startsWith($url, 'http')) { + return parse_url($url, PHP_URL_PATH); + } + + return $url; + } + } diff --git a/app/Services/Logic/Article/ArticleInfo.php b/app/Services/Logic/Article/ArticleInfo.php index fd2101aa..9f930e3f 100644 --- a/app/Services/Logic/Article/ArticleInfo.php +++ b/app/Services/Logic/Article/ArticleInfo.php @@ -49,6 +49,7 @@ class ArticleInfo extends LogicService 'title' => $article->title, 'cover' => $article->cover, 'summary' => $article->summary, + 'keywords' => $article->keywords, 'tags' => $article->tags, 'content' => $article->content, 'private' => $article->private, diff --git a/app/Services/Logic/Help/HelpInfo.php b/app/Services/Logic/Help/HelpInfo.php index 08c06143..a018fc10 100644 --- a/app/Services/Logic/Help/HelpInfo.php +++ b/app/Services/Logic/Help/HelpInfo.php @@ -28,6 +28,7 @@ class HelpInfo extends LogicService return [ 'id' => $help->id, 'title' => $help->title, + 'keywords' => $help->keywords, 'content' => $help->content, 'published' => $help->published, 'deleted' => $help->deleted, diff --git a/app/Services/Logic/Page/PageInfo.php b/app/Services/Logic/Page/PageInfo.php index ef7939da..08278bde 100644 --- a/app/Services/Logic/Page/PageInfo.php +++ b/app/Services/Logic/Page/PageInfo.php @@ -28,6 +28,7 @@ class PageInfo extends LogicService return [ 'id' => $page->id, 'title' => $page->title, + 'keywords' => $page->keywords, 'content' => $page->content, 'published' => $page->published, 'deleted' => $page->deleted, diff --git a/app/Services/Logic/Question/QuestionInfo.php b/app/Services/Logic/Question/QuestionInfo.php index 8f908a9b..7f2907a8 100644 --- a/app/Services/Logic/Question/QuestionInfo.php +++ b/app/Services/Logic/Question/QuestionInfo.php @@ -51,6 +51,7 @@ class QuestionInfo extends LogicService 'title' => $question->title, 'summary' => $question->summary, 'content' => $question->content, + 'keywords' => $question->keywords, 'tags' => $question->tags, 'bounty' => $question->bounty, 'anonymous' => $question->anonymous, diff --git a/app/Services/Logic/Topic/TopicInfo.php b/app/Services/Logic/Topic/TopicInfo.php index bbf365cd..85b87c30 100644 --- a/app/Services/Logic/Topic/TopicInfo.php +++ b/app/Services/Logic/Topic/TopicInfo.php @@ -28,6 +28,7 @@ class TopicInfo extends LogicService return [ 'id' => $topic->id, 'title' => $topic->title, + 'topic' => $topic->cover, 'summary' => $topic->summary, 'published' => $topic->published, 'deleted' => $topic->deleted, diff --git a/app/Validators/Article.php b/app/Validators/Article.php index 1e30364b..9656b652 100644 --- a/app/Validators/Article.php +++ b/app/Validators/Article.php @@ -107,6 +107,19 @@ class Article extends Validator return kg_clean_html($value); } + public function checkKeywords($keywords) + { + $keywords = $this->filter->sanitize($keywords, ['trim', 'string']); + + $length = kg_strlen($keywords); + + if ($length > 100) { + throw new BadRequestException('article.keyword_too_long'); + } + + return kg_parse_keywords($keywords); + } + public function checkSourceType($type) { if (!array_key_exists($type, ArticleModel::sourceTypes())) { diff --git a/app/Validators/Course.php b/app/Validators/Course.php index 002b36f6..eda4d6ff 100644 --- a/app/Validators/Course.php +++ b/app/Validators/Course.php @@ -148,7 +148,7 @@ class Course extends Validator $length = kg_strlen($keywords); if ($length > 100) { - throw new BadRequestException('course.keywords_too_long'); + throw new BadRequestException('course.keyword_too_long'); } $keywords = str_replace(['|', ';', ';', '、', ','], '@', $keywords); diff --git a/app/Validators/Help.php b/app/Validators/Help.php index 1f86d966..95d567ab 100644 --- a/app/Validators/Help.php +++ b/app/Validators/Help.php @@ -103,6 +103,19 @@ class Help extends Validator return kg_clean_html($value); } + public function checkKeywords($keywords) + { + $keywords = $this->filter->sanitize($keywords, ['trim', 'string']); + + $length = kg_strlen($keywords); + + if ($length > 100) { + throw new BadRequestException('help.keyword_too_long'); + } + + return kg_parse_keywords($keywords); + } + public function checkPriority($priority) { $value = $this->filter->sanitize($priority, ['trim', 'int']); diff --git a/app/Validators/Page.php b/app/Validators/Page.php index d893aff6..fa222509 100644 --- a/app/Validators/Page.php +++ b/app/Validators/Page.php @@ -107,6 +107,19 @@ class Page extends Validator return $value; } + public function checkKeywords($keywords) + { + $keywords = $this->filter->sanitize($keywords, ['trim', 'string']); + + $length = kg_strlen($keywords); + + if ($length > 100) { + throw new BadRequestException('page.keyword_too_long'); + } + + return kg_parse_keywords($keywords); + } + public function checkContent($content) { $value = $this->filter->sanitize($content, ['trim']); diff --git a/app/Validators/Question.php b/app/Validators/Question.php index a7625ea1..1481868c 100644 --- a/app/Validators/Question.php +++ b/app/Validators/Question.php @@ -89,6 +89,19 @@ class Question extends Validator return $value; } + public function checkKeywords($keywords) + { + $keywords = $this->filter->sanitize($keywords, ['trim', 'string']); + + $length = kg_strlen($keywords); + + if ($length > 100) { + throw new BadRequestException('question.keyword_too_long'); + } + + return kg_parse_keywords($keywords); + } + public function checkContent($content) { $value = $this->filter->sanitize($content, ['trim']); diff --git a/app/Validators/Topic.php b/app/Validators/Topic.php index 24bf5e89..5a146b02 100644 --- a/app/Validators/Topic.php +++ b/app/Validators/Topic.php @@ -10,6 +10,7 @@ namespace App\Validators; use App\Caches\MaxTopicId as MaxTopicIdCache; use App\Caches\Topic as TopicCache; use App\Exceptions\BadRequest as BadRequestException; +use App\Library\Validators\Common as CommonValidator; use App\Models\Topic as TopicModel; use App\Repos\Topic as TopicRepo; @@ -81,6 +82,17 @@ class Topic extends Validator return $value; } + public function checkCover($cover) + { + $value = $this->filter->sanitize($cover, ['trim', 'string']); + + if (!CommonValidator::url($value)) { + throw new BadRequestException('topic.invalid_cover'); + } + + return kg_cos_img_style_trim($value); + } + public function checkSummary($summary) { $value = $this->filter->sanitize($summary, ['trim', 'string']); diff --git a/config/errors.php b/config/errors.php index 23ea859d..d809b316 100644 --- a/config/errors.php +++ b/config/errors.php @@ -120,6 +120,7 @@ $error['nav.has_child_node'] = '不允许相关操作(存在子节点)'; $error['article.not_found'] = '文章不存在'; $error['article.title_too_short'] = '标题太短(少于2个字符)'; $error['article.title_too_long'] = '标题太长(多于50个字符)'; +$error['article.keyword_too_long'] = '关键字太长(多于100个字符)'; $error['article.content_too_short'] = '内容太短(少于10个字符)'; $error['article.content_too_long'] = '内容太长(多于30000个字符)'; $error['article.invalid_source_type'] = '无效的来源类型'; @@ -138,6 +139,7 @@ $error['article.delete_not_allowed'] = '当前不允许删除文章'; $error['question.not_found'] = '问题不存在'; $error['question.title_too_short'] = '标题太短(少于5个字符)'; $error['question.title_too_long'] = '标题太长(多于50个字符)'; +$error['question.keyword_too_long'] = '关键字太长(多于100个字符)'; $error['question.content_too_short'] = '内容太短(少于10个字符)'; $error['question.content_too_long'] = '内容太长(多于30000个字符)'; $error['question.invalid_publish_status'] = '无效的发布状态'; @@ -172,7 +174,7 @@ $error['course.not_found'] = '课程不存在'; $error['course.title_too_short'] = '标题太短(少于5个字符)'; $error['course.title_too_long'] = '标题太长(多于50个字符)'; $error['course.summary_too_long'] = '标题太长(多于255个字符)'; -$error['course.keywords_too_long'] = '关键字太长(多于100个字符)'; +$error['course.keyword_too_long'] = '关键字太长(多于100个字符)'; $error['course.details_too_long'] = '详情太长(多于5000个字符)'; $error['course.invalid_model'] = '无效的模型类别'; $error['course.invalid_level'] = '无效的难度级别'; @@ -203,6 +205,7 @@ $error['topic.not_found'] = '话题不存在'; $error['topic.title_too_short'] = '标题太短(少于2个字符)'; $error['topic.title_too_long'] = '标题太长(多于50个字符)'; $error['topic.summary_too_long'] = '简介太长(多于255个字符)'; +$error['topic.invalid_cover'] = '无效的封面'; $error['topic.invalid_publish_status'] = '无效的发布状态'; /** @@ -328,6 +331,7 @@ $error['page.title_too_short'] = '标题太短(少于2个字符)'; $error['page.title_too_long'] = '标题太长(多于50个字符)'; $error['page.alias_too_short'] = '别名太短(少于2个字符)'; $error['page.alias_too_long'] = '别名太长(多于50个字符)'; +$error['page.keyword_too_long'] = '关键字太长(多于100个字符)'; $error['page.content_too_short'] = '内容太短(少于10个字符)'; $error['page.content_too_long'] = '内容太长(多于30000个字符)'; $error['page.invalid_alias'] = '无效的别名(推荐使用英文作为别名)'; @@ -339,6 +343,7 @@ $error['page.invalid_publish_status'] = '无效的发布状态'; $error['help.not_found'] = '帮助不存在'; $error['help.title_too_short'] = '标题太短(少于2个字符)'; $error['help.title_too_long'] = '标题太长(多于50个字符)'; +$error['help.keyword_too_long'] = '关键字太长(多于100个字符)'; $error['help.content_too_short'] = '内容太短(少于10个字符)'; $error['help.content_too_long'] = '内容太长(多于30000个字符)'; $error['help.invalid_priority'] = '无效的排序数值(范围:1-255)'; diff --git a/db/migrations/20220801025747.php b/db/migrations/20220801025747.php index 6ceec26c..a86f33b1 100644 --- a/db/migrations/20220801025747.php +++ b/db/migrations/20220801025747.php @@ -6,8 +6,9 @@ */ use Phinx\Db\Adapter\MysqlAdapter; +use Phinx\Migration\AbstractMigration; -class V20220801025747 extends Phinx\Migration\AbstractMigration +final class V20220801025747 extends AbstractMigration { public function up() diff --git a/db/migrations/20220915084746.php b/db/migrations/20220915084746.php new file mode 100644 index 00000000..b65b34c8 --- /dev/null +++ b/db/migrations/20220915084746.php @@ -0,0 +1,127 @@ +alterArticleTable(); + $this->alterQuestionTable(); + $this->alterTopicTable(); + $this->alterPageTable(); + $this->alterHelpTable(); + $this->handleTopics(); + } + + protected function alterArticleTable() + { + $table = $this->table('kg_article'); + + if ($table->hasColumn('keywords') == false) { + $table->addColumn('keywords', 'string', [ + 'null' => false, + 'default' => '', + 'limit' => 100, + 'collation' => 'utf8mb4_general_ci', + 'encoding' => 'utf8mb4', + 'comment' => '关键字', + 'after' => 'summary', + ]); + } + + $table->save(); + } + + protected function alterQuestionTable() + { + $table = $this->table('kg_question'); + + if ($table->hasColumn('keywords') == false) { + $table->addColumn('keywords', 'string', [ + 'null' => false, + 'default' => '', + 'limit' => 100, + 'collation' => 'utf8mb4_general_ci', + 'encoding' => 'utf8mb4', + 'comment' => '关键字', + 'after' => 'tags', + ]); + } + + $table->save(); + } + + protected function alterPageTable() + { + $table = $this->table('kg_page'); + + if ($table->hasColumn('keywords') == false) { + $table->addColumn('keywords', 'string', [ + 'null' => false, + 'default' => '', + 'limit' => 100, + 'collation' => 'utf8mb4_general_ci', + 'encoding' => 'utf8mb4', + 'comment' => '关键字', + 'after' => 'alias', + ]); + } + + $table->save(); + } + + protected function alterHelpTable() + { + $table = $this->table('kg_help'); + + if ($table->hasColumn('keywords') == false) { + $table->addColumn('keywords', 'string', [ + 'null' => false, + 'default' => '', + 'limit' => 100, + 'collation' => 'utf8mb4_general_ci', + 'encoding' => 'utf8mb4', + 'comment' => '关键字', + 'after' => 'title', + ]); + } + + $table->save(); + } + + protected function alterTopicTable() + { + $table = $this->table('kg_topic'); + + if ($table->hasColumn('cover') == false) { + $table->addColumn('cover', 'string', [ + 'null' => false, + 'default' => '', + 'limit' => 100, + 'collation' => 'utf8mb4_general_ci', + 'encoding' => 'utf8mb4', + 'comment' => '封面', + 'after' => 'title', + ]); + } + + $table->save(); + } + + protected function handleTopics() + { + $this->getQueryBuilder() + ->update('kg_topic') + ->set('cover', '/img/default/topic_cover.png') + ->where(['cover' => '']) + ->execute(); + } + +} From 9ebbf2cecc95e408754262ea4a73d14d1fdb7ab4 Mon Sep 17 00:00:00 2001 From: koogua Date: Fri, 16 Sep 2022 18:44:33 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E4=BC=98=E5=8C=96router=E6=89=AB=E6=8F=8F?= =?UTF-8?q?=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.php b/config/routes.php index a8c49855..c23dac3f 100644 --- a/config/routes.php +++ b/config/routes.php @@ -25,7 +25,7 @@ foreach ($modules as $module) { $moduleName = ucfirst($module); $files = scandir(app_path('Http/' . $moduleName . '/Controllers')); foreach ($files as $file) { - if (strpos($file, 'Controller.php')) { + if (preg_match('/^\w+Controller\.php$/', $file)) { $className = str_replace('Controller.php', '', $file); $router->addModuleResource($module, 'App\Http\\' . $moduleName . '\Controllers\\' . $className); } From 06607e7f2e18964d27f31c69407d18949bf1cfdd Mon Sep 17 00:00:00 2001 From: koogua Date: Sat, 17 Sep 2022 18:51:12 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E5=8D=87=E7=BA=A7layui=20v2.7.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- public/static/lib/layui/css/layui.css | 2 +- public/static/lib/layui/css/modules/code.css | 2 +- .../css/modules/laydate/default/laydate.css | 2 +- .../layui/css/modules/layer/default/layer.css | 2 +- public/static/lib/layui/font/iconfont.svg | 120 ++++++++++++------ public/static/lib/layui/layui.js | 6 +- 7 files changed, 85 insertions(+), 51 deletions(-) diff --git a/README.md b/README.md index f5664db8..ad3255db 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Tips: 请用手机注册一个新账号,用户中心 -> 关注订阅,扫码 ### 项目组件 - 后台框架:[phalcon 3.4.5](https://phalcon.io) -- 前端框架:[layui 2.6.8](https://layui.com), [layim 3.9.8](https://www.layui.com/layim)(已授权) +- 前端框架:[layui 2.7.6](https://layui.com) - 全文检索:[xunsearch 1.4.9](http://www.xunsearch.com) - 即时通讯:[workerman 3.5.22](https://workerman.net) - 基础依赖:[php7.3](https://php.net), [mysql5.7](https://mysql.com), [redis5.0](https://redis.io) diff --git a/public/static/lib/layui/css/layui.css b/public/static/lib/layui/css/layui.css index c784a25e..24faef37 100644 --- a/public/static/lib/layui/css/layui.css +++ b/public/static/lib/layui/css/layui.css @@ -1 +1 @@ -.layui-inline,img{display:inline-block;vertical-align:middle}h1,h2,h3,h4,h5,h6{font-weight:400}a,body{color:#333}.layui-edge,.layui-header,.layui-inline,.layui-main{position:relative}.layui-edge,hr{height:0;overflow:hidden}.layui-layout-body,.layui-side,.layui-side-scroll{overflow-x:hidden}.layui-edge,.layui-elip,hr{overflow:hidden}.layui-btn,.layui-edge,.layui-inline,img{vertical-align:middle}.layui-btn,.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{border:none}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h4,h5,h6{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:1.6;color:rgba(0,0,0,.85);font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{line-height:0;margin:10px 0;padding:0;border:none!important;border-bottom:1px solid #eee!important;clear:both;background:0 0}a{text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{*display:inline;*zoom:1}.layui-btn,.layui-btn-group,.layui-edge{display:inline-block}.layui-edge{width:0;border-width:6px;border-style:dashed;border-color:transparent}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-elip{text-overflow:ellipsis;white-space:nowrap}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-show-v{visibility:visible!important}.layui-hide-v{visibility:hidden!important}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=256);src:url(../font/iconfont.eot?v=256#iefix) format('embedded-opentype'),url(../font/iconfont.woff2?v=256) format('woff2'),url(../font/iconfont.woff?v=256) format('woff'),url(../font/iconfont.ttf?v=256) format('truetype'),url(../font/iconfont.svg?v=256#layui-icon) format('svg')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{width:1140px;margin:0 auto}.layui-header{z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px}.layui-side-scroll{position:relative;width:220px;height:100%}.layui-body{position:relative;left:200px;right:0;top:0;bottom:0;z-index:900;width:auto;box-sizing:border-box}.layui-layout-admin .layui-header{position:fixed;top:0;left:0;right:0;background-color:#23262E}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:absolute;top:60px;padding-bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;z-index:990;height:44px;line-height:44px;padding:0 15px;box-shadow:-1px 0 4px rgb(0 0 0 / 12%);background-color:#FAFAFA}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px;box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%)}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;padding:0 15px;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:"";display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:768px){.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:750px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:970px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1170px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:1.6;border-left:5px solid #5FB878;border-radius:0 2px 2px 0;background-color:#FAFAFA}.layui-quote-nm{border-style:solid;border-width:1px 1px 1px 5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:1px 0 0}.layui-field-box{padding:15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#eee}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5FB878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#666}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#FAFAFA;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:1.6;color:#666}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card-body,.layui-card-header,.layui-form-label,.layui-form-mid,.layui-form-select,.layui-input-block,.layui-input-inline,.layui-panel,.layui-textarea{position:relative}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-form-select dl,.layui-panel{box-shadow:1px 1px 4px rgb(0 0 0 / 8%)}.layui-card:last-child{margin-bottom:0}.layui-card-header{height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-card-body{padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel{border-width:1px;border-style:solid;border-radius:2px;background-color:#fff;color:#666}.layui-bg-black,.layui-bg-blue,.layui-bg-cyan,.layui-bg-green,.layui-bg-orange,.layui-bg-red{color:#fff!important}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #eee;background-color:#fff}.layui-border,.layui-border-black,.layui-border-blue,.layui-border-cyan,.layui-border-green,.layui-border-orange,.layui-border-red{border-width:1px;border-style:solid}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-bg-red{background-color:#FF5722!important}.layui-bg-orange{background-color:#FFB800!important}.layui-bg-green{background-color:#009688!important}.layui-bg-cyan{background-color:#2F4056!important}.layui-bg-blue{background-color:#1E9FFF!important}.layui-bg-black{background-color:#393D49!important}.layui-bg-gray{background-color:#FAFAFA!important;color:#666!important}.layui-badge-rim,.layui-border,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-panel,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#eee}.layui-border{color:#666!important}.layui-border-red{border-color:#FF5722!important;color:#FF5722!important}.layui-border-orange{border-color:#FFB800!important;color:#FFB800!important}.layui-border-green{border-color:#009688!important;color:#009688!important}.layui-border-cyan{border-color:#2F4056!important;color:#2F4056!important}.layui-border-blue{border-color:#1E9FFF!important;color:#1E9FFF!important}.layui-border-black{border-color:#393D49!important;color:#393D49!important}.layui-timeline-item:before{background-color:#eee}.layui-text{line-height:1.6;font-size:14px;color:#666}.layui-text h1,.layui-text h2,.layui-text h3{font-weight:500;color:#333}.layui-text h1{font-size:30px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text a:not(.layui-btn){color:#01AAED}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text em,.layui-word-aux{color:#999!important;padding-left:5px!important;padding-right:5px!important}.layui-text p{margin:10px 0}.layui-text p:first-child{margin-top:0}.layui-font-12{font-size:12px!important}.layui-font-14{font-size:14px!important}.layui-font-16{font-size:16px!important}.layui-font-18{font-size:18px!important}.layui-font-20{font-size:20px!important}.layui-font-red{color:#FF5722!important}.layui-font-orange{color:#FFB800!important}.layui-font-green{color:#009688!important}.layui-font-cyan{color:#2F4056!important}.layui-font-blue{color:#01AAED!important}.layui-font-black{color:#000!important}.layui-font-gray{color:#c2c2c2!important}.layui-btn{height:38px;line-height:38px;border:1px solid transparent;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border-radius:2px;cursor:pointer}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{padding:0 2px;vertical-align:middle\9;vertical-align:bottom}.layui-btn-primary{border-color:#d2d2d2;background:0 0;color:#666}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1E9FFF}.layui-btn-warm{background-color:#FFB800}.layui-btn-danger{background-color:#FF5722}.layui-btn-checked{background-color:#5FB878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border-color:#eee!important;background-color:#FBFBFB!important;color:#d2d2d2!important;cursor:not-allowed!important;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:12px!important}.layui-btn-group{vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#d2d2d2;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #d2d2d2}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;color:rgba(0,0,0,.85);border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#eee!important}.layui-input:focus,.layui-textarea:focus{border-color:#d2d2d2!important}.layui-textarea{min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#FF5722!important}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #eee;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#F6F6F6;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5FB878;color:#fff}.layui-form-checkbox,.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-checkbox,.layui-form-checkbox *,.layui-form-switch{display:inline-block;vertical-align:middle}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg);margin-top:-3px\9}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;height:30px;line-height:30px;margin-right:10px;padding-right:30px;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5FB878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5FB878}.layui-form-checked i,.layui-form-checked:hover i{color:#5FB878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#666}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5FB878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5FB878!important;background-color:#5FB878;color:#fff}.layui-checkbox-disabled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2!important}.layui-checkbox-disabled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5FB878;background-color:#5FB878}.layui-checkbox-disabled,.layui-checkbox-disabled i{border-color:#eee!important}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disabled span{background-color:#eee!important}.layui-checkbox-disabled em{color:#d2d2d2!important}.layui-checkbox-disabled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio,.layui-form-radio *{display:inline-block;vertical-align:middle}.layui-form-radio{line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio:hover *,.layui-form-radioed,.layui-form-radioed>i{color:#5FB878}.layui-radio-disabled>i{color:#eee!important}.layui-radio-disabled *{color:#c2c2c2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#FAFAFA;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0 1px 0 0}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto!important;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #eee}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393D49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#eee;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #eee}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-flow-more a *,.layui-laypage input,.layui-table-view select[lay-ignore]{display:inline-block}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-table,.layui-table-view{margin:10px 0}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;background-color:#fff;color:#666}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr,.layui-table[lay-even] tr:nth-child(even){background-color:#FAFAFA}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#eee}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0 0 1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0 1px 0 0}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding:15px 30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:40px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{font-size:12px;padding:5px 10px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:20px;line-height:20px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view .layui-table{position:relative;width:auto;margin:0}.layui-table-view .layui-table[lay-skin=line]{border-width:0 1px 0 0}.layui-table-view .layui-table[lay-skin=row]{border-width:0 0 1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:5px 0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0 0 1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-cell,.layui-table-tool-panel li{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.layui-table-tool-panel li{padding:0 10px;line-height:30px;-webkit-transition:.5s all;transition:.5s all}.layui-menu li,.layui-menu-body-title a:hover,.layui-menu-body-title>.layui-icon:hover{transition:all .3s}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%;padding-left:28px}.layui-table-tool-panel li:hover{background-color:#F6F6F6}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0 0 0 1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#666}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#666}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:28px;line-height:28px;padding:0 15px;position:relative;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01AAED}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{padding:0;text-align:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:30px 15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0 0 0 1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0 0 1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-page,.layui-table-total{border-width:1px 0 0;margin-bottom:-1px;overflow:hidden}.layui-table-page{position:relative;width:100%;padding:7px 7px 0;height:41px;font-size:12px;white-space:nowrap}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-7px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;width:100%;height:100%;padding:0 14px 1px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15)}.layui-table-edit:focus{border-color:#5FB878!important}select.layui-table-edit{padding:0 0 0 10px;border-color:#d2d2d2}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-colorpicker-alpha-slider,.layui-colorpicker-side-slider,.layui-menu,.layui-menu *,.layui-nav{box-sizing:border-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0 0 0 1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-44px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#666}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#666;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-drag,.layui-upload-form,.layui-upload-wrap{display:inline-block}.layui-upload-list{margin:10px 0}.layui-upload-choose{max-width:200px;padding:0 10px;color:#999;font-size:14px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-upload-drag{position:relative;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-btn-container .layui-upload-choose{padding-left:0}.layui-menu{position:relative;margin:5px 0;background-color:#fff}.layui-menu li,.layui-menu-body-title a{padding:5px 15px}.layui-menu li{position:relative;margin:1px 0;width:calc(100% + 1px);line-height:26px;color:rgba(0,0,0,.8);font-size:14px;white-space:nowrap;cursor:pointer}.layui-menu li:hover{background-color:#F6F6F6}.layui-menu-item-parent:hover>.layui-menu-body-panel{display:block;animation-name:layui-fadein;animation-duration:.3s;animation-fill-mode:both;animation-delay:.2s}.layui-menu-item-group .layui-menu-body-title,.layui-menu-item-parent .layui-menu-body-title{padding-right:25px}.layui-menu .layui-menu-item-divider:hover,.layui-menu .layui-menu-item-group:hover,.layui-menu .layui-menu-item-none:hover{background:0 0;cursor:default}.layui-menu .layui-menu-item-group>ul{margin:5px 0 -5px}.layui-menu .layui-menu-item-group>.layui-menu-body-title{color:rgba(0,0,0,.35);user-select:none}.layui-menu .layui-menu-item-none{color:rgba(0,0,0,.35);cursor:default;text-align:center}.layui-menu .layui-menu-item-divider{margin:5px 0;padding:0;height:0;line-height:0;border-bottom:1px solid #eee;overflow:hidden}.layui-menu .layui-menu-item-down:hover,.layui-menu .layui-menu-item-up:hover{cursor:pointer}.layui-menu .layui-menu-item-up>.layui-menu-body-title{color:rgba(0,0,0,.8)}.layui-menu .layui-menu-item-up>ul{visibility:hidden;height:0;overflow:hidden}.layui-menu .layui-menu-item-down:hover>.layui-menu-body-title>.layui-icon,.layui-menu .layui-menu-item-up>.layui-menu-body-title:hover>.layui-icon{color:rgba(0,0,0,1)}.layui-menu .layui-menu-item-down>ul{visibility:visible;height:auto}.layui-breadcrumb,.layui-tree-btnGroup{visibility:hidden}.layui-menu .layui-menu-item-checked,.layui-menu .layui-menu-item-checked2{background-color:#F6F6F6!important;color:#5FB878}.layui-menu .layui-menu-item-checked a,.layui-menu .layui-menu-item-checked2 a{color:#5FB878}.layui-menu .layui-menu-item-checked:after{position:absolute;right:0;top:0;bottom:0;border-right:3px solid #5FB878;content:""}.layui-menu-body-title{position:relative;overflow:hidden;text-overflow:ellipsis}.layui-menu-body-title a{display:block;margin:-5px -15px;color:rgba(0,0,0,.8)}.layui-menu-body-title>.layui-icon{position:absolute;right:0;top:0;font-size:14px}.layui-menu-body-title>.layui-icon-right{right:-1px}.layui-menu-body-panel{display:none;position:absolute;top:-7px;left:100%;z-index:1000;margin-left:13px;padding:5px 0}.layui-menu-body-panel:before{content:"";position:absolute;width:20px;left:-16px;top:0;bottom:0}.layui-menu-body-panel-left{left:auto;right:100%;margin:0 13px}.layui-menu-body-panel-left:before{left:auto;right:-16px}.layui-menu-lg li{line-height:32px}.layui-menu-lg .layui-menu-body-title a:hover,.layui-menu-lg li:hover{background:0 0;color:#5FB878}.layui-menu-lg li .layui-menu-body-panel{margin-left:14px}.layui-menu-lg li .layui-menu-body-panel-left{margin:0 15px}.layui-dropdown{position:absolute;left:-999999px;top:-999999px;z-index:66666666;margin:5px 0;min-width:100px}.layui-dropdown:before{content:"";position:absolute;width:100%;height:6px;left:0;top:-6px}.layui-nav{position:relative;padding:0 20px;background-color:#393D49;color:#fff;border-radius:2px;font-size:0}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar{content:"";position:absolute;left:0;top:0;width:0;height:5px;background-color:#5FB878;transition:all .2s;-webkit-transition:all .2s;pointer-events:none}.layui-nav-bar{z-index:1000}.layui-nav[lay-bar=disabled] .layui-nav-bar{display:none}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{position:absolute;top:0;right:3px;left:auto!important;margin-top:0;font-size:12px;cursor:pointer;transition:all .2s;-webkit-transition:all .2s}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{transform:rotate(180deg)}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #eee;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#666;color:rgba(0,0,0,.8)}.layui-nav .layui-nav-child a:hover{background-color:#F6F6F6;color:rgba(0,0,0,.8)}.layui-nav-child dd{margin:1px 0;position:relative}.layui-nav-child dd.layui-this{background-color:#F6F6F6;color:#000}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-child-r{left:auto;right:0}.layui-nav-child-c{text-align:center}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:40px}.layui-nav-tree .layui-nav-item a{position:relative;height:40px;line-height:40px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item>a{padding-top:5px;padding-bottom:5px}.layui-nav-tree .layui-nav-more{right:15px}.layui-nav-tree .layui-nav-item>a .layui-nav-more{padding:5px 0}.layui-nav-tree .layui-nav-bar{width:5px;height:0;background-color:#009688}.layui-side .layui-nav-tree .layui-nav-bar{width:2px}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child dd{margin:0}.layui-nav-tree .layui-nav-child a{color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-itemed>.layui-nav-child{display:block;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-breadcrumb{font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5FB878!important}.layui-breadcrumb a cite{color:#666;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s;position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block;padding:0 15px;margin:0 -15px}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:"";width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#eee;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\9;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:15px 0}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#FF5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5FB878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#FAFAFA}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5FB878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5FB878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#FF5722}.layui-timeline-item:before{content:"";position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:first-child:before{display:block}.layui-timeline-item:last-child:before{display:none}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px;line-height:22px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#FF5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#666}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-5px 6px 0}.layui-nav .layui-badge{margin-top:-10px}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\9;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add],.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\9;opacity:1;left:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#eee;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown]>[carousel-item]>*,.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9F9F9F;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#666;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-transfer-active,.layui-transfer-box{display:inline-block;vertical-align:middle}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #D9D9D9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #eee;border-left-width:6px;background-color:#FAFAFA;color:#333;font-family:Courier New;font-size:12px}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#eee}.layui-transfer-box{position:relative;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#666}.layui-transfer-active{margin:0 15px}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5FB878;border-color:#5FB878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#FBFBFB;border-color:#eee;color:#d2d2d2}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#F6F6F6;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#FFB800;margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #eee;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#FFF;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;left:-999999px;top:-999999px;z-index:66666666;width:280px;margin:5px 0;padding:7px;background:#FFF;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#FFF,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #FFF;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#FF0,#0F0,#0FF,#00F,#F0F,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;background:#FFF;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;background:#FFF;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#666}.layui-slider{height:4px;background:#eee;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#FFF;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#FFF;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:66666666;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#FFF;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:"";position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #eee;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-14px}.layui-slider-input-btn{position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #eee}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #eee}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:33px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-iconClick,.layui-tree-main{display:inline-block;vertical-align:middle}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:"";position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:"";position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#666}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:"";position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-btnGroup,.layui-tree-editInput{position:relative;vertical-align:middle;display:inline-block}.layui-tree-spread>.layui-tree-entry>.layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#666}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;-webkit-animation-fill-mode:both;animation-duration:.3s;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .2s;-webkit-transition:all .2s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,15px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,15px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@keyframes layui-down{0%{opacity:.3;transform:translate3d(0,-100%,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-down{animation-name:layui-down}@keyframes layui-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-downbit{animation-name:layui-downbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@keyframes layui-scalesmall{0%{opacity:.3;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall{animation-name:layui-scalesmall}@keyframes layui-scalesmall-spring{0%{opacity:.3;transform:scale(1.5)}80%{opacity:.8;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall-spring{animation-name:layui-scalesmall-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout} \ No newline at end of file +blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{display:inline-block;border:none;vertical-align:middle}li{list-style:none}table{border-collapse:collapse;border-spacing:0}h1,h2,h3{font-weight:400}h4,h5,h6{font-size:100%;font-weight:400}button,input,select,textarea{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:1.6;color:#333;color:rgba(0,0,0,.85);font:14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif}hr{height:0;line-height:0;margin:10px 0;padding:0;border:none!important;border-bottom:1px solid #eee!important;clear:both;overflow:hidden;background:0 0}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.layui-edge{position:relative;display:inline-block;vertical-align:middle;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent;overflow:hidden}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-disabled,.layui-icon,.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-show-v{visibility:visible!important}.layui-hide-v{visibility:hidden!important}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=256);src:url(../font/iconfont.eot?v=256#iefix) format('embedded-opentype'),url(../font/iconfont.woff2?v=256) format('woff2'),url(../font/iconfont.woff?v=256) format('woff'),url(../font/iconfont.ttf?v=256) format('truetype'),url(../font/iconfont.svg?v=256#layui-icon) format('svg')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-key:before{content:"\e683"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-ios:before{content:"\e680"}.layui-icon-at:before{content:"\e687"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-addition:before{content:"\e624"}.layui-icon-home:before{content:"\e68e"}.layui-icon-time:before{content:"\e68d"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-logout:before{content:"\e682"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-android:before{content:"\e684"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-service:before{content:"\e626"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-print:before{content:"\e66d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-export:before{content:"\e67d"}.layui-icon-rss:before{content:"\e808"}.layui-icon-slider:before{content:"\e714"}.layui-icon-email:before{content:"\e618"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-light:before{content:"\e748"}.layui-icon-gift:before{content:"\e627"}.layui-icon-mute:before{content:"\e685"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-music:before{content:"\e690"}.layui-main{position:relative;width:1160px;margin:0 auto}.layui-header{position:relative;z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:relative;left:200px;right:0;top:0;bottom:0;z-index:900;width:auto;box-sizing:border-box}.layui-layout-body{overflow-x:hidden}.layui-layout-admin .layui-header{position:fixed;top:0;left:0;right:0;background-color:#23262e}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{position:absolute;top:60px;padding-bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;z-index:990;height:44px;line-height:44px;padding:0 15px;box-shadow:-1px 0 4px rgb(0 0 0 / 12%);background-color:#fafafa}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px;box-shadow:0 1px 2px 0 rgb(0 0 0 / 15%)}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:"";display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:767.98px){.layui-container{padding:0 15px}.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:720px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:960px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1150px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space2{margin:-1px}.layui-col-space2>*{padding:1px}.layui-col-space4{margin:-2px}.layui-col-space4>*{padding:2px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space6{margin:-3px}.layui-col-space6>*{padding:3px}.layui-col-space8{margin:-4px}.layui-col-space8>*{padding:4px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space14{margin:-7px}.layui-col-space14>*{padding:7px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space16{margin:-8px}.layui-col-space16>*{padding:8px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space24{margin:-12px}.layui-col-space24>*{padding:12px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space26{margin:-13px}.layui-col-space26>*{padding:13px}.layui-col-space28{margin:-14px}.layui-col-space28>*{padding:14px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:1.6;border-left:5px solid #5fb878;border-radius:0 2px 2px 0;background-color:#fafafa}.layui-quote-nm{border-style:solid;border-width:1px;border-left-width:5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:0;border-top-width:1px}.layui-field-box{padding:15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#eee}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5fb878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#5f5f5f}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#fafafa;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:1.6;color:#5f5f5f}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{position:relative;height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-card-body{position:relative;padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel{position:relative;border-width:1px;border-style:solid;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);background-color:#fff;color:#5f5f5f}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #eee;background-color:#fff}.layui-auxiliar-moving{position:fixed;left:0;right:0;top:0;bottom:0;width:100%;height:100%;background:0 0;z-index:9999999999}.layui-bg-red{background-color:#ff5722!important;color:#fff!important}.layui-bg-orange{background-color:#ffb800!important;color:#fff!important}.layui-bg-green{background-color:#009688!important;color:#fff!important}.layui-bg-cyan{background-color:#2f4056!important;color:#fff!important}.layui-bg-blue{background-color:#1e9fff!important;color:#fff!important}.layui-bg-black{background-color:#393d49!important;color:#fff!important}.layui-bg-gray{background-color:#fafafa!important;color:#5f5f5f!important}.layui-badge-rim,.layui-border,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-panel,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#eee}.layui-border{border-width:1px;border-style:solid;color:#5f5f5f!important}.layui-border-red{border-width:1px;border-style:solid;border-color:#ff5722!important;color:#ff5722!important}.layui-border-orange{border-width:1px;border-style:solid;border-color:#ffb800!important;color:#ffb800!important}.layui-border-green{border-width:1px;border-style:solid;border-color:#009688!important;color:#009688!important}.layui-border-cyan{border-width:1px;border-style:solid;border-color:#2f4056!important;color:#2f4056!important}.layui-border-blue{border-width:1px;border-style:solid;border-color:#1e9fff!important;color:#1e9fff!important}.layui-border-black{border-width:1px;border-style:solid;border-color:#393d49!important;color:#393d49!important}.layui-timeline-item:before{background-color:#eee}.layui-text{line-height:1.6;font-size:14px;color:#5f5f5f}.layui-text h1,.layui-text h2,.layui-text h3,.layui-text h4,.layui-text h5,.layui-text h6{font-weight:500;color:#333}.layui-text h1{font-size:32px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text h4{font-size:16px}.layui-text h5{font-size:14px}.layui-text h6{font-size:13px}.layui-text a:not(.layui-btn){color:#01aaed}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ol,.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text ol li{margin-top:5px;list-style-type:decimal}.layui-text em,.layui-word-aux{color:#999!important;padding-left:5px!important;padding-right:5px!important}.layui-text p{margin:15px 0}.layui-text p:first-child{margin-top:0}.layui-text p:last-child{margin-bottom:0}.layui-text blockquote:not(.layui-elem-quote){padding:5px 15px;border-left:5px solid #eee}.layui-text pre:not(.layui-code){padding:15px;font-family:Lucida Console,Consolas,Courier New;background-color:#fafafa}.layui-font-12{font-size:12px!important}.layui-font-14{font-size:14px!important}.layui-font-16{font-size:16px!important}.layui-font-18{font-size:18px!important}.layui-font-20{font-size:20px!important}.layui-font-red{color:#ff5722!important}.layui-font-orange{color:#ffb800!important}.layui-font-green{color:#009688!important}.layui-font-cyan{color:#2f4056!important}.layui-font-blue{color:#01aaed!important}.layui-font-black{color:#000!important}.layui-font-gray{color:#c2c2c2!important}.layui-btn{display:inline-block;vertical-align:middle;height:38px;line-height:38px;border:1px solid transparent;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border-radius:2px;cursor:pointer;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{padding:0 2px;vertical-align:middle\0;vertical-align:bottom}.layui-btn-primary{border-color:#d2d2d2;background:0 0;color:#5f5f5f}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1e9fff}.layui-btn-warm{background-color:#ffb800}.layui-btn-danger{background-color:#ff5722}.layui-btn-checked{background-color:#5fb878}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border-color:#eee!important;background-color:#fbfbfb!important;color:#d2d2d2!important;cursor:not-allowed!important;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:12px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#d2d2d2;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #d2d2d2}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;color:rgba(0,0,0,.85);border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#eee!important}.layui-input:focus,.layui-textarea:focus{border-color:#d2d2d2!important}.layui-textarea{position:relative;min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{position:relative;float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block,.layui-input-inline{position:relative}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{position:relative;float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#ff5722!important}.layui-form-select{position:relative}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:899;min-width:100%;border:1px solid #eee;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:1px 1px 4px rgb(0 0 0 / 8%);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f6f6f6;-webkit-transition:.5s all;transition:.5s all}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5fb878;color:#fff}.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}.layui-form-selected .layui-edge{margin-top:-3px\0}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;display:inline-block;vertical-align:middle;height:30px;line-height:30px;margin-right:10px;padding-right:30px;background-color:#fff;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox *{display:inline-block;vertical-align:middle}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5fb878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5fb878}.layui-form-checked i,.layui-form-checked:hover i{color:#5fb878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;min-width:18px;min-height:18px;border:none!important;margin-right:0;padding-left:28px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{padding-left:0;padding-right:15px;line-height:18px;background:0 0;color:#5f5f5f}.layui-form-checkbox[lay-skin=primary] i{right:auto;left:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5fb878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5fb878!important;background-color:#5fb878;color:#fff}.layui-checkbox-disabled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2!important}.layui-form-checked.layui-checkbox-disabled[lay-skin=primary] i{background:#eee!important;border-color:#eee!important}.layui-checkbox-disabled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;display:inline-block;vertical-align:middle;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5fb878;background-color:#5fb878}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disabled{border-color:#eee!important}.layui-checkbox-disabled span{background-color:#eee!important}.layui-checkbox-disabled i{border-color:#eee!important}.layui-checkbox-disabled em{color:#d2d2d2!important}.layui-checkbox-disabled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio{display:inline-block;vertical-align:middle;line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{display:inline-block;vertical-align:middle;font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio:hover *,.layui-form-radioed,.layui-form-radioed>i{color:#5fb878}.layui-radio-disabled>i{color:#eee!important}.layui-radio-disabled *{color:#c2c2c2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#fafafa;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0;border-right-width:1px}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto!important;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #eee}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;border-radius:2px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393d49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#eee;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #eee}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{display:inline-block;width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{display:inline-block;vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;margin:10px 0;background-color:#fff;color:#5f5f5f}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table-total,.layui-table-total tr{background-color:#fafafa}.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-total,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#eee}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0;border-bottom-width:1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0;border-right-width:1px}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding-top:15px;padding-right:30px;padding-bottom:15px;padding-left:30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:50px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{padding-top:5px;padding-right:10px;padding-bottom:5px;padding-left:10px;font-size:12px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:30px;line-height:20px;padding-top:5px;padding-right:5px}.layui-table[lay-data]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view{margin:10px 0}.layui-table-view .layui-table{position:relative;width:auto;margin:0;border:0;border-collapse:separate}.layui-table-view .layui-table[lay-skin=line]{border-width:0;border-right-width:1px}.layui-table-view .layui-table[lay-skin=row]{border-width:0;border-bottom-width:1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:0;border-top:none;border-left:none}.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-table td[data-edit=text]{cursor:text}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-view .layui-form-radio{line-height:0;padding:0}.layui-table-view .layui-form-radio>i{margin:0;font-size:20px}.layui-table-init{position:absolute;left:0;top:0;width:100%;height:100%;text-align:center;z-index:110}.layui-table-init .layui-icon{position:absolute;left:50%;top:50%;margin:-15px 0 0 -15px;font-size:30px;color:#c2c2c2}.layui-table-header{border-width:0;border-bottom-width:1px;overflow:hidden}.layui-table-header .layui-table{margin-bottom:-1px}.layui-table-column{position:relative;width:100%;min-height:41px;padding:8px 16px;border-width:0;border-bottom-width:1px}.layui-table-column .layui-btn-container{margin-bottom:-8px}.layui-table-column .layui-btn-container .layui-btn{margin-right:8px;margin-bottom:8px}.layui-table-tool .layui-inline[lay-event]{position:relative;width:26px;height:26px;padding:5px;line-height:16px;margin-right:10px;text-align:center;color:#333;border:1px solid #ccc;cursor:pointer;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool .layui-inline[lay-event]:hover{border:1px solid #999}.layui-table-tool-temp{padding-right:120px}.layui-table-tool-self{position:absolute;right:17px;top:10px}.layui-table-tool .layui-table-tool-self .layui-inline[lay-event]{margin:0 0 0 10px}.layui-table-tool-panel{position:absolute;top:29px;left:-1px;padding:5px 0;min-width:150px;min-height:40px;border:1px solid #d2d2d2;text-align:left;overflow-y:auto;background-color:#fff;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-table-tool-panel li{padding:0 10px;line-height:30px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;-webkit-transition:.5s all;transition:.5s all}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{width:100%}.layui-table-tool-panel li:hover{background-color:#f6f6f6}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary]{padding-left:28px}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] i{position:absolute;left:0;top:0}.layui-table-tool-panel li .layui-form-checkbox[lay-skin=primary] span{padding:0}.layui-table-tool .layui-table-tool-self .layui-table-tool-panel{left:auto;right:-1px}.layui-table-col-set{position:absolute;right:0;top:0;width:20px;height:100%;border-width:0;border-left-width:1px;background-color:#fff}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:3px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#5f5f5f}.layui-table-sort .layui-table-sort-desc{bottom:5px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#5f5f5f}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:38px;line-height:28px;padding:6px 15px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary]{top:-1px;padding:0}.layui-table-cell .layui-table-link{color:#01aaed}.layui-table-cell .layui-btn{vertical-align:inherit}.layui-table-cell[align=center]{-webkit-box-pack:center}.layui-table-cell[align=right]{-webkit-box-pack:end}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{text-align:center;-webkit-box-pack:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px;margin-bottom:-1px}.layui-table-body .layui-none{line-height:26px;padding:30px 15px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0;z-index:101}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0;border-left-width:1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;z-index:890;width:100%;min-height:50px;line-height:30px;padding:10px 15px;border-width:0;border-bottom-width:1px}.layui-table-tool .layui-btn-container{margin-bottom:-10px}.layui-table-total{margin-bottom:-1px;border-width:0;border-top-width:1px;overflow:hidden}.layui-table-page{z-index:880;border-width:0;border-top-width:1px;margin-bottom:-1px;white-space:nowrap;overflow:hidden}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-11px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-pagebar{float:right;line-height:23px}.layui-table-pagebar .layui-btn-sm{margin-top:-1px}.layui-table-pagebar .layui-btn-xs{margin-top:2px}.layui-table-view select[lay-ignore]{display:inline-block}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;z-index:900;min-width:100%;min-height:100%;padding:5px 14px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15);background-color:#fff}.layui-table-edit:focus{border-color:#5fb878!important}input.layui-input.layui-table-edit{height:100%}select.layui-table-edit{padding:0 0 0 10px;border-color:#d2d2d2}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}.layui-table-view .layui-form-checkbox i{height:26px}.layui-table-grid .layui-table-cell{overflow:visible}.layui-table-grid-down{position:absolute;top:0;right:0;width:26px;height:100%;padding:5px 0;border-width:0;border-left-width:1px;text-align:center;background-color:#fff;color:#999;cursor:pointer}.layui-table-grid-down .layui-icon{position:absolute;top:50%;left:50%;margin:-8px 0 0 -8px}.layui-table-grid-down:hover{background-color:#fbfbfb}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.12)}.layui-table-tips-main{margin:-49px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#5f5f5f}.layui-table-tips-c{position:absolute;right:-3px;top:-13px;width:20px;height:20px;padding:3px;cursor:pointer;background-color:#5f5f5f;border-radius:50%;color:#fff}.layui-table-tips-c:hover{background-color:#777}.layui-table-tips-c:before{position:relative;right:-2px}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-list{margin:10px 0}.layui-upload-choose{max-width:200px;padding:0 10px;color:#999;font-size:14px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-upload-drag{position:relative;display:inline-block;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-form{display:inline-block}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;display:inline-block;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-btn-container .layui-upload-choose{padding-left:0}.layui-menu{position:relative;margin:5px 0;background-color:#fff;box-sizing:border-box}.layui-menu *{box-sizing:border-box}.layui-menu li,.layui-menu-body-title a{padding:5px 15px}.layui-menu li{position:relative;margin:1px 0;width:calc(100% + 1px);line-height:26px;color:rgba(0,0,0,.8);font-size:14px;white-space:nowrap;cursor:pointer;transition:all .3s}.layui-menu li:hover{background-color:#f6f6f6}.layui-menu-item-parent:hover>.layui-menu-body-panel{display:block;animation-name:layui-fadein;animation-duration:.3s;animation-fill-mode:both;animation-delay:.2s}.layui-menu-item-group .layui-menu-body-title,.layui-menu-item-parent .layui-menu-body-title{padding-right:25px}.layui-menu .layui-menu-item-divider:hover,.layui-menu .layui-menu-item-group:hover,.layui-menu .layui-menu-item-none:hover{background:0 0;cursor:default}.layui-menu .layui-menu-item-group>ul{margin:5px 0 -5px}.layui-menu .layui-menu-item-group>.layui-menu-body-title{color:rgba(0,0,0,.35);user-select:none}.layui-menu .layui-menu-item-none{color:rgba(0,0,0,.35);cursor:default}.layui-menu .layui-menu-item-none{text-align:center}.layui-menu .layui-menu-item-divider{margin:5px 0;padding:0;height:0;line-height:0;border-bottom:1px solid #eee;overflow:hidden}.layui-menu .layui-menu-item-down:hover,.layui-menu .layui-menu-item-up:hover{cursor:pointer}.layui-menu .layui-menu-item-up>.layui-menu-body-title{color:rgba(0,0,0,.8)}.layui-menu .layui-menu-item-up>ul{visibility:hidden;height:0;overflow:hidden}.layui-menu .layui-menu-item-down:hover>.layui-menu-body-title>.layui-icon,.layui-menu .layui-menu-item-up>.layui-menu-body-title:hover>.layui-icon{color:#000}.layui-menu .layui-menu-item-down>ul{visibility:visible;height:auto}.layui-menu .layui-menu-item-checked,.layui-menu .layui-menu-item-checked2{background-color:#f6f6f6!important;color:#5fb878}.layui-menu .layui-menu-item-checked a,.layui-menu .layui-menu-item-checked2 a{color:#5fb878}.layui-menu .layui-menu-item-checked:after{position:absolute;right:0;top:0;bottom:0;border-right:3px solid #5fb878;content:""}.layui-menu-body-title{position:relative;overflow:hidden;text-overflow:ellipsis}.layui-menu-body-title a{display:block;margin:-5px -15px;color:rgba(0,0,0,.8)}.layui-menu-body-title a:hover{transition:all .3s}.layui-menu-body-title>.layui-icon{position:absolute;right:0;top:0;font-size:14px}.layui-menu-body-title>.layui-icon:hover{transition:all .3s}.layui-menu-body-title>.layui-icon-right{right:-1px}.layui-menu-body-panel{display:none;position:absolute;top:-7px;left:100%;z-index:1000;margin-left:13px;padding:5px 0}.layui-menu-body-panel:before{content:"";position:absolute;width:20px;left:-16px;top:0;bottom:0}.layui-menu-body-panel-left{left:auto;right:100%;margin:0 13px 0}.layui-menu-body-panel-left:before{left:auto;right:-16px}.layui-menu-lg li{line-height:32px}.layui-menu-lg .layui-menu-body-title a:hover,.layui-menu-lg li:hover{background:0 0;color:#5fb878}.layui-menu-lg li .layui-menu-body-panel{margin-left:14px}.layui-menu-lg li .layui-menu-body-panel-left{margin:0 15px 0}.layui-dropdown{position:absolute;left:-999999px;top:-999999px;z-index:77777777;margin:5px 0;min-width:100px}.layui-dropdown:before{content:"";position:absolute;width:100%;height:6px;left:0;top:-6px}.layui-nav{position:relative;padding:0 20px;background-color:#393d49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar{content:"";position:absolute;left:0;top:0;width:0;height:5px;background-color:#5fb878;transition:all .2s;-webkit-transition:all .2s;pointer-events:none}.layui-nav-bar{z-index:1000}.layui-nav[lay-bar=disabled] .layui-nav-bar{display:none}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{position:absolute;top:0;right:3px;left:auto!important;margin-top:0;font-size:12px;cursor:pointer;transition:all .2s;-webkit-transition:all .2s}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{transform:rotate(180deg)}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #eee;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#5f5f5f;color:rgba(0,0,0,.8)}.layui-nav .layui-nav-child a:hover{background-color:#f6f6f6;color:rgba(0,0,0,.8)}.layui-nav-child dd{margin:1px 0;position:relative}.layui-nav-child dd.layui-this{background-color:#f6f6f6;color:#000}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-child-r{left:auto;right:0}.layui-nav-child-c{text-align:center}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:40px}.layui-nav-tree .layui-nav-item a{position:relative;height:40px;line-height:40px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item>a{padding-top:5px;padding-bottom:5px}.layui-nav-tree .layui-nav-more{right:15px}.layui-nav-tree .layui-nav-item>a .layui-nav-more{padding:5px 0}.layui-nav-tree .layui-nav-bar{width:5px;height:0}.layui-side .layui-nav-tree .layui-nav-bar{width:2px}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-bar{background-color:#009688}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child dd{margin:0}.layui-nav-tree .layui-nav-child a{color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-itemed>.layui-nav-child{display:block;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-breadcrumb{visibility:hidden;font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5fb878!important}.layui-breadcrumb a cite{color:#5f5f5f;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block;padding:0 15px;margin:0 -15px}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:"";width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#eee;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:15px 0}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#ff5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5fb878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#fafafa}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5fb878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5fb878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#ff5722}.layui-timeline-item:before{content:"";position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:first-child:before{display:block}.layui-timeline-item:last-child:before{display:none}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px;line-height:22px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#ff5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#5f5f5f}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-5px 6px 0}.layui-nav .layui-badge{margin-top:-10px}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\0;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:none 0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\0;opacity:1;left:20px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#eee;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:999999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9f9f9f;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#5f5f5f;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #d9d9d9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #eee;border-left-width:6px;background-color:#fafafa;color:#333;font-family:Courier New;font-size:12px}.layui-transfer-box,.layui-transfer-header,.layui-transfer-search{border-width:0;border-style:solid;border-color:#eee}.layui-transfer-box{position:relative;display:inline-block;vertical-align:middle;border-width:1px;width:200px;height:360px;border-radius:2px;background-color:#fff}.layui-transfer-box .layui-form-checkbox{width:100%;margin:0!important}.layui-transfer-header{height:38px;line-height:38px;padding:0 10px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:10px;border-bottom-width:1px}.layui-transfer-search .layui-input{height:32px;padding-left:30px;font-size:12px}.layui-transfer-search .layui-icon-search{position:absolute;left:20px;top:50%;margin-top:-8px;color:#5f5f5f}.layui-transfer-active{margin:0 15px;display:inline-block;vertical-align:middle}.layui-transfer-active .layui-btn{display:block;margin:0;padding:0 15px;background-color:#5fb878;border-color:#5fb878;color:#fff}.layui-transfer-active .layui-btn-disabled{background-color:#fbfbfb;border-color:#eee;color:#d2d2d2}.layui-transfer-active .layui-btn:first-child{margin-bottom:15px}.layui-transfer-active .layui-btn .layui-icon{margin:0;font-size:14px!important}.layui-transfer-data{padding:5px 0;overflow:auto}.layui-transfer-data li{height:32px;line-height:32px;padding:0 10px}.layui-transfer-data li:hover{background-color:#f6f6f6;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 10px;text-align:center;color:#999}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#ffb800}.layui-rate li i.layui-icon{margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-colorpicker{width:26px;height:26px;border:1px solid #eee;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:34px;height:34px;line-height:32px}.layui-colorpicker.layui-colorpicker-sm{width:24px;height:24px;line-height:22px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:20px}.layui-colorpicker-trigger-bgcolor{display:block;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);border-radius:2px}.layui-colorpicker-trigger-span{display:block;height:100%;box-sizing:border-box;border:1px solid rgba(0,0,0,.15);border-radius:2px;text-align:center}.layui-colorpicker-trigger-i{display:inline-block;color:#fff;font-size:12px}.layui-colorpicker-trigger-i.layui-icon-close{color:#999}.layui-colorpicker-main{position:absolute;left:-999999px;top:-999999px;z-index:77777777;width:280px;margin:5px 0;padding:7px;background:#fff;border:1px solid #d2d2d2;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12)}.layui-colorpicker-main-wrapper{height:180px;position:relative}.layui-colorpicker-basis{width:260px;height:100%;position:relative}.layui-colorpicker-basis-white{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.layui-colorpicker-basis-black{width:100%;height:100%;position:absolute;top:0;left:0;background:linear-gradient(0deg,#000,transparent)}.layui-colorpicker-basis-cursor{width:10px;height:10px;border:1px solid #fff;border-radius:50%;position:absolute;top:-3px;right:-3px;cursor:pointer}.layui-colorpicker-side{position:absolute;top:0;right:0;width:12px;height:100%;background:linear-gradient(red,#ff0,#0f0,#0ff,#00f,#f0f,red)}.layui-colorpicker-side-slider{width:100%;height:5px;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;left:0}.layui-colorpicker-main-alpha{display:none;height:12px;margin-top:7px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-alpha-bgcolor{height:100%;position:relative}.layui-colorpicker-alpha-slider{width:5px;height:100%;box-shadow:0 0 1px #888;box-sizing:border-box;background:#fff;border-radius:1px;border:1px solid #f0f0f0;cursor:pointer;position:absolute;top:0}.layui-colorpicker-main-pre{padding-top:7px;font-size:0}.layui-colorpicker-pre{width:20px;height:20px;border-radius:2px;display:inline-block;margin-left:6px;margin-bottom:7px;cursor:pointer}.layui-colorpicker-pre:nth-child(11n+1){margin-left:0}.layui-colorpicker-pre-isalpha{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==)}.layui-colorpicker-pre.layui-this{box-shadow:0 0 3px 2px rgba(0,0,0,.15)}.layui-colorpicker-pre>div{height:100%;border-radius:2px}.layui-colorpicker-main-input{text-align:right;padding-top:7px}.layui-colorpicker-main-input .layui-btn-container .layui-btn{margin:0 0 0 10px}.layui-colorpicker-main-input div.layui-inline{float:left;margin-right:10px;font-size:14px}.layui-colorpicker-main-input input.layui-input{width:150px;height:30px;color:#5f5f5f}.layui-slider{height:4px;background:#eee;border-radius:3px;position:relative;cursor:pointer}.layui-slider-bar{border-radius:3px;position:absolute;height:100%}.layui-slider-step{position:absolute;top:0;width:4px;height:4px;border-radius:50%;background:#fff;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.layui-slider-wrap{width:36px;height:36px;position:absolute;top:-16px;-webkit-transform:translateX(-50%);transform:translateX(-50%);z-index:10;text-align:center}.layui-slider-wrap-btn{width:12px;height:12px;border-radius:50%;background:#fff;display:inline-block;vertical-align:middle;cursor:pointer;transition:.3s}.layui-slider-wrap:after{content:"";height:100%;display:inline-block;vertical-align:middle}.layui-slider-wrap-btn.layui-slider-hover,.layui-slider-wrap-btn:hover{transform:scale(1.2)}.layui-slider-wrap-btn.layui-disabled:hover{transform:scale(1)!important}.layui-slider-tips{position:absolute;top:-42px;z-index:77777777;white-space:nowrap;display:none;-webkit-transform:translateX(-50%);transform:translateX(-50%);color:#fff;background:#000;border-radius:3px;height:25px;line-height:25px;padding:0 10px}.layui-slider-tips:after{content:"";position:absolute;bottom:-12px;left:50%;margin-left:-6px;width:0;height:0;border-width:6px;border-style:solid;border-color:#000 transparent transparent transparent}.layui-slider-input{width:70px;height:32px;border:1px solid #eee;border-radius:3px;font-size:16px;line-height:32px;position:absolute;right:0;top:-14px}.layui-slider-input-btn{position:absolute;top:0;right:0;width:20px;height:100%;border-left:1px solid #eee}.layui-slider-input-btn i{cursor:pointer;position:absolute;right:0;bottom:0;width:20px;height:50%;font-size:12px;line-height:16px;text-align:center;color:#999}.layui-slider-input-btn i:first-child{top:0;border-bottom:1px solid #eee}.layui-slider-input-txt{height:100%;font-size:14px}.layui-slider-input-txt input{height:100%;border:none}.layui-slider-input-btn i:hover{color:#009688}.layui-slider-vertical{width:4px;margin-left:33px}.layui-slider-vertical .layui-slider-bar{width:4px}.layui-slider-vertical .layui-slider-step{top:auto;left:0;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-wrap{top:auto;left:-16px;-webkit-transform:translateY(50%);transform:translateY(50%)}.layui-slider-vertical .layui-slider-tips{top:auto;left:2px}@media \0screen{.layui-slider-wrap-btn{margin-left:-20px}.layui-slider-vertical .layui-slider-wrap-btn{margin-left:0;margin-bottom:-20px}.layui-slider-vertical .layui-slider-tips{margin-left:-8px}.layui-slider>span{margin-left:8px}}.layui-tree{line-height:22px}.layui-tree .layui-form-checkbox{margin:0!important}.layui-tree-set{width:100%;position:relative}.layui-tree-pack{display:none;padding-left:20px;position:relative}.layui-tree-line .layui-tree-pack{padding-left:27px}.layui-tree-line .layui-tree-set .layui-tree-set:after{content:"";position:absolute;top:14px;left:-9px;width:17px;height:0;border-top:1px dotted #c0c4cc}.layui-tree-entry{position:relative;padding:3px 0;height:20px;white-space:nowrap}.layui-tree-entry:hover{background-color:#eee}.layui-tree-line .layui-tree-entry:hover{background-color:rgba(0,0,0,0)}.layui-tree-line .layui-tree-entry:hover .layui-tree-txt{color:#999;text-decoration:underline;transition:.3s}.layui-tree-main{display:inline-block;vertical-align:middle;cursor:pointer;padding-right:10px}.layui-tree-line .layui-tree-set:before{content:"";position:absolute;top:0;left:-9px;width:0;height:100%;border-left:1px dotted #c0c4cc}.layui-tree-line .layui-tree-set.layui-tree-setLineShort:before{height:13px}.layui-tree-line .layui-tree-set.layui-tree-setHide:before{height:0}.layui-tree-iconClick{display:inline-block;vertical-align:middle;position:relative;height:20px;line-height:20px;margin:0 10px;color:#c0c4cc}.layui-tree-icon{height:12px;line-height:12px;width:12px;text-align:center;border:1px solid #c0c4cc}.layui-tree-iconClick .layui-icon{font-size:18px}.layui-tree-icon .layui-icon{font-size:12px;color:#5f5f5f}.layui-tree-iconArrow{padding:0 5px}.layui-tree-iconArrow:after{content:"";position:absolute;left:4px;top:3px;z-index:100;width:0;height:0;border-width:5px;border-style:solid;border-color:transparent transparent transparent #c0c4cc;transition:.5s}.layui-tree-spread>.layui-tree-entry .layui-tree-iconClick>.layui-tree-iconArrow:after{transform:rotate(90deg) translate(3px,4px)}.layui-tree-txt{display:inline-block;vertical-align:middle;color:#555}.layui-tree-search{margin-bottom:15px;color:#5f5f5f}.layui-tree-btnGroup{visibility:hidden;display:inline-block;vertical-align:middle;position:relative}.layui-tree-btnGroup .layui-icon{display:inline-block;vertical-align:middle;padding:0 2px;cursor:pointer}.layui-tree-btnGroup .layui-icon:hover{color:#999;transition:.3s}.layui-tree-entry:hover .layui-tree-btnGroup{visibility:visible}.layui-tree-editInput{position:relative;display:inline-block;vertical-align:middle;height:20px;line-height:20px;padding:0 3px;border:none;background-color:rgba(0,0,0,.05)}.layui-tree-emptyText{text-align:center;color:#999}.layui-anim{-webkit-animation-duration:.3s;-webkit-animation-fill-mode:both;animation-duration:.3s;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .2s;-webkit-transition:all .2s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,15px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,15px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@keyframes layui-down{0%{opacity:.3;transform:translate3d(0,-100%,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-down{animation-name:layui-down}@keyframes layui-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-anim-downbit{animation-name:layui-downbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@keyframes layui-scalesmall{0%{opacity:.3;transform:scale(1.5)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall{animation-name:layui-scalesmall}@keyframes layui-scalesmall-spring{0%{opacity:.3;transform:scale(1.5)}80%{opacity:.8;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}.layui-anim-scalesmall-spring{animation-name:layui-scalesmall-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout} \ No newline at end of file diff --git a/public/static/lib/layui/css/modules/code.css b/public/static/lib/layui/css/modules/code.css index 0fee0c50..a2ff92ae 100644 --- a/public/static/lib/layui/css/modules/code.css +++ b/public/static/lib/layui/css/modules/code.css @@ -1 +1 @@ -html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#FAFAFA;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 10px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view .layui-code-ol li:first-child{padding-top:10px}.layui-code-view .layui-code-ol li:last-child{padding-bottom:10px}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}.layui-code-demo .layui-code{visibility:visible!important;margin:-15px;border-top:none;border-right:none;border-bottom:none}.layui-code-demo .layui-tab-content{padding:15px;border-top:none} \ No newline at end of file +html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-view{display:block;position:relative;margin:10px 0;padding:0;border:1px solid #eee;border-left-width:6px;background-color:#fafafa;color:#333;font-family:Courier New;font-size:13px}.layui-code-title{position:relative;padding:0 10px;height:40px;line-height:40px;border-bottom:1px solid #eee;font-size:12px}.layui-code-title>.layui-code-about{position:absolute;right:10px;top:0;color:#b7b7b7}.layui-code-about>a{padding-left:10px}.layui-code-view>.layui-code-ol,.layui-code-view>.layui-code-ul{position:relative;overflow:auto}.layui-code-view>.layui-code-ol>li{position:relative;margin-left:45px;line-height:20px;padding:0 10px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view>.layui-code-ol>li:first-child,.layui-code-view>.layui-code-ul>li:first-child{padding-top:10px}.layui-code-view>.layui-code-ol>li:last-child,.layui-code-view>.layui-code-ul>li:last-child{padding-bottom:10px}.layui-code-view>.layui-code-ul>li{position:relative;line-height:20px;padding:0 10px;list-style-type:none;*list-style-type:none;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-dark{border:1px solid #0c0c0c;border-left-color:#3f3f3f;background-color:#0c0c0c;color:#c2be9e}.layui-code-dark>.layui-code-title{border-bottom:none}.layui-code-dark>.layui-code-ol>li,.layui-code-dark>.layui-code-ul>li{background-color:#3f3f3f;border-left:none}.layui-code-dark>.layui-code-ul>li{margin-left:6px}.layui-code-demo .layui-code{visibility:visible!important;margin:-15px;border-top:none;border-right:none;border-bottom:none}.layui-code-demo .layui-tab-content{padding:15px;border-top:none} \ No newline at end of file diff --git a/public/static/lib/layui/css/modules/laydate/default/laydate.css b/public/static/lib/layui/css/modules/laydate/default/laydate.css index c08928b5..549ccb80 100644 --- a/public/static/lib/layui/css/modules/laydate/default/laydate.css +++ b/public/static/lib/layui/css/modules/laydate/default/laydate.css @@ -1 +1 @@ -.laydate-set-ym,.layui-laydate,.layui-laydate *,.layui-laydate-list{box-sizing:border-box}html #layuicss-laydate{display:none;position:absolute;width:1989px}.layui-laydate *{margin:0;padding:0}.layui-laydate{position:absolute;z-index:66666666;margin:5px 0;border-radius:2px;font-size:14px;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both;animation-name:laydate-downbit}.layui-laydate-main{width:272px}.layui-laydate-content td,.layui-laydate-header *,.layui-laydate-list li{transition-duration:.3s;-webkit-transition-duration:.3s}@keyframes laydate-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-laydate-static{position:relative;z-index:0;display:inline-block;margin:0;-webkit-animation:none;animation:none}.laydate-ym-show .laydate-next-m,.laydate-ym-show .laydate-prev-m{display:none!important}.laydate-ym-show .laydate-next-y,.laydate-ym-show .laydate-prev-y{display:inline-block!important}.laydate-time-show .laydate-set-ym span[lay-type=month],.laydate-time-show .laydate-set-ym span[lay-type=year],.laydate-time-show .layui-laydate-header .layui-icon,.laydate-ym-show .laydate-set-ym span[lay-type=month]{display:none!important}.layui-laydate-header{position:relative;line-height:30px;padding:10px 70px 5px}.layui-laydate-header *{display:inline-block;vertical-align:bottom}.layui-laydate-header i{position:absolute;top:10px;padding:0 5px;color:#999;font-size:18px;cursor:pointer}.layui-laydate-header i.laydate-prev-y{left:15px}.layui-laydate-header i.laydate-prev-m{left:45px}.layui-laydate-header i.laydate-next-y{right:15px}.layui-laydate-header i.laydate-next-m{right:45px}.laydate-set-ym{width:100%;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.laydate-set-ym span{padding:0 10px;cursor:pointer}.laydate-time-text{cursor:default!important}.layui-laydate-content{position:relative;padding:10px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-laydate-content table{border-collapse:collapse;border-spacing:0}.layui-laydate-content td,.layui-laydate-content th{width:36px;height:30px;padding:5px;text-align:center}.layui-laydate-content td{position:relative;cursor:pointer}.laydate-day-mark{position:absolute;left:0;top:0;width:100%;line-height:30px;font-size:12px;overflow:hidden}.laydate-day-mark::after{position:absolute;content:'';right:2px;top:2px;width:5px;height:5px;border-radius:50%}.layui-laydate-footer{position:relative;height:46px;line-height:26px;padding:10px}.layui-laydate-footer span{display:inline-block;vertical-align:top;height:26px;line-height:24px;padding:0 10px;border:1px solid #C9C9C9;border-radius:2px;background-color:#fff;font-size:12px;cursor:pointer;white-space:nowrap;transition:all .3s}.layui-laydate-list>li,.layui-laydate-range .layui-laydate-main{display:inline-block;vertical-align:middle}.layui-laydate-footer span:hover{color:#5FB878}.layui-laydate-footer span.layui-laydate-preview{cursor:default;border-color:transparent!important}.layui-laydate-footer span.layui-laydate-preview:hover{color:#666}.layui-laydate-footer span:first-child.layui-laydate-preview{padding-left:0}.laydate-footer-btns{position:absolute;right:10px;top:10px}.laydate-footer-btns span{margin:0 0 0 -1px}.layui-laydate-list{position:absolute;left:0;top:0;width:100%;height:100%;padding:10px;background-color:#fff}.layui-laydate-list>li{position:relative;width:33.3%;height:36px;line-height:36px;margin:3px 0;text-align:center;cursor:pointer}.laydate-month-list>li{width:25%;margin:17px 0}.laydate-time-list>li{height:100%;margin:0;line-height:normal;cursor:default}.laydate-time-list p{position:relative;top:-4px;line-height:29px}.laydate-time-list ol{height:181px;overflow:hidden}.laydate-time-list>li:hover ol{overflow-y:auto}.laydate-time-list ol li{width:130%;padding-left:33px;height:30px;line-height:30px;text-align:left;cursor:pointer}.layui-laydate-hint{position:absolute;top:115px;left:50%;width:250px;margin-left:-125px;line-height:20px;padding:15px;text-align:center;font-size:12px}.layui-laydate-range{width:546px}.layui-laydate-range .laydate-main-list-1 .layui-laydate-content,.layui-laydate-range .laydate-main-list-1 .layui-laydate-header{border-left:1px solid #e2e2e2}.layui-laydate,.layui-laydate-hint{border:1px solid #d2d2d2;box-shadow:0 2px 4px rgba(0,0,0,.12);background-color:#fff;color:#666}.layui-laydate-header{border-bottom:1px solid #e2e2e2}.layui-laydate-header i:hover,.layui-laydate-header span:hover{color:#5FB878}.layui-laydate-content{border-top:none 0;border-bottom:none 0}.layui-laydate-content th{font-weight:400;color:#333}.layui-laydate-content td{color:#666}.layui-laydate-content td.laydate-selected{background-color:#B5FFF8}.laydate-selected:hover{background-color:#00F7DE!important}.layui-laydate-content td:hover,.layui-laydate-list li:hover{background-color:#eee;color:#333}.laydate-time-list li ol{margin:0;padding:0;border:1px solid #e2e2e2;border-left-width:0}.laydate-time-list li:first-child ol{border-left-width:1px}.laydate-time-list>li:hover{background:0 0}.layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color:#d2d2d2}.laydate-selected.laydate-day-next,.laydate-selected.laydate-day-prev{background-color:#f8f8f8!important}.layui-laydate-footer{border-top:1px solid #e2e2e2}.layui-laydate-hint{color:#FF5722}.laydate-day-mark::after{background-color:#5FB878}.layui-laydate-content td.layui-this .laydate-day-mark::after{display:none}.layui-laydate-footer span[lay-type=date]{color:#5FB878}.layui-laydate .layui-this{background-color:#009688!important;color:#fff!important}.layui-laydate .laydate-disabled,.layui-laydate .laydate-disabled:hover{background:0 0!important;color:#d2d2d2!important;cursor:not-allowed!important;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.laydate-theme-molv{border:none}.laydate-theme-molv.layui-laydate-range{width:548px}.laydate-theme-molv .layui-laydate-main{width:274px}.laydate-theme-molv .layui-laydate-header{border:none;background-color:#009688}.laydate-theme-molv .layui-laydate-header i,.laydate-theme-molv .layui-laydate-header span{color:#f6f6f6}.laydate-theme-molv .layui-laydate-header i:hover,.laydate-theme-molv .layui-laydate-header span:hover{color:#fff}.laydate-theme-molv .layui-laydate-content{border:1px solid #e2e2e2;border-top:none;border-bottom:none}.laydate-theme-molv .laydate-main-list-1 .layui-laydate-content{border-left:none}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li,.laydate-theme-grid .layui-laydate-content td,.laydate-theme-grid .layui-laydate-content thead,.laydate-theme-molv .layui-laydate-footer{border:1px solid #e2e2e2}.laydate-theme-grid .laydate-selected,.laydate-theme-grid .laydate-selected:hover{background-color:#f2f2f2!important;color:#009688!important}.laydate-theme-grid .laydate-selected.laydate-day-next,.laydate-theme-grid .laydate-selected.laydate-day-prev{color:#d2d2d2!important}.laydate-theme-grid .laydate-month-list,.laydate-theme-grid .laydate-year-list{margin:1px 0 0 1px}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li{margin:0 -1px -1px 0}.laydate-theme-grid .laydate-year-list>li{height:43px;line-height:43px}.laydate-theme-grid .laydate-month-list>li{height:71px;line-height:71px} \ No newline at end of file +html #layuicss-laydate{display:none;position:absolute;width:1989px}.layui-laydate *{margin:0;padding:0}.layui-laydate,.layui-laydate *{box-sizing:border-box}.layui-laydate{position:absolute;z-index:66666666;margin:5px 0;border-radius:2px;font-size:14px;-webkit-animation-duration:.2s;animation-duration:.2s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.layui-laydate-main{width:272px}.layui-laydate-content td,.layui-laydate-header *,.layui-laydate-list li{transition-duration:.3s;-webkit-transition-duration:.3s}@keyframes laydate-downbit{0%{opacity:.3;transform:translate3d(0,-5px,0)}100%{opacity:1;transform:translate3d(0,0,0)}}.layui-laydate{animation-name:laydate-downbit}.layui-laydate-static{position:relative;z-index:0;display:inline-block;margin:0;-webkit-animation:none;animation:none}.laydate-ym-show .laydate-next-m,.laydate-ym-show .laydate-prev-m{display:none!important}.laydate-ym-show .laydate-next-y,.laydate-ym-show .laydate-prev-y{display:inline-block!important}.laydate-ym-show .laydate-set-ym span[lay-type=month]{display:none!important}.laydate-time-show .laydate-set-ym span[lay-type=month],.laydate-time-show .laydate-set-ym span[lay-type=year],.laydate-time-show .layui-laydate-header .layui-icon{display:none!important}.layui-laydate-header{position:relative;line-height:30px;padding:10px 70px 5px}.layui-laydate-header *{display:inline-block;vertical-align:bottom}.layui-laydate-header i{position:absolute;top:10px;padding:0 5px;color:#999;font-size:18px;cursor:pointer}.layui-laydate-header i.laydate-prev-y{left:15px}.layui-laydate-header i.laydate-prev-m{left:45px}.layui-laydate-header i.laydate-next-y{right:15px}.layui-laydate-header i.laydate-next-m{right:45px}.laydate-set-ym{width:100%;text-align:center;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.laydate-set-ym span{padding:0 10px;cursor:pointer}.laydate-time-text{cursor:default!important}.layui-laydate-content{position:relative;padding:10px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-laydate-content table{border-collapse:collapse;border-spacing:0}.layui-laydate-content td,.layui-laydate-content th{width:36px;height:30px;padding:5px;text-align:center}.layui-laydate-content th{font-weight:400}.layui-laydate-content td{position:relative;cursor:pointer}.laydate-day-mark{position:absolute;left:0;top:0;width:100%;line-height:30px;font-size:12px;overflow:hidden}.laydate-day-mark::after{position:absolute;content:'';right:2px;top:2px;width:5px;height:5px;border-radius:50%}.laydate-day-holidays:before{position:absolute;left:0;top:0;font-size:12px;transform:scale(.7)}.laydate-day-holidays:before{content:'\4F11';color:#ff5722}.laydate-day-holidays[type=work]:before{content:'\73ED';color:inherit}.layui-laydate .layui-this .laydate-day-holidays:before{color:#fff}.layui-laydate-footer{position:relative;height:46px;line-height:26px;padding:10px}.layui-laydate-footer span{display:inline-block;vertical-align:top;height:26px;line-height:24px;padding:0 10px;border:1px solid #c9c9c9;border-radius:2px;background-color:#fff;font-size:12px;cursor:pointer;white-space:nowrap;transition:all .3s}.layui-laydate-footer span:hover{color:#5fb878}.layui-laydate-footer span.layui-laydate-preview{cursor:default;border-color:transparent!important}.layui-laydate-footer span.layui-laydate-preview:hover{color:#666}.layui-laydate-footer span:first-child.layui-laydate-preview{padding-left:0}.laydate-footer-btns{position:absolute;right:10px;top:10px}.laydate-footer-btns span{margin:0 0 0 -1px}.layui-laydate-list{position:absolute;left:0;top:0;width:100%;height:100%;padding:10px;box-sizing:border-box;background-color:#fff}.layui-laydate-list>li{position:relative;display:inline-block;width:33.3%;height:36px;line-height:36px;margin:3px 0;vertical-align:middle;text-align:center;cursor:pointer}.laydate-month-list>li{width:25%;margin:17px 0}.laydate-time-list>li{height:100%;margin:0;line-height:normal;cursor:default}.laydate-time-list p{position:relative;top:-4px;line-height:29px}.laydate-time-list ol{height:181px;overflow:hidden}.laydate-time-list>li:hover ol{overflow-y:auto}.laydate-time-list ol li{width:130%;padding-left:33px;height:30px;line-height:30px;text-align:left;cursor:pointer}.layui-laydate-hint{position:absolute;top:115px;left:50%;width:250px;margin-left:-125px;line-height:20px;padding:15px;text-align:center;font-size:12px;color:#ff5722}.layui-laydate-range{width:546px}.layui-laydate-range .layui-laydate-main{display:inline-block;vertical-align:middle}.layui-laydate-range .laydate-main-list-1 .layui-laydate-content,.layui-laydate-range .laydate-main-list-1 .layui-laydate-header{border-left:1px solid #e2e2e2}.layui-laydate,.layui-laydate-hint{border:1px solid #d2d2d2;box-shadow:0 2px 4px rgba(0,0,0,.12);background-color:#fff;color:#666}.layui-laydate-header{border-bottom:1px solid #e2e2e2}.layui-laydate-header i:hover,.layui-laydate-header span:hover{color:#5fb878}.layui-laydate-content{border-top:none 0;border-bottom:none 0}.layui-laydate-content th{color:#333}.layui-laydate-content td{color:#666}.layui-laydate-content td.laydate-selected{background-color:#b5fff8}.laydate-selected:hover{background-color:#00f7de!important}.layui-laydate-content td:hover,.layui-laydate-list li:hover{background-color:#eee;color:#333}.laydate-time-list li ol{margin:0;padding:0;border:1px solid #e2e2e2;border-left-width:0}.laydate-time-list li:first-child ol{border-left-width:1px}.laydate-time-list>li:hover{background:0 0}.layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color:#d2d2d2}.laydate-selected.laydate-day-next,.laydate-selected.laydate-day-prev{background-color:#f8f8f8!important}.layui-laydate-footer{border-top:1px solid #e2e2e2}.layui-laydate-hint{color:#ff5722}.laydate-day-mark::after{background-color:#5fb878}.layui-laydate-content td.layui-this .laydate-day-mark::after{display:none}.layui-laydate-footer span[lay-type=date]{color:#5fb878}.layui-laydate .layui-this{background-color:#009688!important;color:#fff!important}.layui-laydate .laydate-disabled,.layui-laydate .laydate-disabled:hover{background:0 0!important;color:#d2d2d2!important;cursor:not-allowed!important;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.laydate-theme-molv{border:none}.laydate-theme-molv.layui-laydate-range{width:548px}.laydate-theme-molv .layui-laydate-main{width:274px}.laydate-theme-molv .layui-laydate-header{border:none;background-color:#009688}.laydate-theme-molv .layui-laydate-header i,.laydate-theme-molv .layui-laydate-header span{color:#f6f6f6}.laydate-theme-molv .layui-laydate-header i:hover,.laydate-theme-molv .layui-laydate-header span:hover{color:#fff}.laydate-theme-molv .layui-laydate-content{border:1px solid #e2e2e2;border-top:none;border-bottom:none}.laydate-theme-molv .laydate-main-list-1 .layui-laydate-content{border-left:none}.laydate-theme-molv .layui-laydate-footer{border:1px solid #e2e2e2}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li,.laydate-theme-grid .layui-laydate-content td,.laydate-theme-grid .layui-laydate-content thead{border:1px solid #e2e2e2}.laydate-theme-grid .laydate-selected,.laydate-theme-grid .laydate-selected:hover{background-color:#f2f2f2!important;color:#009688!important}.laydate-theme-grid .laydate-selected.laydate-day-next,.laydate-theme-grid .laydate-selected.laydate-day-prev{color:#d2d2d2!important}.laydate-theme-grid .laydate-month-list,.laydate-theme-grid .laydate-year-list{margin:1px 0 0 1px}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li{margin:0 -1px -1px 0}.laydate-theme-grid .laydate-year-list>li{height:43px;line-height:43px}.laydate-theme-grid .laydate-month-list>li{height:71px;line-height:71px} \ No newline at end of file diff --git a/public/static/lib/layui/css/modules/layer/default/layer.css b/public/static/lib/layui/css/modules/layer/default/layer.css index db51f318..d5122e36 100644 --- a/public/static/lib/layui/css/modules/layer/default/layer.css +++ b/public/static/lib/layui/css/modules/layer/default/layer.css @@ -1 +1 @@ -.layui-layer-imgbar,.layui-layer-imgtit a,.layui-layer-tab .layui-layer-title span,.layui-layer-title{text-overflow:ellipsis;white-space:nowrap}html #layuicss-layer{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px")}.layui-layer{-webkit-overflow-scrolling:touch;top:150px;left:0;margin:0;padding:0;background-color:#fff;-webkit-background-clip:content;border-radius:2px;box-shadow:1px 1px 50px rgba(0,0,0,.3)}.layui-layer-close{position:absolute}.layui-layer-content{position:relative}.layui-layer-border{border:1px solid #B2B2B2;border:1px solid rgba(0,0,0,.1);box-shadow:1px 1px 5px rgba(0,0,0,.2)}.layui-layer-load{background:url(loading-1.gif) center center no-repeat #eee}.layui-layer-ico{background:url(icon.png) no-repeat}.layui-layer-btn a,.layui-layer-dialog .layui-layer-ico,.layui-layer-setwin a{display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-move{display:none;position:fixed;*position:absolute;left:0;top:0;width:100%;height:100%;cursor:move;opacity:0;filter:alpha(opacity=0);background-color:#fff;z-index:2147483647}.layui-layer-resize{position:absolute;width:15px;height:15px;right:0;bottom:0;cursor:se-resize}.layer-anim{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-00{-webkit-animation-name:layer-bounceIn;animation-name:layer-bounceIn}@-webkit-keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-01{-webkit-animation-name:layer-zoomInDown;animation-name:layer-zoomInDown}@-webkit-keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.layer-anim-02{-webkit-animation-name:layer-fadeInUpBig;animation-name:layer-fadeInUpBig}@-webkit-keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-03{-webkit-animation-name:layer-zoomInLeft;animation-name:layer-zoomInLeft}@-webkit-keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);-ms-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.layer-anim-04{-webkit-animation-name:layer-rollIn;animation-name:layer-rollIn}@keyframes layer-fadeIn{0%{opacity:0}100%{opacity:1}}.layer-anim-05{-webkit-animation-name:layer-fadeIn;animation-name:layer-fadeIn}@-webkit-keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.layer-anim-06{-webkit-animation-name:layer-shake;animation-name:layer-shake}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.layui-layer-title{padding:0 80px 0 20px;height:50px;line-height:50px;border-bottom:1px solid #F0F0F0;font-size:14px;color:#333;overflow:hidden;border-radius:2px 2px 0 0}.layui-layer-setwin{position:absolute;right:15px;*right:0;top:17px;font-size:0;line-height:initial}.layui-layer-setwin a{position:relative;width:16px;height:16px;margin-left:10px;font-size:12px;_overflow:hidden}.layui-layer-setwin .layui-layer-min cite{position:absolute;width:14px;height:2px;left:0;top:50%;margin-top:-1px;background-color:#2E2D3C;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover cite{background-color:#2D93CA}.layui-layer-setwin .layui-layer-max{background-position:-32px -40px}.layui-layer-setwin .layui-layer-max:hover{background-position:-16px -40px}.layui-layer-setwin .layui-layer-maxmin{background-position:-65px -40px}.layui-layer-setwin .layui-layer-maxmin:hover{background-position:-49px -40px}.layui-layer-setwin .layui-layer-close1{background-position:1px -40px;cursor:pointer}.layui-layer-setwin .layui-layer-close1:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2{position:absolute;right:-28px;top:-28px;width:30px;height:30px;margin-left:0;background-position:-149px -31px;*right:-18px;_display:none}.layui-layer-setwin .layui-layer-close2:hover{background-position:-180px -31px}.layui-layer-btn{text-align:right;padding:0 15px 12px;pointer-events:auto;user-select:none;-webkit-user-select:none}.layui-layer-btn a{height:28px;line-height:28px;margin:5px 5px 0;padding:0 15px;border:1px solid #dedede;background-color:#fff;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none}.layui-layer-btn a:hover{opacity:.9;text-decoration:none}.layui-layer-btn a:active{opacity:.8}.layui-layer-btn .layui-layer-btn0{border-color:#1E9FFF;background-color:#1E9FFF;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:300px}.layui-layer-dialog .layui-layer-content{position:relative;padding:20px;line-height:24px;word-break:break-all;overflow:hidden;font-size:14px;overflow-x:hidden;overflow-y:auto}.layui-layer-dialog .layui-layer-content .layui-layer-ico{position:absolute;top:16px;left:15px;_left:-40px;width:30px;height:30px}.layui-layer-ico1{background-position:-30px 0}.layui-layer-ico2{background-position:-60px 0}.layui-layer-ico3{background-position:-90px 0}.layui-layer-ico4{background-position:-120px 0}.layui-layer-ico5{background-position:-150px 0}.layui-layer-ico6{background-position:-180px 0}.layui-layer-rim{border:6px solid #8D8D8D;border:6px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:none}.layui-layer-msg{min-width:180px;border:1px solid #D3D4D3;box-shadow:none}.layui-layer-hui{min-width:100px;background-color:#000;filter:alpha(opacity=60);background-color:rgba(0,0,0,.6);color:#fff;border:none}.layui-layer-hui .layui-layer-content{padding:12px 25px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:20px 20px 20px 55px;text-align:left}.layui-layer-page .layui-layer-content{position:relative;overflow:auto}.layui-layer-iframe .layui-layer-btn,.layui-layer-page .layui-layer-btn{padding-top:10px}.layui-layer-nobg{background:0 0}.layui-layer-iframe iframe{display:block;width:100%}.layui-layer-loading{border-radius:100%;background:0 0;box-shadow:none;border:none}.layui-layer-loading .layui-layer-content{width:60px;height:24px;background:url(loading-0.gif) no-repeat}.layui-layer-loading .layui-layer-loading1{width:37px;height:37px;background:url(loading-1.gif) no-repeat}.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2{width:32px;height:32px;background:url(loading-2.gif) no-repeat}.layui-layer-tips{background:0 0;box-shadow:none;border:none}.layui-layer-tips .layui-layer-content{position:relative;line-height:22px;min-width:12px;padding:8px 15px;font-size:12px;_float:left;border-radius:2px;box-shadow:1px 1px 3px rgba(0,0,0,.2);background-color:#000;color:#fff}.layui-layer-tips .layui-layer-close{right:-2px;top:-1px}.layui-layer-tips i.layui-layer-TipsG{position:absolute;width:0;height:0;border-width:8px;border-color:transparent;border-style:dashed;*overflow:hidden}.layui-layer-tips i.layui-layer-TipsB,.layui-layer-tips i.layui-layer-TipsT{left:5px;border-right-style:solid;border-right-color:#000}.layui-layer-tips i.layui-layer-TipsT{bottom:-8px}.layui-layer-tips i.layui-layer-TipsB{top:-8px}.layui-layer-tips i.layui-layer-TipsL,.layui-layer-tips i.layui-layer-TipsR{top:5px;border-bottom-style:solid;border-bottom-color:#000}.layui-layer-tips i.layui-layer-TipsR{left:-8px}.layui-layer-tips i.layui-layer-TipsL{right:-8px}.layui-layer-lan[type=dialog]{min-width:280px}.layui-layer-lan .layui-layer-title{background:#4476A7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;text-align:right;border-top:1px solid #E9E7E7}.layui-layer-lan .layui-layer-btn a{background:#fff;border-color:#E9E7E7;color:#333}.layui-layer-lan .layui-layer-btn .layui-layer-btn1{background:#C9C5C5}.layui-layer-molv .layui-layer-title{background:#009f95;color:#fff;border:none}.layui-layer-molv .layui-layer-btn a{background:#009f95;border-color:#009f95}.layui-layer-molv .layui-layer-btn .layui-layer-btn1{background:#92B8B1}.layui-layer-iconext{background:url(icon-ext.png) no-repeat}.layui-layer-prompt .layui-layer-input{display:block;width:260px;height:36px;margin:0 auto;line-height:30px;padding-left:10px;border:1px solid #e6e6e6;color:#333}.layui-layer-prompt textarea.layui-layer-input{width:300px;height:100px;line-height:20px;padding:6px 10px}.layui-layer-prompt .layui-layer-content{padding:20px}.layui-layer-prompt .layui-layer-btn{padding-top:0}.layui-layer-tab{box-shadow:1px 1px 50px rgba(0,0,0,.4)}.layui-layer-tab .layui-layer-title{padding-left:0;overflow:visible}.layui-layer-tab .layui-layer-title span{position:relative;float:left;min-width:80px;max-width:300px;padding:0 20px;text-align:center;overflow:hidden;cursor:pointer}.layui-layer-tab .layui-layer-title span.layui-this{height:51px;border-left:1px solid #eee;border-right:1px solid #eee;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left:none}.layui-layer-tabmain{line-height:24px;clear:both}.layui-layer-tabmain .layui-layer-tabli{display:none}.layui-layer-tabmain .layui-layer-tabli.layui-this{display:block}.layui-layer-photos{background:0 0;box-shadow:none}.layui-layer-photos .layui-layer-content{overflow:hidden;text-align:center}.layui-layer-photos .layui-layer-phimg img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-imgnext,.layui-layer-imgprev{position:fixed;top:50%;width:27px;_width:44px;height:44px;margin-top:-22px;outline:0;blr:expression(this.onFocus=this.blur())}.layui-layer-imgprev{left:30px;background-position:-5px -5px;_background-position:-70px -5px}.layui-layer-imgprev:hover{background-position:-33px -5px;_background-position:-120px -5px}.layui-layer-imgnext{right:30px;_right:8px;background-position:-5px -50px;_background-position:-70px -50px}.layui-layer-imgnext:hover{background-position:-33px -50px;_background-position:-120px -50px}.layui-layer-imgbar{position:fixed;left:0;right:0;bottom:0;width:100%;height:40px;line-height:40px;background-color:#000\9;filter:Alpha(opacity=60);background-color:rgba(2,0,0,.35);color:#fff;overflow:hidden;font-size:0}.layui-layer-imgtit *{display:inline-block;*display:inline;*zoom:1;vertical-align:top;font-size:12px}.layui-layer-imgtit a{max-width:65%;overflow:hidden;color:#fff}.layui-layer-imgtit a:hover{color:#fff;text-decoration:underline}.layui-layer-imgtit em{padding-left:10px;font-style:normal}@-webkit-keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-close{-webkit-animation-name:layer-bounceOut;animation-name:layer-bounceOut;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}@media screen and (max-width:1100px){.layui-layer-iframe{overflow-y:auto;-webkit-overflow-scrolling:touch}} \ No newline at end of file +html #layuicss-layer{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px")}.layui-layer{-webkit-overflow-scrolling:touch}.layui-layer{top:150px;left:0;margin:0;padding:0;background-color:#fff;-webkit-background-clip:content;border-radius:2px;box-shadow:1px 1px 50px rgba(0,0,0,.3)}.layui-layer-close{position:absolute}.layui-layer-content{position:relative}.layui-layer-border{border:1px solid #b2b2b2;border:1px solid rgba(0,0,0,.1);box-shadow:1px 1px 5px rgba(0,0,0,.2)}.layui-layer-load{background:url(loading-1.gif) #eee center center no-repeat}.layui-layer-ico{background:url(icon.png) no-repeat}.layui-layer-btn a,.layui-layer-dialog .layui-layer-ico,.layui-layer-setwin a{display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-move{display:none;position:fixed;*position:absolute;left:0;top:0;width:100%;height:100%;cursor:move;opacity:0;filter:alpha(opacity=0);background-color:#fff;z-index:2147483647}.layui-layer-resize{position:absolute;width:15px;height:15px;right:0;bottom:0;cursor:se-resize}.layer-anim{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-00{-webkit-animation-name:layer-bounceIn;animation-name:layer-bounceIn}@-webkit-keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-01{-webkit-animation-name:layer-zoomInDown;animation-name:layer-zoomInDown}@-webkit-keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.layer-anim-02{-webkit-animation-name:layer-fadeInUpBig;animation-name:layer-fadeInUpBig}@-webkit-keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-03{-webkit-animation-name:layer-zoomInLeft;animation-name:layer-zoomInLeft}@-webkit-keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);-ms-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.layer-anim-04{-webkit-animation-name:layer-rollIn;animation-name:layer-rollIn}@keyframes layer-fadeIn{0%{opacity:0}100%{opacity:1}}.layer-anim-05{-webkit-animation-name:layer-fadeIn;animation-name:layer-fadeIn}@-webkit-keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.layer-anim-06{-webkit-animation-name:layer-shake;animation-name:layer-shake}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.layui-layer-title{padding:0 80px 0 20px;height:50px;line-height:50px;border-bottom:1px solid #f0f0f0;font-size:14px;color:#333;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:2px 2px 0 0}.layui-layer-setwin{position:absolute;right:15px;*right:0;top:17px;font-size:0;line-height:initial}.layui-layer-setwin a{position:relative;width:16px;height:16px;margin-left:10px;font-size:12px;_overflow:hidden}.layui-layer-setwin .layui-layer-min cite{position:absolute;width:14px;height:2px;left:0;top:50%;margin-top:-1px;background-color:#2e2d3c;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover cite{background-color:#2d93ca}.layui-layer-setwin .layui-layer-max{background-position:-32px -40px}.layui-layer-setwin .layui-layer-max:hover{background-position:-16px -40px}.layui-layer-setwin .layui-layer-maxmin{background-position:-65px -40px}.layui-layer-setwin .layui-layer-maxmin:hover{background-position:-49px -40px}.layui-layer-setwin .layui-layer-close1{background-position:1px -40px;cursor:pointer}.layui-layer-setwin .layui-layer-close1:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2{position:absolute;right:-28px;top:-28px;width:30px;height:30px;margin-left:0;background-position:-149px -31px;*right:-18px;_display:none}.layui-layer-setwin .layui-layer-close2:hover{background-position:-180px -31px}.layui-layer-btn{text-align:right;padding:0 15px 12px;pointer-events:auto;user-select:none;-webkit-user-select:none}.layui-layer-btn a{height:28px;line-height:28px;margin:5px 5px 0;padding:0 15px;border:1px solid #dedede;background-color:#fff;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none}.layui-layer-btn a:hover{opacity:.9;text-decoration:none}.layui-layer-btn a:active{opacity:.8}.layui-layer-btn .layui-layer-btn0{border-color:#1e9fff;background-color:#1e9fff;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:300px}.layui-layer-dialog .layui-layer-content{position:relative;padding:20px;line-height:24px;word-break:break-all;overflow:hidden;font-size:14px;overflow-x:hidden;overflow-y:auto}.layui-layer-dialog .layui-layer-content .layui-layer-ico{position:absolute;top:16px;left:15px;_left:-40px;width:30px;height:30px}.layui-layer-ico1{background-position:-30px 0}.layui-layer-ico2{background-position:-60px 0}.layui-layer-ico3{background-position:-90px 0}.layui-layer-ico4{background-position:-120px 0}.layui-layer-ico5{background-position:-150px 0}.layui-layer-ico6{background-position:-180px 0}.layui-layer-rim{border:6px solid #8d8d8d;border:6px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:none}.layui-layer-msg{min-width:180px;border:1px solid #d3d4d3;box-shadow:none}.layui-layer-hui{min-width:100px;background-color:#000;filter:alpha(opacity=60);background-color:rgba(0,0,0,.6);color:#fff;border:none}.layui-layer-hui .layui-layer-content{padding:12px 25px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:20px 20px 20px 55px;text-align:left}.layui-layer-page .layui-layer-content{position:relative;overflow:auto}.layui-layer-iframe .layui-layer-btn,.layui-layer-page .layui-layer-btn{padding-top:10px}.layui-layer-nobg{background:0 0}.layui-layer-iframe iframe{display:block;width:100%}.layui-layer-loading{border-radius:100%;background:0 0;box-shadow:none;border:none}.layui-layer-loading .layui-layer-content{width:60px;height:24px;background:url(loading-0.gif) no-repeat}.layui-layer-loading .layui-layer-loading1{width:37px;height:37px;background:url(loading-1.gif) no-repeat}.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2{width:32px;height:32px;background:url(loading-2.gif) no-repeat}.layui-layer-tips{background:0 0;box-shadow:none;border:none}.layui-layer-tips .layui-layer-content{position:relative;line-height:22px;min-width:12px;padding:8px 15px;font-size:12px;_float:left;border-radius:2px;box-shadow:1px 1px 3px rgba(0,0,0,.2);background-color:#000;color:#fff}.layui-layer-tips .layui-layer-close{right:-2px;top:-1px}.layui-layer-tips i.layui-layer-TipsG{position:absolute;width:0;height:0;border-width:8px;border-color:transparent;border-style:dashed;*overflow:hidden}.layui-layer-tips i.layui-layer-TipsB,.layui-layer-tips i.layui-layer-TipsT{left:5px;border-right-style:solid;border-right-color:#000}.layui-layer-tips i.layui-layer-TipsT{bottom:-8px}.layui-layer-tips i.layui-layer-TipsB{top:-8px}.layui-layer-tips i.layui-layer-TipsL,.layui-layer-tips i.layui-layer-TipsR{top:5px;border-bottom-style:solid;border-bottom-color:#000}.layui-layer-tips i.layui-layer-TipsR{left:-8px}.layui-layer-tips i.layui-layer-TipsL{right:-8px}.layui-layer-lan[type=dialog]{min-width:280px}.layui-layer-lan .layui-layer-title{background:#4476a7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;text-align:right;border-top:1px solid #e9e7e7}.layui-layer-lan .layui-layer-btn a{background:#fff;border-color:#e9e7e7;color:#333}.layui-layer-lan .layui-layer-btn .layui-layer-btn1{background:#c9c5c5}.layui-layer-molv .layui-layer-title{background:#009f95;color:#fff;border:none}.layui-layer-molv .layui-layer-btn a{background:#009f95;border-color:#009f95}.layui-layer-molv .layui-layer-btn .layui-layer-btn1{background:#92b8b1}.layui-layer-iconext{background:url(icon-ext.png) no-repeat}.layui-layer-prompt .layui-layer-input{display:block;width:260px;height:36px;margin:0 auto;line-height:30px;padding-left:10px;border:1px solid #e6e6e6;color:#333}.layui-layer-prompt textarea.layui-layer-input{width:300px;height:100px;line-height:20px;padding:6px 10px}.layui-layer-prompt .layui-layer-content{padding:20px}.layui-layer-prompt .layui-layer-btn{padding-top:0}.layui-layer-tab{box-shadow:1px 1px 50px rgba(0,0,0,.4)}.layui-layer-tab .layui-layer-title{padding-left:0;overflow:visible}.layui-layer-tab .layui-layer-title span{position:relative;float:left;min-width:80px;max-width:300px;padding:0 20px;text-align:center;cursor:default;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;cursor:pointer}.layui-layer-tab .layui-layer-title span.layui-this{height:51px;border-left:1px solid #eee;border-right:1px solid #eee;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left:none}.layui-layer-tabmain{line-height:24px;clear:both}.layui-layer-tabmain .layui-layer-tabli{display:none}.layui-layer-tabmain .layui-layer-tabli.layui-this{display:block}.layui-layer-photos{background:0 0;box-shadow:none}.layui-layer-photos .layui-layer-content{overflow:hidden;text-align:center}.layui-layer-photos .layui-layer-phimg img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-imgnext,.layui-layer-imgprev{position:fixed;top:50%;width:27px;_width:44px;height:44px;margin-top:-22px;outline:0;blr:expression(this.onFocus=this.blur())}.layui-layer-imgprev{left:30px;background-position:-5px -5px;_background-position:-70px -5px}.layui-layer-imgprev:hover{background-position:-33px -5px;_background-position:-120px -5px}.layui-layer-imgnext{right:30px;_right:8px;background-position:-5px -50px;_background-position:-70px -50px}.layui-layer-imgnext:hover{background-position:-33px -50px;_background-position:-120px -50px}.layui-layer-imgbar{position:fixed;left:0;right:0;bottom:0;width:100%;height:40px;line-height:40px;background-color:#000\9;filter:Alpha(opacity=60);background-color:rgba(2,0,0,.35);color:#fff;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;font-size:0}.layui-layer-imgtit *{display:inline-block;*display:inline;*zoom:1;vertical-align:top;font-size:12px}.layui-layer-imgtit a{max-width:65%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#fff}.layui-layer-imgtit a:hover{color:#fff;text-decoration:underline}.layui-layer-imgtit em{padding-left:10px;font-style:normal}@-webkit-keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-close{-webkit-animation-name:layer-bounceOut;animation-name:layer-bounceOut;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}@media screen and (max-width:1100px){.layui-layer-iframe{overflow-y:auto;-webkit-overflow-scrolling:touch}} \ No newline at end of file diff --git a/public/static/lib/layui/font/iconfont.svg b/public/static/lib/layui/font/iconfont.svg index 61541ef0..566f411a 100644 --- a/public/static/lib/layui/font/iconfont.svg +++ b/public/static/lib/layui/font/iconfont.svg @@ -70,14 +70,18 @@ Created by iconfont - - - - + - - + + + + + @@ -148,22 +152,34 @@ Created by iconfont horiz-adv-x="1024"/> - + - - - - + - - - - + - - + + + + + + + + - + - - - - + + + + + - @@ -385,14 +407,20 @@ Created by iconfont - - - - + - - + + + + + - + - - - - + + + + + - @@ -679,14 +711,20 @@ Created by iconfont - - - - + - - + + + + + 0;o--)if("interactive"===n[o].readyState){t=n[o].src;break}return t||n[r].src}();return n.dir=o.dir||t.substring(0,t.lastIndexOf("/")+1)}(),i=function(e,n){n=n||"log",t.console&&console[n]&&console[n]("layui error hint: "+e)},u="undefined"!=typeof opera&&"[object Opera]"===opera.toString(),l=n.builtin={lay:"lay",layer:"layer",laydate:"laydate",laypage:"laypage",laytpl:"laytpl",layedit:"layedit",form:"form",upload:"upload",dropdown:"dropdown",transfer:"transfer",tree:"tree",table:"table",element:"element",rate:"rate",colorpicker:"colorpicker",slider:"slider",carousel:"carousel",flow:"flow",util:"util",code:"code",jquery:"jquery",all:"all","layui.all":"layui.all"};r.prototype.cache=n,r.prototype.define=function(t,e){var r=this,o="function"==typeof t,a=function(){var t=function(t,e){layui[t]=e,n.status[t]=!0};return"function"==typeof e&&e(function(r,o){t(r,o),n.callback[r]=function(){e(t)}}),this};return o&&(e=t,t=[]),r.use(t,a,null,"define"),r},r.prototype.use=function(r,o,c,s){function p(t,e){var r="PLaySTATION 3"===navigator.platform?/^complete$/:/^(complete|loaded)$/;("load"===t.type||r.test((t.currentTarget||t.srcElement).readyState))&&(n.modules[h]=e,v.removeChild(b),function o(){return++m>1e3*n.timeout/4?i(h+" is not a valid module","error"):void(n.status[h]?f():setTimeout(o,4))}())}function f(){c.push(layui[h]),r.length>1?y.use(r.slice(1),o,c,s):"function"==typeof o&&function(){return layui.jquery&&"function"==typeof layui.jquery&&"define"!==s?layui.jquery(function(){o.apply(layui,c)}):void o.apply(layui,c)}()}var y=this,d=n.dir=n.dir?n.dir:a,v=e.getElementsByTagName("head")[0];r=function(){return"string"==typeof r?[r]:"function"==typeof r?(o=r,["all"]):r}(),t.jQuery&&jQuery.fn.on&&(y.each(r,function(t,e){"jquery"===e&&r.splice(t,1)}),layui.jquery=layui.$=jQuery);var h=r[0],m=0;if(c=c||[],n.host=n.host||(d.match(/\/\/([\s\S]+?)\//)||["//"+location.host+"/"])[0],0===r.length||layui["layui.all"]&&l[h])return f(),y;var g=(l[h]?d+"modules/":/^\{\/\}/.test(y.modules[h])?"":n.base||"")+(y.modules[h]||h)+".js";if(g=g.replace(/^\{\/\}/,""),!n.modules[h]&&layui[h]&&(n.modules[h]=g),n.modules[h])!function S(){return++m>1e3*n.timeout/4?i(h+" is not a valid module","error"):void("string"==typeof n.modules[h]&&n.status[h]?f():setTimeout(S,4))}();else{var b=e.createElement("script");b.async=!0,b.charset="utf-8",b.src=g+function(){var t=n.version===!0?n.v||(new Date).getTime():n.version||"";return t?"?v="+t:""}(),v.appendChild(b),!b.attachEvent||b.attachEvent.toString&&b.attachEvent.toString().indexOf("[native code")<0||u?b.addEventListener("load",function(t){p(t,g)},!1):b.attachEvent("onreadystatechange",function(t){p(t,g)}),n.modules[h]=g}return y},r.prototype.getStyle=function(e,n){var r=e.currentStyle?e.currentStyle:t.getComputedStyle(e,null);return r[r.getPropertyValue?"getPropertyValue":"getAttribute"](n)},r.prototype.link=function(t,r,o){var a=this,u=e.getElementsByTagName("head")[0],l=e.createElement("link");"string"==typeof r&&(o=r);var c=(o||t).replace(/\.|\//g,""),s=l.id="layuicss-"+c,p="creating",f=0;return l.rel="stylesheet",l.href=t+(n.debug?"?v="+(new Date).getTime():""),l.media="all",e.getElementById(s)||u.appendChild(l),"function"!=typeof r?a:(function y(o){var u=100,l=e.getElementById(s);return++f>1e3*n.timeout/u?i(t+" timeout"):void(1989===parseInt(a.getStyle(l,"width"))?(o===p&&l.removeAttribute("lay-status"),l.getAttribute("lay-status")===p?setTimeout(y,u):r()):(l.setAttribute("lay-status",p),setTimeout(function(){y(p)},u)))}(),a)},r.prototype.addcss=function(t,e,r){return layui.link(n.dir+"css/"+t,e,r)},n.callback={},r.prototype.factory=function(t){if(layui[t])return"function"==typeof n.callback[t]?n.callback[t]:null},r.prototype.img=function(t,e,n){var r=new Image;return r.src=t,r.complete?e(r):(r.onload=function(){r.onload=null,"function"==typeof e&&e(r)},void(r.onerror=function(t){r.onerror=null,"function"==typeof n&&n(t)}))},r.prototype.config=function(t){t=t||{};for(var e in t)n[e]=t[e];return this},r.prototype.modules=function(){var t={};for(var e in l)t[e]=l[e];return t}(),r.prototype.extend=function(t){var e=this;t=t||{};for(var n in t)e[n]||e.modules[n]?i(n+" Module already exists","error"):e.modules[n]=t[n];return e},r.prototype.router=function(t){var e=this,t=t||location.hash,n={path:[],search:{},hash:(t.match(/[^#](#.*$)/)||[])[1]||""};return/^#\//.test(t)?(t=t.replace(/^#\//,""),n.href="/"+t,t=t.replace(/([^#])(#.*$)/,"$1").split("/")||[],e.each(t,function(t,e){/^\w+=/.test(e)?function(){e=e.split("="),n.search[e[0]]=e[1]}():n.path.push(e)}),n):n},r.prototype.url=function(t){var e=this,n={pathname:function(){var e=t?function(){var e=(t.match(/\.[^.]+?\/.+/)||[])[0]||"";return e.replace(/^[^\/]+/,"").replace(/\?.+/,"")}():location.pathname;return e.replace(/^\//,"").split("/")}(),search:function(){var n={},r=(t?function(){var e=(t.match(/\?.+/)||[])[0]||"";return e.replace(/\#.+/,"")}():location.search).replace(/^\?+/,"").split("&");return e.each(r,function(t,e){var r=e.indexOf("="),o=function(){return r<0?e.substr(0,e.length):0!==r&&e.substr(0,r)}();o&&(n[o]=r>0?e.substr(r+1):null)}),n}(),hash:e.router(function(){return t?(t.match(/#.+/)||[])[0]||"/":location.hash}())};return n},r.prototype.data=function(e,n,r){if(e=e||"layui",r=r||localStorage,t.JSON&&t.JSON.parse){if(null===n)return delete r[e];n="object"==typeof n?n:{key:n};try{var o=JSON.parse(r[e])}catch(a){var o={}}return"value"in n&&(o[n.key]=n.value),n.remove&&delete o[n.key],r[e]=JSON.stringify(o),n.key?o[n.key]:o}},r.prototype.sessionData=function(t,e){return this.data(t,e,sessionStorage)},r.prototype.device=function(e){var n=navigator.userAgent.toLowerCase(),r=function(t){var e=new RegExp(t+"/([^\\s\\_\\-]+)");return t=(n.match(e)||[])[1],t||!1},o={os:function(){return/windows/.test(n)?"windows":/linux/.test(n)?"linux":/iphone|ipod|ipad|ios/.test(n)?"ios":/mac/.test(n)?"mac":void 0}(),ie:function(){return!!(t.ActiveXObject||"ActiveXObject"in t)&&((n.match(/msie\s(\d+)/)||[])[1]||"11")}(),weixin:r("micromessenger")};return e&&!o[e]&&(o[e]=r(e)),o.android=/android/.test(n),o.ios="ios"===o.os,o.mobile=!(!o.android&&!o.ios),o},r.prototype.hint=function(){return{error:i}},r.prototype._typeof=function(t){return null===t?String(t):"object"==typeof t||"function"==typeof t?function(){var e=Object.prototype.toString.call(t).match(/\s(.+)\]$/)||[],n="Function|Array|Date|RegExp|Object|Error|Symbol";return e=e[1]||"Object",new RegExp("\\b("+n+")\\b").test(e)?e.toLowerCase():"object"}():typeof t},r.prototype._isArray=function(e){var n,r=this,o=r._typeof(e);return!(!e||"object"!=typeof e||e===t)&&(n="length"in e&&e.length,"array"===o||0===n||"number"==typeof n&&n>0&&n-1 in e)},r.prototype.each=function(t,e){var n,r=this,o=function(t,n){return e.call(n[t],t,n[t])};if("function"!=typeof e)return r;if(t=t||[],r._isArray(t))for(n=0;no?1:r(t.innerHeight||n.documentElement.clientHeight)},r.position=function(e,o,i){if(o){i=i||{},e!==n&&e!==r("body")[0]||(i.clickType="right");var c="right"===i.clickType?function(){var e=i.e||t.event||{};return{left:e.clientX,top:e.clientY,right:e.clientX,bottom:e.clientY}}():e.getBoundingClientRect(),u=o.offsetWidth,a=o.offsetHeight,f=function(t){return t=t?"scrollLeft":"scrollTop",n.body[t]|n.documentElement[t]},s=function(t){return n.documentElement[t?"clientWidth":"clientHeight"]},l=5,h=c.left,p=c.bottom;"center"===i.align?h-=(u-e.offsetWidth)/2:"right"===i.align&&(h=h-u+e.offsetWidth),h+u+l>s("width")&&(h=s("width")-u-l),hs()&&(c.top>a+l?p=c.top-a-2*l:"right"===i.clickType&&(p=s()-a-2*l,p<0&&(p=0)));var y=i.position;if(y&&(o.style.position=y),o.style.left=h+("fixed"===y?0:f(1))+"px",o.style.top=p+("fixed"===y?0:f())+"px",!r.hasScrollbar()){var d=o.getBoundingClientRect();!i.SYSTEM_RELOAD&&d.bottom+l>s()&&(i.SYSTEM_RELOAD=!0,setTimeout(function(){r.position(e,o,i)},50))}}},r.options=function(t,e){var n=r(t),o=e||"lay-options";try{return new Function("return "+(n.attr(o)||"{}"))()}catch(i){return hint.error("parseerror\uff1a"+i,"error"),{}}},r.isTopElem=function(t){var e=[n,r("body")[0]],o=!1;return r.each(e,function(e,n){if(n===t)return o=!0}),o},o.addStr=function(t,e){return t=t.replace(/\s+/," "),e=e.replace(/\s+/," ").split(" "),r.each(e,function(e,n){new RegExp("\\b"+n+"\\b").test(t)||(t=t+" "+n)}),t.replace(/^\s|\s$/,"")},o.removeStr=function(t,e){return t=t.replace(/\s+/," "),e=e.replace(/\s+/," ").split(" "),r.each(e,function(e,n){var r=new RegExp("\\b"+n+"\\b");r.test(t)&&(t=t.replace(r,""))}),t.replace(/\s+/," ").replace(/^\s|\s$/,"")},o.prototype.find=function(t){var e=this,n=0,o=[],i="object"==typeof t;return this.each(function(r,c){for(var u=i?c.contains(t):c.querySelectorAll(t||null);n0)return n[0].style[t]}():n.each(function(n,i){"object"==typeof t?r.each(t,function(t,e){i.style[t]=o(e)}):i.style[t]=o(e)})},o.prototype.width=function(t){var e=this;return void 0===t?function(){if(e.length>0)return e[0].offsetWidth}():e.each(function(n,r){e.css("width",t)})},o.prototype.height=function(t){var e=this;return void 0===t?function(){if(e.length>0)return e[0].offsetHeight}():e.each(function(n,r){e.css("height",t)})},o.prototype.attr=function(t,e){var n=this;return void 0===e?function(){if(n.length>0)return n[0].getAttribute(t)}():n.each(function(n,r){r.setAttribute(t,e)})},o.prototype.removeAttr=function(t){return this.each(function(e,n){n.removeAttribute(t)})},o.prototype.html=function(t){var e=this;return void 0===t?function(){if(e.length>0)return e[0].innerHTML}():this.each(function(e,n){n.innerHTML=t})},o.prototype.val=function(t){var e=this;return void 0===t?function(){if(e.length>0)return e[0].value}():this.each(function(e,n){n.value=t})},o.prototype.append=function(t){return this.each(function(e,n){"object"==typeof t?n.appendChild(t):n.innerHTML=n.innerHTML+t})},o.prototype.remove=function(t){return this.each(function(e,n){t?n.removeChild(t):n.parentNode.removeChild(n)})},o.prototype.on=function(t,e){return this.each(function(n,r){r.attachEvent?r.attachEvent("on"+t,function(t){t.target=t.srcElement,e.call(r,t)}):r.addEventListener(t,e,!1)})},o.prototype.off=function(t,e){return this.each(function(n,r){r.detachEvent?r.detachEvent("on"+t,e):r.removeEventListener(t,e,!1)})},t.lay=r,t.layui&&layui.define&&layui.define(function(t){t(e,r)})}(window,window.document);layui.define(function(e){"use strict";var r={open:"{{",close:"}}"},c={exp:function(e){return new RegExp(e,"g")},query:function(e,c,t){var o=["#([\\s\\S])+?","([^{#}])*?"][e||0];return n((c||"")+r.open+o+r.close+(t||""))},escape:function(e){return String(e||"").replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")},error:function(e,r){var c="Laytpl Error: ";return"object"==typeof console&&console.error(c+e+"\n"+(r||"")),c+e}},n=c.exp,t=function(e){this.tpl=e};t.pt=t.prototype,window.errors=0,t.pt.parse=function(e,t){var o=this,p=e,a=n("^"+r.open+"#",""),l=n(r.close+"$","");e=e.replace(/\s+|\r|\t|\n/g," ").replace(n(r.open+"#"),r.open+"# ").replace(n(r.close+"}"),"} "+r.close).replace(/\\/g,"\\\\").replace(n(r.open+"!(.+?)!"+r.close),function(e){return e=e.replace(n("^"+r.open+"!"),"").replace(n("!"+r.close),"").replace(n(r.open+"|"+r.close),function(e){return e.replace(/(.)/g,"\\$1")})}).replace(/(?="|')/g,"\\").replace(c.query(),function(e){return e=e.replace(a,"").replace(l,""),'";'+e.replace(/\\(.)/g,"$1")+';view+="'}).replace(c.query(1),function(e){var c='"+(';return e.replace(/\s/g,"")===r.open+r.close?"":(e=e.replace(n(r.open+"|"+r.close),""),/^=/.test(e)&&(e=e.replace(/^=/,""),c='"+_escape_('),c+e.replace(/\\(.)/g,"$1")+')+"')}),e='"use strict";var view = "'+e+'";return view;';try{return o.cache=e=new Function("d, _escape_",e),e(t,c.escape)}catch(u){return delete o.cache,c.error(u,p)}},t.pt.render=function(e,r){var n,t=this;return e?(n=t.cache?t.cache(e,c.escape):t.parse(t.tpl,e),r?void r(n):n):c.error("no data")};var o=function(e){return"string"!=typeof e?c.error("Template not found"):new t(e)};o.config=function(e){e=e||{};for(var c in e)r[c]=e[c]},o.v="1.2.0",e("laytpl",o)});layui.define(function(e){"use strict";var a=document,t="getElementById",n="getElementsByTagName",i="laypage",r="layui-disabled",u=function(e){var a=this;a.config=e||{},a.config.index=++s.index,a.render(!0)};u.prototype.type=function(){var e=this.config;if("object"==typeof e.elem)return void 0===e.elem.length?2:3},u.prototype.view=function(){var e=this,a=e.config,t=a.groups="groups"in a?0|a.groups:5;a.layout="object"==typeof a.layout?a.layout:["prev","page","next"],a.count=0|a.count,a.curr=0|a.curr||1,a.limits="object"==typeof a.limits?a.limits:[10,20,30,40,50],a.limit=0|a.limit||10,a.pages=Math.ceil(a.count/a.limit)||1,a.curr>a.pages&&(a.curr=a.pages),t<0?t=1:t>a.pages&&(t=a.pages),a.prev="prev"in a?a.prev:"上一页",a.next="next"in a?a.next:"下一页";var n=a.pages>t?Math.ceil((a.curr+(t>1?1:0))/(t>0?t:1)):1,i={prev:function(){return a.prev?''+a.prev+"":""}(),page:function(){var e=[];if(a.count<1)return"";n>1&&a.first!==!1&&0!==t&&e.push(''+(a.first||1)+"");var i=Math.floor((t-1)/2),r=n>1?a.curr-i:1,u=n>1?function(){var e=a.curr+(t-i-1);return e>a.pages?a.pages:e}():t;for(u-r2&&e.push('');r<=u;r++)r===a.curr?e.push('"+r+""):e.push(''+r+"");return a.pages>t&&a.pages>u&&a.last!==!1&&(u+1…'),0!==t&&e.push(''+(a.last||a.pages)+"")),e.join("")}(),next:function(){return a.next?''+a.next+"":""}(),count:'\u5171 '+a.count+" \u6761",limit:function(){var e=['"}(),refresh:['','',""].join(""),skip:function(){return['到第','','页',""].join("")}()};return['
',function(){var e=[];return layui.each(a.layout,function(a,t){i[t]&&e.push(i[t])}),e.join("")}(),"
"].join("")},u.prototype.jump=function(e,a){if(e){var t=this,i=t.config,r=e.children,u=e[n]("button")[0],l=e[n]("input")[0],p=e[n]("select")[0],c=function(){var e=0|l.value.replace(/\s|\D/g,"");e&&(i.curr=e,t.render())};if(a)return c();for(var o=0,y=r.length;oi.pages||(i.curr=e,t.render())});p&&s.on(p,"change",function(){var e=this.value;i.curr*e>i.count&&(i.curr=Math.ceil(i.count/e)),i.limit=e,t.render()}),u&&s.on(u,"click",function(){c()})}},u.prototype.skip=function(e){if(e){var a=this,t=e[n]("input")[0];t&&s.on(t,"keyup",function(t){var n=this.value,i=t.keyCode;/^(37|38|39|40)$/.test(i)||(/\D/.test(n)&&(this.value=n.replace(/\D/,"")),13===i&&a.jump(e,!0))})}},u.prototype.render=function(e){var n=this,i=n.config,r=n.type(),u=n.view();2===r?i.elem&&(i.elem.innerHTML=u):3===r?i.elem.html(u):a[t](i.elem)&&(a[t](i.elem).innerHTML=u),i.jump&&i.jump(i,e);var s=a[t]("layui-laypage-"+i.index);n.jump(s),i.hash&&!e&&(location.hash="!"+i.hash+"="+i.curr),n.skip(s)};var s={render:function(e){var a=new u(e);return a.index},index:layui.laypage?layui.laypage.index+1e4:0,on:function(e,a,t){return e.attachEvent?e.attachEvent("on"+a,function(a){a.target=a.srcElement,t.call(e,a)}):e.addEventListener(a,t,!1),this}};e(i,s)});!function(e,t){"use strict";var a=e.layui&&layui.define,n={getPath:e.lay&&lay.getPath?lay.getPath:"",link:function(t,a,n){l.path&&e.lay&&lay.layui&&lay.layui.link(l.path+t,a,n)}},i=e.LAYUI_GLOBAL||{},l={v:"5.3.1",config:{},index:e.laydate&&e.laydate.v?1e5:0,path:i.laydate_dir||n.getPath,set:function(e){var t=this;return t.config=lay.extend({},t.config,e),t},ready:function(e){var t="laydate",i="",r=(a?"modules/laydate/":"theme/")+"default/laydate.css?v="+l.v+i;return a?layui.addcss(r,e,t):n.link(r,e,t),this}},r=function(){var e=this,t=e.config,a=t.id;return r.that[a]=e,{hint:function(t){e.hint.call(e,t)},config:e.config}},o="laydate",s=".layui-laydate",y="layui-this",d="laydate-disabled",m=[100,2e5],c="layui-laydate-static",u="layui-laydate-list",h="layui-laydate-hint",f="layui-laydate-footer",p=".laydate-btns-confirm",g="laydate-time-text",v="laydate-btns-time",T="layui-laydate-preview",D=function(e){var t=this;t.index=++l.index,t.config=lay.extend({},t.config,l.config,e),e=t.config,e.id="id"in e?e.id:t.index,l.ready(function(){t.init()})},w="yyyy|y|MM|M|dd|d|HH|H|mm|m|ss|s";r.formatArr=function(e){return(e||"").match(new RegExp(w+"|.","g"))||[]},D.isLeapYear=function(e){return e%4===0&&e%100!==0||e%400===0},D.prototype.config={type:"date",range:!1,format:"yyyy-MM-dd",value:null,isInitValue:!0,min:"1900-1-1",max:"2099-12-31",trigger:"click",show:!1,showBottom:!0,isPreview:!0,btns:["clear","now","confirm"],lang:"cn",theme:"default",position:null,calendar:!1,mark:{},zIndex:null,done:null,change:null},D.prototype.lang=function(){var e=this,t=e.config,a={cn:{weeks:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"],time:["\u65f6","\u5206","\u79d2"],timeTips:"\u9009\u62e9\u65f6\u95f4",startTime:"\u5f00\u59cb\u65f6\u95f4",endTime:"\u7ed3\u675f\u65f6\u95f4",dateTips:"\u8fd4\u56de\u65e5\u671f",month:["\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d","\u4e03","\u516b","\u4e5d","\u5341","\u5341\u4e00","\u5341\u4e8c"],tools:{confirm:"\u786e\u5b9a",clear:"\u6e05\u7a7a",now:"\u73b0\u5728"},timeout:"\u7ed3\u675f\u65f6\u95f4\u4e0d\u80fd\u65e9\u4e8e\u5f00\u59cb\u65f6\u95f4
\u8bf7\u91cd\u65b0\u9009\u62e9",invalidDate:"\u4e0d\u5728\u6709\u6548\u65e5\u671f\u6216\u65f6\u95f4\u8303\u56f4\u5185",formatError:["\u65e5\u671f\u683c\u5f0f\u4e0d\u5408\u6cd5
\u5fc5\u987b\u9075\u5faa\u4e0b\u8ff0\u683c\u5f0f\uff1a
","
\u5df2\u4e3a\u4f60\u91cd\u7f6e"],preview:"\u5f53\u524d\u9009\u4e2d\u7684\u7ed3\u679c"},en:{weeks:["Su","Mo","Tu","We","Th","Fr","Sa"],time:["Hours","Minutes","Seconds"],timeTips:"Select Time",startTime:"Start Time",endTime:"End Time",dateTips:"Select Date",month:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],tools:{confirm:"Confirm",clear:"Clear",now:"Now"},timeout:"End time cannot be less than start Time
Please re-select",invalidDate:"Invalid date",formatError:["The date format error
Must be followed\uff1a
","
It has been reset"],preview:"The selected result"}};return a[t.lang]||a.cn},D.prototype.init=function(){var t=this,a=t.config,n="static"===a.position,i={year:"yyyy",month:"yyyy-MM",date:"yyyy-MM-dd",time:"HH:mm:ss",datetime:"yyyy-MM-dd HH:mm:ss"};a.elem=lay(a.elem),a.eventElem=lay(a.eventElem),a.elem[0]&&(t.rangeStr=a.range?"string"==typeof a.range?a.range:"-":"","array"===layui._typeof(a.range)&&(t.rangeElem=[lay(a.range[0]),lay(a.range[1])]),i[a.type]||(e.console&&console.error&&console.error("laydate type error:'"+a.type+"' is not supported"),a.type="date"),a.format===i.date&&(a.format=i[a.type]||i.date),t.format=r.formatArr(a.format),t.EXP_IF="",t.EXP_SPLIT="",lay.each(t.format,function(e,a){var n=new RegExp(w).test(a)?"\\d{"+function(){return new RegExp(w).test(t.format[0===e?e+1:e-1]||"")?/^yyyy|y$/.test(a)?4:a.length:/^yyyy$/.test(a)?"1,4":/^y$/.test(a)?"1,308":"1,2"}()+"}":"\\"+a;t.EXP_IF=t.EXP_IF+n,t.EXP_SPLIT=t.EXP_SPLIT+"("+n+")"}),t.EXP_IF_ONE=new RegExp("^"+t.EXP_IF+"$"),t.EXP_IF=new RegExp("^"+(a.range?t.EXP_IF+"\\s\\"+t.rangeStr+"\\s"+t.EXP_IF:t.EXP_IF)+"$"),t.EXP_SPLIT=new RegExp("^"+t.EXP_SPLIT+"$",""),t.isInput(a.elem[0])||"focus"===a.trigger&&(a.trigger="click"),a.elem.attr("lay-key")||(a.elem.attr("lay-key",t.index),a.eventElem.attr("lay-key",t.index)),a.mark=lay.extend({},a.calendar&&"cn"===a.lang?{"0-1-1":"\u5143\u65e6","0-2-14":"\u60c5\u4eba","0-3-8":"\u5987\u5973","0-3-12":"\u690d\u6811","0-4-1":"\u611a\u4eba","0-5-1":"\u52b3\u52a8","0-5-4":"\u9752\u5e74","0-6-1":"\u513f\u7ae5","0-9-10":"\u6559\u5e08","0-9-18":"\u56fd\u803b","0-10-1":"\u56fd\u5e86","0-12-25":"\u5723\u8bde"}:{},a.mark),lay.each(["min","max"],function(e,t){var n=[],i=[];if("number"==typeof a[t]){var l=a[t],r=(new Date).getTime(),o=864e5,s=new Date(l?l0)return!0;var t=lay.elem("div",{"class":"layui-laydate-header"}),i=[function(){var e=lay.elem("i",{"class":"layui-icon laydate-icon laydate-prev-y"});return e.innerHTML="",e}(),function(){var e=lay.elem("i",{"class":"layui-icon laydate-icon laydate-prev-m"});return e.innerHTML="",e}(),function(){var e=lay.elem("div",{"class":"laydate-set-ym"}),t=lay.elem("span"),a=lay.elem("span");return e.appendChild(t),e.appendChild(a),e}(),function(){var e=lay.elem("i",{"class":"layui-icon laydate-icon laydate-next-m"});return e.innerHTML="",e}(),function(){var e=lay.elem("i",{"class":"layui-icon laydate-icon laydate-next-y"});return e.innerHTML="",e}()],l=lay.elem("div",{"class":"layui-laydate-content"}),r=lay.elem("table"),m=lay.elem("thead"),c=lay.elem("tr");lay.each(i,function(e,a){t.appendChild(a)}),m.appendChild(c),lay.each(new Array(6),function(e){var t=r.insertRow(0);lay.each(new Array(7),function(a){if(0===e){var i=lay.elem("th");i.innerHTML=n.weeks[a],c.appendChild(i)}t.insertCell(a)})}),r.insertBefore(m,r.children[0]),l.appendChild(r),o[e]=lay.elem("div",{"class":"layui-laydate-main laydate-main-list-"+e}),o[e].appendChild(t),o[e].appendChild(l),s.push(i),y.push(l),d.push(r)}),lay(m).html(function(){var e=[],t=[];return"datetime"===a.type&&e.push(''+n.timeTips+""),(a.range||"datetime"!==a.type)&&e.push(''),lay.each(a.btns,function(e,l){var r=n.tools[l]||"btn";a.range&&"now"===l||(i&&"clear"===l&&(r="cn"===a.lang?"\u91cd\u7f6e":"Reset"),t.push(''+r+""))}),e.push('"),e.join("")}()),lay.each(o,function(e,t){r.appendChild(t)}),a.showBottom&&r.appendChild(m),/^#/.test(a.theme)){var u=lay.elem("style"),h=["#{{id}} .layui-laydate-header{background-color:{{theme}};}","#{{id}} .layui-this{background-color:{{theme}} !important;}"].join("").replace(/{{id}}/g,e.elemID).replace(/{{theme}}/g,a.theme);"styleSheet"in u?(u.setAttribute("type","text/css"),u.styleSheet.cssText=h):u.innerHTML=h,lay(r).addClass("laydate-theme-molv"),r.appendChild(u)}l.thisId=a.id,e.remove(D.thisElemDate),i?a.elem.append(r):(t.body.appendChild(r),e.position()),e.checkDate().calendar(null,0,"init"),e.changeEvent(),D.thisElemDate=e.elemID,"function"==typeof a.ready&&a.ready(lay.extend({},a.dateTime,{month:a.dateTime.month+1})),e.preview()},D.prototype.remove=function(e){var t=this,a=(t.config,lay("#"+(e||t.elemID)));return a[0]?(a.hasClass(c)||t.checkDate(function(){a.remove()}),t):t},D.prototype.position=function(){var e=this,t=e.config;return lay.position(e.bindElem||t.elem[0],e.elem,{position:t.position}),e},D.prototype.hint=function(e){var t=this,a=(t.config,lay.elem("div",{"class":h}));t.elem&&(a.innerHTML=e||"",lay(t.elem).find("."+h).remove(),t.elem.appendChild(a),clearTimeout(t.hinTimer),t.hinTimer=setTimeout(function(){lay(t.elem).find("."+h).remove()},3e3))},D.prototype.getAsYM=function(e,t,a){return a?t--:t++,t<0&&(t=11,e--),t>11&&(t=0,e++),[e,t]},D.prototype.systemDate=function(e){var t=e||new Date;return{year:t.getFullYear(),month:t.getMonth(),date:t.getDate(),hours:e?e.getHours():0,minutes:e?e.getMinutes():0,seconds:e?e.getSeconds():0}},D.prototype.checkDate=function(e){var t,a,n=this,i=(new Date,n.config),r=n.lang(),o=i.dateTime=i.dateTime||n.systemDate(),s=n.bindElem||i.elem[0],y=(n.isInput(s)?"val":"html",function(){if(n.rangeElem){var e=[n.rangeElem[0].val(),n.rangeElem[1].val()];if(e[0]&&e[1])return e.join(" "+n.rangeStr+" ")}return n.isInput(s)?s.value:"static"===i.position?"":lay(s).attr("lay-date")}()),d=function(e){e.year>m[1]&&(e.year=m[1],a=!0),e.month>11&&(e.month=11,a=!0),e.hours>23&&(e.hours=0,a=!0),e.minutes>59&&(e.minutes=0,e.hours++,a=!0),e.seconds>59&&(e.seconds=0,e.minutes++,a=!0),t=l.getEndDate(e.month+1,e.year),e.date>t&&(e.date=t,a=!0)},c=function(e,t,l){var r=["startTime","endTime"];t=(t.match(n.EXP_SPLIT)||[]).slice(1),l=l||0,i.range&&(n[r[l]]=n[r[l]]||{}),lay.each(n.format,function(o,s){var y=parseFloat(t[o]);t[o].lengthh(i.max)||h(o)h(i.max))&&(n.endDate=lay.extend({},i.max)),e&&e(),n},D.prototype.mark=function(e,t){var a,n=this,i=n.config;return lay.each(i.mark,function(e,n){var i=e.split("-");i[0]!=t[0]&&0!=i[0]||i[1]!=t[1]&&0!=i[1]||i[2]!=t[2]||(a=n||t[2])}),a&&e.html(''+a+""),n},D.prototype.limit=function(e,t,a,n){var i,l=this,r=l.config,o={},s=r[a>41?"endDate":"dateTime"],y=lay.extend({},s,t||{});return lay.each({now:y,min:r.min,max:r.max},function(e,t){o[e]=l.newDate(lay.extend({year:t.year,month:t.month,date:t.date},function(){var e={};return lay.each(n,function(a,n){e[n]=t[n]}),e}())).getTime()}),i=o.nowo.max,e&&e[i?"addClass":"removeClass"](d),i},D.prototype.thisDateTime=function(e){var t=this,a=t.config;return e?t.endDate:a.dateTime},D.prototype.calendar=function(e,t,a){var n,i,r,o=this,s=o.config,t=t?1:0,d=e||o.thisDateTime(t),c=new Date,u=o.lang(),h="date"!==s.type&&"datetime"!==s.type,f=lay(o.table[t]).find("td"),g=lay(o.elemHeader[t][2]).find("span");return d.yearm[1]&&(d.year=m[1],o.hint(u.invalidDate)),o.firstDate||(o.firstDate=lay.extend({},d)),c.setFullYear(d.year,d.month,1),n=c.getDay(),i=l.getEndDate(d.month||12,d.year),r=l.getEndDate(d.month+1,d.year),lay.each(f,function(e,t){var a=[d.year,d.month],l=0;t=lay(t),t.removeAttr("class"),e=n&&e=a.firstDate.year&&(l.month=n.max.month,l.date=n.max.date),a.limit(lay(i),l,t),M++}),lay(m[f?0:1]).attr("lay-ym",M-8+"-"+D[1]).html(E+T+" - "+(M-1+T))}else if("month"===e)lay.each(new Array(12),function(e){var i=lay.elem("li",{"lay-ym":e}),r={year:D[0],month:e};e+1==D[1]&&lay(i).addClass(y),i.innerHTML=l.month[e]+(f?"\u6708":""),o.appendChild(i),D[0]=a.firstDate.year&&(r.date=n.max.date),a.limit(lay(i),r,t)}),lay(m[f?0:1]).attr("lay-ym",D[0]+"-"+D[1]).html(D[0]+T);else if("time"===e){var C=function(){lay(o).find("ol").each(function(e,n){lay(n).find("li").each(function(n,i){a.limit(lay(i),[{hours:n},{hours:a[x].hours,minutes:n},{hours:a[x].hours,minutes:a[x].minutes,seconds:n}][e],t,[["hours"],["hours","minutes"],["hours","minutes","seconds"]][e])})}),n.range||a.limit(lay(a.footer).find(p),a[x],0,["hours","minutes","seconds"])};n.range?a[x]||(a[x]="startTime"===x?i:a.endDate):a[x]=i,lay.each([24,60,60],function(e,t){var n=lay.elem("li"),i=["

"+l.time[e]+"

    "];lay.each(new Array(t),function(t){i.push(""+lay.digit(t,2)+"")}),n.innerHTML=i.join("")+"
",o.appendChild(n)}),C()}if(h&&c.removeChild(h),c.appendChild(o),"year"===e||"month"===e)lay(a.elemMain[t]).addClass("laydate-ym-show"),lay(o).find("li").on("click",function(){var l=0|lay(this).attr("lay-ym");if(!lay(this).hasClass(d)){0===t?(i[e]=l,a.limit(lay(a.footer).find(p),null,0)):a.endDate[e]=l;var s="year"===n.type||"month"===n.type;s?(lay(o).find("."+y).removeClass(y),lay(this).addClass(y),"month"===n.type&&"year"===e&&(a.listYM[t][0]=l,r&&((t?a.endDate:i).year=l),a.list("month",t))):(a.checkDate("limit").calendar(null,t),a.closeList()),a.setBtnStatus(),n.range||("month"===n.type&&"month"===e||"year"===n.type&&"year"===e)&&a.setValue(a.parse()).remove().done(),a.done(null,"change"),lay(a.footer).find("."+v).removeClass(d)}});else{var I=lay.elem("span",{"class":g}),k=function(){lay(o).find("ol").each(function(e){var t=this,n=lay(t).find("li");t.scrollTop=30*(a[x][w[e]]-2),t.scrollTop<=0&&n.each(function(e,a){if(!lay(this).hasClass(d))return t.scrollTop=30*(e-2),!0})})},b=lay(s[2]).find("."+g);k(),I.innerHTML=n.range?[l.startTime,l.endTime][t]:l.timeTips,lay(a.elemMain[t]).addClass("laydate-time-show"),b[0]&&b.remove(),s[2].appendChild(I),lay(o).find("ol").each(function(e){var t=this;lay(t).find("li").on("click",function(){var l=0|this.innerHTML;lay(this).hasClass(d)||(n.range?a[x][w[e]]=l:i[w[e]]=l,lay(t).find("."+y).removeClass(y),lay(this).addClass(y),C(),k(),(a.endDate||"time"===n.type)&&a.done(null,"change"),a.setBtnStatus())})})}return a},D.prototype.listYM=[],D.prototype.closeList=function(){var e=this;e.config;lay.each(e.elemCont,function(t,a){lay(this).find("."+u).remove(),lay(e.elemMain[t]).removeClass("laydate-ym-show laydate-time-show")}),lay(e.elem).find("."+g).remove()},D.prototype.setBtnStatus=function(e,t,a){var n,i=this,l=i.config,r=i.lang(),o=lay(i.footer).find(p);l.range&&"time"!==l.type&&(t=t||l.dateTime,a=a||i.endDate,n=i.newDate(t).getTime()>i.newDate(a).getTime(),i.limit(null,t)||i.limit(null,a)?o.addClass(d):o[n?"addClass":"removeClass"](d),e&&n&&i.hint("string"==typeof e?r.timeout.replace(/\u65e5\u671f/g,e):r.timeout))},D.prototype.parse=function(e,t){var a=this,n=a.config,i=t||("end"==e?lay.extend({},a.endDate,a.endTime):n.range?lay.extend({},n.dateTime,a.startTime):n.dateTime),r=l.parse(i,a.format,1);return n.range&&void 0===e?r+" "+a.rangeStr+" "+a.parse("end"):r},D.prototype.newDate=function(e){return e=e||{},new Date(e.year||1,e.month||0,e.date||1,e.hours||0,e.minutes||0,e.seconds||0)},D.prototype.setValue=function(e){var t=this,a=t.config,n=t.bindElem||a.elem[0];return"static"===a.position?t:(e=e||"",t.isInput(n)?lay(n).val(e):t.rangeElem?(t.rangeElem[0].val(e?t.parse("start"):""),t.rangeElem[1].val(e?t.parse("end"):"")):(0===lay(n).find("*").length&&lay(n).html(e),lay(n).attr("lay-date",e)),t)},D.prototype.preview=function(){var e=this,t=e.config;if(t.isPreview){var a=lay(e.elem).find("."+T),n=t.range?e.endDate?e.parse():"":e.parse();a.html(n).css({color:"#5FB878"}),setTimeout(function(){a.css({color:"#666"})},300)}},D.prototype.done=function(e,t){var a=this,n=a.config,i=lay.extend({},lay.extend(n.dateTime,a.startTime)),l=lay.extend({},lay.extend(a.endDate,a.endTime));return lay.each([i,l],function(e,t){"month"in t&&lay.extend(t,{month:t.month+1})}),a.preview(),e=e||[a.parse(),i,l],"function"==typeof n[t||"done"]&&n[t||"done"].apply(n,e),a},D.prototype.choose=function(e,t){var a=this,n=a.config,i=a.thisDateTime(t),l=(lay(a.elem).find("td"),e.attr("lay-ymd").split("-"));l={year:0|l[0],month:(0|l[1])-1,date:0|l[2]},e.hasClass(d)||(lay.extend(i,l),n.range?(lay.each(["startTime","endTime"],function(e,t){a[t]=a[t]||{hours:0,minutes:0,seconds:0}}),a.calendar(null,t).done(null,"change")):"static"===n.position?a.calendar().done().done(null,"change"):"date"===n.type?a.setValue(a.parse()).remove().done():"datetime"===n.type&&a.calendar().done(null,"change"))},D.prototype.tool=function(e,t){var a=this,n=a.config,i=a.lang(),l=n.dateTime,r="static"===n.position,o={datetime:function(){lay(e).hasClass(d)||(a.list("time",0),n.range&&a.list("time",1),lay(e).attr("lay-type","date").html(a.lang().dateTips))},date:function(){a.closeList(),lay(e).attr("lay-type","datetime").html(a.lang().timeTips)},clear:function(){r&&(lay.extend(l,a.firstDate),a.calendar()),n.range&&(delete n.dateTime,delete a.endDate,delete a.startTime,delete a.endTime),a.setValue("").remove(),a.done(["",{},{}])},now:function(){var e=new Date;lay.extend(l,a.systemDate(),{hours:e.getHours(),minutes:e.getMinutes(),seconds:e.getSeconds()}),a.setValue(a.parse()).remove(),r&&a.calendar(),a.done()},confirm:function(){if(n.range){if(lay(e).hasClass(d))return a.hint("time"===n.type?i.timeout.replace(/\u65e5\u671f/g,"\u65f6\u95f4"):i.timeout)}else if(lay(e).hasClass(d))return a.hint(i.invalidDate);a.done(),a.setValue(a.parse()).remove()}};o[t]&&o[t]()},D.prototype.change=function(e){var t=this,a=t.config,n=t.thisDateTime(e),i=a.range&&("year"===a.type||"month"===a.type),l=t.elemCont[e||0],r=t.listYM[e],o=function(o){var s=lay(l).find(".laydate-year-list")[0],y=lay(l).find(".laydate-month-list")[0];return s&&(r[0]=o?r[0]-15:r[0]+15,t.list("year",e)),y&&(o?r[0]--:r[0]++,t.list("month",e)),(s||y)&&(lay.extend(n,{year:r[0]}),i&&(n.year=r[0]),a.range||t.done(null,"change"),a.range||t.limit(lay(t.footer).find(p),{year:r[0]})),t.setBtnStatus(),s||y};return{prevYear:function(){o("sub")||(n.year--,t.checkDate("limit").calendar(null,e),t.done(null,"change"))},prevMonth:function(){var a=t.getAsYM(n.year,n.month,"sub");lay.extend(n,{year:a[0],month:a[1]}),t.checkDate("limit").calendar(null,e),t.done(null,"change")},nextMonth:function(){var a=t.getAsYM(n.year,n.month);lay.extend(n,{year:a[0],month:a[1]}),t.checkDate("limit").calendar(null,e),t.done(null,"change")},nextYear:function(){o()||(n.year++,t.checkDate("limit").calendar(null,e),t.done(null,"change"))}}},D.prototype.changeEvent=function(){var e=this;e.config;lay(e.elem).on("click",function(e){lay.stope(e)}).on("mousedown",function(e){lay.stope(e)}),lay.each(e.elemHeader,function(t,a){lay(a[0]).on("click",function(a){e.change(t).prevYear()}),lay(a[1]).on("click",function(a){e.change(t).prevMonth()}),lay(a[2]).find("span").on("click",function(a){var n=lay(this),i=n.attr("lay-ym"),l=n.attr("lay-type");i&&(i=i.split("-"),e.listYM[t]=[0|i[0],0|i[1]],e.list(l,t),lay(e.footer).find("."+v).addClass(d))}),lay(a[3]).on("click",function(a){e.change(t).nextMonth()}),lay(a[4]).on("click",function(a){e.change(t).nextYear()})}),lay.each(e.table,function(t,a){var n=lay(a).find("td");n.on("click",function(){e.choose(lay(this),t)})}),lay(e.footer).find("span").on("click",function(){var t=lay(this).attr("lay-type");e.tool(this,t)})},D.prototype.isInput=function(e){return/input|textarea/.test(e.tagName.toLocaleLowerCase())},D.prototype.events=function(){var e=this,t=e.config,a=function(a,n){a.on(t.trigger,function(){n&&(e.bindElem=this),e.render()})};t.elem[0]&&!t.elem[0].eventHandler&&(a(t.elem,"bind"),a(t.eventElem),t.elem[0].eventHandler=!0)},r.that={},r.getThis=function(e){var t=r.that[e];return!t&&a&&layui.hint().error(e?o+" instance with ID '"+e+"' not found":"ID argument required"),t},n.run=function(a){a(t).on("mousedown",function(e){if(l.thisId){var t=r.getThis(l.thisId);if(t){var n=t.config;e.target!==n.elem[0]&&e.target!==n.eventElem[0]&&e.target!==a(n.closeStop)[0]&&t.remove()}}}).on("keydown",function(e){if(l.thisId){var t=r.getThis(l.thisId);t&&13===e.keyCode&&a("#"+t.elemID)[0]&&t.elemID===D.thisElemDate&&(e.preventDefault(),a(t.footer).find(p)[0].click())}}),a(e).on("resize",function(){if(l.thisId){var e=r.getThis(l.thisId);if(e)return!(!e.elem||!a(s)[0])&&void e.position()}})},l.render=function(e){var t=new D(e);return r.call(t)},l.parse=function(e,t,a){return e=e||{},"string"==typeof t&&(t=r.formatArr(t)),t=(t||[]).concat(),lay.each(t,function(n,i){/yyyy|y/.test(i)?t[n]=lay.digit(e.year,i.length):/MM|M/.test(i)?t[n]=lay.digit(e.month+(a||0),i.length):/dd|d/.test(i)?t[n]=lay.digit(e.date,i.length):/HH|H/.test(i)?t[n]=lay.digit(e.hours,i.length):/mm|m/.test(i)?t[n]=lay.digit(e.minutes,i.length):/ss|s/.test(i)&&(t[n]=lay.digit(e.seconds,i.length))}),t.join("")},l.getEndDate=function(e,t){var a=new Date;return a.setFullYear(t||a.getFullYear(),e||a.getMonth()+1,1),new Date(a.getTime()-864e5).getDate()},a?(l.ready(),layui.define("lay",function(e){l.path=layui.cache.dir,n.run(lay),e(o,l)})):"function"==typeof define&&define.amd?define(function(){return n.run(lay),l}):function(){l.ready(),n.run(e.lay),e.laydate=l}()}(window,window.document);!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(e,t){function n(e){var t=!!e&&"length"in e&&e.length,n=pe.type(e);return"function"!==n&&!pe.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&t>0&&t-1 in e)}function r(e,t,n){if(pe.isFunction(t))return pe.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return pe.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(Ce.test(t))return pe.filter(t,e,n);t=pe.filter(t,e)}return pe.grep(e,function(e){return pe.inArray(e,t)>-1!==n})}function i(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}function o(e){var t={};return pe.each(e.match(De)||[],function(e,n){t[n]=!0}),t}function a(){re.addEventListener?(re.removeEventListener("DOMContentLoaded",s),e.removeEventListener("load",s)):(re.detachEvent("onreadystatechange",s),e.detachEvent("onload",s))}function s(){(re.addEventListener||"load"===e.event.type||"complete"===re.readyState)&&(a(),pe.ready())}function u(e,t,n){if(void 0===n&&1===e.nodeType){var r="data-"+t.replace(_e,"-$1").toLowerCase();if(n=e.getAttribute(r),"string"==typeof n){try{n="true"===n||"false"!==n&&("null"===n?null:+n+""===n?+n:qe.test(n)?pe.parseJSON(n):n)}catch(i){}pe.data(e,t,n)}else n=void 0}return n}function l(e){var t;for(t in e)if(("data"!==t||!pe.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}function c(e,t,n,r){if(He(e)){var i,o,a=pe.expando,s=e.nodeType,u=s?pe.cache:e,l=s?e[a]:e[a]&&a;if(l&&u[l]&&(r||u[l].data)||void 0!==n||"string"!=typeof t)return l||(l=s?e[a]=ne.pop()||pe.guid++:a),u[l]||(u[l]=s?{}:{toJSON:pe.noop}),"object"!=typeof t&&"function"!=typeof t||(r?u[l]=pe.extend(u[l],t):u[l].data=pe.extend(u[l].data,t)),o=u[l],r||(o.data||(o.data={}),o=o.data),void 0!==n&&(o[pe.camelCase(t)]=n),"string"==typeof t?(i=o[t],null==i&&(i=o[pe.camelCase(t)])):i=o,i}}function f(e,t,n){if(He(e)){var r,i,o=e.nodeType,a=o?pe.cache:e,s=o?e[pe.expando]:pe.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){pe.isArray(t)?t=t.concat(pe.map(t,pe.camelCase)):t in r?t=[t]:(t=pe.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;for(;i--;)delete r[t[i]];if(n?!l(r):!pe.isEmptyObject(r))return}(n||(delete a[s].data,l(a[s])))&&(o?pe.cleanData([e],!0):fe.deleteExpando||a!=a.window?delete a[s]:a[s]=void 0)}}}function d(e,t,n,r){var i,o=1,a=20,s=r?function(){return r.cur()}:function(){return pe.css(e,t,"")},u=s(),l=n&&n[3]||(pe.cssNumber[t]?"":"px"),c=(pe.cssNumber[t]||"px"!==l&&+u)&&Me.exec(pe.css(e,t));if(c&&c[3]!==l){l=l||c[3],n=n||[],c=+u||1;do o=o||".5",c/=o,pe.style(e,t,c+l);while(o!==(o=s()/u)&&1!==o&&--a)}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}function p(e){var t=ze.split("|"),n=e.createDocumentFragment();if(n.createElement)for(;t.length;)n.createElement(t.pop());return n}function h(e,t){var n,r,i=0,o="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):void 0;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||pe.nodeName(r,t)?o.push(r):pe.merge(o,h(r,t));return void 0===t||t&&pe.nodeName(e,t)?pe.merge([e],o):o}function g(e,t){for(var n,r=0;null!=(n=e[r]);r++)pe._data(n,"globalEval",!t||pe._data(t[r],"globalEval"))}function m(e){Be.test(e.type)&&(e.defaultChecked=e.checked)}function y(e,t,n,r,i){for(var o,a,s,u,l,c,f,d=e.length,y=p(t),v=[],x=0;x"!==f[1]||Ve.test(a)?0:u:u.firstChild,o=a&&a.childNodes.length;o--;)pe.nodeName(c=a.childNodes[o],"tbody")&&!c.childNodes.length&&a.removeChild(c);for(pe.merge(v,u.childNodes),u.textContent="";u.firstChild;)u.removeChild(u.firstChild);u=y.lastChild}else v.push(t.createTextNode(a));for(u&&y.removeChild(u),fe.appendChecked||pe.grep(h(v,"input"),m),x=0;a=v[x++];)if(r&&pe.inArray(a,r)>-1)i&&i.push(a);else if(s=pe.contains(a.ownerDocument,a),u=h(y.appendChild(a),"script"),s&&g(u),n)for(o=0;a=u[o++];)Ie.test(a.type||"")&&n.push(a);return u=null,y}function v(){return!0}function x(){return!1}function b(){try{return re.activeElement}catch(e){}}function w(e,t,n,r,i,o){var a,s;if("object"==typeof t){"string"!=typeof n&&(r=r||n,n=void 0);for(s in t)w(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),i===!1)i=x;else if(!i)return e;return 1===o&&(a=i,i=function(e){return pe().off(e),a.apply(this,arguments)},i.guid=a.guid||(a.guid=pe.guid++)),e.each(function(){pe.event.add(this,t,i,r,n)})}function T(e,t){return pe.nodeName(e,"table")&&pe.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function C(e){return e.type=(null!==pe.find.attr(e,"type"))+"/"+e.type,e}function E(e){var t=it.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function N(e,t){if(1===t.nodeType&&pe.hasData(e)){var n,r,i,o=pe._data(e),a=pe._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;r1&&"string"==typeof p&&!fe.checkClone&&rt.test(p))return e.each(function(i){var o=e.eq(i);g&&(t[0]=p.call(this,i,o.html())),S(o,t,n,r)});if(f&&(l=y(t,e[0].ownerDocument,!1,e,r),i=l.firstChild,1===l.childNodes.length&&(l=i),i||r)){for(s=pe.map(h(l,"script"),C),a=s.length;c")).appendTo(t.documentElement),t=(ut[0].contentWindow||ut[0].contentDocument).document,t.write(),t.close(),n=D(e,t),ut.detach()),lt[e]=n),n}function L(e,t){return{get:function(){return e()?void delete this.get:(this.get=t).apply(this,arguments)}}}function H(e){if(e in Et)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=Ct.length;n--;)if(e=Ct[n]+t,e in Et)return e}function q(e,t){for(var n,r,i,o=[],a=0,s=e.length;a=0&&n=0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},isPlainObject:function(e){var t;if(!e||"object"!==pe.type(e)||e.nodeType||pe.isWindow(e))return!1;try{if(e.constructor&&!ce.call(e,"constructor")&&!ce.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}if(!fe.ownFirst)for(t in e)return ce.call(e,t);for(t in e);return void 0===t||ce.call(e,t)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?ue[le.call(e)]||"object":typeof e},globalEval:function(t){t&&pe.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(ge,"ms-").replace(me,ye)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t){var r,i=0;if(n(e))for(r=e.length;iT.cacheLength&&delete e[t.shift()],e[n+" "]=r}var t=[];return e}function r(e){return e[P]=!0,e}function i(e){var t=H.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function o(e,t){for(var n=e.split("|"),r=n.length;r--;)T.attrHandle[n[r]]=t}function a(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||V)-(~e.sourceIndex||V);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function s(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function u(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function l(e){return r(function(t){return t=+t,r(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function c(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function f(){}function d(e){for(var t=0,n=e.length,r="";t1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function g(e,n,r){for(var i=0,o=n.length;i-1&&(r[l]=!(a[l]=f))}}else x=m(x===a?x.splice(h,x.length):x),o?o(null,a,x,u):Q.apply(a,x)})}function v(e){for(var t,n,r,i=e.length,o=T.relative[e[0].type],a=o||T.relative[" "],s=o?1:0,u=p(function(e){return e===t},a,!0),l=p(function(e){return ee(t,e)>-1},a,!0),c=[function(e,n,r){var i=!o&&(r||n!==A)||((t=n).nodeType?u(e,n,r):l(e,n,r));return t=null,i}];s1&&h(c),s>1&&d(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(se,"$1"),n,s0,o=e.length>0,a=function(r,a,s,u,l){var c,f,d,p=0,h="0",g=r&&[],y=[],v=A,x=r||o&&T.find.TAG("*",l),b=W+=null==v?1:Math.random()||.1,w=x.length;for(l&&(A=a===H||a||l);h!==w&&null!=(c=x[h]);h++){if(o&&c){for(f=0,a||c.ownerDocument===H||(L(c),s=!_);d=e[f++];)if(d(c,a||H,s)){u.push(c);break}l&&(W=b)}i&&((c=!d&&c)&&p--,r&&g.push(c))}if(p+=h,i&&h!==p){for(f=0;d=n[f++];)d(g,y,a,s);if(r){if(p>0)for(;h--;)g[h]||y[h]||(y[h]=G.call(u));y=m(y)}Q.apply(u,y),l&&!r&&y.length>0&&p+n.length>1&&t.uniqueSort(u)}return l&&(W=b,A=v),g};return i?r(a):a}var b,w,T,C,E,N,k,S,A,D,j,L,H,q,_,F,M,O,R,P="sizzle"+1*new Date,B=e.document,W=0,I=0,$=n(),z=n(),X=n(),U=function(e,t){return e===t&&(j=!0),0},V=1<<31,Y={}.hasOwnProperty,J=[],G=J.pop,K=J.push,Q=J.push,Z=J.slice,ee=function(e,t){for(var n=0,r=e.length;n+~]|"+ne+")"+ne+"*"),ce=new RegExp("="+ne+"*([^\\]'\"]*?)"+ne+"*\\]","g"),fe=new RegExp(oe),de=new RegExp("^"+re+"$"),pe={ID:new RegExp("^#("+re+")"),CLASS:new RegExp("^\\.("+re+")"),TAG:new RegExp("^("+re+"|[*])"),ATTR:new RegExp("^"+ie),PSEUDO:new RegExp("^"+oe),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ne+"*(even|odd|(([+-]|)(\\d*)n|)"+ne+"*(?:([+-]|)"+ne+"*(\\d+)|))"+ne+"*\\)|)","i"),bool:new RegExp("^(?:"+te+")$","i"),needsContext:new RegExp("^"+ne+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ne+"*((?:-\\d)?\\d*)"+ne+"*\\)|)(?=[^-]|$)","i")},he=/^(?:input|select|textarea|button)$/i,ge=/^h\d$/i,me=/^[^{]+\{\s*\[native \w/,ye=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ve=/[+~]/,xe=/'|\\/g,be=new RegExp("\\\\([\\da-f]{1,6}"+ne+"?|("+ne+")|.)","ig"),we=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},Te=function(){L()};try{Q.apply(J=Z.call(B.childNodes),B.childNodes),J[B.childNodes.length].nodeType}catch(Ce){Q={apply:J.length?function(e,t){K.apply(e,Z.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}w=t.support={},E=t.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return!!t&&"HTML"!==t.nodeName},L=t.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:B;return r!==H&&9===r.nodeType&&r.documentElement?(H=r,q=H.documentElement,_=!E(H),(n=H.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",Te,!1):n.attachEvent&&n.attachEvent("onunload",Te)),w.attributes=i(function(e){return e.className="i",!e.getAttribute("className")}),w.getElementsByTagName=i(function(e){return e.appendChild(H.createComment("")),!e.getElementsByTagName("*").length}),w.getElementsByClassName=me.test(H.getElementsByClassName),w.getById=i(function(e){return q.appendChild(e).id=P,!H.getElementsByName||!H.getElementsByName(P).length}),w.getById?(T.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&_){var n=t.getElementById(e);return n?[n]:[]}},T.filter.ID=function(e){var t=e.replace(be,we);return function(e){return e.getAttribute("id")===t}}):(delete T.find.ID,T.filter.ID=function(e){var t=e.replace(be,we);return function(e){var n="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}}),T.find.TAG=w.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):w.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},T.find.CLASS=w.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&_)return t.getElementsByClassName(e)},M=[],F=[],(w.qsa=me.test(H.querySelectorAll))&&(i(function(e){q.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&F.push("[*^$]="+ne+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||F.push("\\["+ne+"*(?:value|"+te+")"),e.querySelectorAll("[id~="+P+"-]").length||F.push("~="),e.querySelectorAll(":checked").length||F.push(":checked"),e.querySelectorAll("a#"+P+"+*").length||F.push(".#.+[+~]")}),i(function(e){var t=H.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&F.push("name"+ne+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||F.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),F.push(",.*:")})),(w.matchesSelector=me.test(O=q.matches||q.webkitMatchesSelector||q.mozMatchesSelector||q.oMatchesSelector||q.msMatchesSelector))&&i(function(e){w.disconnectedMatch=O.call(e,"div"),O.call(e,"[s!='']:x"),M.push("!=",oe)}),F=F.length&&new RegExp(F.join("|")),M=M.length&&new RegExp(M.join("|")),t=me.test(q.compareDocumentPosition),R=t||me.test(q.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},U=t?function(e,t){if(e===t)return j=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n?n:(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1,1&n||!w.sortDetached&&t.compareDocumentPosition(e)===n?e===H||e.ownerDocument===B&&R(B,e)?-1:t===H||t.ownerDocument===B&&R(B,t)?1:D?ee(D,e)-ee(D,t):0:4&n?-1:1)}:function(e,t){if(e===t)return j=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,s=[e],u=[t];if(!i||!o)return e===H?-1:t===H?1:i?-1:o?1:D?ee(D,e)-ee(D,t):0;if(i===o)return a(e,t);for(n=e;n=n.parentNode;)s.unshift(n);for(n=t;n=n.parentNode;)u.unshift(n);for(;s[r]===u[r];)r++;return r?a(s[r],u[r]):s[r]===B?-1:u[r]===B?1:0},H):H},t.matches=function(e,n){return t(e,null,null,n)},t.matchesSelector=function(e,n){if((e.ownerDocument||e)!==H&&L(e),n=n.replace(ce,"='$1']"),w.matchesSelector&&_&&!X[n+" "]&&(!M||!M.test(n))&&(!F||!F.test(n)))try{var r=O.call(e,n);if(r||w.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return t(n,H,null,[e]).length>0},t.contains=function(e,t){return(e.ownerDocument||e)!==H&&L(e),R(e,t)},t.attr=function(e,t){(e.ownerDocument||e)!==H&&L(e);var n=T.attrHandle[t.toLowerCase()],r=n&&Y.call(T.attrHandle,t.toLowerCase())?n(e,t,!_):void 0;return void 0!==r?r:w.attributes||!_?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},t.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},t.uniqueSort=function(e){var t,n=[],r=0,i=0;if(j=!w.detectDuplicates,D=!w.sortStable&&e.slice(0),e.sort(U),j){for(;t=e[i++];)t===e[i]&&(r=n.push(i));for(;r--;)e.splice(n[r],1)}return D=null,e},C=t.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=C(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r++];)n+=C(t);return n},T=t.selectors={cacheLength:50,createPseudo:r,match:pe,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(be,we),e[3]=(e[3]||e[4]||e[5]||"").replace(be,we),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||t.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&t.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return pe.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&fe.test(n)&&(t=N(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(be,we).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=$[e+" "];return t||(t=new RegExp("(^|"+ne+")"+e+"("+ne+"|$)"))&&$(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(e,n,r){return function(i){var o=t.attr(i,e);return null==o?"!="===n:!n||(o+="","="===n?o===r:"!="===n?o!==r:"^="===n?r&&0===o.indexOf(r):"*="===n?r&&o.indexOf(r)>-1:"$="===n?r&&o.slice(-r.length)===r:"~="===n?(" "+o.replace(ae," ")+" ").indexOf(r)>-1:"|="===n&&(o===r||o.slice(0,r.length+1)===r+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,d,p,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s,x=!1;if(m){if(o){for(;g;){for(d=t;d=d[g];)if(s?d.nodeName.toLowerCase()===y:1===d.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){for(d=m,f=d[P]||(d[P]={}),c=f[d.uniqueID]||(f[d.uniqueID]={}),l=c[e]||[],p=l[0]===W&&l[1],x=p&&l[2], -d=p&&m.childNodes[p];d=++p&&d&&d[g]||(x=p=0)||h.pop();)if(1===d.nodeType&&++x&&d===t){c[e]=[W,p,x];break}}else if(v&&(d=t,f=d[P]||(d[P]={}),c=f[d.uniqueID]||(f[d.uniqueID]={}),l=c[e]||[],p=l[0]===W&&l[1],x=p),x===!1)for(;(d=++p&&d&&d[g]||(x=p=0)||h.pop())&&((s?d.nodeName.toLowerCase()!==y:1!==d.nodeType)||!++x||(v&&(f=d[P]||(d[P]={}),c=f[d.uniqueID]||(f[d.uniqueID]={}),c[e]=[W,x]),d!==t)););return x-=i,x===r||x%r===0&&x/r>=0}}},PSEUDO:function(e,n){var i,o=T.pseudos[e]||T.setFilters[e.toLowerCase()]||t.error("unsupported pseudo: "+e);return o[P]?o(n):o.length>1?(i=[e,e,"",n],T.setFilters.hasOwnProperty(e.toLowerCase())?r(function(e,t){for(var r,i=o(e,n),a=i.length;a--;)r=ee(e,i[a]),e[r]=!(t[r]=i[a])}):function(e){return o(e,0,i)}):o}},pseudos:{not:r(function(e){var t=[],n=[],i=k(e.replace(se,"$1"));return i[P]?r(function(e,t,n,r){for(var o,a=i(e,null,r,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,r,o){return t[0]=e,i(t,null,o,n),t[0]=null,!n.pop()}}),has:r(function(e){return function(n){return t(e,n).length>0}}),contains:r(function(e){return e=e.replace(be,we),function(t){return(t.textContent||t.innerText||C(t)).indexOf(e)>-1}}),lang:r(function(e){return de.test(e||"")||t.error("unsupported lang: "+e),e=e.replace(be,we).toLowerCase(),function(t){var n;do if(n=_?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===q},focus:function(e){return e===H.activeElement&&(!H.hasFocus||H.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!T.pseudos.empty(e)},header:function(e){return ge.test(e.nodeName)},input:function(e){return he.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:l(function(){return[0]}),last:l(function(e,t){return[t-1]}),eq:l(function(e,t,n){return[n<0?n+t:n]}),even:l(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:l(function(e,t,n){for(var r=n<0?n+t:n;++r2&&"ID"===(a=o[0]).type&&w.getById&&9===t.nodeType&&_&&T.relative[o[1].type]){if(t=(T.find.ID(a.matches[0].replace(be,we),t)||[])[0],!t)return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}for(i=pe.needsContext.test(e)?0:o.length;i--&&(a=o[i],!T.relative[s=a.type]);)if((u=T.find[s])&&(r=u(a.matches[0].replace(be,we),ve.test(o[0].type)&&c(t.parentNode)||t))){if(o.splice(i,1),e=r.length&&d(o),!e)return Q.apply(n,r),n;break}}return(l||k(e,f))(r,t,!_,n,!t||ve.test(e)&&c(t.parentNode)||t),n},w.sortStable=P.split("").sort(U).join("")===P,w.detectDuplicates=!!j,L(),w.sortDetached=i(function(e){return 1&e.compareDocumentPosition(H.createElement("div"))}),i(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||o("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),w.attributes&&i(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||o("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),i(function(e){return null==e.getAttribute("disabled")})||o(te,function(e,t,n){var r;if(!n)return e[t]===!0?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),t}(e);pe.find=ve,pe.expr=ve.selectors,pe.expr[":"]=pe.expr.pseudos,pe.uniqueSort=pe.unique=ve.uniqueSort,pe.text=ve.getText,pe.isXMLDoc=ve.isXML,pe.contains=ve.contains;var xe=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&pe(e).is(n))break;r.push(e)}return r},be=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},we=pe.expr.match.needsContext,Te=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,Ce=/^.[^:#\[\.,]*$/;pe.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?pe.find.matchesSelector(r,e)?[r]:[]:pe.find.matches(e,pe.grep(t,function(e){return 1===e.nodeType}))},pe.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(pe(e).filter(function(){for(t=0;t1?pe.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},filter:function(e){return this.pushStack(r(this,e||[],!1))},not:function(e){return this.pushStack(r(this,e||[],!0))},is:function(e){return!!r(this,"string"==typeof e&&we.test(e)?pe(e):e||[],!1).length}});var Ee,Ne=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,ke=pe.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||Ee,"string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:Ne.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof pe?t[0]:t,pe.merge(this,pe.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:re,!0)),Te.test(r[1])&&pe.isPlainObject(t))for(r in t)pe.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}if(i=re.getElementById(r[2]),i&&i.parentNode){if(i.id!==r[2])return Ee.find(e);this.length=1,this[0]=i}return this.context=re,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):pe.isFunction(e)?"undefined"!=typeof n.ready?n.ready(e):e(pe):(void 0!==e.selector&&(this.selector=e.selector,this.context=e.context),pe.makeArray(e,this))};ke.prototype=pe.fn,Ee=pe(re);var Se=/^(?:parents|prev(?:Until|All))/,Ae={children:!0,contents:!0,next:!0,prev:!0};pe.fn.extend({has:function(e){var t,n=pe(e,this),r=n.length;return this.filter(function(){for(t=0;t-1:1===n.nodeType&&pe.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?pe.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?pe.inArray(this[0],pe(e)):pe.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(pe.uniqueSort(pe.merge(this.get(),pe(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),pe.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return xe(e,"parentNode")},parentsUntil:function(e,t,n){return xe(e,"parentNode",n)},next:function(e){return i(e,"nextSibling")},prev:function(e){return i(e,"previousSibling")},nextAll:function(e){return xe(e,"nextSibling")},prevAll:function(e){return xe(e,"previousSibling")},nextUntil:function(e,t,n){return xe(e,"nextSibling",n)},prevUntil:function(e,t,n){return xe(e,"previousSibling",n)},siblings:function(e){return be((e.parentNode||{}).firstChild,e)},children:function(e){return be(e.firstChild)},contents:function(e){return pe.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:pe.merge([],e.childNodes)}},function(e,t){pe.fn[e]=function(n,r){var i=pe.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=pe.filter(r,i)),this.length>1&&(Ae[e]||(i=pe.uniqueSort(i)),Se.test(e)&&(i=i.reverse())),this.pushStack(i)}});var De=/\S+/g;pe.Callbacks=function(e){e="string"==typeof e?o(e):pe.extend({},e);var t,n,r,i,a=[],s=[],u=-1,l=function(){for(i=e.once,r=t=!0;s.length;u=-1)for(n=s.shift();++u-1;)a.splice(n,1),n<=u&&u--}),this},has:function(e){return e?pe.inArray(e,a)>-1:a.length>0},empty:function(){return a&&(a=[]),this},disable:function(){return i=s=[],a=n="",this},disabled:function(){return!a},lock:function(){return i=!0,n||c.disable(),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=n||[],n=[e,n.slice?n.slice():n],s.push(n),t||l()),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},pe.extend({Deferred:function(e){var t=[["resolve","done",pe.Callbacks("once memory"),"resolved"],["reject","fail",pe.Callbacks("once memory"),"rejected"],["notify","progress",pe.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return pe.Deferred(function(n){pe.each(t,function(t,o){var a=pe.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&pe.isFunction(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[o[0]+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?pe.extend(e,r):r}},i={};return r.pipe=r.then,pe.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t,n,r,i=0,o=ie.call(arguments),a=o.length,s=1!==a||e&&pe.isFunction(e.promise)?a:0,u=1===s?e:pe.Deferred(),l=function(e,n,r){return function(i){n[e]=this,r[e]=arguments.length>1?ie.call(arguments):i,r===t?u.notifyWith(n,r):--s||u.resolveWith(n,r)}};if(a>1)for(t=new Array(a),n=new Array(a),r=new Array(a);i0||(je.resolveWith(re,[pe]),pe.fn.triggerHandler&&(pe(re).triggerHandler("ready"),pe(re).off("ready"))))}}),pe.ready.promise=function(t){if(!je)if(je=pe.Deferred(),"complete"===re.readyState||"loading"!==re.readyState&&!re.documentElement.doScroll)e.setTimeout(pe.ready);else if(re.addEventListener)re.addEventListener("DOMContentLoaded",s),e.addEventListener("load",s);else{re.attachEvent("onreadystatechange",s),e.attachEvent("onload",s);var n=!1;try{n=null==e.frameElement&&re.documentElement}catch(r){}n&&n.doScroll&&!function i(){if(!pe.isReady){try{n.doScroll("left")}catch(t){return e.setTimeout(i,50)}a(),pe.ready()}}()}return je.promise(t)},pe.ready.promise();var Le;for(Le in pe(fe))break;fe.ownFirst="0"===Le,fe.inlineBlockNeedsLayout=!1,pe(function(){var e,t,n,r;n=re.getElementsByTagName("body")[0],n&&n.style&&(t=re.createElement("div"),r=re.createElement("div"),r.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",n.appendChild(r).appendChild(t),"undefined"!=typeof t.style.zoom&&(t.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",fe.inlineBlockNeedsLayout=e=3===t.offsetWidth,e&&(n.style.zoom=1)),n.removeChild(r))}),function(){var e=re.createElement("div");fe.deleteExpando=!0;try{delete e.test}catch(t){fe.deleteExpando=!1}e=null}();var He=function(e){var t=pe.noData[(e.nodeName+" ").toLowerCase()],n=+e.nodeType||1;return(1===n||9===n)&&(!t||t!==!0&&e.getAttribute("classid")===t)},qe=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,_e=/([A-Z])/g;pe.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?pe.cache[e[pe.expando]]:e[pe.expando],!!e&&!l(e)},data:function(e,t,n){return c(e,t,n)},removeData:function(e,t){return f(e,t)},_data:function(e,t,n){return c(e,t,n,!0)},_removeData:function(e,t){return f(e,t,!0)}}),pe.fn.extend({data:function(e,t){var n,r,i,o=this[0],a=o&&o.attributes;if(void 0===e){if(this.length&&(i=pe.data(o),1===o.nodeType&&!pe._data(o,"parsedAttrs"))){for(n=a.length;n--;)a[n]&&(r=a[n].name,0===r.indexOf("data-")&&(r=pe.camelCase(r.slice(5)),u(o,r,i[r])));pe._data(o,"parsedAttrs",!0)}return i}return"object"==typeof e?this.each(function(){pe.data(this,e)}):arguments.length>1?this.each(function(){pe.data(this,e,t)}):o?u(o,e,pe.data(o,e)):void 0},removeData:function(e){return this.each(function(){pe.removeData(this,e)})}}),pe.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=pe._data(e,t),n&&(!r||pe.isArray(n)?r=pe._data(e,t,pe.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=pe.queue(e,t),r=n.length,i=n.shift(),o=pe._queueHooks(e,t),a=function(){pe.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return pe._data(e,n)||pe._data(e,n,{empty:pe.Callbacks("once memory").add(function(){pe._removeData(e,t+"queue"),pe._removeData(e,n)})})}}),pe.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),arguments.length
a",fe.leadingWhitespace=3===e.firstChild.nodeType,fe.tbody=!e.getElementsByTagName("tbody").length,fe.htmlSerialize=!!e.getElementsByTagName("link").length,fe.html5Clone="<:nav>"!==re.createElement("nav").cloneNode(!0).outerHTML,n.type="checkbox",n.checked=!0,t.appendChild(n),fe.appendChecked=n.checked,e.innerHTML="",fe.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue,t.appendChild(e),n=re.createElement("input"),n.setAttribute("type","radio"),n.setAttribute("checked","checked"),n.setAttribute("name","t"),e.appendChild(n),fe.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,fe.noCloneEvent=!!e.addEventListener,e[pe.expando]=1,fe.attributes=!e.getAttribute(pe.expando)}();var Xe={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:fe.htmlSerialize?[0,"",""]:[1,"X
","
"]};Xe.optgroup=Xe.option,Xe.tbody=Xe.tfoot=Xe.colgroup=Xe.caption=Xe.thead,Xe.th=Xe.td;var Ue=/<|&#?\w+;/,Ve=/-1&&(h=p.split("."),p=h.shift(),h.sort()),a=p.indexOf(":")<0&&"on"+p,t=t[pe.expando]?t:new pe.Event(p,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=h.join("."),t.rnamespace=t.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=void 0,t.target||(t.target=r),n=null==n?[t]:pe.makeArray(n,[t]),l=pe.event.special[p]||{},i||!l.trigger||l.trigger.apply(r,n)!==!1)){if(!i&&!l.noBubble&&!pe.isWindow(r)){for(u=l.delegateType||p,Ke.test(u+p)||(s=s.parentNode);s;s=s.parentNode)d.push(s),c=s;c===(r.ownerDocument||re)&&d.push(c.defaultView||c.parentWindow||e)}for(f=0;(s=d[f++])&&!t.isPropagationStopped();)t.type=f>1?u:l.bindType||p,o=(pe._data(s,"events")||{})[t.type]&&pe._data(s,"handle"),o&&o.apply(s,n),o=a&&s[a],o&&o.apply&&He(s)&&(t.result=o.apply(s,n),t.result===!1&&t.preventDefault());if(t.type=p,!i&&!t.isDefaultPrevented()&&(!l._default||l._default.apply(d.pop(),n)===!1)&&He(r)&&a&&r[p]&&!pe.isWindow(r)){c=r[a],c&&(r[a]=null),pe.event.triggered=p;try{r[p]()}catch(g){}pe.event.triggered=void 0,c&&(r[a]=c)}return t.result}},dispatch:function(e){e=pe.event.fix(e);var t,n,r,i,o,a=[],s=ie.call(arguments),u=(pe._data(this,"events")||{})[e.type]||[],l=pe.event.special[e.type]||{};if(s[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){for(a=pe.event.handlers.call(this,e,u),t=0;(i=a[t++])&&!e.isPropagationStopped();)for(e.currentTarget=i.elem,n=0;(o=i.handlers[n++])&&!e.isImmediatePropagationStopped();)e.rnamespace&&!e.rnamespace.test(o.namespace)||(e.handleObj=o,e.data=o.data,r=((pe.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s),void 0!==r&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()));return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,a=[],s=t.delegateCount,u=e.target;if(s&&u.nodeType&&("click"!==e.type||isNaN(e.button)||e.button<1))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(r=[],n=0;n-1:pe.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&a.push({elem:u,handlers:r})}return s]","i"),tt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,nt=/\s*$/g,at=p(re),st=at.appendChild(re.createElement("div"));pe.extend({htmlPrefilter:function(e){return e.replace(tt,"<$1>")},clone:function(e,t,n){var r,i,o,a,s,u=pe.contains(e.ownerDocument,e);if(fe.html5Clone||pe.isXMLDoc(e)||!et.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(st.innerHTML=e.outerHTML,st.removeChild(o=st.firstChild)),!(fe.noCloneEvent&&fe.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||pe.isXMLDoc(e)))for(r=h(o),s=h(e),a=0;null!=(i=s[a]);++a)r[a]&&k(i,r[a]);if(t)if(n)for(s=s||h(e),r=r||h(o),a=0;null!=(i=s[a]);a++)N(i,r[a]);else N(e,o);return r=h(o,"script"),r.length>0&&g(r,!u&&h(e,"script")),r=s=i=null,o},cleanData:function(e,t){for(var n,r,i,o,a=0,s=pe.expando,u=pe.cache,l=fe.attributes,c=pe.event.special;null!=(n=e[a]);a++)if((t||He(n))&&(i=n[s],o=i&&u[i])){if(o.events)for(r in o.events)c[r]?pe.event.remove(n,r):pe.removeEvent(n,r,o.handle);u[i]&&(delete u[i],l||"undefined"==typeof n.removeAttribute?n[s]=void 0:n.removeAttribute(s),ne.push(i))}}}),pe.fn.extend({domManip:S,detach:function(e){return A(this,e,!0)},remove:function(e){return A(this,e)},text:function(e){return Pe(this,function(e){return void 0===e?pe.text(this):this.empty().append((this[0]&&this[0].ownerDocument||re).createTextNode(e))},null,e,arguments.length)},append:function(){return S(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=T(this,e);t.appendChild(e)}})},prepend:function(){return S(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=T(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return S(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return S(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&pe.cleanData(h(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&pe.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return pe.clone(this,e,t)})},html:function(e){return Pe(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e)return 1===t.nodeType?t.innerHTML.replace(Ze,""):void 0;if("string"==typeof e&&!nt.test(e)&&(fe.htmlSerialize||!et.test(e))&&(fe.leadingWhitespace||!$e.test(e))&&!Xe[(We.exec(e)||["",""])[1].toLowerCase()]){e=pe.htmlPrefilter(e);try{for(;nt",l.childNodes[0].style.borderCollapse="separate",t=l.getElementsByTagName("td"),t[0].style.cssText="margin:0;border:0;padding:0;display:none",o=0===t[0].offsetHeight,o&&(t[0].style.display="",t[1].style.display="none",o=0===t[0].offsetHeight)),f.removeChild(u)}var n,r,i,o,a,s,u=re.createElement("div"),l=re.createElement("div");l.style&&(l.style.cssText="float:left;opacity:.5",fe.opacity="0.5"===l.style.opacity,fe.cssFloat=!!l.style.cssFloat,l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",fe.clearCloneStyle="content-box"===l.style.backgroundClip,u=re.createElement("div"),u.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",l.innerHTML="",u.appendChild(l),fe.boxSizing=""===l.style.boxSizing||""===l.style.MozBoxSizing||""===l.style.WebkitBoxSizing,pe.extend(fe,{reliableHiddenOffsets:function(){return null==n&&t(),o},boxSizingReliable:function(){return null==n&&t(),i},pixelMarginRight:function(){return null==n&&t(),r},pixelPosition:function(){return null==n&&t(),n},reliableMarginRight:function(){return null==n&&t(),a},reliableMarginLeft:function(){return null==n&&t(),s}}))}();var ht,gt,mt=/^(top|right|bottom|left)$/;e.getComputedStyle?(ht=function(t){var n=t.ownerDocument.defaultView;return n&&n.opener||(n=e),n.getComputedStyle(t)},gt=function(e,t,n){var r,i,o,a,s=e.style;return n=n||ht(e),a=n?n.getPropertyValue(t)||n[t]:void 0,""!==a&&void 0!==a||pe.contains(e.ownerDocument,e)||(a=pe.style(e,t)),n&&!fe.pixelMarginRight()&&ft.test(a)&&ct.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o),void 0===a?a:a+""}):pt.currentStyle&&(ht=function(e){return e.currentStyle},gt=function(e,t,n){var r,i,o,a,s=e.style;return n=n||ht(e),a=n?n[t]:void 0,null==a&&s&&s[t]&&(a=s[t]),ft.test(a)&&!mt.test(t)&&(r=s.left,i=e.runtimeStyle,o=i&&i.left,o&&(i.left=e.currentStyle.left),s.left="fontSize"===t?"1em":a,a=s.pixelLeft+"px",s.left=r,o&&(i.left=o)),void 0===a?a:a+""||"auto"});var yt=/alpha\([^)]*\)/i,vt=/opacity\s*=\s*([^)]*)/i,xt=/^(none|table(?!-c[ea]).+)/,bt=new RegExp("^("+Fe+")(.*)$","i"),wt={position:"absolute",visibility:"hidden",display:"block"},Tt={letterSpacing:"0",fontWeight:"400"},Ct=["Webkit","O","Moz","ms"],Et=re.createElement("div").style;pe.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=gt(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":fe.cssFloat?"cssFloat":"styleFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=pe.camelCase(t),u=e.style;if(t=pe.cssProps[s]||(pe.cssProps[s]=H(s)||s),a=pe.cssHooks[t]||pe.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:u[t];if(o=typeof n,"string"===o&&(i=Me.exec(n))&&i[1]&&(n=d(e,t,i),o="number"),null!=n&&n===n&&("number"===o&&(n+=i&&i[3]||(pe.cssNumber[s]?"":"px")),fe.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),!(a&&"set"in a&&void 0===(n=a.set(e,n,r)))))try{u[t]=n}catch(l){}}},css:function(e,t,n,r){var i,o,a,s=pe.camelCase(t);return t=pe.cssProps[s]||(pe.cssProps[s]=H(s)||s),a=pe.cssHooks[t]||pe.cssHooks[s],a&&"get"in a&&(o=a.get(e,!0,n)),void 0===o&&(o=gt(e,t,r)),"normal"===o&&t in Tt&&(o=Tt[t]),""===n||n?(i=parseFloat(o),n===!0||isFinite(i)?i||0:o):o}}),pe.each(["height","width"],function(e,t){pe.cssHooks[t]={get:function(e,n,r){if(n)return xt.test(pe.css(e,"display"))&&0===e.offsetWidth?dt(e,wt,function(){return M(e,t,r)}):M(e,t,r)},set:function(e,n,r){var i=r&&ht(e);return _(e,n,r?F(e,t,r,fe.boxSizing&&"border-box"===pe.css(e,"boxSizing",!1,i),i):0)}}}),fe.opacity||(pe.cssHooks.opacity={get:function(e,t){return vt.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=pe.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===pe.trim(o.replace(yt,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=yt.test(o)?o.replace(yt,i):o+" "+i)}}),pe.cssHooks.marginRight=L(fe.reliableMarginRight,function(e,t){if(t)return dt(e,{display:"inline-block"},gt,[e,"marginRight"])}),pe.cssHooks.marginLeft=L(fe.reliableMarginLeft,function(e,t){if(t)return(parseFloat(gt(e,"marginLeft"))||(pe.contains(e.ownerDocument,e)?e.getBoundingClientRect().left-dt(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}):0))+"px"}),pe.each({margin:"",padding:"",border:"Width"},function(e,t){pe.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];r<4;r++)i[e+Oe[r]+t]=o[r]||o[r-2]||o[0];return i}},ct.test(e)||(pe.cssHooks[e+t].set=_)}),pe.fn.extend({css:function(e,t){return Pe(this,function(e,t,n){var r,i,o={},a=0;if(pe.isArray(t)){for(r=ht(e),i=t.length;a1)},show:function(){return q(this,!0)},hide:function(){return q(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Re(this)?pe(this).show():pe(this).hide()})}}),pe.Tween=O,O.prototype={constructor:O,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||pe.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(pe.cssNumber[n]?"":"px")},cur:function(){var e=O.propHooks[this.prop];return e&&e.get?e.get(this):O.propHooks._default.get(this)},run:function(e){var t,n=O.propHooks[this.prop];return this.options.duration?this.pos=t=pe.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):O.propHooks._default.set(this),this}},O.prototype.init.prototype=O.prototype,O.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=pe.css(e.elem,e.prop,""),t&&"auto"!==t?t:0)},set:function(e){pe.fx.step[e.prop]?pe.fx.step[e.prop](e):1!==e.elem.nodeType||null==e.elem.style[pe.cssProps[e.prop]]&&!pe.cssHooks[e.prop]?e.elem[e.prop]=e.now:pe.style(e.elem,e.prop,e.now+e.unit)}}},O.propHooks.scrollTop=O.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},pe.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},pe.fx=O.prototype.init,pe.fx.step={};var Nt,kt,St=/^(?:toggle|show|hide)$/,At=/queueHooks$/;pe.Animation=pe.extend($,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return d(n.elem,e,Me.exec(t),n),n}]},tweener:function(e,t){pe.isFunction(e)?(t=e,e=["*"]):e=e.match(De);for(var n,r=0,i=e.length;r
a",e=n.getElementsByTagName("a")[0],t.setAttribute("type","checkbox"),n.appendChild(t),e=n.getElementsByTagName("a")[0],e.style.cssText="top:1px",fe.getSetAttribute="t"!==n.className,fe.style=/top/.test(e.getAttribute("style")),fe.hrefNormalized="/a"===e.getAttribute("href"),fe.checkOn=!!t.value,fe.optSelected=i.selected,fe.enctype=!!re.createElement("form").enctype,r.disabled=!0,fe.optDisabled=!i.disabled,t=re.createElement("input"),t.setAttribute("value",""),fe.input=""===t.getAttribute("value"),t.value="t",t.setAttribute("type","radio"),fe.radioValue="t"===t.value}();var Dt=/\r/g,jt=/[\x20\t\r\n\f]+/g;pe.fn.extend({val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=pe.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,pe(this).val()):e,null==i?i="":"number"==typeof i?i+="":pe.isArray(i)&&(i=pe.map(i,function(e){return null==e?"":e+""})),t=pe.valHooks[this.type]||pe.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))});if(i)return t=pe.valHooks[i.type]||pe.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:(n=i.value,"string"==typeof n?n.replace(Dt,""):null==n?"":n)}}}),pe.extend({valHooks:{option:{get:function(e){var t=pe.find.attr(e,"value");return null!=t?t:pe.trim(pe.text(e)).replace(jt," ")}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||i<0,a=o?null:[],s=o?i+1:r.length,u=i<0?s:o?i:0;u-1)try{r.selected=n=!0}catch(s){r.scrollHeight}else r.selected=!1;return n||(e.selectedIndex=-1),i}}}}),pe.each(["radio","checkbox"],function(){pe.valHooks[this]={set:function(e,t){if(pe.isArray(t))return e.checked=pe.inArray(pe(e).val(),t)>-1}},fe.checkOn||(pe.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Lt,Ht,qt=pe.expr.attrHandle,_t=/^(?:checked|selected)$/i,Ft=fe.getSetAttribute,Mt=fe.input;pe.fn.extend({attr:function(e,t){return Pe(this,pe.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){pe.removeAttr(this,e)})}}),pe.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?pe.prop(e,t,n):(1===o&&pe.isXMLDoc(e)||(t=t.toLowerCase(),i=pe.attrHooks[t]||(pe.expr.match.bool.test(t)?Ht:Lt)),void 0!==n?null===n?void pe.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:(r=pe.find.attr(e,t),null==r?void 0:r))},attrHooks:{type:{set:function(e,t){if(!fe.radioValue&&"radio"===t&&pe.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(De);if(o&&1===e.nodeType)for(;n=o[i++];)r=pe.propFix[n]||n,pe.expr.match.bool.test(n)?Mt&&Ft||!_t.test(n)?e[r]=!1:e[pe.camelCase("default-"+n)]=e[r]=!1:pe.attr(e,n,""),e.removeAttribute(Ft?n:r)}}),Ht={set:function(e,t,n){return t===!1?pe.removeAttr(e,n):Mt&&Ft||!_t.test(n)?e.setAttribute(!Ft&&pe.propFix[n]||n,n):e[pe.camelCase("default-"+n)]=e[n]=!0,n}},pe.each(pe.expr.match.bool.source.match(/\w+/g),function(e,t){var n=qt[t]||pe.find.attr;Mt&&Ft||!_t.test(t)?qt[t]=function(e,t,r){var i,o;return r||(o=qt[t],qt[t]=i,i=null!=n(e,t,r)?t.toLowerCase():null,qt[t]=o),i}:qt[t]=function(e,t,n){if(!n)return e[pe.camelCase("default-"+t)]?t.toLowerCase():null}}),Mt&&Ft||(pe.attrHooks.value={set:function(e,t,n){return pe.nodeName(e,"input")?void(e.defaultValue=t):Lt&&Lt.set(e,t,n)}}),Ft||(Lt={set:function(e,t,n){var r=e.getAttributeNode(n);if(r||e.setAttributeNode(r=e.ownerDocument.createAttribute(n)),r.value=t+="","value"===n||t===e.getAttribute(n))return t}},qt.id=qt.name=qt.coords=function(e,t,n){var r;if(!n)return(r=e.getAttributeNode(t))&&""!==r.value?r.value:null},pe.valHooks.button={get:function(e,t){var n=e.getAttributeNode(t);if(n&&n.specified)return n.value},set:Lt.set},pe.attrHooks.contenteditable={set:function(e,t,n){Lt.set(e,""!==t&&t,n)}},pe.each(["width","height"],function(e,t){pe.attrHooks[t]={set:function(e,n){if(""===n)return e.setAttribute(t,"auto"),n}}})),fe.style||(pe.attrHooks.style={get:function(e){return e.style.cssText||void 0},set:function(e,t){return e.style.cssText=t+""}});var Ot=/^(?:input|select|textarea|button|object)$/i,Rt=/^(?:a|area)$/i;pe.fn.extend({prop:function(e,t){return Pe(this,pe.prop,e,t,arguments.length>1)},removeProp:function(e){return e=pe.propFix[e]||e,this.each(function(){try{this[e]=void 0,delete this[e]}catch(t){}})}}),pe.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&pe.isXMLDoc(e)||(t=pe.propFix[t]||t,i=pe.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=pe.find.attr(e,"tabindex");return t?parseInt(t,10):Ot.test(e.nodeName)||Rt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),fe.hrefNormalized||pe.each(["href","src"],function(e,t){pe.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),fe.optSelected||(pe.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),pe.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){pe.propFix[this.toLowerCase()]=this}),fe.enctype||(pe.propFix.enctype="encoding");var Pt=/[\t\r\n\f]/g;pe.fn.extend({addClass:function(e){var t,n,r,i,o,a,s,u=0;if(pe.isFunction(e))return this.each(function(t){pe(this).addClass(e.call(this,t,z(this)))});if("string"==typeof e&&e)for(t=e.match(De)||[];n=this[u++];)if(i=z(n),r=1===n.nodeType&&(" "+i+" ").replace(Pt," ")){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");s=pe.trim(r),i!==s&&pe.attr(n,"class",s)}return this},removeClass:function(e){var t,n,r,i,o,a,s,u=0;if(pe.isFunction(e))return this.each(function(t){pe(this).removeClass(e.call(this,t,z(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof e&&e)for(t=e.match(De)||[];n=this[u++];)if(i=z(n),r=1===n.nodeType&&(" "+i+" ").replace(Pt," ")){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");s=pe.trim(r),i!==s&&pe.attr(n,"class",s)}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):pe.isFunction(e)?this.each(function(n){pe(this).toggleClass(e.call(this,n,z(this),t),t)}):this.each(function(){var t,r,i,o;if("string"===n)for(r=0,i=pe(this),o=e.match(De)||[];t=o[r++];)i.hasClass(t)?i.removeClass(t):i.addClass(t);else void 0!==e&&"boolean"!==n||(t=z(this),t&&pe._data(this,"__className__",t),pe.attr(this,"class",t||e===!1?"":pe._data(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+z(n)+" ").replace(Pt," ").indexOf(t)>-1)return!0;return!1}}),pe.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){pe.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),pe.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}});var Bt=e.location,Wt=pe.now(),It=/\?/,$t=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;pe.parseJSON=function(t){if(e.JSON&&e.JSON.parse)return e.JSON.parse(t+"");var n,r=null,i=pe.trim(t+"");return i&&!pe.trim(i.replace($t,function(e,t,i,o){return n&&t&&(r=0),0===r?e:(n=i||t,r+=!o-!i,"")}))?Function("return "+i)():pe.error("Invalid JSON: "+t)},pe.parseXML=function(t){var n,r;if(!t||"string"!=typeof t)return null;try{e.DOMParser?(r=new e.DOMParser,n=r.parseFromString(t,"text/xml")):(n=new e.ActiveXObject("Microsoft.XMLDOM"),n.async="false",n.loadXML(t))}catch(i){n=void 0}return n&&n.documentElement&&!n.getElementsByTagName("parsererror").length||pe.error("Invalid XML: "+t),n};var zt=/#.*$/,Xt=/([?&])_=[^&]*/,Ut=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Vt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Yt=/^(?:GET|HEAD)$/,Jt=/^\/\//,Gt=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Kt={},Qt={},Zt="*/".concat("*"),en=Bt.href,tn=Gt.exec(en.toLowerCase())||[];pe.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:en,type:"GET",isLocal:Vt.test(tn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Zt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":pe.parseJSON,"text xml":pe.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?V(V(e,pe.ajaxSettings),t):V(pe.ajaxSettings,e)},ajaxPrefilter:X(Kt),ajaxTransport:X(Qt),ajax:function(t,n){function r(t,n,r,i){var o,f,v,x,w,C=n;2!==b&&(b=2,u&&e.clearTimeout(u),c=void 0,s=i||"",T.readyState=t>0?4:0,o=t>=200&&t<300||304===t,r&&(x=Y(d,T,r)),x=J(d,x,T,o),o?(d.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(pe.lastModified[a]=w),w=T.getResponseHeader("etag"),w&&(pe.etag[a]=w)),204===t||"HEAD"===d.type?C="nocontent":304===t?C="notmodified":(C=x.state,f=x.data,v=x.error,o=!v)):(v=C,!t&&C||(C="error",t<0&&(t=0))),T.status=t,T.statusText=(n||C)+"",o?g.resolveWith(p,[f,C,T]):g.rejectWith(p,[T,C,v]),T.statusCode(y),y=void 0,l&&h.trigger(o?"ajaxSuccess":"ajaxError",[T,d,o?f:v]),m.fireWith(p,[T,C]),l&&(h.trigger("ajaxComplete",[T,d]),--pe.active||pe.event.trigger("ajaxStop")))}"object"==typeof t&&(n=t,t=void 0),n=n||{};var i,o,a,s,u,l,c,f,d=pe.ajaxSetup({},n),p=d.context||d,h=d.context&&(p.nodeType||p.jquery)?pe(p):pe.event,g=pe.Deferred(),m=pe.Callbacks("once memory"),y=d.statusCode||{},v={},x={},b=0,w="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!f)for(f={};t=Ut.exec(s);)f[t[1].toLowerCase()]=t[2];t=f[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?s:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=x[n]=x[n]||e,v[e]=t),this},overrideMimeType:function(e){return b||(d.mimeType=e),this},statusCode:function(e){var t;if(e)if(b<2)for(t in e)y[t]=[y[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||w;return c&&c.abort(t),r(0,t),this}};if(g.promise(T).complete=m.add,T.success=T.done,T.error=T.fail,d.url=((t||d.url||en)+"").replace(zt,"").replace(Jt,tn[1]+"//"),d.type=n.method||n.type||d.method||d.type,d.dataTypes=pe.trim(d.dataType||"*").toLowerCase().match(De)||[""],null==d.crossDomain&&(i=Gt.exec(d.url.toLowerCase()),d.crossDomain=!(!i||i[1]===tn[1]&&i[2]===tn[2]&&(i[3]||("http:"===i[1]?"80":"443"))===(tn[3]||("http:"===tn[1]?"80":"443")))),d.data&&d.processData&&"string"!=typeof d.data&&(d.data=pe.param(d.data,d.traditional)),U(Kt,d,n,T),2===b)return T;l=pe.event&&d.global,l&&0===pe.active++&&pe.event.trigger("ajaxStart"),d.type=d.type.toUpperCase(),d.hasContent=!Yt.test(d.type),a=d.url,d.hasContent||(d.data&&(a=d.url+=(It.test(a)?"&":"?")+d.data,delete d.data),d.cache===!1&&(d.url=Xt.test(a)?a.replace(Xt,"$1_="+Wt++):a+(It.test(a)?"&":"?")+"_="+Wt++)),d.ifModified&&(pe.lastModified[a]&&T.setRequestHeader("If-Modified-Since",pe.lastModified[a]),pe.etag[a]&&T.setRequestHeader("If-None-Match",pe.etag[a])),(d.data&&d.hasContent&&d.contentType!==!1||n.contentType)&&T.setRequestHeader("Content-Type",d.contentType),T.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+("*"!==d.dataTypes[0]?", "+Zt+"; q=0.01":""):d.accepts["*"]);for(o in d.headers)T.setRequestHeader(o,d.headers[o]);if(d.beforeSend&&(d.beforeSend.call(p,T,d)===!1||2===b))return T.abort();w="abort";for(o in{success:1,error:1,complete:1})T[o](d[o]);if(c=U(Qt,d,n,T)){if(T.readyState=1,l&&h.trigger("ajaxSend",[T,d]),2===b)return T;d.async&&d.timeout>0&&(u=e.setTimeout(function(){T.abort("timeout")},d.timeout));try{b=1,c.send(v,r)}catch(C){if(!(b<2))throw C;r(-1,C)}}else r(-1,"No Transport");return T},getJSON:function(e,t,n){return pe.get(e,t,n,"json")},getScript:function(e,t){return pe.get(e,void 0,t,"script")}}),pe.each(["get","post"],function(e,t){pe[t]=function(e,n,r,i){return pe.isFunction(n)&&(i=i||r,r=n,n=void 0),pe.ajax(pe.extend({url:e,type:t,dataType:i,data:n,success:r},pe.isPlainObject(e)&&e))}}),pe._evalUrl=function(e){return pe.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},pe.fn.extend({wrapAll:function(e){if(pe.isFunction(e))return this.each(function(t){pe(this).wrapAll(e.call(this,t))});if(this[0]){var t=pe(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return pe.isFunction(e)?this.each(function(t){pe(this).wrapInner(e.call(this,t))}):this.each(function(){var t=pe(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=pe.isFunction(e);return this.each(function(n){pe(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){pe.nodeName(this,"body")||pe(this).replaceWith(this.childNodes)}).end()}}),pe.expr.filters.hidden=function(e){return fe.reliableHiddenOffsets()?e.offsetWidth<=0&&e.offsetHeight<=0&&!e.getClientRects().length:K(e)},pe.expr.filters.visible=function(e){return!pe.expr.filters.hidden(e)};var nn=/%20/g,rn=/\[\]$/,on=/\r?\n/g,an=/^(?:submit|button|image|reset|file)$/i,sn=/^(?:input|select|textarea|keygen)/i;pe.param=function(e,t){var n,r=[],i=function(e,t){t=pe.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(void 0===t&&(t=pe.ajaxSettings&&pe.ajaxSettings.traditional),pe.isArray(e)||e.jquery&&!pe.isPlainObject(e))pe.each(e,function(){i(this.name,this.value)});else for(n in e)Q(n,e[n],t,i);return r.join("&").replace(nn,"+")},pe.fn.extend({serialize:function(){return pe.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=pe.prop(this,"elements");return e?pe.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!pe(this).is(":disabled")&&sn.test(this.nodeName)&&!an.test(e)&&(this.checked||!Be.test(e))}).map(function(e,t){var n=pe(this).val();return null==n?null:pe.isArray(n)?pe.map(n,function(e){return{name:t.name,value:e.replace(on,"\r\n")}}):{name:t.name,value:n.replace(on,"\r\n")}}).get()}}),pe.ajaxSettings.xhr=void 0!==e.ActiveXObject?function(){return this.isLocal?ee():re.documentMode>8?Z():/^(get|post|head|put|delete|options)$/i.test(this.type)&&Z()||ee()}:Z;var un=0,ln={},cn=pe.ajaxSettings.xhr();e.attachEvent&&e.attachEvent("onunload",function(){for(var e in ln)ln[e](void 0,!0)}),fe.cors=!!cn&&"withCredentials"in cn,cn=fe.ajax=!!cn,cn&&pe.ajaxTransport(function(t){if(!t.crossDomain||fe.cors){var n;return{send:function(r,i){var o,a=t.xhr(),s=++un;if(a.open(t.type,t.url,t.async,t.username,t.password),t.xhrFields)for(o in t.xhrFields)a[o]=t.xhrFields[o];t.mimeType&&a.overrideMimeType&&a.overrideMimeType(t.mimeType),t.crossDomain||r["X-Requested-With"]||(r["X-Requested-With"]="XMLHttpRequest");for(o in r)void 0!==r[o]&&a.setRequestHeader(o,r[o]+"");a.send(t.hasContent&&t.data||null),n=function(e,r){var o,u,l;if(n&&(r||4===a.readyState))if(delete ln[s],n=void 0,a.onreadystatechange=pe.noop,r)4!==a.readyState&&a.abort();else{l={},o=a.status,"string"==typeof a.responseText&&(l.text=a.responseText);try{u=a.statusText}catch(c){u=""}o||!t.isLocal||t.crossDomain?1223===o&&(o=204):o=l.text?200:404}l&&i(o,u,l,a.getAllResponseHeaders())},t.async?4===a.readyState?e.setTimeout(n):a.onreadystatechange=ln[s]=n:n()},abort:function(){n&&n(void 0,!0)}}}}),pe.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return pe.globalEval(e),e}}}),pe.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),pe.ajaxTransport("script",function(e){if(e.crossDomain){var t,n=re.head||pe("head")[0]||re.documentElement;return{send:function(r,i){t=re.createElement("script"),t.async=!0,e.scriptCharset&&(t.charset=e.scriptCharset),t.src=e.url,t.onload=t.onreadystatechange=function(e,n){(n||!t.readyState||/loaded|complete/.test(t.readyState))&&(t.onload=t.onreadystatechange=null,t.parentNode&&t.parentNode.removeChild(t),t=null,n||i(200,"success"))},n.insertBefore(t,n.firstChild)},abort:function(){t&&t.onload(void 0,!0)}}}});var fn=[],dn=/(=)\?(?=&|$)|\?\?/;pe.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=fn.pop()||pe.expando+"_"+Wt++;return this[e]=!0,e}}),pe.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,a,s=t.jsonp!==!1&&(dn.test(t.url)?"url":"string"==typeof t.data&&0===(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&dn.test(t.data)&&"data");if(s||"jsonp"===t.dataTypes[0])return i=t.jsonpCallback=pe.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,s?t[s]=t[s].replace(dn,"$1"+i):t.jsonp!==!1&&(t.url+=(It.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return a||pe.error(i+" was not called"),a[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){a=arguments},r.always(function(){void 0===o?pe(e).removeProp(i):e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,fn.push(i)),a&&pe.isFunction(o)&&o(a[0]),a=o=void 0}),"script"}),pe.parseHTML=function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||re;var r=Te.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=y([e],t,i),i&&i.length&&pe(i).remove(),pe.merge([],r.childNodes))};var pn=pe.fn.load;return pe.fn.load=function(e,t,n){if("string"!=typeof e&&pn)return pn.apply(this,arguments);var r,i,o,a=this,s=e.indexOf(" ");return s>-1&&(r=pe.trim(e.slice(s,e.length)),e=e.slice(0,s)),pe.isFunction(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),a.length>0&&pe.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?pe("
").append(pe.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},pe.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){pe.fn[t]=function(e){return this.on(t,e)}}),pe.expr.filters.animated=function(e){return pe.grep(pe.timers,function(t){return e===t.elem}).length},pe.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l,c=pe.css(e,"position"),f=pe(e),d={};"static"===c&&(e.style.position="relative"),s=f.offset(),o=pe.css(e,"top"),u=pe.css(e,"left"),l=("absolute"===c||"fixed"===c)&&pe.inArray("auto",[o,u])>-1,l?(r=f.position(),a=r.top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),pe.isFunction(t)&&(t=t.call(e,n,pe.extend({},s))),null!=t.top&&(d.top=t.top-s.top+a),null!=t.left&&(d.left=t.left-s.left+i),"using"in t?t.using.call(e,d):f.css(d)}},pe.fn.extend({offset:function(e){if(arguments.length)return void 0===e?this:this.each(function(t){pe.offset.setOffset(this,e,t)});var t,n,r={top:0,left:0},i=this[0],o=i&&i.ownerDocument;if(o)return t=o.documentElement,pe.contains(t,i)?("undefined"!=typeof i.getBoundingClientRect&&(r=i.getBoundingClientRect()),n=te(o),{top:r.top+(n.pageYOffset||t.scrollTop)-(t.clientTop||0),left:r.left+(n.pageXOffset||t.scrollLeft)-(t.clientLeft||0)}):r},position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===pe.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),pe.nodeName(e[0],"html")||(n=e.offset()),n.top+=pe.css(e[0],"borderTopWidth",!0),n.left+=pe.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-pe.css(r,"marginTop",!0),left:t.left-n.left-pe.css(r,"marginLeft",!0)}}},offsetParent:function(){ -return this.map(function(){for(var e=this.offsetParent;e&&!pe.nodeName(e,"html")&&"static"===pe.css(e,"position");)e=e.offsetParent;return e||pt})}}),pe.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,t){var n=/Y/.test(t);pe.fn[e]=function(r){return Pe(this,function(e,r,i){var o=te(e);return void 0===i?o?t in o?o[t]:o.document.documentElement[r]:e[r]:void(o?o.scrollTo(n?pe(o).scrollLeft():i,n?i:pe(o).scrollTop()):e[r]=i)},e,r,arguments.length,null)}}),pe.each(["top","left"],function(e,t){pe.cssHooks[t]=L(fe.pixelPosition,function(e,n){if(n)return n=gt(e,t),ft.test(n)?pe(e).position()[t]+"px":n})}),pe.each({Height:"height",Width:"width"},function(e,t){pe.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){pe.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),a=n||(r===!0||i===!0?"margin":"border");return Pe(this,function(t,n,r){var i;return pe.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):void 0===r?pe.css(t,n,a):pe.style(t,n,r,a)},t,o?r:void 0,o,null)}})}),pe.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),pe.fn.size=function(){return this.length},pe.fn.andSelf=pe.fn.addBack,layui.define(function(e){layui.$=pe,e("jquery",pe)}),pe});!function(e,t){"use strict";var i,n,a=e.layui&&layui.define,o={getPath:function(){var t=document.currentScript?document.currentScript.src:function(){for(var e,t=document.scripts,i=t.length-1,n=i;n>0;n--)if("interactive"===t[n].readyState){e=t[n].src;break}return e||t[i].src}(),i=e.LAYUI_GLOBAL||{};return i.layer_dir||t.substring(0,t.lastIndexOf("/")+1)}(),config:{},end:{},minIndex:0,minLeft:[],btn:["确定","取消"],type:["dialog","page","iframe","loading","tips"],getStyle:function(t,i){var n=t.currentStyle?t.currentStyle:e.getComputedStyle(t,null);return n[n.getPropertyValue?"getPropertyValue":"getAttribute"](i)},link:function(t,i,n){if(r.path){var a=document.getElementsByTagName("head")[0],s=document.createElement("link");"string"==typeof i&&(n=i);var l=(n||t).replace(/\.|\//g,""),f="layuicss-"+l,c="creating",u=0;s.rel="stylesheet",s.href=r.path+t,s.id=f,document.getElementById(f)||a.appendChild(s),"function"==typeof i&&!function d(t){var n=100,a=document.getElementById(f);return++u>1e4/n?e.console&&console.error(l+".css: Invalid"):void(1989===parseInt(o.getStyle(a,"width"))?(t===c&&a.removeAttribute("lay-status"),a.getAttribute("lay-status")===c?setTimeout(d,n):i()):(a.setAttribute("lay-status",c),setTimeout(function(){d(c)},n)))}()}}},r={v:"3.5.1",ie:function(){var t=navigator.userAgent.toLowerCase();return!!(e.ActiveXObject||"ActiveXObject"in e)&&((t.match(/msie\s(\d+)/)||[])[1]||"11")}(),index:e.layer&&e.layer.v?1e5:0,path:o.getPath,config:function(e,t){return e=e||{},r.cache=o.config=i.extend({},o.config,e),r.path=o.config.path||r.path,"string"==typeof e.extend&&(e.extend=[e.extend]),o.config.path&&r.ready(),e.extend?(a?layui.addcss("modules/layer/"+e.extend):o.link("theme/"+e.extend),this):this},ready:function(e){var t="layer",i="",n=(a?"modules/layer/":"theme/")+"default/layer.css?v="+r.v+i;return a?layui.addcss(n,e,t):o.link(n,e,t),this},alert:function(e,t,n){var a="function"==typeof t;return a&&(n=t),r.open(i.extend({content:e,yes:n},a?{}:t))},confirm:function(e,t,n,a){var s="function"==typeof t;return s&&(a=n,n=t),r.open(i.extend({content:e,btn:o.btn,yes:n,btn2:a},s?{}:t))},msg:function(e,n,a){var s="function"==typeof n,f=o.config.skin,c=(f?f+" "+f+"-msg":"")||"layui-layer-msg",u=l.anim.length-1;return s&&(a=n),r.open(i.extend({content:e,time:3e3,shade:!1,skin:c,title:!1,closeBtn:!1,btn:!1,resize:!1,end:a},s&&!o.config.skin?{skin:c+" layui-layer-hui",anim:u}:function(){return n=n||{},(n.icon===-1||n.icon===t&&!o.config.skin)&&(n.skin=c+" "+(n.skin||"layui-layer-hui")),n}()))},load:function(e,t){return r.open(i.extend({type:3,icon:e||0,resize:!1,shade:.01},t))},tips:function(e,t,n){return r.open(i.extend({type:4,content:[e,t],closeBtn:!1,time:3e3,shade:!1,resize:!1,fixed:!1,maxWidth:260},n))}},s=function(e){var t=this,a=function(){t.creat()};t.index=++r.index,t.config.maxWidth=i(n).width()-30,t.config=i.extend({},t.config,o.config,e),document.body?a():setTimeout(function(){a()},30)};s.pt=s.prototype;var l=["layui-layer",".layui-layer-title",".layui-layer-main",".layui-layer-dialog","layui-layer-iframe","layui-layer-content","layui-layer-btn","layui-layer-close"];l.anim=["layer-anim-00","layer-anim-01","layer-anim-02","layer-anim-03","layer-anim-04","layer-anim-05","layer-anim-06"],l.SHADE="layui-layer-shade",l.MOVE="layui-layer-move",s.pt.config={type:0,shade:.3,fixed:!0,move:l[1],title:"信息",offset:"auto",area:"auto",closeBtn:1,time:0,zIndex:19891014,maxWidth:360,anim:0,isOutAnim:!0,minStack:!0,icon:-1,moveType:1,resize:!0,scrollbar:!0,tips:2},s.pt.vessel=function(e,t){var n=this,a=n.index,r=n.config,s=r.zIndex+a,f="object"==typeof r.title,c=r.maxmin&&(1===r.type||2===r.type),u=r.title?'
'+(f?r.title[0]:r.title)+"
":"";return r.zIndex=s,t([r.shade?'
':"",'
'+(e&&2!=r.type?"":u)+'
'+(0==r.type&&r.icon!==-1?'':"")+(1==r.type&&e?"":r.content||"")+'
'+function(){var e=c?'':"";return r.closeBtn&&(e+=''),e}()+""+(r.btn?function(){var e="";"string"==typeof r.btn&&(r.btn=[r.btn]);for(var t=0,i=r.btn.length;t'+r.btn[t]+"";return'
'+e+"
"}():"")+(r.resize?'':"")+"
"],u,i('
')),n},s.pt.creat=function(){var e=this,t=e.config,a=e.index,s=t.content,f="object"==typeof s,c=i("body");if(!t.id||!i("#"+t.id)[0]){switch("string"==typeof t.area&&(t.area="auto"===t.area?["",""]:[t.area,""]),t.shift&&(t.anim=t.shift),6==r.ie&&(t.fixed=!1),t.type){case 0:t.btn="btn"in t?t.btn:o.btn[0],r.closeAll("dialog");break;case 2:var s=t.content=f?t.content:[t.content||"","auto"];t.content='';break;case 3:delete t.title,delete t.closeBtn,t.icon===-1&&0===t.icon,r.closeAll("loading");break;case 4:f||(t.content=[t.content,"body"]),t.follow=t.content[1],t.content=t.content[0]+'',delete t.title,t.tips="object"==typeof t.tips?t.tips:[t.tips,!0],t.tipsMore||r.closeAll("tips")}if(e.vessel(f,function(n,r,u){c.append(n[0]),f?function(){2==t.type||4==t.type?function(){i("body").append(n[1])}():function(){s.parents("."+l[0])[0]||(s.data("display",s.css("display")).show().addClass("layui-layer-wrap").wrap(n[1]),i("#"+l[0]+a).find("."+l[5]).before(r))}()}():c.append(n[1]),i("#"+l.MOVE)[0]||c.append(o.moveElem=u),e.layero=i("#"+l[0]+a),e.shadeo=i("#"+l.SHADE+a),t.scrollbar||l.html.css("overflow","hidden").attr("layer-full",a)}).auto(a),e.shadeo.css({"background-color":t.shade[1]||"#000",opacity:t.shade[0]||t.shade}),2==t.type&&6==r.ie&&e.layero.find("iframe").attr("src",s[0]),4==t.type?e.tips():function(){e.offset(),parseInt(o.getStyle(document.getElementById(l.MOVE),"z-index"))||function(){e.layero.css("visibility","hidden"),r.ready(function(){e.offset(),e.layero.css("visibility","visible")})}()}(),t.fixed&&n.on("resize",function(){e.offset(),(/^\d+%$/.test(t.area[0])||/^\d+%$/.test(t.area[1]))&&e.auto(a),4==t.type&&e.tips()}),t.time<=0||setTimeout(function(){r.close(e.index)},t.time),e.move().callback(),l.anim[t.anim]){var u="layer-anim "+l.anim[t.anim];e.layero.addClass(u).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){i(this).removeClass(u)})}t.isOutAnim&&e.layero.data("isOutAnim",!0)}},s.pt.auto=function(e){var t=this,a=t.config,o=i("#"+l[0]+e);""===a.area[0]&&a.maxWidth>0&&(r.ie&&r.ie<8&&a.btn&&o.width(o.innerWidth()),o.outerWidth()>a.maxWidth&&o.width(a.maxWidth));var s=[o.innerWidth(),o.innerHeight()],f=o.find(l[1]).outerHeight()||0,c=o.find("."+l[6]).outerHeight()||0,u=function(e){e=o.find(e),e.height(s[1]-f-c-2*(0|parseFloat(e.css("padding-top"))))};switch(a.type){case 2:u("iframe");break;default:""===a.area[1]?a.maxHeight>0&&o.outerHeight()>a.maxHeight?(s[1]=a.maxHeight,u("."+l[5])):a.fixed&&s[1]>=n.height()&&(s[1]=n.height(),u("."+l[5])):u("."+l[5])}return t},s.pt.offset=function(){var e=this,t=e.config,i=e.layero,a=[i.outerWidth(),i.outerHeight()],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),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({top:e.offsetTop,left:e.offsetLeft})},s.pt.tips=function(){var e=this,t=e.config,a=e.layero,o=[a.outerWidth(),a.outerHeight()],r=i(t.follow);r[0]||(r=i("body"));var s={width:r.outerWidth(),height:r.outerHeight(),top:r.offset().top,left:r.offset().left},f=a.find(".layui-layer-TipsG"),c=t.tips[0];t.tips[1]||f.remove(),s.autoLeft=function(){s.left+o[0]-n.width()>0?(s.tipLeft=s.left+s.width-o[0],f.css({right:12,left:"auto"})):s.tipLeft=s.left},s.where=[function(){s.autoLeft(),s.tipTop=s.top-o[1]-10,f.removeClass("layui-layer-TipsB").addClass("layui-layer-TipsT").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left+s.width+10,s.tipTop=s.top,f.removeClass("layui-layer-TipsL").addClass("layui-layer-TipsR").css("border-bottom-color",t.tips[1])},function(){s.autoLeft(),s.tipTop=s.top+s.height+10,f.removeClass("layui-layer-TipsT").addClass("layui-layer-TipsB").css("border-right-color",t.tips[1])},function(){s.tipLeft=s.left-o[0]-10,s.tipTop=s.top,f.removeClass("layui-layer-TipsR").addClass("layui-layer-TipsL").css("border-bottom-color",t.tips[1])}],s.where[c-1](),1===c?s.top-(n.scrollTop()+o[1]+16)<0&&s.where[2]():2===c?n.width()-(s.left+s.width+o[0]+16)>0||s.where[3]():3===c?s.top-n.scrollTop()+s.height+o[1]+16-n.height()>0&&s.where[0]():4===c&&o[0]+16-s.left>0&&s.where[1](),a.find("."+l[5]).css({"background-color":t.tips[1],"padding-right":t.closeBtn?"30px":""}),a.css({left:s.tipLeft-(t.fixed?n.scrollLeft():0),top:s.tipTop-(t.fixed?n.scrollTop():0)})},s.pt.move=function(){var e=this,t=e.config,a=i(document),s=e.layero,l=s.find(t.move),f=s.find(".layui-layer-resize"),c={};return t.move&&l.css("cursor","move"),l.on("mousedown",function(e){e.preventDefault(),t.move&&(c.moveStart=!0,c.offset=[e.clientX-parseFloat(s.css("left")),e.clientY-parseFloat(s.css("top"))],o.moveElem.css("cursor","move").show())}),f.on("mousedown",function(e){e.preventDefault(),c.resizeStart=!0,c.offset=[e.clientX,e.clientY],c.area=[s.outerWidth(),s.outerHeight()],o.moveElem.css("cursor","se-resize").show()}),a.on("mousemove",function(i){if(c.moveStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1],l="fixed"===s.css("position");if(i.preventDefault(),c.stX=l?0:n.scrollLeft(),c.stY=l?0:n.scrollTop(),!t.moveOut){var f=n.width()-s.outerWidth()+c.stX,u=n.height()-s.outerHeight()+c.stY;af&&(a=f),ou&&(o=u)}s.css({left:a,top:o})}if(t.resize&&c.resizeStart){var a=i.clientX-c.offset[0],o=i.clientY-c.offset[1];i.preventDefault(),r.style(e.index,{width:c.area[0]+a,height:c.area[1]+o}),c.isResize=!0,t.resizing&&t.resizing(s)}}).on("mouseup",function(e){c.moveStart&&(delete c.moveStart,o.moveElem.hide(),t.moveEnd&&t.moveEnd(s)),c.resizeStart&&(delete c.resizeStart,o.moveElem.hide())}),e},s.pt.callback=function(){function e(){var e=a.cancel&&a.cancel(t.index,n);e===!1||r.close(t.index)}var t=this,n=t.layero,a=t.config;t.openLayer(),a.success&&(2==a.type?n.find("iframe").on("load",function(){a.success(n,t.index,t)}):a.success(n,t.index,t)),6==r.ie&&t.IE6(n),n.find("."+l[6]).children("a").on("click",function(){var e=i(this).index();if(0===e)a.yes?a.yes(t.index,n):a.btn1?a.btn1(t.index,n):r.close(t.index);else{var o=a["btn"+(e+1)]&&a["btn"+(e+1)](t.index,n);o===!1||r.close(t.index)}}),n.find("."+l[7]).on("click",e),a.shadeClose&&t.shadeo.on("click",function(){r.close(t.index)}),n.find(".layui-layer-min").on("click",function(){var e=a.min&&a.min(n,t.index);e===!1||r.min(t.index,a)}),n.find(".layui-layer-max").on("click",function(){i(this).hasClass("layui-layer-maxmin")?(r.restore(t.index),a.restore&&a.restore(n,t.index)):(r.full(t.index,a),setTimeout(function(){a.full&&a.full(n,t.index)},100))}),a.end&&(o.end[t.index]=a.end)},o.reselect=function(){i.each(i("select"),function(e,t){var n=i(this);n.parents("."+l[0])[0]||1==n.attr("layer")&&i("."+l[0]).length<1&&n.removeAttr("layer").show(),n=null})},s.pt.IE6=function(e){i("select").each(function(e,t){var n=i(this);n.parents("."+l[0])[0]||"none"===n.css("display")||n.attr({layer:"1"}).hide(),n=null})},s.pt.openLayer=function(){var e=this;r.zIndex=e.config.zIndex,r.setTop=function(e){var t=function(){r.zIndex++,e.css("z-index",r.zIndex+1)};return r.zIndex=parseInt(e[0].style.zIndex),e.on("mousedown",t),r.zIndex}},o.record=function(e){var t=[e.width(),e.height(),e.position().top,e.position().left+parseFloat(e.css("margin-left"))];e.find(".layui-layer-max").addClass("layui-layer-maxmin"),e.attr({area:t})},o.rescollbar=function(e){l.html.attr("layer-full")==e&&(l.html[0].style.removeProperty?l.html[0].style.removeProperty("overflow"):l.html[0].style.removeAttribute("overflow"),l.html.removeAttr("layer-full"))},e.layer=r,r.getChildFrame=function(e,t){return t=t||i("."+l[4]).attr("times"),i("#"+l[0]+t).find("iframe").contents().find(e)},r.getFrameIndex=function(e){return i("#"+e).parents("."+l[4]).attr("times")},r.iframeAuto=function(e){if(e){var t=r.getChildFrame("html",e).outerHeight(),n=i("#"+l[0]+e),a=n.find(l[1]).outerHeight()||0,o=n.find("."+l[6]).outerHeight()||0;n.css({height:t+a+o}),n.find("iframe").css({height:t})}},r.iframeSrc=function(e,t){i("#"+l[0]+e).find("iframe").attr("src",t)},r.style=function(e,t,n){var a=i("#"+l[0]+e),r=a.find(".layui-layer-content"),s=a.attr("type"),f=a.find(l[1]).outerHeight()||0,c=a.find("."+l[6]).outerHeight()||0;a.attr("minLeft");s!==o.type[3]&&s!==o.type[4]&&(n||(parseFloat(t.width)<=260&&(t.width=260),parseFloat(t.height)-f-c<=64&&(t.height=64+f+c)),a.css(t),c=a.find("."+l[6]).outerHeight(),s===o.type[2]?a.find("iframe").css({height:parseFloat(t.height)-f-c}):r.css({height:parseFloat(t.height)-f-c-parseFloat(r.css("padding-top"))-parseFloat(r.css("padding-bottom"))}))},r.min=function(e,t){t=t||{};var a=i("#"+l[0]+e),s=i("#"+l.SHADE+e),f=a.find(l[1]).outerHeight()||0,c=a.attr("minLeft")||181*o.minIndex+"px",u=a.css("position"),d={width:180,height:f,position:"fixed",overflow:"hidden"};o.record(a),o.minLeft[0]&&(c=o.minLeft[0],o.minLeft.shift()),t.minStack&&(d.left=c,d.top=n.height()-f,a.attr("minLeft")||o.minIndex++,a.attr("minLeft",c)),a.attr("position",u),r.style(e,d,!0),a.find(".layui-layer-min").hide(),"page"===a.attr("type")&&a.find(l[4]).hide(),o.rescollbar(e),s.hide()},r.restore=function(e){var t=i("#"+l[0]+e),n=i("#"+l.SHADE+e),a=t.attr("area").split(",");t.attr("type");r.style(e,{width:parseFloat(a[0]),height:parseFloat(a[1]),top:parseFloat(a[2]),left:parseFloat(a[3]),position:t.attr("position"),overflow:"visible"},!0),t.find(".layui-layer-max").removeClass("layui-layer-maxmin"),t.find(".layui-layer-min").show(),"page"===t.attr("type")&&t.find(l[4]).show(),o.rescollbar(e),n.show()},r.full=function(e){var t,a=i("#"+l[0]+e);o.record(a),l.html.attr("layer-full")||l.html.css("overflow","hidden").attr("layer-full",e),clearTimeout(t),t=setTimeout(function(){var t="fixed"===a.css("position");r.style(e,{top:t?0:n.scrollTop(),left:t?0:n.scrollLeft(),width:n.width(),height:n.height()},!0),a.find(".layui-layer-min").hide()},100)},r.title=function(e,t){var n=i("#"+l[0]+(t||r.index)).find(l[1]);n.html(e)},r.close=function(e,t){var n=i("#"+l[0]+e),a=n.attr("type"),s="layer-anim-close";if(n[0]){var f="layui-layer-wrap",c=function(){if(a===o.type[1]&&"object"===n.attr("conType")){n.children(":not(."+l[5]+")").remove();for(var r=n.find("."+f),s=0;s<2;s++)r.unwrap();r.css("display",r.data("display")).removeClass(f)}else{if(a===o.type[2])try{var c=i("#"+l[4]+e)[0];c.contentWindow.document.write(""),c.contentWindow.close(),n.find("."+l[5])[0].removeChild(c)}catch(u){}n[0].innerHTML="",n.remove()}"function"==typeof o.end[e]&&o.end[e](),delete o.end[e],"function"==typeof t&&t()};n.data("isOutAnim")&&n.addClass("layer-anim "+s),i("#layui-layer-moves, #"+l.SHADE+e).remove(),6==r.ie&&o.reselect(),o.rescollbar(e),n.attr("minLeft")&&(o.minIndex--,o.minLeft.push(n.attr("minLeft"))),r.ie&&r.ie<10||!n.data("isOutAnim")?c():setTimeout(function(){c()},200)}},r.closeAll=function(e,t){"function"==typeof e&&(t=e,e=null);var n=i("."+l[0]);i.each(n,function(a){var o=i(this),s=e?o.attr("type")===e:1;s&&r.close(o.attr("times"),a===n.length-1?t:null),s=null}),0===n.length&&"function"==typeof t&&t()};var f=r.cache||{},c=function(e){return f.skin?" "+f.skin+" "+f.skin+"-"+e:""};r.prompt=function(e,t){var a="";if(e=e||{},"function"==typeof e&&(t=e),e.area){var o=e.area;a='style="width: '+o[0]+"; height: "+o[1]+';"',delete e.area}var s,l=2==e.formType?'":function(){return''}(),f=e.success;return delete e.success,r.open(i.extend({type:1,btn:["确定","取消"],content:l,skin:"layui-layer-prompt"+c("prompt"),maxWidth:n.width(),success:function(t){s=t.find(".layui-layer-input"),s.val(e.value||"").focus(),"function"==typeof f&&f(t)},resize:!1,yes:function(i){var n=s.val();""===n?s.focus():n.length>(e.maxlength||500)?r.tips("最多输入"+(e.maxlength||500)+"个字数",s,{tips:1}):t&&t(n,i,s)}},e))},r.tab=function(e){e=e||{};var t=e.tab||{},n="layui-this",a=e.success;return delete e.success,r.open(i.extend({type:1,skin:"layui-layer-tab"+c("tab"),resize:!1,title:function(){var e=t.length,i=1,a="";if(e>0)for(a=''+t[0].title+"";i"+t[i].title+"";return a}(),content:'
    '+function(){var e=t.length,i=1,a="";if(e>0)for(a='
  • '+(t[0].content||"no content")+"
  • ";i'+(t[i].content||"no content")+"";return a}()+"
",success:function(t){var o=t.find(".layui-layer-title").children(),r=t.find(".layui-layer-tabmain").children();o.on("mousedown",function(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0;var a=i(this),o=a.index();a.addClass(n).siblings().removeClass(n),r.eq(o).show().siblings().hide(),"function"==typeof e.change&&e.change(o)}),"function"==typeof a&&a(t)}},e))},r.photos=function(t,n,a){function o(e,t,i){var n=new Image;return n.src=e,n.complete?t(n):(n.onload=function(){n.onload=null,t(n)},void(n.onerror=function(e){n.onerror=null,i(e)}))}var s={};if(t=t||{},t.photos){var l=!("string"==typeof t.photos||t.photos instanceof i),f=l?t.photos:{},u=f.data||[],d=f.start||0;s.imgIndex=(0|d)+1,t.img=t.img||"img";var y=t.success;if(delete t.success,l){if(0===u.length)return r.msg("没有图片")}else{var p=i(t.photos),h=function(){u=[],p.find(t.img).each(function(e){var t=i(this);t.attr("layer-index",e),u.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(h(),0===u.length)return;if(n||p.on("click",t.img,function(){h();var e=i(this),n=e.attr("layer-index");r.photos(i.extend(t,{photos:{start:n,data:u,tab:t.tab},full:t.full}),!0)}),!n)return}s.imgprev=function(e){s.imgIndex--,s.imgIndex<1&&(s.imgIndex=u.length),s.tabimg(e)},s.imgnext=function(e,t){s.imgIndex++,s.imgIndex>u.length&&(s.imgIndex=1,t)||s.tabimg(e)},s.keyup=function(e){if(!s.end){var t=e.keyCode;e.preventDefault(),37===t?s.imgprev(!0):39===t?s.imgnext(!0):27===t&&r.close(s.index)}},s.tabimg=function(e){if(!(u.length<=1))return f.start=s.imgIndex-1,r.close(s.index),r.photos(t,!0,e)},s.event=function(){s.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),s.imgprev(!0)}),s.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),s.imgnext(!0)}),i(document).on("keyup",s.keyup)},s.loadi=r.load(1,{shade:!("shade"in t)&&.9,scrollbar:!1}),o(u[d].src,function(n){r.close(s.loadi),a&&(t.anim=-1),s.index=r.open(i.extend({type:1,id:"layui-layer-photos",area:function(){var a=[n.width,n.height],o=[i(e).width()-100,i(e).height()-100];if(!t.full&&(a[0]>o[0]||a[1]>o[1])){var r=[a[0]/o[0],a[1]/o[1]];r[0]>r[1]?(a[0]=a[0]/r[0],a[1]=a[1]/r[0]):r[0]'+(u[d].alt||'+function(){return u.length>1?'
'+(u[d].alt||"")+""+s.imgIndex+" / "+u.length+"
":""}()+"
",success:function(e,i){s.bigimg=e.find(".layui-layer-phimg"),s.imgsee=e.find(".layui-layer-imgbar"),s.event(e),t.tab&&t.tab(u[d],e),"function"==typeof y&&y(e)},end:function(){s.end=!0,i(document).off("keyup",s.keyup)}},t))},function(){r.close(s.loadi),r.msg("当前图片地址异常
是否继续查看下一张?",{time:3e4,btn:["下一张","不看了"],yes:function(){u.length>1&&s.imgnext(!0,!0)}})})}},o.run=function(t){i=t,n=i(e),l.html=i("html"),r.open=function(e){var t=new s(e);return t.index}},e.layui&&layui.define?(r.ready(),layui.define("jquery",function(t){r.path=layui.cache.dir,o.run(layui.$),e.layer=r,t("layer",r)})):"function"==typeof define&&define.amd?define(["jquery"],function(){return o.run(e.jQuery),r}):function(){r.ready(),o.run(e.jQuery)}()}(window);layui.define("jquery",function(e){"use strict";var t=layui.$,i=layui.hint(),n={fixbar:function(e){var i,n,r="layui-fixbar",a="layui-fixbar-top",o=t(document),l=t("body");e=t.extend({showHeight:200},e),e.bar1=e.bar1===!0?"":e.bar1,e.bar2=e.bar2===!0?"":e.bar2,e.bgcolor=e.bgcolor?"background-color:"+e.bgcolor:"";var c=[e.bar1,e.bar2,""],g=t(['
    ',e.bar1?'
  • '+c[0]+"
  • ":"",e.bar2?'
  • '+c[1]+"
  • ":"",'
  • '+c[2]+"
  • ","
"].join("")),u=g.find("."+a),s=function(){var t=o.scrollTop();t>=e.showHeight?i||(u.show(),i=1):i&&(u.hide(),i=0)};t("."+r)[0]||("object"==typeof e.css&&g.css(e.css),l.append(g),s(),g.find("li").on("click",function(){var i=t(this),n=i.attr("lay-type");"top"===n&&t("html,body").animate({scrollTop:0},200),e.click&&e.click.call(this,n)}),o.on("scroll",function(){clearTimeout(n),n=setTimeout(function(){s()},100)}))},countdown:function(e,t,i){var n=this,r="function"==typeof t,a=new Date(e).getTime(),o=new Date(!t||r?(new Date).getTime():t).getTime(),l=a-o,c=[Math.floor(l/864e5),Math.floor(l/36e5)%24,Math.floor(l/6e4)%60,Math.floor(l/1e3)%60];r&&(i=t);var g=setTimeout(function(){n.countdown(e,o+1e3,i)},1e3);return i&&i(l>0?c:[0,0,0,0],t,g),l<=0&&clearTimeout(g),g},timeAgo:function(e,t){var i=this,n=[[],[]],r=(new Date).getTime()-new Date(e).getTime();return r>26784e5?(r=new Date(e),n[0][0]=i.digit(r.getFullYear(),4),n[0][1]=i.digit(r.getMonth()+1),n[0][2]=i.digit(r.getDate()),t||(n[1][0]=i.digit(r.getHours()),n[1][1]=i.digit(r.getMinutes()),n[1][2]=i.digit(r.getSeconds())),n[0].join("-")+" "+n[1].join(":")):r>=864e5?(r/1e3/60/60/24|0)+"\u5929\u524d":r>=36e5?(r/1e3/60/60|0)+"\u5c0f\u65f6\u524d":r>=18e4?(r/1e3/60|0)+"\u5206\u949f\u524d":r<0?"\u672a\u6765":"\u521a\u521a"},digit:function(e,t){var i="";e=String(e),t=t||2;for(var n=e.length;n/g,">").replace(/'/g,"'").replace(/"/g,""")},unescape:function(e){return String(e||"").replace(/\&/g,"&").replace(/\</g,"<").replace(/\>/g,">").replace(/\'/,"'").replace(/\"/,'"')},toVisibleArea:function(e){if(e=t.extend({margin:160,duration:200,type:"y"},e),e.scrollElem[0]&&e.thisElem[0]){var i=e.scrollElem,n=e.thisElem,r="y"===e.type,a=r?"scrollTop":"scrollLeft",o=r?"top":"left",l=i[a](),c=i[r?"height":"width"](),g=i.offset()[o],u=n.offset()[o]-g,s={};(u>c-e.margin||u0&&t.unshift(""),t.join(" ")}()+">"+(a.title||"unnaming")+"";return s[0]?s.before(r):n.append(r),o.append('
'+(a.content||"")+"
"),b.hideTabMore(!0),b.tabAuto(),this},s.prototype.tabDelete=function(t,a){var e=".layui-tab-title",l=i(".layui-tab[lay-filter="+t+"]"),n=l.children(e),s=n.find('>li[lay-id="'+a+'"]');return b.tabDelete(null,s),this},s.prototype.tabChange=function(t,a){var e=".layui-tab-title",l=i(".layui-tab[lay-filter="+t+"]"),n=l.children(e),s=n.find('>li[lay-id="'+a+'"]');return b.tabClick.call(s[0],null,null,s),this},s.prototype.tab=function(t){t=t||{},m.on("click",t.headerElem,function(a){var e=i(this).index();b.tabClick.call(this,a,e,null,t)})},s.prototype.progress=function(t,a){var e="layui-progress",l=i("."+e+"[lay-filter="+t+"]"),n=l.find("."+e+"-bar"),s=n.find("."+e+"-text");return n.css("width",a).attr("lay-percent",a),s.text(a),this};var o=".layui-nav",r="layui-nav-item",c="layui-nav-bar",u="layui-nav-tree",y="layui-nav-child",d="layui-nav-child-c",f="layui-nav-more",h="layui-icon-down",p="layui-anim layui-anim-upbit",b={tabClick:function(t,a,s,o){o=o||{};var r=s||i(this),a=a||r.parent().children("li").index(r),c=o.headerElem?r.parent():r.parents(".layui-tab").eq(0),u=o.bodyElem?i(o.bodyElem):c.children(".layui-tab-content").children(".layui-tab-item"),y=r.find("a"),d="javascript:;"!==y.attr("href")&&"_blank"===y.attr("target"),f="string"==typeof r.attr("lay-unselect"),h=c.attr("lay-filter");d||f||(r.addClass(l).siblings().removeClass(l),u.eq(a).addClass(n).siblings().removeClass(n)),layui.event.call(this,e,"tab("+h+")",{elem:c,index:a})},tabDelete:function(t,a){var n=a||i(this).parent(),s=n.index(),o=n.parents(".layui-tab").eq(0),r=o.children(".layui-tab-content").children(".layui-tab-item"),c=o.attr("lay-filter");n.hasClass(l)&&(n.next()[0]?b.tabClick.call(n.next()[0],null,s+1):n.prev()[0]&&b.tabClick.call(n.prev()[0],null,s-1)),n.remove(),r.eq(s).remove(),setTimeout(function(){b.tabAuto()},50),layui.event.call(this,e,"tabDelete("+c+")",{elem:o,index:s})},tabAuto:function(){var t="layui-tab-more",e="layui-tab-bar",l="layui-tab-close",n=this;i(".layui-tab").each(function(){var s=i(this),o=s.children(".layui-tab-title"),r=(s.children(".layui-tab-content").children(".layui-tab-item"),'lay-stope="tabmore"'),c=i('');if(n===window&&8!=a.ie&&b.hideTabMore(!0),s.attr("lay-allowClose")&&o.find("li").each(function(){var t=i(this);if(!t.find("."+l)[0]){var a=i('');a.on("click",b.tabDelete),t.append(a)}}),"string"!=typeof s.attr("lay-unauto"))if(o.prop("scrollWidth")>o.outerWidth()+1){if(o.find("."+e)[0])return;o.append(c),s.attr("overflow",""),c.on("click",function(i){o[this.title?"removeClass":"addClass"](t),this.title=this.title?"":"\u6536\u7f29"})}else o.find("."+e).remove(),s.removeAttr("overflow")})},hideTabMore:function(t){var a=i(".layui-tab-title");t!==!0&&"tabmore"===i(t.target).attr("lay-stope")||(a.removeClass("layui-tab-more"),a.find(".layui-tab-bar").attr("title",""))},clickThis:function(){var t=i(this),a=t.parents(o),n=a.attr("lay-filter"),s=t.parent(),c=t.siblings("."+y),d="string"==typeof s.attr("lay-unselect");"javascript:;"!==t.attr("href")&&"_blank"===t.attr("target")||d||c[0]||(a.find("."+l).removeClass(l),s.addClass(l)),a.hasClass(u)&&(c.removeClass(p),c[0]&&(s["none"===c.css("display")?"addClass":"removeClass"](r+"ed"),"all"===a.attr("lay-shrink")&&s.siblings().removeClass(r+"ed"))),layui.event.call(this,e,"nav("+n+")",t)},collapse:function(){var t=i(this),a=t.find(".layui-colla-icon"),l=t.siblings(".layui-colla-content"),s=t.parents(".layui-collapse").eq(0),o=s.attr("lay-filter"),r="none"===l.css("display");if("string"==typeof s.attr("lay-accordion")){var c=s.children(".layui-colla-item").children("."+n);c.siblings(".layui-colla-title").children(".layui-colla-icon").html(""),c.removeClass(n)}l[r?"addClass":"removeClass"](n),a.html(r?"":""),layui.event.call(this,e,"collapse("+o+")",{title:t,content:l,show:r})}};s.prototype.init=function(t,e){var l=function(){return e?'[lay-filter="'+e+'"]':""}(),s={tab:function(){b.tabAuto.call({})},nav:function(){var t=200,e={},s={},v={},m="layui-nav-title",C=function(l,o,r){var c=i(this),h=c.find("."+y);if(o.hasClass(u)){if(!h[0]){var b=c.children("."+m);l.css({top:c.offset().top-o.offset().top,height:(b[0]?b:c).outerHeight(),opacity:1})}}else h.addClass(p),h.hasClass(d)&&h.css({left:-(h.outerWidth()-c.width())/2}),h[0]?l.css({left:l.position().left+l.width()/2,width:0,opacity:0}):l.css({left:c.position().left+parseFloat(c.css("marginLeft")),top:c.position().top+c.height()-l.height()}),e[r]=setTimeout(function(){l.css({width:h[0]?0:c.width(),opacity:h[0]?0:1})},a.ie&&a.ie<10?0:t),clearTimeout(v[r]),"block"===h.css("display")&&clearTimeout(s[r]),s[r]=setTimeout(function(){h.addClass(n),c.find("."+f).addClass(f+"d")},300)};i(o+l).each(function(a){var l=i(this),o=i(''),d=l.find("."+r);l.find("."+c)[0]||(l.append(o),(l.hasClass(u)?d.find("dd,>."+m):d).on("mouseenter",function(){C.call(this,o,l,a)}).on("mouseleave",function(){l.hasClass(u)?o.css({height:0,opacity:0}):(clearTimeout(s[a]),s[a]=setTimeout(function(){l.find("."+y).removeClass(n),l.find("."+f).removeClass(f+"d")},300))}),l.on("mouseleave",function(){clearTimeout(e[a]),v[a]=setTimeout(function(){l.hasClass(u)||o.css({width:0,left:o.position().left+o.width()/2,opacity:0})},t)})),d.find("a").each(function(){var t=i(this),a=(t.parent(),t.siblings("."+y));a[0]&&!t.children("."+f)[0]&&t.append(''),t.off("click",b.clickThis).on("click",b.clickThis)})})},breadcrumb:function(){var t=".layui-breadcrumb";i(t+l).each(function(){var t=i(this),a="lay-separator",e=t.attr(a)||"/",l=t.find("a");l.next("span["+a+"]")[0]||(l.each(function(t){t!==l.length-1&&i(this).after(""+e+"")}),t.css("visibility","visible"))})},progress:function(){var t="layui-progress";i("."+t+l).each(function(){var a=i(this),e=a.find(".layui-progress-bar"),l=e.attr("lay-percent");e.css("width",function(){return/^.+\/.+$/.test(l)?100*new Function("return "+l)()+"%":l}()),a.attr("lay-showPercent")&&setTimeout(function(){e.html(''+l+"")},350)})},collapse:function(){var t="layui-collapse";i("."+t+l).each(function(){var t=i(this).find(".layui-colla-item");t.each(function(){var t=i(this),a=t.find(".layui-colla-title"),e=t.find(".layui-colla-content"),l="none"===e.css("display");a.find(".layui-colla-icon").remove(),a.append(''+(l?"":"")+""),a.off("click",b.collapse).on("click",b.collapse)})})}};return s[t]?s[t]():layui.each(s,function(t,i){i()})},s.prototype.render=s.prototype.init;var v=new s,m=i(document);i(function(){v.render()});var C=".layui-tab-title li";m.on("click",C,b.tabClick),m.on("click",b.hideTabMore),i(window).on("resize",b.tabAuto),t(e,v)});layui.define("layer",function(e){"use strict";var t=layui.$,i=layui.layer,n=layui.hint(),o=layui.device(),a={config:{},set:function(e){var i=this;return i.config=t.extend({},i.config,e),i},on:function(e,t){return layui.onevent.call(this,r,e,t)}},l=function(){var e=this;return{upload:function(t){e.upload.call(e,t)},reload:function(t){e.reload.call(e,t)},config:e.config}},r="upload",u="layui-upload-file",c="layui-upload-form",f="layui-upload-iframe",s="layui-upload-choose",p=function(e){var i=this;i.config=t.extend({},i.config,a.config,e),i.render()};p.prototype.config={accept:"images",exts:"",auto:!0,bindAction:"",url:"",field:"file",acceptMime:"",method:"post",data:{},drag:!0,size:0,number:0,multiple:!1},p.prototype.render=function(e){var i=this,e=i.config;e.elem=t(e.elem),e.bindAction=t(e.bindAction),i.file(),i.events()},p.prototype.file=function(){var e=this,i=e.config,n=e.elemFile=t(['"].join("")),a=i.elem.next();(a.hasClass(u)||a.hasClass(c))&&a.remove(),o.ie&&o.ie<10&&i.elem.wrap('
'),e.isFile()?(e.elemFile=i.elem,i.field=i.elem[0].name):i.elem.after(n),o.ie&&o.ie<10&&e.initIE()},p.prototype.initIE=function(){var e=this,i=e.config,n=t(''),o=t(['
',"
"].join(""));t("#"+f)[0]||t("body").append(n),i.elem.next().hasClass(c)||(e.elemFile.wrap(o),i.elem.next("."+c).append(function(){var e=[];return layui.each(i.data,function(t,i){i="function"==typeof i?i():i,e.push('')}),e.join("")}()))},p.prototype.msg=function(e){return i.msg(e,{icon:2,shift:6})},p.prototype.isFile=function(){var e=this.config.elem[0];if(e)return"input"===e.tagName.toLocaleLowerCase()&&"file"===e.type},p.prototype.preview=function(e){var t=this;window.FileReader&&layui.each(t.chooseFiles,function(t,i){var n=new FileReader;n.readAsDataURL(i),n.onload=function(){e&&e(t,i,this.result)}})},p.prototype.upload=function(e,i){var n,a=this,l=a.config,r=a.elemFile[0],u=function(){var i=0,n=0,o=e||a.files||a.chooseFiles||r.files,u=function(){l.multiple&&i+n===a.fileLength&&"function"==typeof l.allDone&&l.allDone({total:a.fileLength,successful:i,aborted:n})};layui.each(o,function(e,o){var r=new FormData;r.append(l.field,o),layui.each(l.data,function(e,t){t="function"==typeof t?t():t,r.append(e,t)});var c={url:l.url,type:"post",data:r,contentType:!1,processData:!1,dataType:"json",headers:l.headers||{},success:function(t){i++,d(e,t),u()},error:function(){n++,a.msg("\u8bf7\u6c42\u4e0a\u4f20\u63a5\u53e3\u51fa\u73b0\u5f02\u5e38"),m(e),u()}};"function"==typeof l.progress&&(c.xhr=function(){var i=t.ajaxSettings.xhr();return i.upload.addEventListener("progress",function(t){if(t.lengthComputable){var i=Math.floor(t.loaded/t.total*100);l.progress(i,l.item?l.item[0]:l.elem[0],t,e)}}),i}),t.ajax(c)})},c=function(){var e=t("#"+f);a.elemFile.parent().submit(),clearInterval(p.timer),p.timer=setInterval(function(){var t,i=e.contents().find("body");try{t=i.text()}catch(n){a.msg("\u83b7\u53d6\u4e0a\u4f20\u540e\u7684\u54cd\u5e94\u4fe1\u606f\u51fa\u73b0\u5f02\u5e38"),clearInterval(p.timer),m()}t&&(clearInterval(p.timer),i.html(""),d(0,t))},30)},d=function(e,t){if(a.elemFile.next("."+s).remove(),r.value="","object"!=typeof t)try{t=JSON.parse(t)}catch(i){return t={},a.msg("\u8bf7\u5bf9\u4e0a\u4f20\u63a5\u53e3\u8fd4\u56de\u6709\u6548JSON")}"function"==typeof l.done&&l.done(t,e||0,function(e){a.upload(e)})},m=function(e){l.auto&&(r.value=""),"function"==typeof l.error&&l.error(e||0,function(e){a.upload(e)})},h=l.exts,v=function(){var t=[];return layui.each(e||a.chooseFiles,function(e,i){t.push(i.name)}),t}(),g={preview:function(e){a.preview(e)},upload:function(e,t){var i={};i[e]=t,a.upload(i)},pushFile:function(){return a.files=a.files||{},layui.each(a.chooseFiles,function(e,t){a.files[e]=t}),a.files},resetFile:function(e,t,i){var n=new File([t],i);a.files=a.files||{},a.files[e]=n}},y=function(){if(!(("choose"===i||l.auto)&&(l.choose&&l.choose(g),"choose"===i)||l.before&&l.before(g)===!1))return o.ie?o.ie>9?u():c():void u()};if(v=0===v.length?r.value.match(/[^\/\\]+\..+/g)||[]||"":v,0!==v.length){switch(l.accept){case"file":if(h&&!RegExp("\\w\\.("+h+")$","i").test(escape(v)))return a.msg("\u9009\u62e9\u7684\u6587\u4ef6\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),r.value="";break;case"video":if(!RegExp("\\w\\.("+(h||"avi|mp4|wma|rmvb|rm|flash|3gp|flv")+")$","i").test(escape(v)))return a.msg("\u9009\u62e9\u7684\u89c6\u9891\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),r.value="";break;case"audio":if(!RegExp("\\w\\.("+(h||"mp3|wav|mid")+")$","i").test(escape(v)))return a.msg("\u9009\u62e9\u7684\u97f3\u9891\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),r.value="";break;default:if(layui.each(v,function(e,t){RegExp("\\w\\.("+(h||"jpg|png|gif|bmp|jpeg$")+")","i").test(escape(t))||(n=!0)}),n)return a.msg("\u9009\u62e9\u7684\u56fe\u7247\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),r.value=""}if(a.fileLength=function(){var t=0,i=e||a.files||a.chooseFiles||r.files;return layui.each(i,function(){t++}),t}(),l.number&&a.fileLength>l.number)return a.msg("\u540c\u65f6\u6700\u591a\u53ea\u80fd\u4e0a\u4f20\u7684\u6570\u91cf\u4e3a\uff1a"+l.number);if(l.size>0&&!(o.ie&&o.ie<10)){var F;if(layui.each(a.chooseFiles,function(e,t){if(t.size>1024*l.size){var i=l.size/1024;i=i>=1?i.toFixed(2)+"MB":l.size+"KB",r.value="",F=i}}),F)return a.msg("\u6587\u4ef6\u4e0d\u80fd\u8d85\u8fc7"+F)}y()}},p.prototype.reload=function(e){e=e||{},delete e.elem,delete e.bindAction;var i=this,e=i.config=t.extend({},i.config,a.config,e),n=e.elem.next();n.attr({name:e.name,accept:e.acceptMime,multiple:e.multiple})},p.prototype.events=function(){var e=this,i=e.config,a=function(t){e.chooseFiles={},layui.each(t,function(t,i){var n=(new Date).getTime();e.chooseFiles[n+"-"+t]=i})},l=function(t,n){var o=e.elemFile,a=(i.item?i.item:i.elem,t.length>1?t.length+"\u4e2a\u6587\u4ef6":(t[0]||{}).name||o[0].value.match(/[^\/\\]+\..+/g)||[]||"");o.next().hasClass(s)&&o.next().remove(),e.upload(null,"choose"),e.isFile()||i.choose||o.after(''+a+"")};i.elem.off("upload.start").on("upload.start",function(){var o=t(this),a=o.attr("lay-data");if(a)try{a=new Function("return "+a)(),e.config=t.extend({},i,a)}catch(l){n.error("Upload element property lay-data configuration item has a syntax error: "+a)}e.config.item=o,e.elemFile[0].click()}),o.ie&&o.ie<10||i.elem.off("upload.over").on("upload.over",function(){var e=t(this);e.attr("lay-over","")}).off("upload.leave").on("upload.leave",function(){var e=t(this);e.removeAttr("lay-over")}).off("upload.drop").on("upload.drop",function(n,o){var r=t(this),u=o.originalEvent.dataTransfer.files||[];r.removeAttr("lay-over"),a(u),i.auto?e.upload(u):l(u)}),e.elemFile.off("upload.change").on("upload.change",function(){var t=this.files||[];a(t),i.auto?e.upload():l(t)}),i.bindAction.off("upload.action").on("upload.action",function(){e.upload()}),i.elem.data("haveEvents")||(e.elemFile.on("change",function(){t(this).trigger("upload.change")}),i.elem.on("click",function(){e.isFile()||t(this).trigger("upload.start")}),i.drag&&i.elem.on("dragover",function(e){e.preventDefault(),t(this).trigger("upload.over")}).on("dragleave",function(e){t(this).trigger("upload.leave")}).on("drop",function(e){e.preventDefault(),t(this).trigger("upload.drop",e)}),i.bindAction.on("click",function(){t(this).trigger("upload.action")}),i.elem.data("haveEvents",!0))},a.render=function(e){var t=new p(e);return l.call(t)},e(r,a)});layui.define(["jquery","laytpl","lay"],function(e){"use strict";var i=layui.$,n=layui.laytpl,t=layui.hint(),a=layui.device(),l=a.mobile?"click":"mousedown",r="dropdown",o="layui_"+r+"_index",u={config:{},index:layui[r]?layui[r].index+1e4:0,set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,r,e,i)}},d=function(){var e=this,i=e.config,n=i.id;return d.that[n]=e,{config:i,reload:function(i){e.reload.call(e,i)}}},s="layui-dropdown",m="layui-menu-item-up",c="layui-menu-item-down",p="layui-menu-body-title",y="layui-menu-item-group",f="layui-menu-item-parent",v="layui-menu-item-divider",g="layui-menu-item-checked",h="layui-menu-item-checked2",w="layui-menu-body-panel",C="layui-menu-body-panel-left",V="."+y+">."+p,k=function(e){var n=this;n.index=++u.index,n.config=i.extend({},n.config,u.config,e),n.init()};k.prototype.config={trigger:"click",content:"",className:"",style:"",show:!1,isAllowSpread:!0,isSpreadItem:!0,data:[],delay:300},k.prototype.reload=function(e){var n=this;n.config=i.extend({},n.config,e),n.init(!0)},k.prototype.init=function(e){var n=this,t=n.config,a=t.elem=i(t.elem);if(a.length>1)return layui.each(a,function(){u.render(i.extend({},t,{elem:this}))}),n;if(!e&&a[0]&&a.data(o)){var l=d.getThis(a.data(o));if(!l)return;return l.reload(t)}t.id="id"in t?t.id:n.index,t.show&&n.render(e),n.events()},k.prototype.render=function(e){var t=this,a=t.config,r=i("body"),s=function(){var e=i('
    ');return a.data.length>0?m(e,a.data):e.html('
  • no menu
  • '),e},m=function(e,t){return layui.each(t,function(t,l){var r=l.child&&l.child.length>0,o="isSpreadItem"in l?l.isSpreadItem:a.isSpreadItem,u=l.templet?n(l.templet).render(l):a.templet?n(a.templet).render(l):l.title,d=function(){return r&&(l.type=l.type||"parent"),l.type?{group:"group",parent:"parent","-":"-"}[l.type]||"parent":""}();if("-"===d||l.title||l.id||r){var s=i(["",function(){var e="href"in l?''+u+"":u;return r?'
    '+e+function(){return"parent"===d?'':"group"===d&&a.isAllowSpread?'':""}()+"
    ":'
    '+e+"
    "}(),""].join(""));if(s.data("item",l),r){var c=i('
    '),y=i("
      ");"parent"===d?(c.append(m(y,l.child)),s.append(c)):s.append(m(y,l.child))}e.append(s)}}),e},c=['
      ',"
      "].join("");("contextmenu"===a.trigger||lay.isTopElem(a.elem[0]))&&(e=!0),!e&&a.elem.data(o+"_opened")||(t.elemView=i(c),t.elemView.append(a.content||s()),a.className&&t.elemView.addClass(a.className),a.style&&t.elemView.attr("style",a.style),u.thisId=a.id,t.remove(),r.append(t.elemView),a.elem.data(o+"_opened",!0),t.position(),d.prevElem=t.elemView,d.prevElem.data("prevElem",a.elem),t.elemView.find(".layui-menu").on(l,function(e){layui.stope(e)}),t.elemView.find(".layui-menu li").on("click",function(e){var n=i(this),l=n.data("item")||{},r=l.child&&l.child.length>0;r||"-"===l.type||(t.remove(),"function"==typeof a.click&&a.click(l,n))}),t.elemView.find(V).on("click",function(e){var n=i(this),t=n.parent(),l=t.data("item")||{};"group"===l.type&&a.isAllowSpread&&d.spread(t)}),"mouseenter"===a.trigger&&t.elemView.on("mouseenter",function(){clearTimeout(d.timer)}).on("mouseleave",function(){t.delayRemove()}))},k.prototype.position=function(e){var i=this,n=i.config;lay.position(n.elem[0],i.elemView[0],{position:n.position,e:i.e,clickType:"contextmenu"===n.trigger?"right":null,align:n.align||null})},k.prototype.remove=function(){var e=this,i=(e.config,d.prevElem);i&&(i.data("prevElem")&&i.data("prevElem").data(o+"_opened",!1),i.remove())},k.prototype.delayRemove=function(){var e=this,i=e.config;clearTimeout(d.timer),d.timer=setTimeout(function(){e.remove()},i.delay)},k.prototype.events=function(){var e=this,i=e.config;"hover"===i.trigger&&(i.trigger="mouseenter"),e.prevElem&&e.prevElem.off(i.trigger,e.prevElemCallback),e.prevElem=i.elem,e.prevElemCallback=function(n){clearTimeout(d.timer),e.e=n,e.render(),n.preventDefault(),"function"==typeof i.ready&&i.ready(e.elemView,i.elem,e.e.target)},i.elem.on(i.trigger,e.prevElemCallback),"mouseenter"===i.trigger&&i.elem.on("mouseleave",function(){e.delayRemove()})},d.that={},d.getThis=function(e){var i=d.that[e];return i||t.error(e?r+" instance with ID '"+e+"' not found":"ID argument required"),i},d.spread=function(e){var i=e.children("."+p).find(".layui-icon");e.hasClass(m)?(e.removeClass(m).addClass(c),i.removeClass("layui-icon-down").addClass("layui-icon-up")):(e.removeClass(c).addClass(m),i.removeClass("layui-icon-up").addClass("layui-icon-down"))},!function(){var e=i(window),n=i(document);e.on("resize",function(){if(u.thisId){var e=d.getThis(u.thisId);if(e){if(!e.elemView[0]||!i("."+s)[0])return!1;var n=e.config;"contextmenu"===n.trigger?e.remove():e.position()}}}),n.on(l,function(e){if(u.thisId){var i=d.getThis(u.thisId);if(i){var n=i.config;!lay.isTopElem(n.elem[0])&&"contextmenu"!==n.trigger&&(e.target===n.elem[0]||n.elem.find(e.target)[0]||e.target===i.elemView[0]||i.elemView&&i.elemView.find(e.target)[0])||i.remove()}}});var t=".layui-menu:not(.layui-dropdown-menu) li";n.on("click",t,function(e){var n=i(this),t=n.parents(".layui-menu").eq(0),a=n.hasClass(y)||n.hasClass(f),l=t.attr("lay-filter")||t.attr("id"),o=lay.options(this);n.hasClass(v)||a||(t.find("."+g).removeClass(g),t.find("."+h).removeClass(h),n.addClass(g),n.parents("."+f).addClass(h),layui.event.call(this,r,"click("+l+")",o))}),n.on("click",t+V,function(e){var n=i(this),t=n.parents("."+y+":eq(0)"),a=lay.options(t[0]);"isAllowSpread"in a&&!a.isAllowSpread||d.spread(t)});var a=".layui-menu ."+f;n.on("mouseenter",a,function(n){var t=i(this),a=t.find("."+w);if(a[0]){var l=a[0].getBoundingClientRect();l.right>e.width()&&(a.addClass(C),l=a[0].getBoundingClientRect(),l.left<0&&a.removeClass(C)),l.bottom>e.height()&&a.eq(0).css("margin-top",-(l.bottom-e.height()))}}).on("mouseleave",a,function(e){var n=i(this),t=n.children("."+w);t.removeClass(C),t.css("margin-top",0)})}(),u.reload=function(e,i){var n=d.getThis(e);return n?(n.reload(i),d.call(n)):this},u.render=function(e){var i=new k(e);return d.call(i)},e(r,u)});layui.define("jquery",function(e){"use strict";var i=layui.jquery,t={config:{},index:layui.slider?layui.slider.index+1e4:0,set:function(e){var t=this;return t.config=i.extend({},t.config,e),t},on:function(e,i){return layui.onevent.call(this,n,e,i)}},a=function(){var e=this,i=e.config;return{setValue:function(t,a){return i.value=t,e.slide("set",t,a||0)},config:i}},n="slider",l="layui-disabled",s="layui-slider",r="layui-slider-bar",o="layui-slider-wrap",u="layui-slider-wrap-btn",d="layui-slider-tips",v="layui-slider-input",c="layui-slider-input-txt",p="layui-slider-input-btn",m="layui-slider-hover",f=function(e){var a=this;a.index=++t.index,a.config=i.extend({},a.config,t.config,e),a.render()};f.prototype.config={type:"default",min:0,max:100,value:0,step:1,showstep:!1,tips:!0,input:!1,range:!1,height:200,disabled:!1,theme:"#009688"},f.prototype.render=function(){var e=this,t=e.config;if(t.step<1&&(t.step=1),t.maxt.min?a:t.min,t.value[1]=n>t.min?n:t.min,t.value[0]=t.value[0]>t.max?t.max:t.value[0],t.value[1]=t.value[1]>t.max?t.max:t.value[1];var r=Math.floor((t.value[0]-t.min)/(t.max-t.min)*100),v=Math.floor((t.value[1]-t.min)/(t.max-t.min)*100),p=v-r+"%";r+="%",v+="%"}else{"object"==typeof t.value&&(t.value=Math.min.apply(null,t.value)),t.valuet.max&&(t.value=t.max);var p=Math.floor((t.value-t.min)/(t.max-t.min)*100)+"%"}var m=t.disabled?"#c2c2c2":t.theme,f='
      '+(t.tips?'
      ':"")+'
      '+(t.range?'
      ':"")+"
      ",h=i(t.elem),y=h.next("."+s);if(y[0]&&y.remove(),e.elemTemp=i(f),t.range?(e.elemTemp.find("."+o).eq(0).data("value",t.value[0]),e.elemTemp.find("."+o).eq(1).data("value",t.value[1])):e.elemTemp.find("."+o).data("value",t.value),h.html(e.elemTemp),"vertical"===t.type&&e.elemTemp.height(t.height+"px"),t.showstep){for(var g=(t.max-t.min)/t.step,b="",x=1;x
      ')}e.elemTemp.append(b)}if(t.input&&!t.range){var w=i('
      ');h.css("position","relative"),h.append(w),h.find("."+c).children("input").val(t.value),"vertical"===t.type?w.css({left:0,top:-48}):e.elemTemp.css("margin-right",w.outerWidth()+15)}t.disabled?(e.elemTemp.addClass(l),e.elemTemp.find("."+u).addClass(l)):e.slide(),e.elemTemp.find("."+u).on("mouseover",function(){var a="vertical"===t.type?t.height:e.elemTemp[0].offsetWidth,n=e.elemTemp.find("."+o),l="vertical"===t.type?a-i(this).parent()[0].offsetTop-n.height():i(this).parent()[0].offsetLeft,s=l/a*100,r=i(this).parent().data("value"),u=t.setTips?t.setTips(r):r;e.elemTemp.find("."+d).html(u),"vertical"===t.type?e.elemTemp.find("."+d).css({bottom:s+"%","margin-bottom":"20px",display:"inline-block"}):e.elemTemp.find("."+d).css({left:s+"%",display:"inline-block"})}).on("mouseout",function(){e.elemTemp.find("."+d).css("display","none")})},f.prototype.slide=function(e,t,a){var n=this,l=n.config,s=n.elemTemp,f=function(){return"vertical"===l.type?l.height:s[0].offsetWidth},h=s.find("."+o),y=s.next("."+v),g=y.children("."+c).children("input").val(),b=100/((l.max-l.min)/Math.ceil(l.step)),x=function(e,i){e=Math.ceil(e)*b>100?Math.ceil(e)*b:Math.round(e)*b,e=e>100?100:e,h.eq(i).css("vertical"===l.type?"bottom":"left",e+"%");var t=T(h[0].offsetLeft),a=l.range?T(h[1].offsetLeft):0;"vertical"===l.type?(s.find("."+d).css({bottom:e+"%","margin-bottom":"20px"}),t=T(f()-h[0].offsetTop-h.height()),a=l.range?T(f()-h[1].offsetTop-h.height()):0):s.find("."+d).css("left",e+"%"),t=t>100?100:t,a=a>100?100:a;var n=Math.min(t,a),o=Math.abs(t-a);"vertical"===l.type?s.find("."+r).css({height:o+"%",bottom:n+"%"}):s.find("."+r).css({width:o+"%",left:n+"%"});var u=l.min+Math.round((l.max-l.min)*e/100);if(g=u,y.children("."+c).children("input").val(g),h.eq(i).data("value",u),s.find("."+d).html(l.setTips?l.setTips(u):u),l.range){var v=[h.eq(0).data("value"),h.eq(1).data("value")];v[0]>v[1]&&v.reverse()}l.change&&l.change(l.range?v:u)},T=function(e){var i=e/f()*100/b,t=Math.round(i)*b;return e==f()&&(t=Math.ceil(i)*b),t},w=i(['
      f()&&(r=f());var o=r/f()*100/b;x(o,e),t.addClass(m),s.find("."+d).show(),i.preventDefault()},o=function(){t.removeClass(m),s.find("."+d).hide()};M(r,o)})}),s.on("click",function(e){var t=i("."+u);if(!t.is(event.target)&&0===t.has(event.target).length&&t.length){var a,n="vertical"===l.type?f()-e.clientY+i(this).offset().top:e.clientX-i(this).offset().left;n<0&&(n=0),n>f()&&(n=f());var s=n/f()*100/b;a=l.range?"vertical"===l.type?Math.abs(n-parseInt(i(h[0]).css("bottom")))>Math.abs(n-parseInt(i(h[1]).css("bottom")))?1:0:Math.abs(n-h[0].offsetLeft)>Math.abs(n-h[1].offsetLeft)?1:0:0,x(s,a),e.preventDefault()}}),y.children("."+p).children("i").each(function(e){i(this).on("click",function(){g=y.children("."+c).children("input").val(),g=1==e?g-l.stepl.max?l.max:Number(g)+l.step;var i=(g-l.min)/(l.max-l.min)*100/b;x(i,0)})});var q=function(){var e=this.value;e=isNaN(e)?0:e,e=el.max?l.max:e,this.value=e;var i=(e-l.min)/(l.max-l.min)*100/b;x(i,0)};y.children("."+c).children("input").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),q.call(this))}).on("change",q)},f.prototype.events=function(){var e=this;e.config},t.render=function(e){var i=new f(e);return a.call(i)},e(n,t)});layui.define(["jquery","lay"],function(e){"use strict";var i=layui.jquery,r=layui.lay,o=layui.device(),n=o.mobile?"click":"mousedown",l={config:{},index:layui.colorpicker?layui.colorpicker.index+1e4:0,set:function(e){var r=this;return r.config=i.extend({},r.config,e),r},on:function(e,i){return layui.onevent.call(this,"colorpicker",e,i)}},t=function(){var e=this,i=e.config;return{config:i}},c="colorpicker",a="layui-show",s="layui-colorpicker",f=".layui-colorpicker-main",d="layui-icon-down",u="layui-icon-close",p="layui-colorpicker-trigger-span",g="layui-colorpicker-trigger-i",v="layui-colorpicker-side",h="layui-colorpicker-side-slider",b="layui-colorpicker-basis",k="layui-colorpicker-alpha-bgcolor",y="layui-colorpicker-alpha-slider",m="layui-colorpicker-basis-cursor",x="layui-colorpicker-main-input",P=function(e){var i={h:0,s:0,b:0},r=Math.min(e.r,e.g,e.b),o=Math.max(e.r,e.g,e.b),n=o-r;return i.b=o,i.s=0!=o?255*n/o:0,0!=i.s?e.r==o?i.h=(e.g-e.b)/n:e.g==o?i.h=2+(e.b-e.r)/n:i.h=4+(e.r-e.g)/n:i.h=-1,o==r&&(i.h=0),i.h*=60,i.h<0&&(i.h+=360),i.s*=100/255,i.b*=100/255,i},C=function(e){var e=e.indexOf("#")>-1?e.substring(1):e;if(3==e.length){var i=e.split("");e=i[0]+i[0]+i[1]+i[1]+i[2]+i[2]}e=parseInt(e,16);var r={r:e>>16,g:(65280&e)>>8,b:255&e};return P(r)},B=function(e){var i={},r=e.h,o=255*e.s/100,n=255*e.b/100;if(0==o)i.r=i.g=i.b=n;else{var l=n,t=(255-o)*n/255,c=(l-t)*(r%60)/60;360==r&&(r=0),r<60?(i.r=l,i.b=t,i.g=t+c):r<120?(i.g=l,i.b=t,i.r=l-c):r<180?(i.g=l,i.r=t,i.b=t+c):r<240?(i.b=l,i.r=t,i.g=l-c):r<300?(i.b=l,i.g=t,i.r=t+c):r<360?(i.r=l,i.g=t,i.b=l-c):(i.r=0,i.g=0,i.b=0)}return{r:Math.round(i.r),g:Math.round(i.g),b:Math.round(i.b)}},w=function(e){var r=B(e),o=[r.r.toString(16),r.g.toString(16),r.b.toString(16)];return i.each(o,function(e,i){1==i.length&&(o[e]="0"+i)}),o.join("")},D=function(e){var i=/[0-9]{1,3}/g,r=e.match(i)||[];return{r:r[0],g:r[1],b:r[2]}},j=i(window),E=i(document),F=function(e){var r=this;r.index=++l.index,r.config=i.extend({},r.config,l.config,e),r.render()};F.prototype.config={color:"",size:null,alpha:!1,format:"hex",predefine:!1,colors:["#009688","#5FB878","#1E9FFF","#FF5722","#FFB800","#01AAED","#999","#c00","#ff8c00","#ffd700","#90ee90","#00ced1","#1e90ff","#c71585","rgb(0, 186, 189)","rgb(255, 120, 0)","rgb(250, 212, 0)","#393D49","rgba(0,0,0,.5)","rgba(255, 69, 0, 0.68)","rgba(144, 240, 144, 0.5)","rgba(31, 147, 255, 0.73)"]},F.prototype.render=function(){var e=this,r=e.config,o=i(['
      ',"",'3&&(r.alpha&&"rgb"==r.format||(e="#"+w(P(D(r.color))))),"background: "+e):e}()+'">','',"","","
      "].join("")),n=i(r.elem);r.size&&o.addClass("layui-colorpicker-"+r.size),n.addClass("layui-inline").html(e.elemColorBox=o),e.color=e.elemColorBox.find("."+p)[0].style.background,e.events()},F.prototype.renderPicker=function(){var e=this,r=e.config,o=e.elemColorBox[0],n=e.elemPicker=i(['
      ','
      ','
      ','
      ','
      ','
      ',"
      ",'
      ','
      ',"
      ","
      ",'
      ','
      ','
      ',"
      ","
      ",function(){if(r.predefine){var e=['
      '];return layui.each(r.colors,function(i,r){e.push(['
      ','
      ',"
      "].join(""))}),e.push("
      "),e.join("")}return""}(),'
      ','
      ','',"
      ",'
      ','','',"","
      "].join(""));e.elemColorBox.find("."+p)[0];i(f)[0]&&i(f).data("index")==e.index?e.removePicker(F.thisElemInd):(e.removePicker(F.thisElemInd),i("body").append(n)),F.thisElemInd=e.index,F.thisColor=o.style.background,e.position(),e.pickerEvents()},F.prototype.removePicker=function(e){var r=this;r.config;return i("#layui-colorpicker"+(e||r.index)).remove(),r},F.prototype.position=function(){var e=this,i=e.config;return r.position(e.bindElem||e.elemColorBox[0],e.elemPicker[0],{position:i.position,align:"center"}),e},F.prototype.val=function(){var e=this,i=(e.config,e.elemColorBox.find("."+p)),r=e.elemPicker.find("."+x),o=i[0],n=o.style.backgroundColor;if(n){var l=P(D(n)),t=i.attr("lay-type");if(e.select(l.h,l.s,l.b),"torgb"===t&&r.find("input").val(n),"rgba"===t){var c=D(n);if(3==(n.match(/[0-9]{1,3}/g)||[]).length)r.find("input").val("rgba("+c.r+", "+c.g+", "+c.b+", 1)"),e.elemPicker.find("."+y).css("left",280);else{r.find("input").val(n);var a=280*n.slice(n.lastIndexOf(",")+1,n.length-1);e.elemPicker.find("."+y).css("left",a)}e.elemPicker.find("."+k)[0].style.background="linear-gradient(to right, rgba("+c.r+", "+c.g+", "+c.b+", 0), rgb("+c.r+", "+c.g+", "+c.b+"))"}}else e.select(0,100,100),r.find("input").val(""),e.elemPicker.find("."+k)[0].style.background="",e.elemPicker.find("."+y).css("left",280)},F.prototype.side=function(){var e=this,r=e.config,o=e.elemColorBox.find("."+p),n=o.attr("lay-type"),l=e.elemPicker.find("."+v),t=e.elemPicker.find("."+h),c=e.elemPicker.find("."+b),a=e.elemPicker.find("."+m),s=e.elemPicker.find("."+k),f=e.elemPicker.find("."+y),C=t[0].offsetTop/180*360,w=100-(a[0].offsetTop+3)/180*100,E=(a[0].offsetLeft+3)/260*100,F=Math.round(f[0].offsetLeft/280*100)/100,H=e.elemColorBox.find("."+g),M=e.elemPicker.find(".layui-colorpicker-pre").children("div"),Y=function(i,l,t,c){e.select(i,l,t);var a=B({h:i,s:l,b:t});if(H.addClass(d).removeClass(u),o[0].style.background="rgb("+a.r+", "+a.g+", "+a.b+")","torgb"===n&&e.elemPicker.find("."+x).find("input").val("rgb("+a.r+", "+a.g+", "+a.b+")"),"rgba"===n){var p=0;p=280*c,f.css("left",p),e.elemPicker.find("."+x).find("input").val("rgba("+a.r+", "+a.g+", "+a.b+", "+c+")"),o[0].style.background="rgba("+a.r+", "+a.g+", "+a.b+", "+c+")",s[0].style.background="linear-gradient(to right, rgba("+a.r+", "+a.g+", "+a.b+", 0), rgb("+a.r+", "+a.g+", "+a.b+"))"}r.change&&r.change(e.elemPicker.find("."+x).find("input").val())},I=i(['
      '].join("")),L=function(e){i("#LAY-colorpicker-moving")[0]||i("body").append(I),I.on("mousemove",e),I.on("mouseup",function(){I.remove()}).on("mouseleave",function(){I.remove()})};t.on("mousedown",function(e){var i=this.offsetTop,r=e.clientY,o=function(e){var o=i+(e.clientY-r),n=l[0].offsetHeight;o<0&&(o=0),o>n&&(o=n);var t=o/180*360;C=t,Y(t,E,w,F),e.preventDefault()};L(o),e.preventDefault()}),l.on("click",function(e){var r=e.clientY-i(this).offset().top;r<0&&(r=0),r>this.offsetHeight&&(r=this.offsetHeight);var o=r/180*360;C=o,Y(o,E,w,F),e.preventDefault()}),a.on("mousedown",function(e){var i=this.offsetTop,r=this.offsetLeft,o=e.clientY,n=e.clientX,l=function(e){var l=i+(e.clientY-o),t=r+(e.clientX-n),a=c[0].offsetHeight-3,s=c[0].offsetWidth-3;l<-3&&(l=-3),l>a&&(l=a),t<-3&&(t=-3),t>s&&(t=s);var f=(t+3)/260*100,d=100-(l+3)/180*100;w=d,E=f,Y(C,f,d,F),e.preventDefault()};layui.stope(e),L(l),e.preventDefault()}),c.on("mousedown",function(e){var r=e.clientY-i(this).offset().top-3+j.scrollTop(),o=e.clientX-i(this).offset().left-3+j.scrollLeft();r<-3&&(r=-3),r>this.offsetHeight-3&&(r=this.offsetHeight-3),o<-3&&(o=-3),o>this.offsetWidth-3&&(o=this.offsetWidth-3);var n=(o+3)/260*100,l=100-(r+3)/180*100;w=l,E=n,Y(C,n,l,F),layui.stope(e),e.preventDefault(),a.trigger(e,"mousedown")}),f.on("mousedown",function(e){var i=this.offsetLeft,r=e.clientX,o=function(e){var o=i+(e.clientX-r),n=s[0].offsetWidth;o<0&&(o=0),o>n&&(o=n);var l=Math.round(o/280*100)/100;F=l,Y(C,E,w,l),e.preventDefault()};L(o),e.preventDefault()}),s.on("click",function(e){var r=e.clientX-i(this).offset().left;r<0&&(r=0),r>this.offsetWidth&&(r=this.offsetWidth);var o=Math.round(r/280*100)/100;F=o,Y(C,E,w,o),e.preventDefault()}),M.each(function(){i(this).on("click",function(){i(this).parent(".layui-colorpicker-pre").addClass("selected").siblings().removeClass("selected");var e,r=this.style.backgroundColor,o=P(D(r)),n=r.slice(r.lastIndexOf(",")+1,r.length-1);C=o.h,E=o.s,w=o.b,3==(r.match(/[0-9]{1,3}/g)||[]).length&&(n=1),F=n,e=280*n,Y(o.h,o.s,o.b,n)})})},F.prototype.select=function(e,i,r,o){var n=this,l=(n.config,w({h:e,s:100,b:100})),t=w({h:e,s:i,b:r}),c=e/360*180,a=180-r/100*180-3,s=i/100*260-3;n.elemPicker.find("."+h).css("top",c),n.elemPicker.find("."+b)[0].style.background="#"+l,n.elemPicker.find("."+m).css({top:a,left:s}),"change"!==o&&n.elemPicker.find("."+x).find("input").val("#"+t)},F.prototype.pickerEvents=function(){var e=this,r=e.config,o=e.elemColorBox.find("."+p),n=e.elemPicker.find("."+x+" input"),l={clear:function(i){o[0].style.background="",e.elemColorBox.find("."+g).removeClass(d).addClass(u),e.color="",r.done&&r.done(""),e.removePicker()},confirm:function(i,l){var t=n.val(),c=t,a={};if(t.indexOf(",")>-1){if(a=P(D(t)),e.select(a.h,a.s,a.b),o[0].style.background=c="#"+w(a),(t.match(/[0-9]{1,3}/g)||[]).length>3&&"rgba"===o.attr("lay-type")){var s=280*t.slice(t.lastIndexOf(",")+1,t.length-1);e.elemPicker.find("."+y).css("left",s),o[0].style.background=t,c=t}}else a=C(t),o[0].style.background=c="#"+w(a),e.elemColorBox.find("."+g).removeClass(u).addClass(d);return"change"===l?(e.select(a.h,a.s,a.b,l),void(r.change&&r.change(c))):(e.color=t,r.done&&r.done(t),void e.removePicker())}};e.elemPicker.on("click","*[colorpicker-events]",function(){var e=i(this),r=e.attr("colorpicker-events");l[r]&&l[r].call(this,e)}),n.on("keyup",function(e){var r=i(this);l.confirm.call(this,r,13===e.keyCode?null:"change")})},F.prototype.events=function(){var e=this,r=e.config,o=e.elemColorBox.find("."+p);e.elemColorBox.on("click",function(){e.renderPicker(),i(f)[0]&&(e.val(),e.side())}),r.elem[0]&&!e.elemColorBox[0].eventHandler&&(E.on(n,function(r){if(!i(r.target).hasClass(s)&&!i(r.target).parents("."+s)[0]&&!i(r.target).hasClass(f.replace(/\./g,""))&&!i(r.target).parents(f)[0]&&e.elemPicker){if(e.color){var n=P(D(e.color));e.select(n.h,n.s,n.b)}else e.elemColorBox.find("."+g).removeClass(d).addClass(u);o[0].style.background=e.color||"",e.removePicker()}}),j.on("resize",function(){return!(!e.elemPicker||!i(f)[0])&&void e.position()}),e.elemColorBox[0].eventHandler=!0)},l.render=function(e){var i=new F(e);return t.call(i)},e(c,l)});layui.define("layer",function(e){"use strict";var t=layui.$,i=layui.layer,a=layui.hint(),n=layui.device(),l="form",r=".layui-form",o="layui-this",s="layui-hide",c="layui-disabled",u=function(){this.config={verify:{required:[/[\S]+/,"\u5fc5\u586b\u9879\u4e0d\u80fd\u4e3a\u7a7a"],phone:[/^1\d{10}$/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u624b\u673a\u53f7"],email:[/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/,"\u90ae\u7bb1\u683c\u5f0f\u4e0d\u6b63\u786e"],url:[/^(#|(http(s?)):\/\/|\/\/)[^\s]+\.[^\s]+$/,"\u94fe\u63a5\u683c\u5f0f\u4e0d\u6b63\u786e"],number:function(e){if(!e||isNaN(e))return"\u53ea\u80fd\u586b\u5199\u6570\u5b57"},date:[/^(\d{4})[-\/](\d{1}|0\d{1}|1[0-2])([-\/](\d{1}|0\d{1}|[1-2][0-9]|3[0-1]))*$/,"\u65e5\u671f\u683c\u5f0f\u4e0d\u6b63\u786e"],identity:[/(^\d{15}$)|(^\d{17}(x|X|\d)$)/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u8eab\u4efd\u8bc1\u53f7"]},autocomplete:null}};u.prototype.set=function(e){var i=this;return t.extend(!0,i.config,e),i},u.prototype.verify=function(e){var i=this;return t.extend(!0,i.config.verify,e),i},u.prototype.on=function(e,t){return layui.onevent.call(this,l,e,t)},u.prototype.val=function(e,i){var a=this,n=t(r+'[lay-filter="'+e+'"]');return n.each(function(e,a){var n=t(this);layui.each(i,function(e,t){var i,a=n.find('[name="'+e+'"]');a[0]&&(i=a[0].type,"checkbox"===i?a[0].checked=t:"radio"===i?a.each(function(){this.value==t&&(this.checked=!0)}):a.val(t))})}),f.render(null,e),a.getValue(e)},u.prototype.getValue=function(e,i){i=i||t(r+'[lay-filter="'+e+'"]').eq(0);var a={},n={},l=i.find("input,select,textarea");return layui.each(l,function(e,i){var l;t(this);if(i.name=(i.name||"").replace(/^\s*|\s*&/,""),i.name){if(/^.*\[\]$/.test(i.name)){var r=i.name.match(/^(.*)\[\]$/g)[0];a[r]=0|a[r],l=i.name.replace(/^(.*)\[\]$/,"$1["+a[r]++ +"]")}/^checkbox|radio$/.test(i.type)&&!i.checked||(n[l||i.name]=i.value)}}),n},u.prototype.render=function(e,i){var n=this,u=n.config,d=t(r+function(){return i?'[lay-filter="'+i+'"]':""}()),f={input:function(){var e=d.find("input,textarea");u.autocomplete&&e.attr("autocomplete",u.autocomplete)},select:function(){var e,i="\u8bf7\u9009\u62e9",a="layui-form-select",n="layui-select-title",r="layui-select-none",u="",f=d.find("select"),v=function(i,l){t(i.target).parent().hasClass(n)&&!l||(t("."+a).removeClass(a+"ed "+a+"up"),e&&u&&e.val(u)),e=null},y=function(i,d,f){var y,p=t(this),m=i.find("."+n),g=m.find("input"),k=i.find("dl"),x=k.children("dd"),b=this.selectedIndex;if(!d){var C=function(){var e=i.offset().top+i.outerHeight()+5-h.scrollTop(),t=k.outerHeight();b=p[0].selectedIndex,i.addClass(a+"ed"),x.removeClass(s),y=null,x.eq(b).addClass(o).siblings().removeClass(o),e+t>h.height()&&e>=t&&i.addClass(a+"up"),T()},w=function(e){i.removeClass(a+"ed "+a+"up"),g.blur(),y=null,e||$(g.val(),function(e){var i=p[0].selectedIndex;e&&(u=t(p[0].options[i]).html(),0===i&&u===g.attr("placeholder")&&(u=""),g.val(u||""))})},T=function(){var e=k.children("dd."+o);if(e[0]){var t=e.position().top,i=k.height(),a=e.height();t>i&&k.scrollTop(t+k.scrollTop()-i+a-5),t<0&&k.scrollTop(t+k.scrollTop()-5)}};m.on("click",function(e){i.hasClass(a+"ed")?w():(v(e,!0),C()),k.find("."+r).remove()}),m.find(".layui-edge").on("click",function(){g.focus()}),g.on("keyup",function(e){var t=e.keyCode;9===t&&C()}).on("keydown",function(e){var t=e.keyCode;9===t&&w();var i=function(t,a){var n,l;e.preventDefault();var r=function(){var e=k.children("dd."+o);if(k.children("dd."+s)[0]&&"next"===t){var i=k.children("dd:not(."+s+",."+c+")"),n=i.eq(0).index();if(n>=0&&n\u65e0\u5339\u914d\u9879

      '):k.find("."+r).remove()},"keyup"),""===t&&k.find("."+r).remove(),void T())};f&&g.on("keyup",q).on("blur",function(i){var a=p[0].selectedIndex;e=g,u=t(p[0].options[a]).html(),0===a&&u===g.attr("placeholder")&&(u=""),setTimeout(function(){$(g.val(),function(e){u||g.val("")},"blur")},200)}),x.on("click",function(){var e=t(this),a=e.attr("lay-value"),n=p.attr("lay-filter");return!e.hasClass(c)&&(e.hasClass("layui-select-tips")?g.val(""):(g.val(e.text()),e.addClass(o)),e.siblings().removeClass(o),p.val(a).removeClass("layui-form-danger"),layui.event.call(this,l,"select("+n+")",{elem:p[0],value:a,othis:i}),w(!0),!1)}),i.find("dl>dt").on("click",function(e){return!1}),t(document).off("click",v).on("click",v)}};f.each(function(e,l){var r=t(this),s=r.next("."+a),u=this.disabled,d=l.value,f=t(l.options[l.selectedIndex]),v=l.options[0];if("string"==typeof r.attr("lay-ignore"))return r.show();var h="string"==typeof r.attr("lay-search"),p=v?v.value?i:v.innerHTML||i:i,m=t(['
      ','
      ','','
      ','
      ',function(e){var a=[];return layui.each(e,function(e,n){0!==e||n.value?"optgroup"===n.tagName.toLowerCase()?a.push("
      "+n.label+"
      "):a.push('
      '+t.trim(n.innerHTML)+"
      "):a.push('
      '+t.trim(n.innerHTML||i)+"
      ")}),0===a.length&&a.push('
      \u6ca1\u6709\u9009\u9879
      '),a.join("")}(r.find("*"))+"
      ","
      "].join(""));s[0]&&s.remove(),r.after(m),y.call(this,m,u,h)})},checkbox:function(){var e={checkbox:["layui-form-checkbox","layui-form-checked","checkbox"],_switch:["layui-form-switch","layui-form-onswitch","switch"]},i=d.find("input[type=checkbox]"),a=function(e,i){var a=t(this);e.on("click",function(){var t=a.attr("lay-filter"),n=(a.attr("lay-text")||"").split("|");a[0].disabled||(a[0].checked?(a[0].checked=!1,e.removeClass(i[1]).find("em").text(n[1])):(a[0].checked=!0,e.addClass(i[1]).find("em").text(n[0])),layui.event.call(a[0],l,i[2]+"("+t+")",{elem:a[0],value:a[0].value,othis:e}))})};i.each(function(i,n){var l=t(this),r=l.attr("lay-skin"),o=(l.attr("lay-text")||"").split("|"),s=this.disabled;"switch"===r&&(r="_"+r);var u=e[r]||e.checkbox;if("string"==typeof l.attr("lay-ignore"))return l.show();var d=l.next("."+u[0]),f=t(['
      ",function(){var e=n.title.replace(/\s/g,""),t={checkbox:[e?""+n.title+"":"",''].join(""),_switch:""+((n.checked?o[0]:o[1])||"")+""};return t[r]||t.checkbox}(),"
      "].join(""));d[0]&&d.remove(),l.after(f),a.call(this,f,u)})},radio:function(){var e="layui-form-radio",i=["",""],a=d.find("input[type=radio]"),n=function(a){var n=t(this),o="layui-anim-scaleSpring";a.on("click",function(){var s=n[0].name,c=n.parents(r),u=n.attr("lay-filter"),d=c.find("input[name="+s.replace(/(\.|#|\[|\])/g,"\\$1")+"]");n[0].disabled||(layui.each(d,function(){var a=t(this).next("."+e);this.checked=!1,a.removeClass(e+"ed"),a.find(".layui-icon").removeClass(o).html(i[1])}),n[0].checked=!0,a.addClass(e+"ed"),a.find(".layui-icon").addClass(o).html(i[0]),layui.event.call(n[0],l,"radio("+u+")",{elem:n[0],value:n[0].value,othis:a}))})};a.each(function(a,l){var r=t(this),o=r.next("."+e),s=this.disabled;if("string"==typeof r.attr("lay-ignore"))return r.show();o[0]&&o.remove();var u=t(['
      ',''+i[l.checked?0:1]+"","
      "+function(){var e=l.title||"";return"string"==typeof r.next().attr("lay-radio")&&(e=r.next().html()),e}()+"
      ","
      "].join(""));r.after(u),n.call(this,u)})}};return e?f[e]?f[e]():a.error('\u4e0d\u652f\u6301\u7684 "'+e+'" \u8868\u5355\u6e32\u67d3'):layui.each(f,function(e,t){t()}),n};var d=function(){var e=null,a=f.config.verify,o="layui-form-danger",s={},c=t(this),u=c.parents(r).eq(0),d=u.find("*[lay-verify]"),h=c.parents("form")[0],y=c.attr("lay-filter");return layui.each(d,function(l,r){var s=t(this),c=s.attr("lay-verify").split("|"),u=s.attr("lay-verType"),d=s.val();if(s.removeClass(o),layui.each(c,function(t,l){var c,f="",h="function"==typeof a[l];if(a[l]){var c=h?f=a[l](d,r):!a[l][0].test(d),y="select"===r.tagName.toLowerCase()||/^checkbox|radio$/.test(r.type);if(f=f||a[l][1],"required"===l&&(f=s.attr("lay-reqText")||f),c)return"tips"===u?i.tips(f,function(){return"string"!=typeof s.attr("lay-ignore")&&y?s.next():s}(),{tips:1}):"alert"===u?i.alert(f,{title:"\u63d0\u793a",shadeClose:!0}):/\bstring|number\b/.test(typeof f)&&i.msg(f,{icon:5,shift:6}),n.mobile?v.scrollTop(function(){try{return(y?s.next():s).offset().top-15}catch(e){return 0}}()):setTimeout(function(){(y?s.next().find("input"):r).focus()},7),s.addClass(o),e=!0}}),e)return e}),!e&&(s=f.getValue(null,u),layui.event.call(this,l,"submit("+y+")",{elem:this,form:h,field:s}))},f=new u,v=t(document),h=t(window);t(function(){f.render()}),v.on("reset",r,function(){var e=t(this).attr("lay-filter");setTimeout(function(){f.render(null,e)},50)}),v.on("submit",r,d).on("click","*[lay-submit]",d),e(l,f)});layui.define("form",function(e){"use strict";var i=layui.$,a=layui.form,n=layui.layer,t="tree",r={config:{},index:layui[t]?layui[t].index+1e4:0,set:function(e){var a=this;return a.config=i.extend({},a.config,e),a},on:function(e,i){return layui.onevent.call(this,t,e,i)}},l=function(){var e=this,i=e.config,a=i.id||e.index;return l.that[a]=e,l.config[a]=i,{config:i,reload:function(i){e.reload.call(e,i)},getChecked:function(){return e.getChecked.call(e)},setChecked:function(i){return e.setChecked.call(e,i)}}},c="layui-hide",d="layui-disabled",s="layui-tree-set",o="layui-tree-iconClick",h="layui-icon-addition",u="layui-icon-subtraction",p="layui-tree-entry",f="layui-tree-main",y="layui-tree-txt",v="layui-tree-pack",C="layui-tree-spread",k="layui-tree-setLineShort",m="layui-tree-showLine",x="layui-tree-lineExtend",b=function(e){var a=this;a.index=++r.index,a.config=i.extend({},a.config,r.config,e),a.render()};b.prototype.config={data:[],showCheckbox:!1,showLine:!0,accordion:!1,onlyIconControl:!1,isJump:!1,edit:!1,text:{defaultNodeName:"\u672a\u547d\u540d",none:"\u65e0\u6570\u636e"}},b.prototype.reload=function(e){var a=this;layui.each(e,function(e,i){"array"===layui._typeof(i)&&delete a.config[e]}),a.config=i.extend(!0,{},a.config,e),a.render()},b.prototype.render=function(){var e=this,a=e.config;e.checkids=[];var n=i('
      ');e.tree(n);var t=a.elem=i(a.elem);if(t[0]){if(e.key=a.id||e.index,e.elem=n,e.elemNone=i('
      '+a.text.none+"
      "),t.html(e.elem),0==e.elem.find(".layui-tree-set").length)return e.elem.append(e.elemNone);a.showCheckbox&&e.renderForm("checkbox"),e.elem.find(".layui-tree-set").each(function(){var e=i(this);e.parent(".layui-tree-pack")[0]||e.addClass("layui-tree-setHide"),!e.next()[0]&&e.parents(".layui-tree-pack").eq(1).hasClass("layui-tree-lineExtend")&&e.addClass(k),e.next()[0]||e.parents(".layui-tree-set").eq(0).next()[0]||e.addClass(k)}),e.events()}},b.prototype.renderForm=function(e){a.render(e,"LAY-tree-"+this.index)},b.prototype.tree=function(e,a){var n=this,t=n.config,r=a||t.data;layui.each(r,function(a,r){var l=r.children&&r.children.length>0,o=i('
      "),h=i(['
      ','
      ','
      ',function(){return t.showLine?l?'':'':''}(),function(){return t.showCheckbox?'':""}(),function(){return t.isJump&&r.href?''+(r.title||r.label||t.text.defaultNodeName)+"":''+(r.title||r.label||t.text.defaultNodeName)+""}(),"
      ",function(){if(!t.edit)return"";var e={add:'',update:'',del:''},i=['
      '];return t.edit===!0&&(t.edit=["update","del"]),"object"==typeof t.edit?(layui.each(t.edit,function(a,n){i.push(e[n]||"")}),i.join("")+"
      "):void 0}(),"
      "].join(""));l&&(h.append(o),n.tree(o,r.children)),e.append(h),h.prev("."+s)[0]&&h.prev().children(".layui-tree-pack").addClass("layui-tree-showLine"),l||h.parent(".layui-tree-pack").addClass("layui-tree-lineExtend"),n.spread(h,r),t.showCheckbox&&(r.checked&&n.checkids.push(r.id),n.checkClick(h,r)),t.edit&&n.operate(h,r)})},b.prototype.spread=function(e,a){var n=this,t=n.config,r=e.children("."+p),l=r.children("."+f),c=r.find("."+o),k=r.find("."+y),m=t.onlyIconControl?c:l,x="";m.on("click",function(i){var a=e.children("."+v),n=m.children(".layui-icon")[0]?m.children(".layui-icon"):m.find(".layui-tree-icon").children(".layui-icon");if(a[0]){if(e.hasClass(C))e.removeClass(C),a.slideUp(200),n.removeClass(u).addClass(h);else if(e.addClass(C),a.slideDown(200),n.addClass(u).removeClass(h),t.accordion){var r=e.siblings("."+s);r.removeClass(C),r.children("."+v).slideUp(200),r.find(".layui-tree-icon").children(".layui-icon").removeClass(u).addClass(h)}}else x="normal"}),k.on("click",function(){var n=i(this);n.hasClass(d)||(x=e.hasClass(C)?t.onlyIconControl?"open":"close":t.onlyIconControl?"close":"open",t.click&&t.click({elem:e,state:x,data:a}))})},b.prototype.setCheckbox=function(e,i,a){var n=this,t=(n.config,a.prop("checked"));if(!a.prop("disabled")){if("object"==typeof i.children||e.find("."+v)[0]){var r=e.find("."+v).find('input[same="layuiTreeCheck"]');r.each(function(){this.disabled||(this.checked=t)})}var l=function(e){if(e.parents("."+s)[0]){var i,a=e.parent("."+v),n=a.parent(),r=a.prev().find('input[same="layuiTreeCheck"]');t?r.prop("checked",t):(a.find('input[same="layuiTreeCheck"]').each(function(){this.checked&&(i=!0)}),i||r.prop("checked",!1)),l(n)}};l(e),n.renderForm("checkbox")}},b.prototype.checkClick=function(e,a){var n=this,t=n.config,r=e.children("."+p),l=r.children("."+f);l.on("click",'input[same="layuiTreeCheck"]+',function(r){layui.stope(r);var l=i(this).prev(),c=l.prop("checked");l.prop("disabled")||(n.setCheckbox(e,a,l),t.oncheck&&t.oncheck({elem:e,checked:c,data:a}))})},b.prototype.operate=function(e,a){var t=this,r=t.config,l=e.children("."+p),d=l.children("."+f);l.children(".layui-tree-btnGroup").on("click",".layui-icon",function(l){layui.stope(l);var f=i(this).data("type"),b=e.children("."+v),g={data:a,type:f,elem:e};if("add"==f){b[0]||(r.showLine?(d.find("."+o).addClass("layui-tree-icon"),d.find("."+o).children(".layui-icon").addClass(h).removeClass("layui-icon-file")):d.find(".layui-tree-iconArrow").removeClass(c),e.append('
      '));var w=r.operate&&r.operate(g),N={};if(N.title=r.text.defaultNodeName,N.id=w,t.tree(e.children("."+v),[N]),r.showLine)if(b[0])b.hasClass(x)||b.addClass(x),e.find("."+v).each(function(){i(this).children("."+s).last().addClass(k)}),b.children("."+s).last().prev().hasClass(k)?b.children("."+s).last().prev().removeClass(k):b.children("."+s).last().removeClass(k),!e.parent("."+v)[0]&&e.next()[0]&&b.children("."+s).last().removeClass(k);else{var T=e.siblings("."+s),L=1,I=e.parent("."+v);layui.each(T,function(e,a){i(a).children("."+v)[0]||(L=0)}),1==L?(T.children("."+v).addClass(m),T.children("."+v).children("."+s).removeClass(k),e.children("."+v).addClass(m),I.removeClass(x),I.children("."+s).last().children("."+v).children("."+s).last().addClass(k)):e.children("."+v).children("."+s).addClass(k)}if(!r.showCheckbox)return;if(d.find('input[same="layuiTreeCheck"]')[0].checked){var A=e.children("."+v).children("."+s).last();A.find('input[same="layuiTreeCheck"]')[0].checked=!0}t.renderForm("checkbox")}else if("update"==f){var F=d.children("."+y).html();d.children("."+y).html(""),d.append(''),d.children(".layui-tree-editInput").val(F).focus();var j=function(e){var i=e.val().trim();i=i?i:r.text.defaultNodeName,e.remove(),d.children("."+y).html(i),g.data.title=i,r.operate&&r.operate(g)};d.children(".layui-tree-editInput").blur(function(){j(i(this))}),d.children(".layui-tree-editInput").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),j(i(this)))})}else n.confirm('\u786e\u8ba4\u5220\u9664\u8be5\u8282\u70b9 "'+(a.title||"")+'" \u5417\uff1f',function(a){if(r.operate&&r.operate(g),g.status="remove",n.close(a),!e.prev("."+s)[0]&&!e.next("."+s)[0]&&!e.parent("."+v)[0])return e.remove(),void t.elem.append(t.elemNone);if(e.siblings("."+s).children("."+p)[0]){if(r.showCheckbox){var l=function(e){if(e.parents("."+s)[0]){var a=e.siblings("."+s).children("."+p),n=e.parent("."+v).prev(),r=n.find('input[same="layuiTreeCheck"]')[0],c=1,d=0;0==r.checked&&(a.each(function(e,a){var n=i(a).find('input[same="layuiTreeCheck"]')[0];0!=n.checked||n.disabled||(c=0),n.disabled||(d=1)}),1==c&&1==d&&(r.checked=!0,t.renderForm("checkbox"),l(n.parent("."+s))))}};l(e)}if(r.showLine){var d=e.siblings("."+s),h=1,f=e.parent("."+v);layui.each(d,function(e,a){i(a).children("."+v)[0]||(h=0)}),1==h?(b[0]||(f.removeClass(x),d.children("."+v).addClass(m),d.children("."+v).children("."+s).removeClass(k)),e.next()[0]?f.children("."+s).last().children("."+v).children("."+s).last().addClass(k):e.prev().children("."+v).children("."+s).last().addClass(k),e.next()[0]||e.parents("."+s)[1]||e.parents("."+s).eq(0).next()[0]||e.prev("."+s).addClass(k)):!e.next()[0]&&e.hasClass(k)&&e.prev().addClass(k)}}else{var y=e.parent("."+v).prev();if(r.showLine){y.find("."+o).removeClass("layui-tree-icon"),y.find("."+o).children(".layui-icon").removeClass(u).addClass("layui-icon-file");var w=y.parents("."+v).eq(0);w.addClass(x),w.children("."+s).each(function(){i(this).children("."+v).children("."+s).last().addClass(k)})}else y.find(".layui-tree-iconArrow").addClass(c);e.parents("."+s).eq(0).removeClass(C),e.parent("."+v).remove()}e.remove()})})},b.prototype.events=function(){var e=this,a=e.config;e.elem.find(".layui-tree-checkedFirst");e.setChecked(e.checkids),e.elem.find(".layui-tree-search").on("keyup",function(){var n=i(this),t=n.val(),r=n.nextAll(),l=[];r.find("."+y).each(function(){var e=i(this).parents("."+p);if(i(this).html().indexOf(t)!=-1){l.push(i(this).parent());var a=function(e){e.addClass("layui-tree-searchShow"),e.parent("."+v)[0]&&a(e.parent("."+v).parent("."+s))};a(e.parent("."+s))}}),r.find("."+p).each(function(){var e=i(this).parent("."+s);e.hasClass("layui-tree-searchShow")||e.addClass(c)}),0==r.find(".layui-tree-searchShow").length&&e.elem.append(e.elemNone),a.onsearch&&a.onsearch({elem:l})}),e.elem.find(".layui-tree-search").on("keydown",function(){i(this).nextAll().find("."+p).each(function(){var e=i(this).parent("."+s);e.removeClass("layui-tree-searchShow "+c)}),i(".layui-tree-emptyText")[0]&&i(".layui-tree-emptyText").remove()})},b.prototype.getChecked=function(){var e=this,a=e.config,n=[],t=[];e.elem.find(".layui-form-checked").each(function(){n.push(i(this).prev()[0].value)});var r=function(e,a){layui.each(e,function(e,t){layui.each(n,function(e,n){if(t.id==n){var l=i.extend({},t);return delete l.children,a.push(l),t.children&&(l.children=[],r(t.children,l.children)),!0}})})};return r(i.extend({},a.data),t),t},b.prototype.setChecked=function(e){var a=this;a.config;a.elem.find("."+s).each(function(a,n){var t=i(this).data("id"),r=i(n).children("."+p).find('input[same="layuiTreeCheck"]'),l=r.next();if("number"==typeof e){if(t==e)return r[0].checked||l.click(),!1}else"object"==typeof e&&layui.each(e,function(e,i){if(i==t&&!r[0].checked)return l.click(),!0})})},l.that={},l.config={},r.reload=function(e,i){var a=l.that[e];return a.reload(i),l.call(a)},r.getChecked=function(e){var i=l.that[e];return i.getChecked()},r.setChecked=function(e,i){var a=l.that[e];return a.setChecked(i)},r.render=function(e){var i=new b(e);return l.call(i)},e(t,r)});layui.define(["laytpl","form"],function(e){"use strict";var a=layui.$,t=layui.laytpl,i=layui.form,n="transfer",l={config:{},index:layui[n]?layui[n].index+1e4:0,set:function(e){var t=this;return t.config=a.extend({},t.config,e),t},on:function(e,a){return layui.onevent.call(this,n,e,a)}},r=function(){var e=this,a=e.config,t=a.id||e.index;return r.that[t]=e,r.config[t]=a,{config:a,reload:function(a){e.reload.call(e,a)},getData:function(){return e.getData.call(e)}}},c="layui-hide",o="layui-btn-disabled",d="layui-none",s="layui-transfer-box",u="layui-transfer-header",h="layui-transfer-search",f="layui-transfer-active",y="layui-transfer-data",p=function(e){return e=e||{},['
      ','
      ','","
      ","{{# if(d.data.showSearch){ }}",'","{{# } }}",'
        ',"
        "].join("")},v=['
        ',p({index:0,checkAllName:"layTransferLeftCheckAll"}),'
        ','",'","
        ",p({index:1,checkAllName:"layTransferRightCheckAll"}),"
        "].join(""),x=function(e){var t=this;t.index=++l.index,t.config=a.extend({},t.config,l.config,e),t.render()};x.prototype.config={title:["\u5217\u8868\u4e00","\u5217\u8868\u4e8c"],width:200,height:360,data:[],value:[],showSearch:!1,id:"",text:{none:"\u65e0\u6570\u636e",searchNone:"\u65e0\u5339\u914d\u6570\u636e"}},x.prototype.reload=function(e){var t=this;t.config=a.extend({},t.config,e),t.render()},x.prototype.render=function(){var e=this,i=e.config,n=e.elem=a(t(v).render({data:i,index:e.index})),l=i.elem=a(i.elem);l[0]&&(i.data=i.data||[],i.value=i.value||[],e.key=i.id||e.index,l.html(e.elem),e.layBox=e.elem.find("."+s),e.layHeader=e.elem.find("."+u),e.laySearch=e.elem.find("."+h),e.layData=n.find("."+y),e.layBtn=n.find("."+f+" .layui-btn"),e.layBox.css({width:i.width,height:i.height}),e.layData.css({height:function(){return i.height-e.layHeader.outerHeight()-e.laySearch.outerHeight()-2}()}),e.renderData(),e.events())},x.prototype.renderData=function(){var e=this,a=(e.config,[{checkName:"layTransferLeftCheck",views:[]},{checkName:"layTransferRightCheck",views:[]}]);e.parseData(function(e){var t=e.selected?1:0,i=["
      • ",'',"
      • "].join("");a[t].views.push(i),delete e.selected}),e.layData.eq(0).html(a[0].views.join("")),e.layData.eq(1).html(a[1].views.join("")),e.renderCheckBtn()},x.prototype.renderForm=function(e){i.render(e,"LAY-transfer-"+this.index)},x.prototype.renderCheckBtn=function(e){var t=this,i=t.config;e=e||{},t.layBox.each(function(n){var l=a(this),r=l.find("."+y),d=l.find("."+u).find('input[type="checkbox"]'),s=r.find('input[type="checkbox"]'),h=0,f=!1;if(s.each(function(){var e=a(this).data("hide");(this.checked||this.disabled||e)&&h++,this.checked&&!e&&(f=!0)}),d.prop("checked",f&&h===s.length),t.layBtn.eq(n)[f?"removeClass":"addClass"](o),!e.stopNone){var p=r.children("li:not(."+c+")").length;t.noneView(r,p?"":i.text.none)}}),t.renderForm("checkbox")},x.prototype.noneView=function(e,t){var i=a('

        '+(t||"")+"

        ");e.find("."+d)[0]&&e.find("."+d).remove(),t.replace(/\s/g,"")&&e.append(i)},x.prototype.setValue=function(){var e=this,t=e.config,i=[];return e.layBox.eq(1).find("."+y+' input[type="checkbox"]').each(function(){var e=a(this).data("hide");e||i.push(this.value)}),t.value=i,e},x.prototype.parseData=function(e){var t=this,i=t.config,n=[];return layui.each(i.data,function(t,l){l=("function"==typeof i.parseData?i.parseData(l):l)||l,n.push(l=a.extend({},l)),layui.each(i.value,function(e,a){a==l.value&&(l.selected=!0)}),e&&e(l)}),i.data=n,t},x.prototype.getData=function(e){var a=this,t=a.config,i=[];return a.setValue(),layui.each(e||t.value,function(e,a){layui.each(t.data,function(e,t){delete t.selected,a==t.value&&i.push(t)})}),i},x.prototype.events=function(){var e=this,t=e.config;e.elem.on("click",'input[lay-filter="layTransferCheckbox"]+',function(){var t=a(this).prev(),i=t[0].checked,n=t.parents("."+s).eq(0).find("."+y);t[0].disabled||("all"===t.attr("lay-type")&&n.find('input[type="checkbox"]').each(function(){this.disabled||(this.checked=i)}),e.renderCheckBtn({stopNone:!0}))}),e.layBtn.on("click",function(){var i=a(this),n=i.data("index"),l=e.layBox.eq(n),r=[];if(!i.hasClass(o)){e.layBox.eq(n).each(function(t){var i=a(this),n=i.find("."+y);n.children("li").each(function(){var t=a(this),i=t.find('input[type="checkbox"]'),n=i.data("hide");i[0].checked&&!n&&(i[0].checked=!1,l.siblings("."+s).find("."+y).append(t.clone()),t.remove(),r.push(i[0].value)),e.setValue()})}),e.renderCheckBtn();var c=l.siblings("."+s).find("."+h+" input");""===c.val()||c.trigger("keyup"),t.onchange&&t.onchange(e.getData(r),n)}}),e.laySearch.find("input").on("keyup",function(){var i=this.value,n=a(this).parents("."+h).eq(0).siblings("."+y),l=n.children("li");l.each(function(){var e=a(this),t=e.find('input[type="checkbox"]'),n=t[0].title.indexOf(i)!==-1;e[n?"removeClass":"addClass"](c),t.data("hide",!n)}),e.renderCheckBtn();var r=l.length===n.children("li."+c).length;e.noneView(n,r?t.text.searchNone:"")})},r.that={},r.config={},l.reload=function(e,a){var t=r.that[e];return t.reload(a),r.call(t)},l.getData=function(e){var a=r.that[e];return a.getData()},l.render=function(e){var a=new x(e);return r.call(a)},e(n,l)});layui.define(["laytpl","laypage","layer","form","util"],function(e){"use strict";var t=layui.$,i=layui.laytpl,a=layui.laypage,l=layui.layer,n=layui.form,o=layui.util,r=layui.hint(),c=layui.device(),d={config:{checkName:"LAY_CHECKED",indexName:"LAY_TABLE_INDEX"},cache:{},index:layui.table?layui.table.index+1e4:0,set:function(e){var i=this;return i.config=t.extend({},i.config,e),i},on:function(e,t){return layui.onevent.call(this,h,e,t)}},s=function(){var e=this,t=e.config,i=t.id||t.index;return i&&(s.that[i]=e,s.config[i]=t),{config:t,reload:function(t,i){e.reload.call(e,t,i)},setColsWidth:function(){e.setColsWidth.call(e)},resize:function(){e.resize.call(e)}}},u=function(e){var t=s.config[e];return t||r.error(e?"The table instance with ID '"+e+"' not found":"ID argument required"),t||null},y=function(e,a,l,n){var r=this.config||{};r.escape&&(a=o.escape(a));var c=e.templet?function(){return"function"==typeof e.templet?e.templet(l):i(t(e.templet).html()||String(a)).render(l)}():a;return n?t("
        "+c+"
        ").text():c},h="table",f=".layui-table",p="layui-hide",v="layui-none",m="layui-table-view",g=".layui-table-tool",b=".layui-table-box",x=".layui-table-init",k=".layui-table-header",C=".layui-table-body",w=".layui-table-main",T=".layui-table-fixed",N=".layui-table-fixed-l",L=".layui-table-fixed-r",_=".layui-table-total",S=".layui-table-page",A=".layui-table-sort",R="layui-table-edit",W="layui-table-hover",z=function(e){var t='{{#if(item2.colspan){}} colspan="{{item2.colspan}}"{{#} if(item2.rowspan){}} rowspan="{{item2.rowspan}}"{{#}}}';return e=e||{},['',"","{{# layui.each(d.data.cols, function(i1, item1){ }}","","{{# layui.each(item1, function(i2, item2){ }}",'{{# if(item2.fixed && item2.fixed !== "right"){ left = true; } }}','{{# if(item2.fixed === "right"){ right = true; } }}',function(){return e.fixed&&"right"!==e.fixed?'{{# if(item2.fixed && item2.fixed !== "right"){ }}':"right"===e.fixed?'{{# if(item2.fixed === "right"){ }}':""}(),"{{# var isSort = !(item2.colGroup) && item2.sort; }}",'",e.fixed?"{{# }; }}":"","{{# }); }}","","{{# }); }}","","
        ','
        ','{{# if(item2.type === "checkbox"){ }}','',"{{# } else { }}",'{{item2.title||""}}',"{{# if(isSort){ }}",'',"{{# } }}","{{# } }}","
        ","
        "].join("")},E=['',"","
        "].join(""),j=['
        ',"{{# if(d.data.toolbar){ }}",'
        ','
        ','
        ',"
        ","{{# } }}",'
        ',"{{# if(d.data.loading){ }}",'
        ','',"
        ","{{# } }}","{{# var left, right; }}",'
        ',z(),"
        ",'
        ',E,"
        ","{{# if(left){ }}",'
        ','
        ',z({fixed:!0}),"
        ",'
        ',E,"
        ","
        ","{{# }; }}","{{# if(right){ }}",'
        ','
        ',z({fixed:"right"}),'
        ',"
        ",'
        ',E,"
        ","
        ","{{# }; }}","
        ","{{# if(d.data.totalRow){ }}",'
        ','','',"
        ","
        ","{{# } }}","{{# if(d.data.page){ }}",'
        ','
        ',"
        ","{{# } }}","","
        "].join(""),F=t(window),I=t(document),H=function(e){var i=this;i.index=++d.index,i.config=t.extend({},i.config,d.config,e),i.render()};H.prototype.config={limit:10,loading:!0,cellMinWidth:60,defaultToolbar:["filter","exports","print"],autoSort:!0,text:{none:"\u65e0\u6570\u636e"}},H.prototype.render=function(){var e=this,a=e.config;if(a.elem=t(a.elem),a.where=a.where||{},a.id=a.id||a.elem.attr("id")||e.index,a.request=t.extend({pageName:"page",limitName:"limit"},a.request),a.response=t.extend({statusName:"code",statusCode:0,msgName:"msg",dataName:"data",totalRowName:"totalRow",countName:"count"},a.response),"object"==typeof a.page&&(a.limit=a.page.limit||a.limit,a.limits=a.page.limits||a.limits,e.page=a.page.curr=a.page.curr||1,delete a.page.elem,delete a.page.jump),!a.elem[0])return e;a.height&&/^full-\d+$/.test(a.height)&&(e.fullHeightGap=a.height.split("-")[1],a.height=F.height()-e.fullHeightGap),e.setInit();var l=a.elem,n=l.next("."+m),o=e.elem=t(i(j).render({VIEW_CLASS:m,data:a,index:e.index}));if(a.index=e.index,e.key=a.id||a.index,n[0]&&n.remove(),l.after(o),e.layTool=o.find(g),e.layBox=o.find(b),e.layHeader=o.find(k),e.layMain=o.find(w),e.layBody=o.find(C),e.layFixed=o.find(T),e.layFixLeft=o.find(N),e.layFixRight=o.find(L),e.layTotal=o.find(_),e.layPage=o.find(S),e.renderToolbar(),e.fullSize(),a.cols.length>1){var r=e.layFixed.find(k).find("th");r.height(e.layHeader.height()-1-parseFloat(r.css("padding-top"))-parseFloat(r.css("padding-bottom")))}e.pullData(e.page),e.events()},H.prototype.initOpts=function(e){var t=this,i=(t.config,{checkbox:48,radio:48,space:15,numbers:40});e.checkbox&&(e.type="checkbox"),e.space&&(e.type="space"),e.type||(e.type="normal"),"normal"!==e.type&&(e.unresize=!0,e.width=e.width||i[e.type])},H.prototype.setInit=function(e){var t=this,i=t.config;return i.clientWidth=i.width||function(){var e=function(t){var a,l;t=t||i.elem.parent(),a=t.width();try{l="none"===t.css("display")}catch(n){}return!t[0]||a&&!l?a:e(t.parent())};return e()}(),"width"===e?i.clientWidth:void layui.each(i.cols,function(e,a){layui.each(a,function(l,n){if(!n)return void a.splice(l,1);if(n.key=e+"-"+l,n.hide=n.hide||!1,n.colGroup||n.colspan>1){var o=0;layui.each(i.cols[e+1],function(t,i){i.HAS_PARENT||o>1&&o==n.colspan||(i.HAS_PARENT=!0,i.parentKey=e+"-"+l,o+=parseInt(i.colspan>1?i.colspan:1))}),n.colGroup=!0}t.initOpts(n)})})},H.prototype.renderToolbar=function(){var e=this,a=e.config,l=['
        ','
        ','
        '].join(""),n=e.layTool.find(".layui-table-tool-temp");if("default"===a.toolbar)n.html(l);else if("string"==typeof a.toolbar){var o=t(a.toolbar).html()||"";o&&n.html(i(o).render(a))}var r={filter:{title:"\u7b5b\u9009\u5217",layEvent:"LAYTABLE_COLS",icon:"layui-icon-cols"},exports:{title:"\u5bfc\u51fa",layEvent:"LAYTABLE_EXPORT",icon:"layui-icon-export"},print:{title:"\u6253\u5370",layEvent:"LAYTABLE_PRINT",icon:"layui-icon-print"}},c=[];"object"==typeof a.defaultToolbar&&layui.each(a.defaultToolbar,function(e,t){var i="string"==typeof t?r[t]:t;i&&c.push('
        ')}),e.layTool.find(".layui-table-tool-self").html(c.join(""))},H.prototype.setParentCol=function(e,t){var i=this,a=i.config,l=i.layHeader.find('th[data-key="'+a.index+"-"+t+'"]'),n=parseInt(l.attr("colspan"))||0;if(l[0]){var o=t.split("-"),r=a.cols[o[0]][o[1]];e?n--:n++,l.attr("colspan",n),l[n<1?"addClass":"removeClass"](p),r.colspan=n,r.hide=n<1;var c=l.data("parentkey");c&&i.setParentCol(e,c)}},H.prototype.setColsPatch=function(){var e=this,t=e.config;layui.each(t.cols,function(t,i){layui.each(i,function(t,i){i.hide&&e.setParentCol(i.hide,i.parentKey)})})},H.prototype.setColsWidth=function(){var e=this,t=e.config,i=0,a=0,l=0,n=0,o=e.setInit("width");e.eachCols(function(e,t){t.hide||i++}),o=o-function(){return"line"===t.skin||"nob"===t.skin?2:i+1}()-e.getScrollWidth(e.layMain[0])-1;var r=function(e){layui.each(t.cols,function(i,r){layui.each(r,function(i,c){var d=0,s=c.minWidth||t.cellMinWidth;return c?void(c.colGroup||c.hide||(e?l&&ln&&a&&(l=(o-n)/a)};r(),r(!0),e.autoColNums=a,e.eachCols(function(i,a){var n=a.minWidth||t.cellMinWidth;a.colGroup||a.hide||(0===a.width?e.getCssRule(t.index+"-"+a.key,function(e){e.style.width=Math.floor(l>=n?l:n)+"px"}):/\d+%$/.test(a.width)&&e.getCssRule(t.index+"-"+a.key,function(e){e.style.width=Math.floor(parseFloat(a.width)/100*o)+"px"}))});var c=e.layMain.width()-e.getScrollWidth(e.layMain[0])-e.layMain.children("table").outerWidth();if(e.autoColNums&&c>=-i&&c<=i){var d=function(t){var i;return t=t||e.layHeader.eq(0).find("thead th:last-child"),i=t.data("field"),!i&&t.prev()[0]?d(t.prev()):t},s=d(),u=s.data("key");e.getCssRule(u,function(t){var i=t.style.width||s.outerWidth();t.style.width=parseFloat(i)+c+"px",e.layMain.height()-e.layMain.prop("clientHeight")>0&&(t.style.width=parseFloat(t.style.width)-1+"px")})}e.loading(!0)},H.prototype.resize=function(){var e=this;e.fullSize(),e.setColsWidth(),e.scrollPatch()},H.prototype.reload=function(e,i){var a=this;e=e||{},delete a.haveInit,layui.each(e,function(e,t){"array"===layui._typeof(t)&&delete a.config[e]}),a.config=t.extend(i,{},a.config,e),a.render()},H.prototype.errorView=function(e){var i=this,a=i.layMain.find("."+v),l=t('
        '+(e||"Error")+"
        ");a[0]&&(i.layNone.remove(),a.remove()),i.layFixed.addClass(p),i.layMain.find("tbody").html(""),i.layMain.append(i.layNone=l),d.cache[i.key]=[]},H.prototype.page=1,H.prototype.pullData=function(e){var i=this,a=i.config,l=a.request,n=a.response,o=function(){"object"==typeof a.initSort&&i.sort(a.initSort.field,a.initSort.type)};if(i.startTime=(new Date).getTime(),a.url){var r={};r[l.pageName]=e,r[l.limitName]=a.limit;var c=t.extend(r,a.where);a.contentType&&0==a.contentType.indexOf("application/json")&&(c=JSON.stringify(c)),i.loading(),t.ajax({type:a.method||"get",url:a.url,contentType:a.contentType,data:c,dataType:"json",headers:a.headers||{},success:function(t){"function"==typeof a.parseData&&(t=a.parseData(t)||t),t[n.statusName]!=n.statusCode?(i.renderForm(),i.errorView(t[n.msgName]||'\u8fd4\u56de\u7684\u6570\u636e\u4e0d\u7b26\u5408\u89c4\u8303\uff0c\u6b63\u786e\u7684\u6210\u529f\u72b6\u6001\u7801\u5e94\u4e3a\uff1a"'+n.statusName+'": '+n.statusCode)):(i.renderData(t,e,t[n.countName]),o(),a.time=(new Date).getTime()-i.startTime+" ms"),i.setColsWidth(),"function"==typeof a.done&&a.done(t,e,t[n.countName])},error:function(e,t){i.errorView("\u8bf7\u6c42\u5f02\u5e38\uff0c\u9519\u8bef\u63d0\u793a\uff1a"+t),i.renderForm(),i.setColsWidth(),"function"==typeof a.error&&a.error(e,t)}})}else if("array"===layui._typeof(a.data)){var d={},s=e*a.limit-a.limit;d[n.dataName]=a.data.concat().splice(s,a.limit),d[n.countName]=a.data.length,"object"==typeof a.totalRow&&(d[n.totalRowName]=t.extend({},a.totalRow)),i.renderData(d,e,d[n.countName]),o(),i.setColsWidth(),"function"==typeof a.done&&a.done(d,e,d[n.countName])}},H.prototype.eachCols=function(e){var t=this;return d.eachCols(null,e,t.config.cols),t},H.prototype.renderData=function(e,n,o,r){var c=this,s=c.config,u=e[s.response.dataName]||[],h=e[s.response.totalRowName],f=[],m=[],g=[],b=function(){var e;return!r&&c.sortKey?c.sort(c.sortKey.field,c.sortKey.sort,!0):(layui.each(u,function(a,l){var o=[],u=[],h=[],v=a+s.limit*(n-1)+1;"array"===layui._typeof(l)&&0===l.length||(r||(l[d.config.indexName]=a),c.eachCols(function(n,r){var f=r.field||n,m=s.index+"-"+r.key,g=l[f];if(void 0!==g&&null!==g||(g=""),!r.colGroup){var b=['','
        '+function(){var n=t.extend(!0,{LAY_INDEX:v,LAY_COL:r},l),o=d.config.checkName;switch(r.type){case"checkbox":return'";case"radio":return n[o]&&(e=a),'';case"numbers":return v}return r.toolbar?i(t(r.toolbar).html()||"").render(n):y.call(c,r,g,n)}(),"
        "].join("");o.push(b),r.fixed&&"right"!==r.fixed&&u.push(b),"right"===r.fixed&&h.push(b)}}),f.push(''+o.join("")+""),m.push(''+u.join("")+""),g.push(''+h.join("")+""))}),c.layBody.scrollTop(0),c.layMain.find("."+v).remove(),c.layMain.find("tbody").html(f.join("")),c.layFixLeft.find("tbody").html(m.join("")),c.layFixRight.find("tbody").html(g.join("")),c.renderForm(),"number"==typeof e&&c.setThisRowChecked(e),c.syncCheckAll(),c.haveInit?c.scrollPatch():setTimeout(function(){c.scrollPatch()},50),c.haveInit=!0,l.close(c.tipsIndex),s.HAS_SET_COLS_PATCH||c.setColsPatch(),void(s.HAS_SET_COLS_PATCH=!0))};return d.cache[c.key]=u,c.layPage[0==o||0===u.length&&1==n?"addClass":"removeClass"](p),0===u.length?(c.renderForm(),c.errorView(s.text.none)):(c.layFixed.removeClass(p),r?b():(b(),c.renderTotal(u,h),void(s.page&&(s.page=t.extend({elem:"layui-table-page"+s.index,count:o,limit:s.limit,limits:s.limits||[10,20,30,40,50,60,70,80,90],groups:3,layout:["prev","page","next","skip","count","limit"],prev:'',next:'',jump:function(e,t){t||(c.page=e.curr,s.limit=e.limit,c.pullData(e.curr))}},s.page),s.page.count=o,a.render(s.page)))))},H.prototype.renderTotal=function(e,a){var l=this,n=l.config,o={};if(n.totalRow){layui.each(e,function(e,t){"array"===layui._typeof(t)&&0===t.length||l.eachCols(function(e,i){var a=i.field||e,l=t[a];i.totalRow&&(o[a]=(o[a]||0)+(parseFloat(l)||0))})}),l.dataTotal={};var r=[];l.eachCols(function(e,c){var d=c.field||e,s=function(){var e,t=c.totalRowText||"",i=parseFloat(o[d]).toFixed(2),n={};return n[d]=i,e=c.totalRow?y.call(l,c,i,n)||t:t,a?a[c.field]||e:e}(),u=['','
        '+function(){var e=c.totalRow||n.totalRow;return"string"==typeof e?i(e).render(t.extend({TOTAL_NUMS:s},c)):s}(),"
        "].join("");c.field&&(l.dataTotal[d]=s),r.push(u)}),l.layTotal.find("tbody").html(""+r.join("")+"")}},H.prototype.getColElem=function(e,t){var i=this,a=i.config;return e.eq(0).find(".laytable-cell-"+(a.index+"-"+t)+":eq(0)")},H.prototype.renderForm=function(e){n.render(e,"LAY-table-"+this.index)},H.prototype.setThisRowChecked=function(e){var t=this,i=(t.config,"layui-table-click"),a=t.layBody.find('tr[data-index="'+e+'"]');a.addClass(i).siblings("tr").removeClass(i)},H.prototype.sort=function(e,i,a,l){var n,o,c=this,s={},u=c.config,y=u.elem.attr("lay-filter"),f=d.cache[c.key];"string"==typeof e&&(n=e,c.layHeader.find("th").each(function(i,a){var l=t(this),o=l.data("field");if(o===e)return e=l,n=o,!1}));try{var n=n||e.data("field"),p=e.data("key");if(c.sortKey&&!a&&n===c.sortKey.field&&i===c.sortKey.sort)return;var v=c.layHeader.find("th .laytable-cell-"+p).find(A);c.layHeader.find("th").find(A).removeAttr("lay-sort"),v.attr("lay-sort",i||null),c.layFixed.find("th")}catch(m){r.error("Table modules: sort field '"+n+"' not matched")}c.sortKey={field:n,sort:i},u.autoSort&&("asc"===i?o=layui.sort(f,n):"desc"===i?o=layui.sort(f,n,!0):(o=layui.sort(f,d.config.indexName),delete c.sortKey)),s[u.response.dataName]=o||f,c.renderData(s,c.page,c.count,!0),l&&layui.event.call(e,h,"sort("+y+")",{field:n,type:i})},H.prototype.loading=function(e){var i=this,a=i.config;a.loading&&(e?(i.layInit&&i.layInit.remove(),delete i.layInit,i.layBox.find(x).remove()):(i.layInit=t(['
        ','',"
        "].join("")),i.layBox.append(i.layInit)))},H.prototype.setCheckData=function(e,t){var i=this,a=i.config,l=d.cache[i.key];l[e]&&"array"!==layui._typeof(l[e])&&(l[e][a.checkName]=t)},H.prototype.syncCheckAll=function(){var e=this,t=e.config,i=e.layHeader.find('input[name="layTableCheckbox"]'),a=function(i){return e.eachCols(function(e,a){"checkbox"===a.type&&(a[t.checkName]=i)}),i};i[0]&&(d.checkStatus(e.key).isAll?(i[0].checked||(i.prop("checked",!0),e.renderForm("checkbox")),a(!0)):(i[0].checked&&(i.prop("checked",!1),e.renderForm("checkbox")),a(!1)))},H.prototype.getCssRule=function(e,t){var i=this,a=i.elem.find("style")[0],l=a.sheet||a.styleSheet||{},n=l.cssRules||l.rules;layui.each(n,function(i,a){if(a.selectorText===".laytable-cell-"+e)return t(a),!0})},H.prototype.fullSize=function(){var e,t=this,i=t.config,a=i.height;t.fullHeightGap&&(a=F.height()-t.fullHeightGap,a<135&&(a=135),t.elem.css("height",a)),a&&(e=parseFloat(a)-(t.layHeader.outerHeight()||38),i.toolbar&&(e-=t.layTool.outerHeight()||50),i.totalRow&&(e-=t.layTotal.outerHeight()||40),i.page&&(e-=t.layPage.outerHeight()||41),t.layMain.css("height",e-2))},H.prototype.getScrollWidth=function(e){var t=0;return e?t=e.offsetWidth-e.clientWidth:(e=document.createElement("div"),e.style.width="100px",e.style.height="100px",e.style.overflowY="scroll",document.body.appendChild(e),t=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),t},H.prototype.scrollPatch=function(){var e=this,i=e.layMain.children("table"),a=e.layMain.width()-e.layMain.prop("clientWidth"),l=e.layMain.height()-e.layMain.prop("clientHeight"),n=(e.getScrollWidth(e.layMain[0]),i.outerWidth()-e.layMain.width()),o=function(e){if(a&&l){if(e=e.eq(0),!e.find(".layui-table-patch")[0]){var i=t('
        ');i.find("div").css({width:a}),e.find("tr").append(i)}}else e.find(".layui-table-patch").remove()};o(e.layHeader),o(e.layTotal);var r=e.layMain.height(),c=r-l;e.layFixed.find(C).css("height",i.height()>=c?c:"auto"),e.layFixRight[n>0?"removeClass":"addClass"](p),e.layFixRight.css("right",a-1)},H.prototype.events=function(){var e,i=this,a=i.config,o=t("body"),r={},s=i.layHeader.find("th"),u=".layui-table-cell",f=a.elem.attr("lay-filter");i.layTool.on("click","*[lay-event]",function(e){var o=t(this),r=o.attr("lay-event"),s=function(e){var l=t(e.list),n=t('
          ');n.html(l),a.height&&n.css("max-height",a.height-(i.layTool.outerHeight()||50)),o.find(".layui-table-tool-panel")[0]||o.append(n),i.renderForm(),n.on("click",function(e){layui.stope(e)}),e.done&&e.done(n,l)};switch(layui.stope(e),I.trigger("table.tool.panel.remove"),l.close(i.tipsIndex),r){case"LAYTABLE_COLS":s({list:function(){var e=[];return i.eachCols(function(t,i){i.field&&"normal"==i.type&&e.push('
        • ')}),e.join("")}(),done:function(){n.on("checkbox(LAY_TABLE_TOOL_COLS)",function(e){var l=t(e.elem),n=this.checked,o=l.data("key"),r=l.data("parentkey");layui.each(a.cols,function(e,t){layui.each(t,function(t,l){if(e+"-"+t===o){var c=l.hide;l.hide=!n,i.elem.find('*[data-key="'+a.index+"-"+o+'"]')[n?"removeClass":"addClass"](p),c!=l.hide&&i.setParentCol(!n,r),i.resize()}})})})}});break;case"LAYTABLE_EXPORT":c.ie?l.tips("\u5bfc\u51fa\u529f\u80fd\u4e0d\u652f\u6301 IE\uff0c\u8bf7\u7528 Chrome \u7b49\u9ad8\u7ea7\u6d4f\u89c8\u5668\u5bfc\u51fa",this,{tips:3}):s({list:function(){return['
        • \u5bfc\u51fa\u5230 Csv \u6587\u4ef6
        • ','
        • \u5bfc\u51fa\u5230 Excel \u6587\u4ef6
        • '].join("")}(),done:function(e,l){l.on("click",function(){var e=t(this).data("type");d.exportFile.call(i,a.id,null,e)})}});break;case"LAYTABLE_PRINT":var u=window.open("\u6253\u5370\u7a97\u53e3","_blank"),y=[""].join(""),v=t(i.layHeader.html());v.append(i.layMain.find("table").html()),v.append(i.layTotal.find("table").html()),v.find("th.layui-table-patch").remove(),v.find(".layui-table-col-special").remove(),u.document.write(y+v.prop("outerHTML")),u.document.close(),u.print(),u.close()}layui.event.call(this,h,"toolbar("+f+")",t.extend({event:r,config:a},{}))}),s.on("mousemove",function(e){var i=t(this),a=i.offset().left,l=e.clientX-a;i.data("unresize")||r.resizeStart||(r.allowResize=i.width()-l<=10,o.css("cursor",r.allowResize?"col-resize":""))}).on("mouseleave",function(){t(this);r.resizeStart||o.css("cursor","")}).on("mousedown",function(e){var l=t(this);if(r.allowResize){var n=l.data("key");e.preventDefault(),r.resizeStart=!0,r.offset=[e.clientX,e.clientY],i.getCssRule(n,function(e){var t=e.style.width||l.outerWidth();r.rule=e,r.ruleWidth=parseFloat(t),r.minWidth=l.data("minwidth")||a.cellMinWidth})}}),I.on("mousemove",function(t){if(r.resizeStart){if(t.preventDefault(),r.rule){var a=r.ruleWidth+t.clientX-r.offset[0];a');return n[0].value=i.data("content")||l.text(),i.find("."+R)[0]||i.append(n),n.focus(),void layui.stope(e)}}).on("mouseenter","td",function(){b.call(this)}).on("mouseleave","td",function(){b.call(this,"hide")});var g="layui-table-grid-down",b=function(e){var i=t(this),a=i.children(u);if(!i.data("off"))if(e)i.find(".layui-table-grid-down").remove();else if(a.prop("scrollWidth")>a.outerWidth()){if(a.find("."+g)[0])return;i.append('
          ')}};i.layBody.on("click","."+g,function(e){var n=t(this),o=n.parent(),r=o.children(u);i.tipsIndex=l.tips(['
          ',r.html(),"
          ",''].join(""),r[0],{tips:[3,""],time:-1,anim:-1,maxWidth:c.ios||c.android?300:i.elem.width()/2,isOutAnim:!1,skin:"layui-table-tips",success:function(e,t){e.find(".layui-table-tips-c").on("click",function(){l.close(t)})}}),layui.stope(e)}),i.layBody.on("click","*[lay-event]",function(){var e=t(this),a=e.parents("tr").eq(0).data("index");layui.event.call(this,h,"tool("+f+")",v.call(this,{event:e.attr("lay-event")})),i.setThisRowChecked(a)}),i.layMain.on("scroll",function(){var e=t(this),a=e.scrollLeft(),n=e.scrollTop();i.layHeader.scrollLeft(a),i.layTotal.scrollLeft(a),i.layFixed.find(C).scrollTop(n),l.close(i.tipsIndex)}),F.on("resize",function(){i.resize()})},function(){I.on("click",function(){I.trigger("table.remove.tool.panel")}),I.on("table.remove.tool.panel",function(){t(".layui-table-tool-panel").remove()})}(),d.init=function(e,i){i=i||{};var a=this,l=t(e?'table[lay-filter="'+e+'"]':f+"[lay-data]"),n="Table element property lay-data configuration item has a syntax error: ";return l.each(function(){var a=t(this),l=a.attr("lay-data");try{l=new Function("return "+l)()}catch(o){r.error(n+l,"error")}var c=[],s=t.extend({elem:this,cols:[],data:[],skin:a.attr("lay-skin"),size:a.attr("lay-size"),even:"string"==typeof a.attr("lay-even")},d.config,i,l);e&&a.hide(),a.find("thead>tr").each(function(e){s.cols[e]=[],t(this).children().each(function(i){var a=t(this),l=a.attr("lay-data");try{l=new Function("return "+l)()}catch(o){return r.error(n+l)}var d=t.extend({title:a.text(),colspan:a.attr("colspan")||0,rowspan:a.attr("rowspan")||0},l);d.colspan<2&&c.push(d),s.cols[e].push(d)})}),a.find("tbody>tr").each(function(e){var i=t(this),a={};i.children("td").each(function(e,i){var l=t(this),n=l.data("field");if(n)return a[n]=l.html()}),layui.each(c,function(e,t){var l=i.children("td").eq(e);a[t.field]=l.html()}),s.data[e]=a}),d.render(s)}),a},s.that={},s.config={},d.eachCols=function(e,i,a){var l=s.config[e]||{},n=[],o=0;a=t.extend(!0,[],a||l.cols),layui.each(a,function(e,t){layui.each(t,function(t,i){if(i.colGroup){var l=0;o++,i.CHILD_COLS=[],layui.each(a[e+1],function(e,t){t.PARENT_COL_INDEX||l>1&&l==i.colspan||(t.PARENT_COL_INDEX=o,i.CHILD_COLS.push(t),l+=parseInt(t.colspan>1?t.colspan:1))})}i.PARENT_COL_INDEX||n.push(i)})});var r=function(e){layui.each(e||n,function(e,t){return t.CHILD_COLS?r(t.CHILD_COLS):void("function"==typeof i&&i(e,t))})};r()},d.checkStatus=function(e){var t=0,i=0,a=[],l=d.cache[e]||[];return layui.each(l,function(e,l){return"array"===layui._typeof(l)?void i++:void(l[d.config.checkName]&&(t++,a.push(d.clearCacheKey(l))))}),{data:a,isAll:!!l.length&&t===l.length-i}},d.getData=function(e){var t=[],i=d.cache[e]||[];return layui.each(i,function(e,i){"array"!==layui._typeof(i)&&t.push(d.clearCacheKey(i))}),t},d.exportFile=function(e,t,i){var a=this;t=t||d.clearCacheKey(d.cache[e]),i=i||"csv";var l=s.that[e],n=s.config[e]||{},o={csv:"text/csv",xls:"application/vnd.ms-excel"}[i],u=document.createElement("a");return c.ie?r.error("IE_NOT_SUPPORT_EXPORTS"):(u.href="data:"+o+";charset=utf-8,\ufeff"+encodeURIComponent(function(){var i=[],n=[],o=[];return layui.each(t,function(t,a){var o=[];"object"==typeof e?(layui.each(e,function(e,a){0==t&&i.push(a||"")}),layui.each(d.clearCacheKey(a),function(e,t){o.push('"'+(t||"")+'"')})):d.eachCols(e,function(e,n){if(n.field&&"normal"==n.type&&!n.hide){var r=a[n.field];void 0!==r&&null!==r||(r=""),0==t&&i.push(n.title||""),o.push('"'+y.call(l,n,r,a,"text")+'"')}}),n.push(o.join(","))}),layui.each(a.dataTotal,function(e,t){o.push(t)}),i.join(",")+"\r\n"+n.join("\r\n")+"\r\n"+o.join(",")}()),u.download=(n.title||"table_"+(n.index||""))+"."+i,document.body.appendChild(u),u.click(),void document.body.removeChild(u))},d.resize=function(e){if(e){var t=u(e);if(!t)return;s.that[e].resize()}else layui.each(s.that,function(){ -this.resize()})},d.reload=function(e,t,i){var a=u(e);if(a){var l=s.that[e];return l.reload(t,i),s.call(l)}},d.render=function(e){var t=new H(e);return s.call(t)},d.clearCacheKey=function(e){return e=t.extend({},e),delete e[d.config.checkName],delete e[d.config.indexName],e},t(function(){d.init()}),e(h,d)});layui.define("jquery",function(e){"use strict";var i=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var n=this;return n.config=i.extend({},n.config,e),n},on:function(e,i){return layui.onevent.call(this,t,e,i)}}),t="carousel",a="layui-this",l=">*[carousel-item]>*",o="layui-carousel-left",r="layui-carousel-right",d="layui-carousel-prev",s="layui-carousel-next",u="layui-carousel-arrow",c="layui-carousel-ind",m=function(e){var t=this;t.config=i.extend({},t.config,n.config,e),t.render()};m.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},m.prototype.render=function(){var e=this,n=e.config;n.elem=i(n.elem),n.elem[0]&&(e.elemItem=n.elem.find(l),n.index<0&&(n.index=0),n.index>=e.elemItem.length&&(n.index=e.elemItem.length-1),n.interval<800&&(n.interval=800),n.full?n.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):n.elem.css({width:n.width,height:n.height}),n.elem.attr("lay-anim",n.anim),e.elemItem.eq(n.index).addClass(a),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},m.prototype.reload=function(e){var n=this;clearInterval(n.timer),n.config=i.extend({},n.config,e),n.render()},m.prototype.prevIndex=function(){var e=this,i=e.config,n=i.index-1;return n<0&&(n=e.elemItem.length-1),n},m.prototype.nextIndex=function(){var e=this,i=e.config,n=i.index+1;return n>=e.elemItem.length&&(n=0),n},m.prototype.addIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index+e,n.index>=i.elemItem.length&&(n.index=0)},m.prototype.subIndex=function(e){var i=this,n=i.config;e=e||1,n.index=n.index-e,n.index<0&&(n.index=i.elemItem.length-1)},m.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(clearInterval(e.timer),e.timer=setInterval(function(){e.slide()},i.interval))},m.prototype.arrow=function(){var e=this,n=e.config,t=i(['",'"].join(""));n.elem.attr("lay-arrow",n.arrow),n.elem.find("."+u)[0]&&n.elem.find("."+u).remove(),n.elem.append(t),t.on("click",function(){var n=i(this),t=n.attr("lay-type");e.slide(t)})},m.prototype.indicator=function(){var e=this,n=e.config,t=e.elemInd=i(['
            ',function(){var i=[];return layui.each(e.elemItem,function(e){i.push("")}),i.join("")}(),"
          "].join(""));n.elem.attr("lay-indicator",n.indicator),n.elem.find("."+c)[0]&&n.elem.find("."+c).remove(),n.elem.append(t),"updown"===n.anim&&t.css("margin-top",-(t.height()/2)),t.find("li").on("hover"===n.trigger?"mouseover":n.trigger,function(){var t=i(this),a=t.index();a>n.index?e.slide("add",a-n.index):al.length&&(l.value=l.length),parseInt(l.value)!==l.value&&(l.half||(l.value=Math.ceil(l.value)-l.value<.5?Math.ceil(l.value):Math.floor(l.value)));for(var n='
            ",s=1;s<=l.length;s++){var r='
          • ";l.half&&parseInt(l.value)!==l.value&&s==Math.ceil(l.value)?n=n+'
          • ":n+=r}n+="
          "+(l.text?''+l.value+"\u661f":"")+"";var c=l.elem,f=c.next("."+t);f[0]&&f.remove(),e.elemTemp=a(n),l.span=e.elemTemp.next("span"),l.setText&&l.setText(l.value),c.html(e.elemTemp),c.addClass("layui-inline"),l.readonly||e.action()},v.prototype.setvalue=function(e){var a=this,l=a.config;l.value=e,a.render()},v.prototype.action=function(){var e=this,l=e.config,i=e.elemTemp,n=i.find("i").width();i.children("li").each(function(e){var t=e+1,v=a(this);v.on("click",function(e){if(l.value=t,l.half){var o=e.pageX-a(this).offset().left;o<=n/2&&(l.value=l.value-.5)}l.text&&i.next("span").text(l.value+"\u661f"),l.choose&&l.choose(l.value),l.setText&&l.setText(l.value)}),v.on("mousemove",function(e){if(i.find("i").each(function(){a(this).addClass(o).removeClass(r)}),i.find("i:lt("+t+")").each(function(){a(this).addClass(u).removeClass(f)}),l.half){var c=e.pageX-a(this).offset().left;c<=n/2&&v.children("i").addClass(s).removeClass(u)}}),v.on("mouseleave",function(){i.find("i").each(function(){a(this).addClass(o).removeClass(r)}),i.find("i:lt("+Math.floor(l.value)+")").each(function(){a(this).addClass(u).removeClass(f)}),l.half&&parseInt(l.value)!==l.value&&i.children("li:eq("+Math.floor(l.value)+")").children("i").addClass(s).removeClass(c)})})},v.prototype.events=function(){var e=this;e.config},l.render=function(e){var a=new v(e);return i.call(a)},e(n,l)});layui.define("jquery",function(e){"use strict";var l=layui.$,o=function(e){},t='';o.prototype.load=function(e){var o,i,n,r,a=this,c=0;e=e||{};var m=l(e.elem);if(m[0]){var f=l(e.scrollElem||document),u=e.mb||50,s=!("isAuto"in e)||e.isAuto,y=e.end||"\u6ca1\u6709\u66f4\u591a\u4e86",v=e.scrollElem&&e.scrollElem!==document,d="\u52a0\u8f7d\u66f4\u591a",h=l('");m.find(".layui-flow-more")[0]||m.append(h);var p=function(e,t){e=l(e),h.before(e),t=0==t||null,t?h.html(y):h.find("a").html(d),i=t,o=null,n&&n()},g=function(){o=!0,h.find("a").html(t),"function"==typeof e.done&&e.done(++c,p)};if(g(),h.find("a").on("click",function(){l(this);i||o||g()}),e.isLazyimg)var n=a.lazyimg({elem:e.elem+" img",scrollElem:e.scrollElem});return s?(f.on("scroll",function(){var e=l(this),t=e.scrollTop();r&&clearTimeout(r),!i&&m.width()&&(r=setTimeout(function(){var i=v?e.height():l(window).height(),n=v?e.prop("scrollHeight"):document.documentElement.scrollHeight;n-t-i<=u&&(o||g())},100))}),a):a}},o.prototype.lazyimg=function(e){var o,t=this,i=0;e=e||{};var n=l(e.scrollElem||document),r=e.elem||"img",a=e.scrollElem&&e.scrollElem!==document,c=function(e,l){var o=n.scrollTop(),r=o+l,c=a?function(){return e.offset().top-n.offset().top+o}():e.offset().top;if(c>=o&&c<=r&&e.attr("lay-src")){var f=e.attr("lay-src");layui.img(f,function(){var l=t.lazyimg.elem.eq(i);e.attr("src",f).removeAttr("lay-src"),l[0]&&m(l),i++},function(){t.lazyimg.elem.eq(i);e.removeAttr("lay-src")})}},m=function(e,o){var m=a?(o||n).height():l(window).height(),f=n.scrollTop(),u=f+m;if(t.lazyimg.elem=l(r),e)c(e,m);else for(var s=0;su)break}};if(m(),!o){var f;n.on("scroll",function(){var e=l(this);f&&clearTimeout(f),f=setTimeout(function(){m(null,e)},50)}),o=!0}return m},e("flow",new o)});layui.define(["layer","form"],function(t){"use strict";var e=layui.$,i=layui.layer,a=layui.form,l=(layui.hint(),layui.device()),n="layedit",o="layui-show",r="layui-disabled",c=function(){var t=this;t.index=0,t.config={tool:["strong","italic","underline","del","|","left","center","right","|","link","unlink","face","image"],hideTool:[],height:280}};c.prototype.set=function(t){var i=this;return e.extend(!0,i.config,t),i},c.prototype.on=function(t,e){return layui.onevent(n,t,e)},c.prototype.build=function(t,i){i=i||{};var a=this,n=a.config,r="layui-layedit",c=e("string"==typeof t?"#"+t:t),u="LAY_layedit_"+ ++a.index,d=c.next("."+r),y=e.extend({},n,i),f=function(){var t=[],e={};return layui.each(y.hideTool,function(t,i){e[i]=!0}),layui.each(y.tool,function(i,a){C[a]&&!e[a]&&t.push(C[a])}),t.join("")}(),m=e(['
          ','
          '+f+"
          ",'
          ','',"
          ","
          "].join(""));return l.ie&&l.ie<8?c.removeClass("layui-hide").addClass(o):(d[0]&&d.remove(),s.call(a,m,c[0],y),c.addClass("layui-hide").after(m),a.index)},c.prototype.getContent=function(t){var e=u(t);if(e[0])return d(e[0].document.body.innerHTML)},c.prototype.getText=function(t){var i=u(t);if(i[0])return e(i[0].document.body).text()},c.prototype.setContent=function(t,i,a){var l=u(t);l[0]&&(a?e(l[0].document.body).append(i):e(l[0].document.body).html(i),layedit.sync(t))},c.prototype.sync=function(t){var i=u(t);if(i[0]){var a=e("#"+i[1].attr("textarea"));a.val(d(i[0].document.body.innerHTML))}},c.prototype.getSelection=function(t){var e=u(t);if(e[0]){var i=m(e[0].document);return document.selection?i.text:i.toString()}};var s=function(t,i,a){var l=this,n=t.find("iframe");n.css({height:a.height}).on("load",function(){var o=n.contents(),r=n.prop("contentWindow"),c=o.find("head"),s=e([""].join("")),u=o.find("body");c.append(s),u.attr("contenteditable","true").css({"min-height":a.height}).html(i.value||""),y.apply(l,[r,n,i,a]),g.call(l,r,t,a)})},u=function(t){var i=e("#LAY_layedit_"+t),a=i.prop("contentWindow");return[a,i]},d=function(t){return 8==l.ie&&(t=t.replace(/<.+>/g,function(t){return t.toLowerCase()})),t},y=function(t,a,n,o){var r=t.document,c=e(r.body);c.on("keydown",function(t){var e=t.keyCode;if(13===e){var a=m(r),l=p(a),n=l.parentNode;if("pre"===n.tagName.toLowerCase()){if(t.shiftKey)return;return i.msg("\u8bf7\u6682\u65f6\u7528shift+enter"),!1}r.execCommand("formatBlock",!1,"

          ")}}),e(n).parents("form").on("submit",function(){var t=c.html();8==l.ie&&(t=t.replace(/<.+>/g,function(t){return t.toLowerCase()})),n.value=t}),c.on("paste",function(e){r.execCommand("formatBlock",!1,"

          "),setTimeout(function(){f.call(t,c),n.value=c.html()},100)})},f=function(t){var i=this;i.document;t.find("*[style]").each(function(){var t=this.style.textAlign;this.removeAttribute("style"),e(this).css({"text-align":t||""})}),t.find("table").addClass("layui-table"),t.find("script,link").remove()},m=function(t){return t.selection?t.selection.createRange():t.getSelection().getRangeAt(0)},p=function(t){return t.endContainer||t.parentElement().childNodes[0]},v=function(t,i,a){var l=this.document,n=document.createElement(t);for(var o in i)n.setAttribute(o,i[o]);if(n.removeAttribute("text"),l.selection){var r=a.text||i.text;if("a"===t&&!r)return;r&&(n.innerHTML=r),a.pasteHTML(e(n).prop("outerHTML")),a.select()}else{var r=a.toString()||i.text;if("a"===t&&!r)return;r&&(n.innerHTML=r),a.deleteContents(),a.insertNode(n)}},h=function(t,i){var a=this.document,l="layedit-tool-active",n=p(m(a)),o=function(e){return t.find(".layedit-tool-"+e)};i&&i[i.hasClass(l)?"removeClass":"addClass"](l),t.find(">i").removeClass(l),o("unlink").addClass(r),e(n).parents().each(function(){var t=this.tagName.toLowerCase(),e=this.style.textAlign;"b"!==t&&"strong"!==t||o("b").addClass(l),"i"!==t&&"em"!==t||o("i").addClass(l),"u"===t&&o("u").addClass(l),"strike"===t&&o("d").addClass(l),"p"===t&&("center"===e?o("center").addClass(l):"right"===e?o("right").addClass(l):o("left").addClass(l)),"a"===t&&(o("link").addClass(l),o("unlink").removeClass(r))})},g=function(t,a,l){var n=t.document,o=e(n.body),c={link:function(i){var a=p(i),l=e(a).parent();b.call(o,{href:l.attr("href"),target:l.attr("target")},function(e){var a=l[0];"A"===a.tagName?a.href=e.url:v.call(t,"a",{target:e.target,href:e.url,text:e.url},i)})},unlink:function(t){n.execCommand("unlink")},face:function(e){x.call(this,function(i){v.call(t,"img",{src:i.src,alt:i.alt},e)})},image:function(a){var n=this;layui.use("upload",function(o){var r=l.uploadImage||{};o.render({url:r.url,method:r.type,elem:e(n).find("input")[0],done:function(e){0==e.code?(e.data=e.data||{},v.call(t,"img",{src:e.data.src,alt:e.data.title},a)):i.msg(e.msg||"\u4e0a\u4f20\u5931\u8d25")}})})},code:function(e){k.call(o,function(i){v.call(t,"pre",{text:i.code,"lay-lang":i.lang},e)})},help:function(){i.open({type:2,title:"\u5e2e\u52a9",area:["600px","380px"],shadeClose:!0,shade:.1,skin:"layui-layer-msg",content:["","no"]})}},s=a.find(".layui-layedit-tool"),u=function(){var i=e(this),a=i.attr("layedit-event"),l=i.attr("lay-command");if(!i.hasClass(r)){o.focus();var u=m(n);u.commonAncestorContainer;l?(n.execCommand(l),/justifyLeft|justifyCenter|justifyRight/.test(l)&&n.execCommand("formatBlock",!1,"

          "),setTimeout(function(){o.focus()},10)):c[a]&&c[a].call(this,u),h.call(t,s,i)}},d=/image/;s.find(">i").on("mousedown",function(){var t=e(this),i=t.attr("layedit-event");d.test(i)||u.call(this)}).on("click",function(){var t=e(this),i=t.attr("layedit-event");d.test(i)&&u.call(this)}),o.on("click",function(){h.call(t,s),i.close(x.index)})},b=function(t,e){var l=this,n=i.open({type:1,id:"LAY_layedit_link",area:"350px",shade:.05,shadeClose:!0,moveType:1,title:"\u8d85\u94fe\u63a5",skin:"layui-layer-msg",content:['

            ','
          • ','','
            ','',"
            ","
          • ",'
          • ','','
            ','",'","
            ","
          • ",'
          • ','','',"
          • ","
          "].join(""),success:function(t,n){var o="submit(layedit-link-yes)";a.render("radio"),t.find(".layui-btn-primary").on("click",function(){i.close(n),l.focus()}),a.on(o,function(t){i.close(b.index),e&&e(t.field)})}});b.index=n},x=function(t){var a=function(){var t=["[\u5fae\u7b11]","[\u563b\u563b]","[\u54c8\u54c8]","[\u53ef\u7231]","[\u53ef\u601c]","[\u6316\u9f3b]","[\u5403\u60ca]","[\u5bb3\u7f9e]","[\u6324\u773c]","[\u95ed\u5634]","[\u9119\u89c6]","[\u7231\u4f60]","[\u6cea]","[\u5077\u7b11]","[\u4eb2\u4eb2]","[\u751f\u75c5]","[\u592a\u5f00\u5fc3]","[\u767d\u773c]","[\u53f3\u54fc\u54fc]","[\u5de6\u54fc\u54fc]","[\u5618]","[\u8870]","[\u59d4\u5c48]","[\u5410]","[\u54c8\u6b20]","[\u62b1\u62b1]","[\u6012]","[\u7591\u95ee]","[\u998b\u5634]","[\u62dc\u62dc]","[\u601d\u8003]","[\u6c57]","[\u56f0]","[\u7761]","[\u94b1]","[\u5931\u671b]","[\u9177]","[\u8272]","[\u54fc]","[\u9f13\u638c]","[\u6655]","[\u60b2\u4f24]","[\u6293\u72c2]","[\u9ed1\u7ebf]","[\u9634\u9669]","[\u6012\u9a82]","[\u4e92\u7c89]","[\u5fc3]","[\u4f24\u5fc3]","[\u732a\u5934]","[\u718a\u732b]","[\u5154\u5b50]","[ok]","[\u8036]","[good]","[NO]","[\u8d5e]","[\u6765]","[\u5f31]","[\u8349\u6ce5\u9a6c]","[\u795e\u9a6c]","[\u56e7]","[\u6d6e\u4e91]","[\u7ed9\u529b]","[\u56f4\u89c2]","[\u5a01\u6b66]","[\u5965\u7279\u66fc]","[\u793c\u7269]","[\u949f]","[\u8bdd\u7b52]","[\u8721\u70db]","[\u86cb\u7cd5]"],e={};return layui.each(t,function(t,i){e[i]=layui.cache.dir+"images/face/"+t+".gif"}),e}();return x.hide=x.hide||function(t){"face"!==e(t.target).attr("layedit-event")&&i.close(x.index)},x.index=i.tips(function(){var t=[];return layui.each(a,function(e,i){t.push('
        • '+e+'
        • ')}),'
            '+t.join("")+"
          "}(),this,{tips:1,time:0,skin:"layui-box layui-util-face",maxWidth:500,success:function(l,n){l.css({marginTop:-4,marginLeft:-10}).find(".layui-clear>li").on("click",function(){t&&t({src:a[this.title],alt:this.title}),i.close(n)}),e(document).off("click",x.hide).on("click",x.hide)}})},k=function(t){var e=this,l=i.open({type:1,id:"LAY_layedit_code",area:"550px",shade:.05,shadeClose:!0,moveType:1,title:"\u63d2\u5165\u4ee3\u7801",skin:"layui-layer-msg",content:['
            ','
          • ','','
            ','","
            ","
          • ",'
          • ','','
            ','',"
            ","
          • ",'
          • ','','',"
          • ","
          "].join(""),success:function(l,n){var o="submit(layedit-code-yes)";a.render("select"),l.find(".layui-btn-primary").on("click",function(){i.close(n),e.focus()}),a.on(o,function(e){i.close(k.index),t&&t(e.field)})}});k.index=l},C={html:'',strong:'',italic:'',underline:'',del:'',"|":'',left:'',center:'',right:'',link:'',unlink:'',face:'',image:'',code:'',help:''},L=new c;t(n,L)});layui.define("jquery",function(a){"use strict";var e=layui.$;a("code",function(a){var l=[];a=a||{},a.elem=e(a.elem||".layui-code"),a.lang="lang"in a?a.lang:"code",a.elem.each(function(){l.push(this)}),layui.each(l.reverse(),function(l,i){var t=e(i),c=t.html();(t.attr("lay-encode")||a.encode)&&(c=c.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,""")),t.html('
          1. '+c.replace(/[\r\t\n]+/g,"
          2. ")+"
          "),t.find(">.layui-code-h3")[0]||t.prepend('

          '+(t.attr("lay-title")||a.title||"</>")+''+(t.attr("lay-lang")||a.lang||"")+"

          ");var n=t.find(">.layui-code-ol");t.addClass("layui-box layui-code-view"),(t.attr("lay-skin")||a.skin)&&t.addClass("layui-code-"+(t.attr("lay-skin")||a.skin)),(n.find("li").length/100|0)>0&&n.css("margin-left",(n.find("li").length/100|0)+"px"),(t.attr("lay-height")||a.height)&&n.css("max-height",t.attr("lay-height")||a.height)})})}).addcss("modules/code.css?v=2","skincodecss"); \ No newline at end of file +/** 2.7.6 | MIT Licensed */;!function(d){"use strict";var t,h=d.document,m={modules:{},status:{},timeout:10,event:{}},r=function(){this.v="2.7.6"},e=d.LAYUI_GLOBAL||{},v=(t=h.currentScript?h.currentScript.src:function(){for(var t,e=h.scripts,o=e.length-1,r=o;01e3*m.timeout/4?g(u+" is not a valid module","error"):void(m.status[u]?c():setTimeout(r,4))}())}function c(){e.push(layui[u]),11e3*m.timeout/4?g(u+" is not a valid module","error"):void("string"==typeof m.modules[u]&&m.status[u]?c():setTimeout(f,4))}():((p=h.createElement("script"))["async"]=!0,p.charset="utf-8",p.src=y+((i=!0===m.version?m.v||(new Date).getTime():m.version||"")?"?v="+i:""),a.appendChild(p),!p.attachEvent||p.attachEvent.toString&&p.attachEvent.toString().indexOf("[native code")<0||b?p.addEventListener("load",function(t){s(t,y)},!1):p.attachEvent("onreadystatechange",function(t){s(t,y)}),m.modules[u]=y),n},r.prototype.disuse=function(t){var o=this;return t=o.isArray(t)?t:[t],o.each(t,function(t,e){m.status[e],delete o[e],delete N[e],delete o.modules[e],delete m.status[e],delete m.modules[e]}),o},r.prototype.getStyle=function(t,e){t=t.currentStyle||d.getComputedStyle(t,null);return t[t.getPropertyValue?"getPropertyValue":"getAttribute"](e)},r.prototype.link=function(o,r,t){var n=this,e=h.getElementsByTagName("head")[0],i=h.createElement("link"),t=((t="string"==typeof r?r:t)||o).replace(/\.|\//g,""),a=i.id="layuicss-"+t,u="creating",l=0;return i.rel="stylesheet",i.href=o+(m.debug?"?v="+(new Date).getTime():""),i.media="all",h.getElementById(a)||e.appendChild(i),"function"!=typeof r||function s(t){var e=h.getElementById(a);return++l>1e3*m.timeout/100?g(o+" timeout"):void(1989===parseInt(n.getStyle(e,"width"))?(t===u&&e.removeAttribute("lay-status"),e.getAttribute("lay-status")===u?setTimeout(s,100):r()):(e.setAttribute("lay-status",u),setTimeout(function(){s(u)},100)))}(),n},r.prototype.addcss=function(t,e,o){return layui.link(m.dir+"css/"+t,e,o)},m.callback={},r.prototype.factory=function(t){if(layui[t])return"function"==typeof m.callback[t]?m.callback[t]:null},r.prototype.img=function(t,e,o){var r=new Image;if(r.src=t,r.complete)return e(r);r.onload=function(){r.onload=null,"function"==typeof e&&e(r)},r.onerror=function(t){r.onerror=null,"function"==typeof o&&o(t)}},r.prototype.config=function(t){for(var e in t=t||{})m[e]=t[e];return this},r.prototype.modules=function(){var t,e={};for(t in N)e[t]=N[t];return e}(),r.prototype.extend=function(t){for(var e in t=t||{})this[e]||this.modules[e]?g(e+" Module already exists","error"):this.modules[e]=t[e];return this},r.prototype.router=r.prototype.hash=function(t){var o={path:[],search:{},hash:((t=t||location.hash).match(/[^#](#.*$)/)||[])[1]||""};return/^#\//.test(t)&&(t=t.replace(/^#\//,""),o.href="/"+t,t=t.replace(/([^#])(#.*$)/,"$1").split("/")||[],this.each(t,function(t,e){/^\w+=/.test(e)?(e=e.split("="),o.search[e[0]]=e[1]):o.path.push(e)})),o},r.prototype.url=function(t){var n,e,o=this;return{pathname:(t?((t.match(/\.[^.]+?\/.+/)||[])[0]||"").replace(/^[^\/]+/,"").replace(/\?.+/,""):location.pathname).replace(/^\//,"").split("/"),search:(n={},e=(t?((t.match(/\?.+/)||[])[0]||"").replace(/\#.+/,""):location.search).replace(/^\?+/,"").split("&"),o.each(e,function(t,e){var o=e.indexOf("="),r=o<0?e.substr(0,e.length):0!==o&&e.substr(0,o);r&&(n[r]=0(l.innerHeight||f.documentElement.clientHeight)},h.position=function(t,e,n){var o,i,r,c,u,a,s;e&&(n=n||{},t!==f&&t!==h("body")[0]||(n.clickType="right"),u="right"===n.clickType?{left:(u=n.e||l.event||{}).clientX,top:u.clientY,right:u.clientX,bottom:u.clientY}:t.getBoundingClientRect(),a=e.offsetWidth,s=e.offsetHeight,o=function(t){return f.body[t=t?"scrollLeft":"scrollTop"]|f.documentElement[t]},r=u.left,c=u.bottom,"center"===n.align?r-=(a-t.offsetWidth)/2:"right"===n.align&&(r=r-a+t.offsetWidth),(r=r+a+5>(i=function(t){return f.documentElement[t?"clientWidth":"clientHeight"]})("width")?i("width")-a-5:r)<5&&(r=5),c+s+5>i()&&(u.top>s+5?c=u.top-s-10:"right"===n.clickType?(c=i()-s-10)<0&&(c=0):c=5),(a=n.position)&&(e.style.position=a),e.style.left=r+("fixed"===a?0:o(1))+"px",e.style.top=c+("fixed"===a?0:o())+"px",h.hasScrollbar()||(s=e.getBoundingClientRect(),!n.SYSTEM_RELOAD&&s.bottom+5>i()&&(n.SYSTEM_RELOAD=!0,setTimeout(function(){h.position(t,e,n)},50))))},h.options=function(t,e){t=h(t),e=e||"lay-options";try{return new Function("return "+(t.attr(e)||"{}"))()}catch(n){return hint.error("parseerror\uff1a"+n,"error"),{}}},h.isTopElem=function(n){var t=[f,h("body")[0]],o=!1;return h.each(t,function(t,e){if(e===n)return o=!0}),o},i.addStr=function(n,t){return n=n.replace(/\s+/," "),t=t.replace(/\s+/," ").split(" "),h.each(t,function(t,e){new RegExp("\\b"+e+"\\b").test(n)||(n=n+" "+e)}),n.replace(/^\s|\s$/,"")},i.removeStr=function(n,t){return n=n.replace(/\s+/," "),t=t.replace(/\s+/," ").split(" "),h.each(t,function(t,e){e=new RegExp("\\b"+e+"\\b");e.test(n)&&(n=n.replace(e,""))}),n.replace(/\s+/," ").replace(/^\s|\s$/,"")},i.prototype.find=function(o){var i=this,r=0,c=[],u="object"==typeof o;return this.each(function(t,e){for(var n=u?e.contains(o):e.querySelectorAll(o||null);r]|&(?=#[a-zA-Z0-9]+)/g.test(e+="")?e.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,"""):e},error:function(e,r){var n="Laytpl Error: ";return"object"==typeof console&&console.error(n+e+"\n"+(r||"")),n+e}},l=a.exp,r=function(e){this.tpl=e},n=(r.pt=r.prototype,window.errors=0,r.pt.parse=function(e,r){var n=e,c=l("^"+p.open+"#",""),t=l(p.close+"$","");e='"use strict";var view = "'+(e=e.replace(/\s+|\r|\t|\n/g," ").replace(l(p.open+"#"),p.open+"# ").replace(l(p.close+"}"),"} "+p.close).replace(/\\/g,"\\\\").replace(l(p.open+"!(.+?)!"+p.close),function(e){return e=e.replace(l("^"+p.open+"!"),"").replace(l("!"+p.close),"").replace(l(p.open+"|"+p.close),function(e){return e.replace(/(.)/g,"\\$1")})}).replace(/(?="|')/g,"\\").replace(a.query(),function(e){return'";'+(e=e.replace(c,"").replace(t,"")).replace(/\\(.)/g,"$1")+';view+="'}).replace(a.query(1),function(e){var r='"+laytpl.escape(';return e.replace(/\s/g,"")===p.open+p.close?"":(e=e.replace(l(p.open+"|"+p.close),""),/^=/.test(e)?e=e.replace(/^=/,""):/^-/.test(e)&&(e=e.replace(/^-/,""),r='"+('),r+e.replace(/\\(.)/g,"$1")+')+"')}))+'";return view;';try{return this.cache=e=new Function("d, laytpl",e),e(r,a)}catch(o){return delete this.cache,a.error(o,n)}},r.pt.render=function(e,r){var n=this;return e?(e=n.cache?n.cache(e,a):n.parse(n.tpl,e),r?void r(e):e):a.error("no data")},function(e){return"string"!=typeof e?a.error("Template not found"):new r(e)});n.config=function(e){for(var r in e=e||{})p[r]=e[r]},n.v="1.2.0",e("laytpl",n)});layui.define(function(e){"use strict";var n=document,u="getElementById",c="getElementsByTagName",a="layui-disabled",t=function(e){var a=this;a.config=e||{},a.config.index=++o.index,a.render(!0)},o=(t.prototype.type=function(){var e=this.config;if("object"==typeof e.elem)return e.elem.length===undefined?2:3},t.prototype.view=function(){var t,i,r=this.config,n=r.groups="groups"in r?Number(r.groups)||0:5,u=(r.layout="object"==typeof r.layout?r.layout:["prev","page","next"],r.count=Number(r.count)||0,r.curr=Number(r.curr)||1,r.limits="object"==typeof r.limits?r.limits:[10,20,30,40,50],r.limit=Number(r.limit)||10,r.pages=Math.ceil(r.count/r.limit)||1,r.curr>r.pages?r.curr=r.pages:r.curr<1&&(r.curr=1),n<0?n=1:n>r.pages&&(n=r.pages),r.prev="prev"in r?r.prev:"上一页",r.next="next"in r?r.next:"下一页",r.pages>n?Math.ceil((r.curr+(1'+r.prev+"":"",page:function(){var e=[];if(r.count<1)return"";1'+(r.first||1)+"");var a=Math.floor((n-1)/2),t=1r.pages?r.pages:a:n;for(i-t…');t<=i;t++)t===r.curr?e.push('"+t+""):e.push(''+t+"");return r.pages>n&&r.pages>i&&!1!==r.last&&(i+1…'),0!==n&&e.push(''+(r.last||r.pages)+"")),e.join("")}(),next:r.next?''+r.next+"":"",count:'\u5171 '+r.count+" \u6761",limit:(t=['"),refresh:['','',""].join(""),skip:['到第','','页',""].join("")};return['
          ',(i=[],layui.each(r.layout,function(e,a){s[a]&&i.push(s[a])}),i.join("")),"
          "].join("")},t.prototype.jump=function(e,a){if(e){var t=this,i=t.config,r=e.children,n=e[c]("button")[0],u=e[c]("input")[0],e=e[c]("select")[0],s=function(){var e=Number(u.value.replace(/\s|\D/g,""));e&&(i.curr=e,t.render())};if(a)return s();for(var l=0,p=r.length;li.pages||(i.curr=e,t.render())});e&&o.on(e,"change",function(){var e=this.value;i.curr*e>i.count&&(i.curr=Math.ceil(i.count/e)),i.limit=e,t.render()}),n&&o.on(n,"click",function(){s()})}},t.prototype.skip=function(t){var i,e;t&&(i=this,(e=t[c]("input")[0])&&o.on(e,"keyup",function(e){var a=this.value,e=e.keyCode;/^(37|38|39|40)$/.test(e)||(/\D/.test(a)&&(this.value=a.replace(/\D/,"")),13===e&&i.jump(t,!0))}))},t.prototype.render=function(e){var a=this,t=a.config,i=a.type(),r=a.view(),i=(2===i?t.elem&&(t.elem.innerHTML=r):3===i?t.elem.html(r):n[u](t.elem)&&(n[u](t.elem).innerHTML=r),t.jump&&t.jump(t,e),n[u]("layui-laypage-"+t.index));a.jump(i),t.hash&&!e&&(location.hash="!"+t.hash+"="+t.curr),a.skip(i)},{render:function(e){return new t(e).index},index:layui.laypage?layui.laypage.index+1e4:0,on:function(a,e,t){return a.attachEvent?a.attachEvent("on"+e,function(e){e.target=e.srcElement,t.call(a,e)}):a.addEventListener(e,t,!1),this}});e("laypage",o)});!function(i,r){"use strict";var n=i.layui&&layui.define,l={getPath:i.lay&&lay.getPath?lay.getPath:"",link:function(e,t,a){u.path&&i.lay&&lay.layui&&lay.layui.link(u.path+e,t,a)}},e=i.LAYUI_GLOBAL||{},u={v:"5.3.1",config:{weekStart:0},index:i.laydate&&i.laydate.v?1e5:0,path:e.laydate_dir||l.getPath,set:function(e){var t=this;return t.config=lay.extend({},t.config,e),t},ready:function(e){var t="laydate",a=(n?"modules/laydate/":"theme/")+"default/laydate.css?v="+u.v;return n?layui.addcss(a,e,t):l.link(a,e,t),this}},s=function(){var t=this,e=t.config.id;return{hint:function(e){t.hint.call(t,e)},config:(s.that[e]=t).config}},a="laydate",w="layui-this",x="laydate-disabled",h=[100,2e5],p="layui-laydate-static",M="layui-laydate-list",o="layui-laydate-hint",E=".laydate-btns-confirm",C="laydate-time-text",k="laydate-btns-time",f="layui-laydate-preview",g=function(e){var t=this,a=(t.index=++u.index,t.config=lay.extend({},t.config,u.config,e),lay(e.elem||t.config.elem));if(1\u8bf7\u91cd\u65b0\u9009\u62e9",invalidDate:"\u4e0d\u5728\u6709\u6548\u65e5\u671f\u6216\u65f6\u95f4\u8303\u56f4\u5185",formatError:["\u65e5\u671f\u683c\u5f0f\u4e0d\u5408\u6cd5
          \u5fc5\u987b\u9075\u5faa\u4e0b\u8ff0\u683c\u5f0f\uff1a
          ","
          \u5df2\u4e3a\u4f60\u91cd\u7f6e"],preview:"\u5f53\u524d\u9009\u4e2d\u7684\u7ed3\u679c"},en:{weeks:["Su","Mo","Tu","We","Th","Fr","Sa"],time:["Hours","Minutes","Seconds"],timeTips:"Select Time",startTime:"Start Time",endTime:"End Time",dateTips:"Select Date",month:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],tools:{confirm:"Confirm",clear:"Clear",now:"Now"},timeout:"End time cannot be less than start Time
          Please re-select",invalidDate:"Invalid date",formatError:["The date format error
          Must be followed\uff1a
          ","
          It has been reset"],preview:"The selected result"}};return e[this.config.lang]||e.cn},g.prototype.init=function(){var r=this,o=r.config,e="static"===o.position,t={year:"yyyy",month:"yyyy-MM",date:"yyyy-MM-dd",time:"HH:mm:ss",datetime:"yyyy-MM-dd HH:mm:ss"};o.elem=lay(o.elem),o.eventElem=lay(o.eventElem),o.elem[0]&&(r.rangeStr=o.range?"string"==typeof o.range?o.range:"-":"","array"===layui.type(o.range)&&(r.rangeElem=[lay(o.range[0]),lay(o.range[1])]),t[o.type]||(i.console&&console.error&&console.error("laydate type error:'"+o.type+"' is not supported"),o.type="date"),o.format===t.date&&(o.format=t[o.type]||t.date),r.format=s.formatArr(o.format),o.weekStart&&!/^[0-6]$/.test(o.weekStart)&&(t=r.lang(),o.weekStart=t.weeks.indexOf(o.weekStart),-1===o.weekStart&&(o.weekStart=0)),r.EXP_IF="",r.EXP_SPLIT="",lay.each(r.format,function(e,t){e=new RegExp(y).test(t)?"\\d{"+(new RegExp(y).test(r.format[0===e?e+1:e-1]||"")?/^yyyy|y$/.test(t)?4:t.length:/^yyyy$/.test(t)?"1,4":/^y$/.test(t)?"1,308":"1,2")+"}":"\\"+t;r.EXP_IF=r.EXP_IF+e,r.EXP_SPLIT=r.EXP_SPLIT+"("+e+")"}),r.EXP_IF_ONE=new RegExp("^"+r.EXP_IF+"$"),r.EXP_IF=new RegExp("^"+(o.range?r.EXP_IF+"\\s\\"+r.rangeStr+"\\s"+r.EXP_IF:r.EXP_IF)+"$"),r.EXP_SPLIT=new RegExp("^"+r.EXP_SPLIT+"$",""),r.isInput(o.elem[0])||"focus"===o.trigger&&(o.trigger="click"),o.elem.attr("lay-key")||(o.elem.attr("lay-key",r.index),o.eventElem.attr("lay-key",r.index)),o.mark=lay.extend({},o.calendar&&"cn"===o.lang?{"0-1-1":"\u5143\u65e6","0-2-14":"\u60c5\u4eba","0-3-8":"\u5987\u5973","0-3-12":"\u690d\u6811","0-4-1":"\u611a\u4eba","0-5-1":"\u52b3\u52a8","0-5-4":"\u9752\u5e74","0-6-1":"\u513f\u7ae5","0-9-10":"\u6559\u5e08","0-10-1":"\u56fd\u5e86","0-12-25":"\u5723\u8bde"}:{},o.mark),lay.each(["min","max"],function(e,t){var a,n,i=[],l=[];l="number"==typeof o[t]?(n=o[t],a=new Date,a=r.newDate({year:a.getFullYear(),month:a.getMonth(),date:a.getDate(),hours:"23",minutes:"59",seconds:"59"}).getTime(),i=[(n=new Date(n?n<864e5?a+864e5*n:n:a)).getFullYear(),n.getMonth()+1,n.getDate()],[n.getHours(),n.getMinutes(),n.getSeconds()]):(i=(o[t].match(/\d+-\d+-\d+/)||[""])[0].split("-"),(o[t].match(/\d+:\d+:\d+/)||[""])[0].split(":")),o[t]={year:0|i[0]||(new Date).getFullYear(),month:i[1]?(0|i[1])-1:(new Date).getMonth(),date:0|i[2]||(new Date).getDate(),hours:0|l[0],minutes:0|l[1],seconds:0|l[2]}}),r.elemID="layui-laydate"+o.elem.attr("lay-key"),(o.show||e)&&r.render(),e||r.events(),o.value&&o.isInitValue&&("date"===layui.type(o.value)?r.setValue(r.parse(0,r.systemDate(o.value))):r.setValue(o.value)))},g.prototype.render=function(){var n,e,t=this,o=t.config,s=t.lang(),i="static"===o.position,a=t.elem=lay.elem("div",{id:t.elemID,"class":["layui-laydate",o.range?" layui-laydate-range":"",i?" "+p:"",o.theme&&"default"!==o.theme&&!/^#/.test(o.theme)?" laydate-theme-"+o.theme:""].join("")}),y=t.elemMain=[],d=t.elemHeader=[],m=t.elemCont=[],c=t.table=[],l=t.footer=lay.elem("div",{"class":"layui-laydate-footer"});o.zIndex&&(a.style.zIndex=o.zIndex),lay.each(new Array(2),function(e){if(!o.range&&0'+s.timeTips+""),!o.range&&"datetime"===o.type||e.push(''),lay.each(o.btns,function(e,t){var a=s.tools[t]||"btn";o.range&&"now"===t||(i&&"clear"===t&&(a="cn"===o.lang?"\u91cd\u7f6e":"Reset"),n.push(''+a+""))}),e.push('"),e.join(""))),lay.each(y,function(e,t){a.appendChild(t)}),o.showBottom&&a.appendChild(l),/^#/.test(o.theme)&&(e=lay.elem("style"),l=["#{{id}} .layui-laydate-header{background-color:{{theme}};}","#{{id}} .layui-this{background-color:{{theme}} !important;}"].join("").replace(/{{id}}/g,t.elemID).replace(/{{theme}}/g,o.theme),"styleSheet"in e?(e.setAttribute("type","text/css"),e.styleSheet.cssText=l):e.innerHTML=l,lay(a).addClass("laydate-theme-molv"),a.appendChild(e)),t.remove(g.thisElemDate),u.thisId=o.id,i?o.elem.append(a):(r.body.appendChild(a),t.position()),t.checkDate().calendar(null,0,"init"),t.changeEvent(),g.thisElemDate=t.elemID,"function"==typeof o.ready&&o.ready(lay.extend({},o.dateTime,{month:o.dateTime.month+1})),t.preview()},g.prototype.remove=function(e){var t=this,a=t.config,n=lay("#"+(e||t.elemID));return n[0]&&(n.hasClass(p)||t.checkDate(function(){n.remove(),delete u.thisId,"function"==typeof a.close&&a.close(t)})),t},g.prototype.position=function(){var e=this.config;return lay.position(this.bindElem||e.elem[0],this.elem,{position:e.position}),this},g.prototype.hint=function(e){var t=this,a=(t.config,lay.elem("div",{"class":o}));t.elem&&(a.innerHTML=e||"",lay(t.elem).find("."+o).remove(),t.elem.appendChild(a),clearTimeout(t.hinTimer),t.hinTimer=setTimeout(function(){lay(t.elem).find("."+o).remove()},3e3))},g.prototype.getAsYM=function(e,t,a){return a?t--:t++,t<0&&(t=11,e--),11h[1]&&(e.year=h[1],o=!0),11t&&(e.date=t,o=!0)},r=function(n,i,l){var r=["startTime","endTime"];i=(i.match(s.EXP_SPLIT)||[]).slice(1),l=l||0,y.range&&(s[r[l]]=s[r[l]]||{}),lay.each(s.format,function(e,t){var a=parseFloat(i[e]);i[e].lengths.getDateTime(y.max)?n=y.dateTime=lay.extend({},y.max):s.getDateTime(n)s.getDateTime(y.max))&&(s.endDate=lay.extend({},y.max)),s.startTime={hours:y.dateTime.hours,minutes:y.dateTime.minutes,seconds:y.dateTime.seconds},s.endTime={hours:s.endDate.hours,minutes:s.endDate.minutes,seconds:s.endDate.seconds}),e&&e(),s},g.prototype.mark=function(e,a){var n,t=this.config;return lay.each(t.mark,function(e,t){e=e.split("-");e[0]!=a[0]&&0!=e[0]||e[1]!=a[1]&&0!=e[1]||e[2]!=a[2]||(n=t||a[2])}),n&&e.html(''+n+""),this},g.prototype.holidays=function(n,i){var e=this.config,l=["","work"];return"array"!==layui.type(e.holidays)||lay.each(e.holidays,function(a,e){lay.each(e,function(e,t){t===n.attr("lay-ymd")&&n.html('"+i[2]+"")})}),this},g.prototype.limit=function(e,t,a,i){var l=this,n=l.config,r={},a=(i?0:41)r.max,e&&e[t?"addClass":"removeClass"](x),t},g.prototype.thisDateTime=function(e){var t=this.config;return e?this.endDate:t.dateTime},g.prototype.calendar=function(e,t,a){var i,l,r,o=this,n=o.config,t=t?1:0,s=e||o.thisDateTime(t),y=new Date,d=o.lang(),m="date"!==n.type&&"datetime"!==n.type,c=lay(o.table[t]).find("td"),t=lay(o.elemHeader[t][2]).find("span");return s.yearh[1]&&(s.year=h[1],o.hint(d.invalidDate)),o.firstDate||(o.firstDate=lay.extend({},s)),y.setFullYear(s.year,s.month,1),i=(y.getDay()+(7-n.weekStart))%7,l=u.getEndDate(s.month||12,s.year),r=u.getEndDate(s.month+1,s.year),lay.each(c,function(e,t){var a=[s.year,s.month],n=0;(t=lay(t)).removeAttr("class"),e"+d.time[t]+"

            "];lay.each(new Array(e),function(e){n.push(""+lay.digit(e,2)+"")}),a.innerHTML=n.join("")+"
          ",m.appendChild(a)}),l()),p&&h.removeChild(p),h.appendChild(m),"year"===t||"month"===t?(lay(o.elemMain[n]).addClass("laydate-ym-show"),lay(m).find("li").on("click",function(){var e=0|lay(this).attr("lay-ym");lay(this).hasClass(x)||(0===n?(y[t]=e,o.limit(lay(o.footer).find(E),null,0)):o.endDate[t]=e,"year"===s.type||"month"===s.type?(lay(m).find("."+w).removeClass(w),lay(this).addClass(w),"month"===s.type&&"year"===t&&(o.listYM[n][0]=e,a&&((n?o.endDate:y).year=e),o.list("month",n))):(o.checkDate("limit").calendar(null,n),o.closeList()),o.setBtnStatus(),s.range||("month"===s.type&&"month"===t||"year"===s.type&&"year"===t)&&o.setValue(o.parse()).remove().done(),o.done(null,"change"),lay(o.footer).find("."+k).removeClass(x))})):(e=lay.elem("span",{"class":C}),r=function(){lay(m).find("ol").each(function(e){var a=this,t=lay(a).find("li");a.scrollTop=30*(o[D][T[e]]-2),a.scrollTop<=0&&t.each(function(e,t){if(!lay(this).hasClass(x))return a.scrollTop=30*(e-2),!0})})},u=lay(c[2]).find("."+C),r(),e.innerHTML=s.range?[d.startTime,d.endTime][n]:d.timeTips,lay(o.elemMain[n]).addClass("laydate-time-show"),u[0]&&u.remove(),c[2].appendChild(e),lay(m).find("ol").each(function(t){var a=this;lay(a).find("li").on("click",function(){var e=0|this.innerHTML;lay(this).hasClass(x)||(s.range?o[D][T[t]]=e:y[T[t]]=e,lay(a).find("."+w).removeClass(w),lay(this).addClass(w),l(),r(),!o.endDate&&"time"!==s.type||o.done(null,"change"),o.setBtnStatus())})})),o},g.prototype.listYM=[],g.prototype.closeList=function(){var a=this;a.config;lay.each(a.elemCont,function(e,t){lay(this).find("."+M).remove(),lay(a.elemMain[e]).removeClass("laydate-ym-show laydate-time-show")}),lay(a.elem).find("."+C).remove()},g.prototype.setBtnStatus=function(e,t,a){var n=this,i=n.config,l=n.lang(),r=lay(n.footer).find(E);i.range&&"time"!==i.type&&(t=t||i.dateTime,a=a||n.endDate,i=n.newDate(t).getTime()>n.newDate(a).getTime(),n.limit(null,t)||n.limit(null,a)?r.addClass(x):r[i?"addClass":"removeClass"](x),e&&i&&n.hint("string"==typeof e?l.timeout.replace(/\u65e5\u671f/g,e):l.timeout))},g.prototype.parse=function(e,t){var a=this,n=a.config,t=t||("end"==e?lay.extend({},a.endDate,a.endTime):n.range?lay.extend({},n.dateTime,a.startTime):n.dateTime),t=u.parse(t,a.format,1);return n.range&&e===undefined?t+" "+a.rangeStr+" "+a.parse("end"):t},g.prototype.newDate=function(e){return e=e||{},new Date(e.year||1,e.month||0,e.date||1,e.hours||0,e.minutes||0,e.seconds||0)},g.prototype.getDateTime=function(e){return this.newDate(e).getTime()},g.prototype.setValue=function(e){var t=this,a=t.config,n=t.bindElem||a.elem[0];return"static"===a.position||(e=e||"",t.isInput(n)?lay(n).val(e):(a=t.rangeElem)?("array"!==layui.type(e)&&(e=e.split(" "+t.rangeStr+" ")),a[0].val(e[0]||""),a[1].val(e[1]||"")):(0===lay(n).find("*").length&&lay(n).html(e),lay(n).attr("lay-date",e))),t},g.prototype.preview=function(){var e,t=this,a=t.config;a.isPreview&&(e=lay(t.elem).find("."+f),a=!a.range||t.endDate?t.parse():"",e.html(a).css({color:"#5FB878"}),setTimeout(function(){e.css({color:"#666"})},300))},g.prototype.done=function(e,t){var a=this,n=a.config,i=lay.extend({},lay.extend(n.dateTime,a.startTime)),l=lay.extend({},lay.extend(a.endDate,a.endTime));return lay.each([i,l],function(e,t){"month"in t&&lay.extend(t,{month:t.month+1})}),a.preview(),e=e||[a.parse(),i,l],"function"==typeof n[t||"done"]&&n[t||"done"].apply(n,e),a},g.prototype.choose=function(e,a){var n=this,i=n.config,l=n.thisDateTime(a),t=(lay(n.elem).find("td"),{year:0|(t=e.attr("lay-ymd").split("-"))[0],month:(0|t[1])-1,date:0|t[2]});e.hasClass(x)||(lay.extend(l,t),i.range?(lay.each(["startTime","endTime"],function(e,t){n[t]=n[t]||{hours:e?23:0,minutes:e?59:0,seconds:e?59:0},a===e&&(n.getDateTime(lay.extend({},l,n[t]))n.getDateTime(i.max)&&(n[t]={hours:i.max.hours,minutes:i.max.minutes,seconds:i.max.seconds},lay.extend(l,n[t])))}),n.calendar(null,a).done(null,"change")):"static"===i.position?n.calendar().done().done(null,"change"):"date"===i.type?n.setValue(n.parse()).remove().done():"datetime"===i.type&&n.calendar().done(null,"change"))},g.prototype.tool=function(e,t){var a=this,n=a.config,i=a.lang(),l=n.dateTime,r="static"===n.position,o={datetime:function(){lay(e).hasClass(x)||(a.list("time",0),n.range&&a.list("time",1),lay(e).attr("lay-type","date").html(a.lang().dateTips))},date:function(){a.closeList(),lay(e).attr("lay-type","datetime").html(a.lang().timeTips)},clear:function(){r&&(lay.extend(l,a.firstDate),a.calendar()),n.range&&(delete n.dateTime,delete a.endDate,delete a.startTime,delete a.endTime),a.setValue("").remove(),a.done(["",{},{}])},now:function(){var e=new Date;lay.extend(l,a.systemDate(),{hours:e.getHours(),minutes:e.getMinutes(),seconds:e.getSeconds()}),a.setValue(a.parse()).remove(),r&&a.calendar(),a.done()},confirm:function(){if(n.range){if(lay(e).hasClass(x))return a.hint("time"===n.type?i.timeout.replace(/\u65e5\u671f/g,"\u65f6\u95f4"):i.timeout)}else if(lay(e).hasClass(x))return a.hint(i.invalidDate);a.setValue(a.parse()).remove(),a.done()}};o[t]&&o[t]()},g.prototype.change=function(n){var i=this,l=i.config,r=i.thisDateTime(n),o=l.range&&("year"===l.type||"month"===l.type),s=i.elemCont[n||0],y=i.listYM[n],e=function(e){var t=lay(s).find(".laydate-year-list")[0],a=lay(s).find(".laydate-month-list")[0];return t&&(y[0]=e?y[0]-15:y[0]+15,i.list("year",n)),a&&(e?y[0]--:y[0]++,i.list("month",n)),(t||a)&&(lay.extend(r,{year:y[0]}),o&&(r.year=y[0]),l.range||i.done(null,"change"),l.range||i.limit(lay(i.footer).find(E),{year:y[0]})),i.setBtnStatus(),t||a};return{prevYear:function(){e("sub")||(r.year--,i.checkDate("limit").calendar(null,n),i.done(null,"change"))},prevMonth:function(){var e=i.getAsYM(r.year,r.month,"sub");lay.extend(r,{year:e[0],month:e[1]}),i.checkDate("limit").calendar(null,n),i.done(null,"change")},nextMonth:function(){var e=i.getAsYM(r.year,r.month);lay.extend(r,{year:e[0],month:e[1]}),i.checkDate("limit").calendar(null,n),i.done(null,"change")},nextYear:function(){e()||(r.year++,i.checkDate("limit").calendar(null,n),i.done(null,"change"))}}},g.prototype.changeEvent=function(){var i=this;i.config;lay(i.elem).on("click",function(e){lay.stope(e)}).on("mousedown",function(e){lay.stope(e)}),lay.each(i.elemHeader,function(n,e){lay(e[0]).on("click",function(e){i.change(n).prevYear()}),lay(e[1]).on("click",function(e){i.change(n).prevMonth()}),lay(e[2]).find("span").on("click",function(e){var t=lay(this),a=t.attr("lay-ym"),t=t.attr("lay-type");a&&(a=a.split("-"),i.listYM[n]=[0|a[0],0|a[1]],i.list(t,n),lay(i.footer).find("."+k).addClass(x))}),lay(e[3]).on("click",function(e){i.change(n).nextMonth()}),lay(e[4]).on("click",function(e){i.change(n).nextYear()})}),lay.each(i.table,function(e,t){lay(t).find("td").on("click",function(){i.choose(lay(this),e)})}),lay(i.footer).find("span").on("click",function(){var e=lay(this).attr("lay-type");i.tool(this,e)})},g.prototype.isInput=function(e){return/input|textarea/.test(e.tagName.toLocaleLowerCase())||/INPUT|TEXTAREA/.test(e.tagName)},g.prototype.events=function(){var a=this,n=a.config,e=function(e,t){e.on(n.trigger,function(){u.thisId!==n.id&&(t&&(a.bindElem=this),a.render())})};n.elem[0]&&!n.elem[0].eventHandler&&(e(n.elem,"bind"),e(n.eventElem),n.elem[0].eventHandler=!0)},s.that={},s.getThis=function(e){var t=s.that[e];return!t&&n&&layui.hint().error(e?a+" instance with ID '"+e+"' not found":"ID argument required"),t},l.run=function(n){n(r).on("mousedown",function(e){var t,a;!u.thisId||(t=s.getThis(u.thisId))&&(a=t.config,e.target!==a.elem[0]&&e.target!==a.eventElem[0]&&e.target!==n(a.closeStop)[0]&&t.remove())}).on("keydown",function(e){var t;!u.thisId||(t=s.getThis(u.thisId))&&"static"!==t.config.position&&13===e.keyCode&&n("#"+t.elemID)[0]&&t.elemID===g.thisElemDate&&(e.preventDefault(),n(t.footer).find(E)[0].click())}),n(i).on("resize",function(){if(u.thisId){var e=s.getThis(u.thisId);if(e)return!(!e.elem||!n(".layui-laydate")[0])&&void e.position()}})},u.render=function(e){e=new g(e);return s.call(e)},u.parse=function(a,n,i){return a=a||{},n=((n="string"==typeof n?s.formatArr(n):n)||[]).concat(),lay.each(n,function(e,t){/yyyy|y/.test(t)?n[e]=lay.digit(a.year,t.length):/MM|M/.test(t)?n[e]=lay.digit(a.month+(i||0),t.length):/dd|d/.test(t)?n[e]=lay.digit(a.date,t.length):/HH|H/.test(t)?n[e]=lay.digit(a.hours,t.length):/mm|m/.test(t)?n[e]=lay.digit(a.minutes,t.length):/ss|s/.test(t)&&(n[e]=lay.digit(a.seconds,t.length))}),n.join("")},u.getEndDate=function(e,t){var a=new Date;return a.setFullYear(t||a.getFullYear(),e||a.getMonth()+1,1),new Date(a.getTime()-864e5).getDate()},u.close=function(e){e=s.getThis(e||u.thisId);if(e)return e.remove()},n?(u.ready(),layui.define("lay",function(e){u.path=layui.cache.dir,l.run(lay),e(a,u)})):"function"==typeof define&&define.amd?define(function(){return l.run(lay),u}):(u.ready(),l.run(i.lay),i.laydate=u)}(window,window.document);!function(e,t){"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e):function(e){if(e.document)return t(e);throw new Error("jQuery requires a window with a document")}:t(e)}("undefined"!=typeof window?window:this,function(T,M){var f=[],g=T.document,c=f.slice,O=f.concat,R=f.push,P=f.indexOf,B={},W=B.toString,m=B.hasOwnProperty,y={},e="1.12.4",C=function(e,t){return new C.fn.init(e,t)},I=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,$=/^-ms-/,z=/-([\da-z])/gi,X=function(e,t){return t.toUpperCase()};function U(e){var t=!!e&&"length"in e&&e.length,n=C.type(e);return"function"!==n&&!C.isWindow(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+a+")"+a+"*"),ee=new RegExp("="+a+"*([^\\]'\"]*?)"+a+"*\\]","g"),te=new RegExp(G),ne=new RegExp("^"+s+"$"),f={ID:new RegExp("^#("+s+")"),CLASS:new RegExp("^\\.("+s+")"),TAG:new RegExp("^("+s+"|[*])"),ATTR:new RegExp("^"+J),PSEUDO:new RegExp("^"+G),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+a+"*(even|odd|(([+-]|)(\\d*)n|)"+a+"*(?:([+-]|)"+a+"*(\\d+)|))"+a+"*\\)|)","i"),bool:new RegExp("^(?:"+Y+")$","i"),needsContext:new RegExp("^"+a+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+a+"*((?:-\\d)?\\d*)"+a+"*\\)|)(?=[^-]|$)","i")},re=/^(?:input|select|textarea|button)$/i,ie=/^h\d$/i,c=/^[^{]+\{\s*\[native \w/,oe=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ae=/[+~]/,se=/'|\\/g,d=new RegExp("\\\\([\\da-f]{1,6}"+a+"?|("+a+")|.)","ig"),p=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(65536+r):String.fromCharCode(r>>10|55296,1023&r|56320)},ue=function(){C()};try{D.apply(n=V.call(v.childNodes),v.childNodes),n[v.childNodes.length].nodeType}catch(F){D={apply:n.length?function(e,t){U.apply(e,V.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function H(e,t,n,r){var i,o,a,s,u,l,c,f,d=t&&t.ownerDocument,p=t?t.nodeType:9;if(n=n||[],"string"!=typeof e||!e||1!==p&&9!==p&&11!==p)return n;if(!r&&((t?t.ownerDocument||t:v)!==E&&C(t),t=t||E,N)){if(11!==p&&(l=oe.exec(e)))if(i=l[1]){if(9===p){if(!(a=t.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(d&&(a=d.getElementById(i))&&y(t,a)&&a.id===i)return n.push(a),n}else{if(l[2])return D.apply(n,t.getElementsByTagName(e)),n;if((i=l[3])&&g.getElementsByClassName&&t.getElementsByClassName)return D.apply(n,t.getElementsByClassName(i)),n}if(g.qsa&&!A[e+" "]&&(!m||!m.test(e))){if(1!==p)d=t,f=e;else if("object"!==t.nodeName.toLowerCase()){for((s=t.getAttribute("id"))?s=s.replace(se,"\\$&"):t.setAttribute("id",s=k),o=(c=w(e)).length,u=ne.test(s)?"#"+s:"[id='"+s+"']";o--;)c[o]=u+" "+_(c[o]);f=c.join(","),d=ae.test(e)&&de(t.parentNode)||t}if(f)try{return D.apply(n,d.querySelectorAll(f)),n}catch(h){}finally{s===k&&t.removeAttribute("id")}}}return P(e.replace(L,"$1"),t,n,r)}function le(){var n=[];function r(e,t){return n.push(e+" ")>b.cacheLength&&delete r[n.shift()],r[e+" "]=t}return r}function q(e){return e[k]=!0,e}function h(e){var t=E.createElement("div");try{return!!e(t)}catch(F){return!1}finally{t.parentNode&&t.parentNode.removeChild(t)}}function ce(e,t){for(var n=e.split("|"),r=n.length;r--;)b.attrHandle[n[r]]=t}function fe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||1<<31)-(~e.sourceIndex||1<<31);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function x(a){return q(function(o){return o=+o,q(function(e,t){for(var n,r=a([],e.length,o),i=r.length;i--;)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function de(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in g=H.support={},O=H.isXML=function(e){e=e&&(e.ownerDocument||e).documentElement;return!!e&&"HTML"!==e.nodeName},C=H.setDocument=function(e){var e=e?e.ownerDocument||e:v;return e!==E&&9===e.nodeType&&e.documentElement&&(t=(E=e).documentElement,N=!O(E),(e=E.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",ue,!1):e.attachEvent&&e.attachEvent("onunload",ue)),g.attributes=h(function(e){return e.className="i",!e.getAttribute("className")}),g.getElementsByTagName=h(function(e){return e.appendChild(E.createComment("")),!e.getElementsByTagName("*").length}),g.getElementsByClassName=c.test(E.getElementsByClassName),g.getById=h(function(e){return t.appendChild(e).id=k,!E.getElementsByName||!E.getElementsByName(k).length}),g.getById?(b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&N)return(e=t.getElementById(e))?[e]:[]},b.filter.ID=function(e){var t=e.replace(d,p);return function(e){return e.getAttribute("id")===t}}):(delete b.find.ID,b.filter.ID=function(e){var t=e.replace(d,p);return function(e){e="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return e&&e.value===t}}),b.find.TAG=g.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):g.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"!==e)return o;for(;n=o[i++];)1===n.nodeType&&r.push(n);return r},b.find.CLASS=g.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&N)return t.getElementsByClassName(e)},r=[],m=[],(g.qsa=c.test(E.querySelectorAll))&&(h(function(e){t.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&m.push("[*^$]="+a+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||m.push("\\["+a+"*(?:value|"+Y+")"),e.querySelectorAll("[id~="+k+"-]").length||m.push("~="),e.querySelectorAll(":checked").length||m.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||m.push(".#.+[+~]")}),h(function(e){var t=E.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&m.push("name"+a+"*[*^$|!~]?="),e.querySelectorAll(":enabled").length||m.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),m.push(",.*:")})),(g.matchesSelector=c.test(i=t.matches||t.webkitMatchesSelector||t.mozMatchesSelector||t.oMatchesSelector||t.msMatchesSelector))&&h(function(e){g.disconnectedMatch=i.call(e,"div"),i.call(e,"[s!='']:x"),r.push("!=",G)}),m=m.length&&new RegExp(m.join("|")),r=r.length&&new RegExp(r.join("|")),e=c.test(t.compareDocumentPosition),y=e||c.test(t.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,t=t&&t.parentNode;return e===t||!(!t||1!==t.nodeType||!(n.contains?n.contains(t):e.compareDocumentPosition&&16&e.compareDocumentPosition(t)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},$=e?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!g.sortDetached&&t.compareDocumentPosition(e)===n?e===E||e.ownerDocument===v&&y(v,e)?-1:t===E||t.ownerDocument===v&&y(v,t)?1:u?j(u,e)-j(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===E?-1:t===E?1:i?-1:o?1:u?j(u,e)-j(u,t):0;if(i===o)return fe(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)s.unshift(n);for(;a[r]===s[r];)r++;return r?fe(a[r],s[r]):a[r]===v?-1:s[r]===v?1:0}),E},H.matches=function(e,t){return H(e,null,null,t)},H.matchesSelector=function(e,t){if((e.ownerDocument||e)!==E&&C(e),t=t.replace(ee,"='$1']"),g.matchesSelector&&N&&!A[t+" "]&&(!r||!r.test(t))&&(!m||!m.test(t)))try{var n=i.call(e,t);if(n||g.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(F){}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(d,p),e[3]=(e[3]||e[4]||e[5]||"").replace(d,p),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||H.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&H.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return f.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&te.test(n)&&(t=w(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(d,p).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=W[e+" "];return t||(t=new RegExp("(^|"+a+")"+e+"("+a+"|$)"))&&W(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(t,n,r){return function(e){e=H.attr(e,t);return null==e?"!="===n:!n||(e+="","="===n?e===r:"!="===n?e!==r:"^="===n?r&&0===e.indexOf(r):"*="===n?r&&-1(?:<\/\1>|)$/,G=/^.[^:#\[\.,]*$/;function K(e,n,r){if(C.isFunction(n))return C.grep(e,function(e,t){return!!n.call(e,t,e)!==r});if(n.nodeType)return C.grep(e,function(e){return e===n!==r});if("string"==typeof n){if(G.test(n))return C.filter(n,e,r);n=C.filter(n,e)}return C.grep(e,function(e){return-1)[^>]*|#([\w-]*))$/,ee=((C.fn.init=function(e,t,n){if(!e)return this;if(n=n||Q,"string"!=typeof e)return e.nodeType?(this.context=this[0]=e,this.length=1,this):C.isFunction(e)?"undefined"!=typeof n.ready?n.ready(e):e(C):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),C.makeArray(e,this));if(!(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&3<=e.length?[null,e,null]:Z.exec(e))||!r[1]&&t)return(!t||t.jquery?t||n:this.constructor(t)).find(e);if(r[1]){if(t=t instanceof C?t[0]:t,C.merge(this,C.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:g,!0)),J.test(r[1])&&C.isPlainObject(t))for(var r in t)C.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}if((n=g.getElementById(r[2]))&&n.parentNode){if(n.id!==r[2])return Q.find(e);this.length=1,this[0]=n}return this.context=g,this.selector=e,this}).prototype=C.fn,Q=C(g),/^(?:parents|prev(?:Until|All))/),te={children:!0,contents:!0,next:!0,prev:!0};function ne(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}C.fn.extend({has:function(e){var t,n=C(e,this),r=n.length;return this.filter(function(){for(t=0;t
          a",y.leadingWhitespace=3===S.firstChild.nodeType,y.tbody=!S.getElementsByTagName("tbody").length,y.htmlSerialize=!!S.getElementsByTagName("link").length,y.html5Clone="<:nav>"!==g.createElement("nav").cloneNode(!0).outerHTML,q.type="checkbox",q.checked=!0,k.appendChild(q),y.appendChecked=q.checked,S.innerHTML="",y.noCloneChecked=!!S.cloneNode(!0).lastChild.defaultValue,k.appendChild(S),(q=g.createElement("input")).setAttribute("type","radio"),q.setAttribute("checked","checked"),q.setAttribute("name","t"),S.appendChild(q),y.checkClone=S.cloneNode(!0).cloneNode(!0).lastChild.checked,y.noCloneEvent=!!S.addEventListener,S[C.expando]=1,y.attributes=!S.getAttribute(C.expando);var x={option:[1,""],legend:[1,"
          ","
          "],area:[1,"",""],param:[1,"",""],thead:[1,"","
          "],tr:[2,"","
          "],col:[2,"","
          "],td:[3,"","
          "],_default:y.htmlSerialize?[0,"",""]:[1,"X
          ","
          "]};function b(e,t){var n,r,i=0,o="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):undefined;if(!o)for(o=[],n=e.childNodes||e;null!=(r=n[i]);i++)!t||C.nodeName(r,t)?o.push(r):C.merge(o,b(r,t));return t===undefined||t&&C.nodeName(e,t)?C.merge([e],o):o}function we(e,t){for(var n,r=0;null!=(n=e[r]);r++)C._data(n,"globalEval",!t||C._data(t[r],"globalEval"))}x.optgroup=x.option,x.tbody=x.tfoot=x.colgroup=x.caption=x.thead,x.th=x.td;var Te=/<|&#?\w+;/,Ce=/"!==f[1]||Ce.test(a)?0:u:u.firstChild)&&a.childNodes.length;o--;)C.nodeName(c=a.childNodes[o],"tbody")&&!c.childNodes.length&&a.removeChild(c);for(C.merge(h,u.childNodes),u.textContent="";u.firstChild;)u.removeChild(u.firstChild);u=p.lastChild}else h.push(t.createTextNode(a));for(u&&p.removeChild(u),y.appendChecked||C.grep(b(h,"input"),Ee),g=0;a=h[g++];)if(r&&-1]","i"),Pe=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,Be=/\s*$/g,ze=be(g).appendChild(g.createElement("div"));function Xe(e,t){return C.nodeName(e,"table")&&C.nodeName(11!==t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ue(e){return e.type=(null!==C.find.attr(e,"type"))+"/"+e.type,e}function Ve(e){var t=Ie.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Ye(e,t){if(1===t.nodeType&&C.hasData(e)){var n,r,i,e=C._data(e),o=C._data(t,e),a=e.events;if(a)for(n in delete o.handle,o.events={},a)for(r=0,i=a[n].length;r")},clone:function(e,t,n){var r,i,o,a,s,u=C.contains(e.ownerDocument,e);if(y.html5Clone||C.isXMLDoc(e)||!Re.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(ze.innerHTML=e.outerHTML,ze.removeChild(o=ze.firstChild)),!(y.noCloneEvent&&y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||C.isXMLDoc(e)))for(r=b(o),s=b(e),a=0;null!=(i=s[a]);++a)if(r[a]){f=c=l=p=d=void 0;var l,c,f,d=i,p=r[a];if(1===p.nodeType){if(l=p.nodeName.toLowerCase(),!y.noCloneEvent&&p[C.expando]){for(c in(f=C._data(p)).events)C.removeEvent(p,c,f.handle);p.removeAttribute(C.expando)}"script"===l&&p.text!==d.text?(Ue(p).text=d.text,Ve(p)):"object"===l?(p.parentNode&&(p.outerHTML=d.outerHTML),y.html5Clone&&d.innerHTML&&!C.trim(p.innerHTML)&&(p.innerHTML=d.innerHTML)):"input"===l&&ge.test(d.type)?(p.defaultChecked=p.checked=d.checked,p.value!==d.value&&(p.value=d.value)):"option"===l?p.defaultSelected=p.selected=d.defaultSelected:"input"!==l&&"textarea"!==l||(p.defaultValue=d.defaultValue)}}if(t)if(n)for(s=s||b(e),r=r||b(o),a=0;null!=(i=s[a]);a++)Ye(i,r[a]);else Ye(e,o);return 0<(r=b(o,"script")).length&&we(r,!u&&b(e,"script")),r=s=i=null,o},cleanData:function(e,t){for(var n,r,i,o,a=0,s=C.expando,u=C.cache,l=y.attributes,c=C.event.special;null!=(n=e[a]);a++)if((t||v(n))&&(o=(i=n[s])&&u[i])){if(o.events)for(r in o.events)c[r]?C.event.remove(n,r):C.removeEvent(n,r,o.handle);u[i]&&(delete u[i],l||"undefined"==typeof n.removeAttribute?n[s]=undefined:n.removeAttribute(s),f.push(i))}}}),C.fn.extend({domManip:w,detach:function(e){return Je(this,e,!0)},remove:function(e){return Je(this,e)},text:function(e){return d(this,function(e){return e===undefined?C.text(this):this.empty().append((this[0]&&this[0].ownerDocument||g).createTextNode(e))},null,e,arguments.length)},append:function(){return w(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Xe(this,e).appendChild(e)})},prepend:function(){return w(this,arguments,function(e){var t;1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(t=Xe(this,e)).insertBefore(e,t.firstChild)})},before:function(){return w(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return w(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&C.cleanData(b(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&C.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return C.clone(this,e,t)})},html:function(e){return d(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined)return 1===t.nodeType?t.innerHTML.replace(Oe,""):undefined;if("string"==typeof e&&!Be.test(e)&&(y.htmlSerialize||!Re.test(e))&&(y.leadingWhitespace||!ve.test(e))&&!x[(me.exec(e)||["",""])[1].toLowerCase()]){e=C.htmlPrefilter(e);try{for(;n")).appendTo(t.documentElement))[0].contentWindow||Ge[0].contentDocument).document).write(),t.close(),n=Qe(e,t),Ge.detach()),Ke[e]=n),n}var n,et,tt,nt,rt,it,ot,a,at=/^margin/,st=new RegExp("^("+e+")(?!px)[a-z%]+$","i"),ut=function(e,t,n,r){var i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.apply(e,r||[]),t)e.style[i]=o[i];return r},lt=g.documentElement;function t(){var e,t=g.documentElement;t.appendChild(ot),a.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",n=tt=it=!1,et=rt=!0,T.getComputedStyle&&(e=T.getComputedStyle(a),n="1%"!==(e||{}).top,it="2px"===(e||{}).marginLeft,tt="4px"===(e||{width:"4px"}).width,a.style.marginRight="50%",et="4px"===(e||{marginRight:"4px"}).marginRight,(e=a.appendChild(g.createElement("div"))).style.cssText=a.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",e.style.marginRight=e.style.width="0",a.style.width="1px",rt=!parseFloat((T.getComputedStyle(e)||{}).marginRight),a.removeChild(e)),a.style.display="none",(nt=0===a.getClientRects().length)&&(a.style.display="",a.innerHTML="
          t
          ",a.childNodes[0].style.borderCollapse="separate",(e=a.getElementsByTagName("td"))[0].style.cssText="margin:0;border:0;padding:0;display:none",(nt=0===e[0].offsetHeight)&&(e[0].style.display="",e[1].style.display="none",nt=0===e[0].offsetHeight)),t.removeChild(ot)}ot=g.createElement("div"),(a=g.createElement("div")).style&&(a.style.cssText="float:left;opacity:.5",y.opacity="0.5"===a.style.opacity,y.cssFloat=!!a.style.cssFloat,a.style.backgroundClip="content-box",a.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===a.style.backgroundClip,(ot=g.createElement("div")).style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",a.innerHTML="",ot.appendChild(a),y.boxSizing=""===a.style.boxSizing||""===a.style.MozBoxSizing||""===a.style.WebkitBoxSizing,C.extend(y,{reliableHiddenOffsets:function(){return null==n&&t(),nt},boxSizingReliable:function(){return null==n&&t(),tt},pixelMarginRight:function(){return null==n&&t(),et},pixelPosition:function(){return null==n&&t(),n},reliableMarginRight:function(){return null==n&&t(),rt},reliableMarginLeft:function(){return null==n&&t(),it}}));var l,p,ct=/^(top|right|bottom|left)$/;function ft(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}T.getComputedStyle?(l=function(e){var t=e.ownerDocument.defaultView;return(t=t&&t.opener?t:T).getComputedStyle(e)},p=function(e,t,n){var r,i,o=e.style;return""!==(i=(n=n||l(e))?n.getPropertyValue(t)||n[t]:undefined)&&i!==undefined||C.contains(e.ownerDocument,e)||(i=C.style(e,t)),n&&!y.pixelMarginRight()&&st.test(i)&&at.test(t)&&(e=o.width,t=o.minWidth,r=o.maxWidth,o.minWidth=o.maxWidth=o.width=i,i=n.width,o.width=e,o.minWidth=t,o.maxWidth=r),i===undefined?i:i+""}):lt.currentStyle&&(l=function(e){return e.currentStyle},p=function(e,t,n){var r,i,o,a=e.style;return null==(n=(n=n||l(e))?n[t]:undefined)&&a&&a[t]&&(n=a[t]),st.test(n)&&!ct.test(t)&&(r=a.left,(o=(i=e.runtimeStyle)&&i.left)&&(i.left=e.currentStyle.left),a.left="fontSize"===t?"1em":n,n=a.pixelLeft+"px",a.left=r,o&&(i.left=o)),n===undefined?n:n+""||"auto"});var dt=/alpha\([^)]*\)/i,pt=/opacity\s*=\s*([^)]*)/i,ht=/^(none|table(?!-c[ea]).+)/,gt=new RegExp("^("+e+")(.*)$","i"),mt={position:"absolute",visibility:"hidden",display:"block"},yt={letterSpacing:"0",fontWeight:"400"},vt=["Webkit","O","Moz","ms"],xt=g.createElement("div").style;function bt(e){if(e in xt)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=vt.length;n--;)if((e=vt[n]+t)in xt)return e}function wt(e,t){for(var n,r,i,o=[],a=0,s=e.length;a
          a",F=q.getElementsByTagName("a")[0],k.setAttribute("type","checkbox"),q.appendChild(k),(F=q.getElementsByTagName("a")[0]).style.cssText="top:1px",y.getSetAttribute="t"!==q.className,y.style=/top/.test(F.getAttribute("style")),y.hrefNormalized="/a"===F.getAttribute("href"),y.checkOn=!!k.value,y.optSelected=e.selected,y.enctype=!!g.createElement("form").enctype,S.disabled=!0,y.optDisabled=!e.disabled,(k=g.createElement("input")).setAttribute("value",""),y.input=""===k.getAttribute("value"),k.value="t",k.setAttribute("type","radio"),y.radioValue="t"===k.value;var Lt=/\r/g,Ht=/[\x20\t\r\n\f]+/g;C.fn.extend({val:function(t){var n,e,r,i=this[0];return arguments.length?(r=C.isFunction(t),this.each(function(e){1===this.nodeType&&(null==(e=r?t.call(this,e,C(this).val()):t)?e="":"number"==typeof e?e+="":C.isArray(e)&&(e=C.map(e,function(e){return null==e?"":e+""})),(n=C.valHooks[this.type]||C.valHooks[this.nodeName.toLowerCase()])&&"set"in n&&n.set(this,e,"value")!==undefined||(this.value=e))})):i?(n=C.valHooks[i.type]||C.valHooks[i.nodeName.toLowerCase()])&&"get"in n&&(e=n.get(i,"value"))!==undefined?e:"string"==typeof(e=i.value)?e.replace(Lt,""):null==e?"":e:void 0}}),C.extend({valHooks:{option:{get:function(e){var t=C.find.attr(e,"value");return null!=t?t:C.trim(C.text(e)).replace(Ht," ")}},select:{get:function(e){for(var t,n=e.options,r=e.selectedIndex,i="select-one"===e.type||r<0,o=i?null:[],a=i?r+1:n.length,s=r<0?a:i?r:0;s").append(C.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},C.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){C.fn[t]=function(e){return this.on(t,e)}}),C.expr.filters.animated=function(t){return C.grep(C.timers,function(e){return t===e.elem}).length},C.offset={setOffset:function(e,t,n){var r,i,o,a,s=C.css(e,"position"),u=C(e),l={};"static"===s&&(e.style.position="relative"),o=u.offset(),r=C.css(e,"top"),a=C.css(e,"left"),s=("absolute"===s||"fixed"===s)&&-1'+(o?n.title[0]:n.title)+"
          ":"";return n.zIndex=a,t([n.shade?'
          ':"",'
          '+(e&&2!=n.type?"":o)+'
          '+(0==n.type&&-1!==n.icon?'':"")+((1!=n.type||!e)&&n.content||"")+'
          '+(i=s?'':"",n.closeBtn&&(i+=''),i)+""+(n.btn?function(){var e="";"string"==typeof n.btn&&(n.btn=[n.btn]);for(var t=0,i=n.btn.length;t'+n.btn[t]+"";return'
          '+e+"
          "}():"")+(n.resize?'':"")+"
          "],o,h('
          ')),this},t.pt.creat=function(){var e,n=this,a=n.config,o=n.index,s="object"==typeof(l=a.content),r=h("body");if(!a.id||!h("#"+a.id)[0]){switch("string"==typeof a.area&&(a.area="auto"===a.area?["",""]:[a.area,""]),a.shift&&(a.anim=a.shift),6==m.ie&&(a.fixed=!1),a.type){case 0:a.btn="btn"in a?a.btn:c.btn[0],m.closeAll("dialog");break;case 2:var l=a.content=s?a.content:[a.content||"","auto"];a.content='';break;case 3:delete a.title,delete a.closeBtn,-1===a.icon&&a.icon,m.closeAll("loading");break;case 4:s||(a.content=[a.content,"body"]),a.follow=a.content[1],a.content=a.content[0]+'',delete a.title,a.tips="object"==typeof a.tips?a.tips:[a.tips,!0],a.tipsMore||m.closeAll("tips")}n.vessel(s,function(e,t,i){r.append(e[0]),s?2==a.type||4==a.type?h("body").append(e[1]):l.parents("."+d[0])[0]||(l.data("display",l.css("display")).show().addClass("layui-layer-wrap").wrap(e[1]),h("#"+d[0]+o).find("."+d[5]).before(t)):r.append(e[1]),h("#"+d.MOVE)[0]||r.append(c.moveElem=i),n.layero=h("#"+d[0]+o),n.shadeo=h("#"+d.SHADE+o),a.scrollbar||d.html.css("overflow","hidden").attr("layer-full",o)}).auto(o),n.shadeo.css({"background-color":a.shade[1]||"#000",opacity:a.shade[0]||a.shade}),2==a.type&&6==m.ie&&n.layero.find("iframe").attr("src",l[0]),4==a.type?n.tips():(n.offset(),parseInt(c.getStyle(document.getElementById(d.MOVE),"z-index"))||(n.layero.css("visibility","hidden"),m.ready(function(){n.offset(),n.layero.css("visibility","visible")}))),a.fixed&&f.on("resize",function(){n.offset(),(/^\d+%$/.test(a.area[0])||/^\d+%$/.test(a.area[1]))&&n.auto(o),4==a.type&&n.tips()}),a.time<=0||setTimeout(function(){m.close(n.index)},a.time),n.move().callback(),d.anim[a.anim]&&(e="layer-anim "+d.anim[a.anim],n.layero.addClass(e).one("webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend",function(){h(this).removeClass(e)})),a.isOutAnim&&n.layero.data("isOutAnim",!0)}},t.pt.auto=function(e){var t=this.config,i=h("#"+d[0]+e),n=(""===t.area[0]&&0t.maxWidth&&i.width(t.maxWidth)),[i.innerWidth(),i.innerHeight()]),a=i.find(d[1]).outerHeight()||0,o=i.find("."+d[6]).outerHeight()||0,e=function(e){(e=i.find(e)).height(n[1]-a-o-2*(0|parseFloat(e.css("padding-top"))))};return 2===t.type?e("iframe"):""===t.area[1]?0t.maxHeight?(n[1]=t.maxHeight,e("."+d[5])):t.fixed&&n[1]>=f.height()&&(n[1]=f.height(),e("."+d[5])):e("."+d[5]),this},t.pt.offset=function(){var e=this,t=e.config,i=e.layero,n=[i.outerWidth(),i.outerHeight()],a="object"==typeof t.offset;e.offsetTop=(f.height()-n[1])/2,e.offsetLeft=(f.width()-n[0])/2,a?(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=f.width()-n[0]:"b"===t.offset?e.offsetTop=f.height()-n[1]:"l"===t.offset?e.offsetLeft=0:"lt"===t.offset?(e.offsetTop=0,e.offsetLeft=0):"lb"===t.offset?(e.offsetTop=f.height()-n[1],e.offsetLeft=0):"rt"===t.offset?(e.offsetTop=0,e.offsetLeft=f.width()-n[0]):"rb"===t.offset?(e.offsetTop=f.height()-n[1],e.offsetLeft=f.width()-n[0]):e.offsetTop=t.offset),t.fixed||(e.offsetTop=/%$/.test(e.offsetTop)?f.height()*parseFloat(e.offsetTop)/100:parseFloat(e.offsetTop),e.offsetLeft=/%$/.test(e.offsetLeft)?f.width()*parseFloat(e.offsetLeft)/100:parseFloat(e.offsetLeft),e.offsetTop+=f.scrollTop(),e.offsetLeft+=f.scrollLeft()),i.attr("minLeft")&&(e.offsetTop=f.height()-(i.find(d[1]).outerHeight()||0),e.offsetLeft=i.css("left")),i.css({top:e.offsetTop,left:e.offsetLeft})},t.pt.tips=function(){var e=this.config,t=this.layero,i=[t.outerWidth(),t.outerHeight()],n=h(e.follow),a={width:(n=n[0]?n:h("body")).outerWidth(),height:n.outerHeight(),top:n.offset().top,left:n.offset().left},o=t.find(".layui-layer-TipsG"),n=e.tips[0];e.tips[1]||o.remove(),a.autoLeft=function(){0":'',o=i.success;return delete i.success,m.open(h.extend({type:1,btn:["确定","取消"],content:t,skin:"layui-layer-prompt"+g("prompt"),maxWidth:f.width(),success:function(e){(a=e.find(".layui-layer-input")).val(i.value||"").focus(),"function"==typeof o&&o(e)},resize:!1,yes:function(e){var t=a.val();""===t?a.focus():t.length>(i.maxlength||500)?m.tips("最多输入"+(i.maxlength||500)+"个字数",a,{tips:1}):n&&n(t,e,a)}},i))},m.tab=function(n){var a=(n=n||{}).tab||{},o="layui-this",s=n.success;return delete n.success,m.open(h.extend({type:1,skin:"layui-layer-tab"+g("tab"),resize:!1,title:function(){var e=a.length,t=1,i="";if(0'+a[0].title+"";t"+a[t].title+"";return i}(),content:'
            '+function(){var e=a.length,t=1,i="";if(0'+(a[0].content||"no content")+"";t'+(a[t].content||"no content")+"";return i}()+"
          ",success:function(e){var t=e.find(".layui-layer-title").children(),i=e.find(".layui-layer-tabmain").children();t.on("mousedown",function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0;var e=h(this),t=e.index();e.addClass(o).siblings().removeClass(o),i.eq(t).show().siblings().hide(),"function"==typeof n.change&&n.change(t)}),"function"==typeof s&&s(e)}},n))},m.photos=function(i,e,n){var a={};if((i=i||{}).photos){var t=!("string"==typeof i.photos||i.photos instanceof h),o=t?i.photos:{},s=o.data||[],r=o.start||0,l=(a.imgIndex=1+(0|r),i.img=i.img||"img",i.success);if(delete i.success,t){if(0===s.length)return m.msg("没有图片")}else{var f=h(i.photos),c=function(){s=[],f.find(i.img).each(function(e){var t=h(this);t.attr("layer-index",e),s.push({alt:t.attr("alt"),pid:t.attr("layer-pid"),src:t.attr("layer-src")||t.attr("src"),thumb:t.attr("src")})})};if(c(),0===s.length)return;if(e||f.on("click",i.img,function(){c();var e=h(this).attr("layer-index");m.photos(h.extend(i,{photos:{start:e,data:s,tab:i.tab},full:i.full}),!0)}),!e)return}a.imgprev=function(e){a.imgIndex--,a.imgIndex<1&&(a.imgIndex=s.length),a.tabimg(e)},a.imgnext=function(e,t){a.imgIndex++,a.imgIndex>s.length&&(a.imgIndex=1,t)||a.tabimg(e)},a.keyup=function(e){var t;a.end||(t=e.keyCode,e.preventDefault(),37===t?a.imgprev(!0):39===t?a.imgnext(!0):27===t&&m.close(a.index))},a.tabimg=function(e){if(!(s.length<=1))return o.start=a.imgIndex-1,m.close(a.index),m.photos(i,!0,e)},a.event=function(){a.bigimg.find(".layui-layer-imgprev").on("click",function(e){e.preventDefault(),a.imgprev(!0)}),a.bigimg.find(".layui-layer-imgnext").on("click",function(e){e.preventDefault(),a.imgnext(!0)}),h(document).on("keyup",a.keyup)},a.loadi=m.load(1,{shade:!("shade"in i)&&.9,scrollbar:!1});var t=s[r].src,d=function(e){var t;m.close(a.loadi),n&&(i.anim=-1),a.index=m.open(h.extend({type:1,id:"layui-layer-photos",area:(e=[e.width,e.height],t=[h(p).width()-100,h(p).height()-100],!i.full&&(e[0]>t[0]||e[1]>t[1])&&((t=[e[0]/t[0],e[1]/t[1]])[1]'+(s[r].alt||'+(1
          '+(s[r].alt||"")+""+a.imgIndex+" / "+s.length+"
          ":"")+"
          ",success:function(e,t){a.bigimg=e.find(".layui-layer-phimg"),a.imgsee=e.find(".layui-layer-imgbar"),a.event(e),i.tab&&i.tab(s[r],e),"function"==typeof l&&l(e)},end:function(){a.end=!0,h(document).off("keyup",a.keyup)}},i))},u=function(){m.close(a.loadi),m.msg("当前图片地址异常
          是否继续查看下一张?",{time:3e4,btn:["下一张","不看了"],yes:function(){1',t.bar1?'
        • '+l[0]+"
        • ":"",t.bar2?'
        • '+l[1]+"
        • ":"",'
        • '+l[2]+"
        • ",""].join("")),c=l.find("."+o),g=function(){a.scrollTop()>=t.showHeight?e||(c.show(),e=1):e&&(c.hide(),e=0)};u("."+n)[0]||("object"==typeof t.css&&l.css(t.css),r.append(l),g(),l.find("li").on("click",function(){var e=u(this).attr("lay-type");"top"===e&&u("html,body").animate({scrollTop:0},200),t.click&&t.click.call(this,e)}),a.on("scroll",function(){clearTimeout(i),i=setTimeout(function(){g()},100)}))},countdown:function(e,t,i){var n=this,o="function"==typeof t,a=new Date(e).getTime(),r=new Date(!t||o?(new Date).getTime():t).getTime(),a=a-r,l=[Math.floor(a/864e5),Math.floor(a/36e5)%24,Math.floor(a/6e4)%60,Math.floor(a/1e3)%60],o=(o&&(i=t),setTimeout(function(){n.countdown(e,r+1e3,i)},1e3));return i&&i(0]|&(?=#[a-zA-Z0-9]+)/g.test(e+="")?e.replace(/&(?!#?[a-zA-Z0-9]+;)/g,"&").replace(//g,">").replace(/'/g,"'").replace(/"/g,"""):e},unescape:function(e){return e!==undefined&&null!==e||(e=""),(e+="").replace(/\&/g,"&").replace(/\</g,"<").replace(/\>/g,">").replace(/\'/g,"'").replace(/\"/g,'"')},toVisibleArea:function(e){var t,i,n,o,a,r,l,c;(e=u.extend({margin:160,duration:200,type:"y"},e)).scrollElem[0]&&e.thisElem[0]&&(t=e.scrollElem,l=e.thisElem,n=(a="y"===e.type)?"top":"left",o=t[i=a?"scrollTop":"scrollLeft"](),a=t[a?"height":"width"](),r=t.offset()[n],c={},((l=l.offset()[n]-r)>a-e.margin||l."+y,k=function(e){var i=this;i.index=++c.index,i.config=s.extend({},i.config,c.config,e),i.init()};k.prototype.config={trigger:"click",content:"",className:"",style:"",show:!1,isAllowSpread:!0,isSpreadItem:!0,data:[],delay:300},k.prototype.reload=function(e){var i=this;i.config=s.extend({},i.config,e),i.init(!0)},k.prototype.init=function(e){var i=this,t=i.config,n=t.elem=s(t.elem);return 1",(t="href"in i?''+l+"":l,n?'
          '+t+("parent"===o?'':"group"===o&&u.isAllowSpread?'':"")+"
          ":'
          '+t+"
          "),""].join(""))).data("item",i),n&&(a=s('
          '),t=s("
            "),"parent"===o?(a.append(d(t,i.child)),l.append(a)):l.append(d(t,i.child))),r.append(l))}),r},t=['
            ',"
            "].join("");!(e="contextmenu"!==u.trigger&&!lay.isTopElem(u.elem[0])?e:!0)&&u.elem.data(r+"_opened")||(n.elemView=s(t),n.elemView.append(u.content||(e=s('
              '),0no menu'),e)),u.className&&n.elemView.addClass(u.className),u.style&&n.elemView.attr("style",u.style),c.thisId=u.id,n.remove(),i.append(n.elemView),u.elem.data(r+"_opened",!0),n.position(),(p.prevElem=n.elemView).data("prevElem",u.elem),n.elemView.find(".layui-menu").on(l,function(e){layui.stope(e)}),n.elemView.find(".layui-menu li").on("click",function(e){var i=s(this),t=i.data("item")||{};t.child&&0n.width()&&(t.addClass(C),(i=t[0].getBoundingClientRect()).left<0&&t.removeClass(C)),i.bottom>n.height()&&t.eq(0).css("margin-top",-(i.bottom-n.height()+5)))}).on("mouseleave",t,function(e){var i=s(this).children("."+w);i.removeClass(C),i.css("margin-top",0)}),c.reload=function(e,i){e=p.getThis(e);return e?(e.reload(i),p.call(e)):this},c.render=function(e){e=new k(e);return p.call(e)},e(o,c)});layui.define("jquery",function(e){"use strict";var h=layui.$,t={config:{},index:layui.slider?layui.slider.index+1e4:0,set:function(e){var i=this;return i.config=h.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,a,e,i)}},a="slider",c="layui-disabled",y="layui-slider-bar",g="layui-slider-wrap",b="layui-slider-wrap-btn",x="layui-slider-tips",T="layui-slider-input-txt",w="layui-slider-hover",i=function(e){var i=this;i.index=++t.index,i.config=h.extend({},i.config,t.config,e),i.render()};i.prototype.config={type:"default",min:0,max:100,value:0,step:1,showstep:!1,tips:!0,input:!1,range:!1,height:200,disabled:!1,theme:"#009688"},i.prototype.render=function(){var a,n=this,l=n.config,e=(l.step<1&&(l.step=1),l.maxl.min?i:l.min,l.value[1]=s>l.min?s:l.min,l.value[0]=l.value[0]>l.max?l.max:l.value[0],l.value[1]=l.value[1]>l.max?l.max:l.value[1],i=Math.floor((l.value[0]-l.min)/(l.max-l.min)*100),t=(s=Math.floor((l.value[1]-l.min)/(l.max-l.min)*100))-i+"%",i+="%",s+="%"):("object"==typeof l.value&&(l.value=Math.min.apply(null,l.value)),l.valuel.max&&(l.value=l.max),t=Math.floor((l.value-l.min)/(l.max-l.min)*100)+"%"),l.disabled?"#c2c2c2":l.theme),i='
              '+(l.tips?'
              ':"")+'
              '+(l.range?'
              ':"")+"
              ",t=h(l.elem),s=t.next(".layui-slider");if(s[0]&&s.remove(),n.elemTemp=h(i),l.range?(n.elemTemp.find("."+g).eq(0).data("value",l.value[0]),n.elemTemp.find("."+g).eq(1).data("value",l.value[1])):n.elemTemp.find("."+g).data("value",l.value),t.html(n.elemTemp),"vertical"===l.type&&n.elemTemp.height(l.height+"px"),l.showstep){for(var o=(l.max-l.min)/l.step,r="",u=1;u<1+o;u++){var d=100*u/o;d<100&&(r+='
              ')}n.elemTemp.append(r)}l.input&&!l.range&&(e=h('
              '),t.css("position","relative"),t.append(e),t.find("."+T).children("input").val(l.value),"vertical"===l.type?e.css({left:0,top:-48}):n.elemTemp.css("margin-right",e.outerWidth()+15)),l.disabled?(n.elemTemp.addClass(c),n.elemTemp.find("."+b).addClass(c)):n.slide(),n.elemTemp.find("."+b).on("mouseover",function(){var e="vertical"===l.type?l.height:n.elemTemp[0].offsetWidth,i=n.elemTemp.find("."+g),t=("vertical"===l.type?e-h(this).parent()[0].offsetTop-i.height():h(this).parent()[0].offsetLeft)/e*100,i=h(this).parent().data("value"),e=l.setTips?l.setTips(i):i;n.elemTemp.find("."+x).html(e),clearTimeout(a),a=setTimeout(function(){"vertical"===l.type?n.elemTemp.find("."+x).css({bottom:t+"%","margin-bottom":"20px",display:"inline-block"}):n.elemTemp.find("."+x).css({left:t+"%",display:"inline-block"})},300)}).on("mouseout",function(){clearTimeout(a),n.elemTemp.find("."+x).css("display","none")})},i.prototype.slide=function(e,i,t){var o=this.config,r=this.elemTemp,u=function(){return"vertical"===o.type?o.height:r[0].offsetWidth},d=r.find("."+g),s=r.next(".layui-slider-input"),c=s.children("."+T).children("input").val(),m=100/((o.max-o.min)/Math.ceil(o.step)),v=function(e,i){e=100<(e=100t[1]&&t.reverse(),o.change&&o.change(o.range?t:n)},p=function(e){var i=e/u()*100/m,t=Math.round(i)*m;return t=e==u()?Math.ceil(i)*m:t},f=h(['
              u()?u():i)/u()*100/m;v(i,l),s.addClass(w),r.find("."+x).show(),e.preventDefault()},i=function(){s.removeClass(w),r.find("."+x).hide()},t=function(){i&&i(),f.remove()},h("#LAY-slider-moving")[0]||h("body").append(f),f.on("mousemove",e),f.on("mouseup",t).on("mouseleave",t)})}),r.on("click",function(e){var i=h("."+b),t=h(this);!i.is(event.target)&&0===i.has(event.target).length&&i.length&&(t=(i=(i=(i="vertical"===o.type?u()-e.clientY+t.offset().top-h(window).scrollTop():e.clientX-t.offset().left-h(window).scrollLeft())<0?0:i)>u()?u():i)/u()*100/m,i=o.range?"vertical"===o.type?Math.abs(i-parseInt(h(d[0]).css("bottom")))>Math.abs(i-parseInt(h(d[1]).css("bottom")))?1:0:Math.abs(i-d[0].offsetLeft)>Math.abs(i-d[1].offsetLeft)?1:0:0,v(t,i),e.preventDefault())}),s.children(".layui-slider-input-btn").children("i").each(function(i){h(this).on("click",function(){c=s.children("."+T).children("input").val();var e=((c=1==i?c-o.stepo.max?o.max:Number(c)+o.step)-o.min)/(o.max-o.min)*100/m;v(e,0)})});var a=function(){var e=this.value,e=(e=(e=(e=isNaN(e)?0:e)o.max?o.max:e,((this.value=e)-o.min)/(o.max-o.min)*100/m);v(e,0)};s.children("."+T).children("input").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),a.call(this))}).on("change",a)},i.prototype.events=function(){this.config},t.render=function(e){e=new i(e);return function(){var t=this,a=t.config;return{setValue:function(e,i){return a.value=e,t.slide("set",e,i||0)},config:a}}.call(e)},e(a,t)});layui.define(["jquery","lay"],function(e){"use strict";var k=layui.jquery,n=layui.lay,r=layui.device().mobile?"click":"mousedown",l={config:{},index:layui.colorpicker?layui.colorpicker.index+1e4:0,set:function(e){var i=this;return i.config=k.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,"colorpicker",e,i)}},t="layui-colorpicker",c=".layui-colorpicker-main",y="layui-icon-down",x="layui-icon-close",P="layui-colorpicker-trigger-span",C="layui-colorpicker-trigger-i",B="layui-colorpicker-side-slider",w="layui-colorpicker-basis",D="layui-colorpicker-alpha-bgcolor",j="layui-colorpicker-alpha-slider",E="layui-colorpicker-basis-cursor",F="layui-colorpicker-main-input",H=function(e){var i={h:0,s:0,b:0},o=Math.min(e.r,e.g,e.b),r=Math.max(e.r,e.g,e.b),n=r-o;return i.b=r,i.s=0!=r?255*n/r:0,0!=i.s?e.r==r?i.h=(e.g-e.b)/n:e.g==r?i.h=2+(e.b-e.r)/n:i.h=4+(e.r-e.g)/n:i.h=-1,r==o&&(i.h=0),i.h*=60,i.h<0&&(i.h+=360),i.s*=100/255,i.b*=100/255,i},M=function(e){var i,o={},r=e.h,n=255*e.s/100,e=255*e.b/100;return 0==n?o.r=o.g=o.b=e:(e=r%60*((i=e)-(n=(255-n)*e/255))/60,(r=360==r?0:r)<60?(o.r=i,o.b=n,o.g=n+e):r<120?(o.g=i,o.b=n,o.r=i-e):r<180?(o.g=i,o.r=n,o.b=n+e):r<240?(o.b=i,o.r=n,o.g=i-e):r<300?(o.b=i,o.g=n,o.r=n+e):r<360?(o.r=i,o.g=n,o.b=i-e):(o.r=0,o.g=0,o.b=0)),{r:Math.round(o.r),g:Math.round(o.g),b:Math.round(o.b)}},f=function(e){var e=M(e),o=[e.r.toString(16),e.g.toString(16),e.b.toString(16)];return k.each(o,function(e,i){1==i.length&&(o[e]="0"+i)}),o.join("")},Y=function(e){e=e.match(/[0-9]{1,3}/g)||[];return{r:e[0],g:e[1],b:e[2]}},I=k(window),a=k(document),s=function(e){this.index=++l.index,this.config=k.extend({},this.config,l.config,e),this.render()};s.prototype.config={color:"",size:null,alpha:!1,format:"hex",predefine:!1,colors:["#009688","#5FB878","#1E9FFF","#FF5722","#FFB800","#01AAED","#999","#c00","#ff8c00","#ffd700","#90ee90","#00ced1","#1e90ff","#c71585","rgb(0, 186, 189)","rgb(255, 120, 0)","rgb(250, 212, 0)","#393D49","rgba(0,0,0,.5)","rgba(255, 69, 0, 0.68)","rgba(144, 240, 144, 0.5)","rgba(31, 147, 255, 0.73)"]},s.prototype.render=function(){var e=this,i=e.config,o=k(i.elem);if(1',"",'','',"","","
              "].join("")),r=i.elem=k(i.elem);i.size&&o.addClass("layui-colorpicker-"+i.size),r.addClass("layui-inline").html(e.elemColorBox=o),e.color=e.elemColorBox.find("."+P)[0].style.background,e.events()},s.prototype.renderPicker=function(){var o,e=this,i=e.config,r=e.elemColorBox[0],i=e.elemPicker=k(['
              ','
              ','
              ','
              ','
              ','
              ',"
              ",'
              ','
              ',"
              ","
              ",'
              ','
              ','
              ',"
              ","
              ",i.predefine?(o=['
              '],layui.each(i.colors,function(e,i){o.push(['
              ','
              ',"
              "].join(""))}),o.push("
              "),o.join("")):"",'
              ','
              ','',"
              ",'
              ','','',"","
              "].join(""));e.elemColorBox.find("."+P)[0];k(c)[0]&&k(c).data("index")==e.index?e.removePicker(s.thisElemInd):(e.removePicker(s.thisElemInd),k("body").append(i)),s.thisElemInd=e.index,s.thisColor=r.style.background,e.position(),e.pickerEvents()},s.prototype.removePicker=function(e){this.config;return k("#layui-colorpicker"+(e||this.index)).remove(),this},s.prototype.position=function(){var e=this,i=e.config;return n.position(e.bindElem||e.elemColorBox[0],e.elemPicker[0],{position:i.position,align:"center"}),e},s.prototype.val=function(){var e,i=this,o=(i.config,i.elemColorBox.find("."+P)),r=i.elemPicker.find("."+F),n=o[0].style.backgroundColor;n?(e=H(Y(n)),o=o.attr("lay-type"),i.select(e.h,e.s,e.b),"torgb"===o&&r.find("input").val(n),"rgba"===o&&(e=Y(n),3==(n.match(/[0-9]{1,3}/g)||[]).length?(r.find("input").val("rgba("+e.r+", "+e.g+", "+e.b+", 1)"),i.elemPicker.find("."+j).css("left",280)):(r.find("input").val(n),o=280*n.slice(n.lastIndexOf(",")+1,n.length-1),i.elemPicker.find("."+j).css("left",o)),i.elemPicker.find("."+D)[0].style.background="linear-gradient(to right, rgba("+e.r+", "+e.g+", "+e.b+", 0), rgb("+e.r+", "+e.g+", "+e.b+"))")):(i.select(0,100,100),r.find("input").val(""),i.elemPicker.find("."+D)[0].style.background="",i.elemPicker.find("."+j).css("left",280))},s.prototype.side=function(){var n=this,l=n.config,t=n.elemColorBox.find("."+P),c=t.attr("lay-type"),a=n.elemPicker.find(".layui-colorpicker-side"),e=n.elemPicker.find("."+B),s=n.elemPicker.find("."+w),r=n.elemPicker.find("."+E),d=n.elemPicker.find("."+D),f=n.elemPicker.find("."+j),u=e[0].offsetTop/180*360,p=100-(r[0].offsetTop+3)/180*100,g=(r[0].offsetLeft+3)/260*100,h=Math.round(f[0].offsetLeft/280*100)/100,v=n.elemColorBox.find("."+C),i=n.elemPicker.find(".layui-colorpicker-pre").children("div"),b=function(e,i,o,r){n.select(e,i,o);e=M({h:e,s:i,b:o});v.addClass(y).removeClass(x),t[0].style.background="rgb("+e.r+", "+e.g+", "+e.b+")","torgb"===c&&n.elemPicker.find("."+F).find("input").val("rgb("+e.r+", "+e.g+", "+e.b+")"),"rgba"===c&&(f.css("left",280*r),n.elemPicker.find("."+F).find("input").val("rgba("+e.r+", "+e.g+", "+e.b+", "+r+")"),t[0].style.background="rgba("+e.r+", "+e.g+", "+e.b+", "+r+")",d[0].style.background="linear-gradient(to right, rgba("+e.r+", "+e.g+", "+e.b+", 0), rgb("+e.r+", "+e.g+", "+e.b+"))"),l.change&&l.change(n.elemPicker.find("."+F).find("input").val())},o=k(['
              '].join("")),m=function(e){k("#LAY-colorpicker-moving")[0]||k("body").append(o),o.on("mousemove",e),o.on("mouseup",function(){o.remove()}).on("mouseleave",function(){o.remove()})};e.on("mousedown",function(e){var r=this.offsetTop,n=e.clientY;m(function(e){var i=r+(e.clientY-n),o=a[0].offsetHeight,o=(i=o<(i=i<0?0:i)?o:i)/180*360;b(u=o,g,p,h),e.preventDefault()}),e.preventDefault()}),a.on("click",function(e){var i=e.clientY-k(this).offset().top,i=(i=(i=i<0?0:i)>this.offsetHeight?this.offsetHeight:i)/180*360;b(u=i,g,p,h),e.preventDefault()}),r.on("mousedown",function(e){var l=this.offsetTop,t=this.offsetLeft,c=e.clientY,a=e.clientX;layui.stope(e),m(function(e){var i=l+(e.clientY-c),o=t+(e.clientX-a),r=s[0].offsetHeight-3,n=s[0].offsetWidth-3,n=((o=n<(o=o<-3?-3:o)?n:o)+3)/260*100,o=100-((i=r<(i=i<-3?-3:i)?r:i)+3)/180*100;b(u,g=n,p=o,h),e.preventDefault()}),e.preventDefault()}),s.on("mousedown",function(e){var i=e.clientY-k(this).offset().top-3+I.scrollTop(),o=e.clientX-k(this).offset().left-3+I.scrollLeft(),o=((i=i<-3?-3:i)>this.offsetHeight-3&&(i=this.offsetHeight-3),((o=(o=o<-3?-3:o)>this.offsetWidth-3?this.offsetWidth-3:o)+3)/260*100),i=100-(i+3)/180*100;b(u,g=o,p=i,h),layui.stope(e),e.preventDefault(),r.trigger(e,"mousedown")}),f.on("mousedown",function(e){var r=this.offsetLeft,n=e.clientX;m(function(e){var i=r+(e.clientX-n),o=d[0].offsetWidth,o=(o<(i=i<0?0:i)&&(i=o),Math.round(i/280*100)/100);b(u,g,p,h=o),e.preventDefault()}),e.preventDefault()}),d.on("click",function(e){var i=e.clientX-k(this).offset().left,i=((i=i<0?0:i)>this.offsetWidth&&(i=this.offsetWidth),Math.round(i/280*100)/100);b(u,g,p,h=i),e.preventDefault()}),i.each(function(){k(this).on("click",function(){k(this).parent(".layui-colorpicker-pre").addClass("selected").siblings().removeClass("selected");var e=this.style.backgroundColor,i=H(Y(e)),o=e.slice(e.lastIndexOf(",")+1,e.length-1);u=i.h,g=i.s,p=i.b,3==(e.match(/[0-9]{1,3}/g)||[]).length&&(o=1),h=o,b(i.h,i.s,i.b,o)})})},s.prototype.select=function(e,i,o,r){var n=this,l=(n.config,f({h:e,s:100,b:100})),t=f({h:e,s:i,b:o}),e=e/360*180,o=180-o/100*180-3,i=i/100*260-3;n.elemPicker.find("."+B).css("top",e),n.elemPicker.find("."+w)[0].style.background="#"+l,n.elemPicker.find("."+E).css({top:o,left:i}),"change"!==r&&n.elemPicker.find("."+F).find("input").val("#"+t)},s.prototype.pickerEvents=function(){var c=this,a=c.config,s=c.elemColorBox.find("."+P),d=c.elemPicker.find("."+F+" input"),o={clear:function(e){s[0].style.background="",c.elemColorBox.find("."+C).removeClass(y).addClass(x),c.color="",a.done&&a.done(""),c.removePicker()},confirm:function(e,i){var o,r,n=d.val(),l=n,t={};if(-1>16,g:(65280&o)>>8,b:255&o},t=H(r),s[0].style.background=l="#"+f(t),c.elemColorBox.find("."+C).removeClass(x).addClass(y)),"change"===i)return c.select(t.h,t.s,t.b,i),void(a.change&&a.change(l));c.color=n,a.done&&a.done(n),c.removePicker()}};c.elemPicker.on("click","*[colorpicker-events]",function(){var e=k(this),i=e.attr("colorpicker-events");o[i]&&o[i].call(this,e)}),d.on("keyup",function(e){var i=k(this);o.confirm.call(this,i,13===e.keyCode?null:"change")})},s.prototype.events=function(){var i=this,e=i.config,o=i.elemColorBox.find("."+P);i.elemColorBox.on("click",function(){i.renderPicker(),k(c)[0]&&(i.val(),i.side())}),e.elem[0]&&!i.elemColorBox[0].eventHandler&&(a.on(r,function(e){k(e.target).hasClass(t)||k(e.target).parents("."+t)[0]||k(e.target).hasClass(c.replace(/\./g,""))||k(e.target).parents(c)[0]||i.elemPicker&&(i.color?(e=H(Y(i.color)),i.select(e.h,e.s,e.b)):i.elemColorBox.find("."+C).removeClass(y).addClass(x),o[0].style.background=i.color||"",i.removePicker())}),I.on("resize",function(){if(!i.elemPicker||!k(c)[0])return!1;i.position()}),i.elemColorBox[0].eventHandler=!0)},l.render=function(e){e=new s(e);return function(){return{config:this.config}}.call(e)},e("colorpicker",l)});layui.define("jquery",function(t){"use strict";var u=layui.$,d=(layui.hint(),layui.device()),c="element",r="layui-this",y="layui-show",i=function(){this.config={}},h=(i.prototype.set=function(t){return u.extend(!0,this.config,t),this},i.prototype.on=function(t,i){return layui.onevent.call(this,c,t,i)},i.prototype.tabAdd=function(t,i){var a,t=u(".layui-tab[lay-filter="+t+"]"),e=t.children(".layui-tab-title"),l=e.children(".layui-tab-bar"),t=t.children(".layui-tab-content"),n=""+(i.title||"unnaming")+"";return l[0]?l.before(n):e.append(n),t.append('
              '+(i.content||"")+"
              "),C.hideTabMore(!0),C.tabAuto(),this},i.prototype.tabDelete=function(t,i){t=u(".layui-tab[lay-filter="+t+"]").children(".layui-tab-title").find('>li[lay-id="'+i+'"]');return C.tabDelete(null,t),this},i.prototype.tabChange=function(t,i){t=u(".layui-tab[lay-filter="+t+"]").children(".layui-tab-title").find('>li[lay-id="'+i+'"]');return C.tabClick.call(t[0],null,null,t),this},i.prototype.tab=function(a){a=a||{},e.on("click",a.headerElem,function(t){var i=u(this).index();C.tabClick.call(this,t,i,null,a)})},i.prototype.progress=function(t,i){var a="layui-progress",t=u("."+a+"[lay-filter="+t+"]").find("."+a+"-bar"),a=t.find("."+a+"-text");return t.css("width",i).attr("lay-percent",i),a.text(i),this},".layui-nav"),f="layui-nav-item",l="layui-nav-bar",p="layui-nav-tree",b="layui-nav-child",v="layui-nav-more",m="layui-anim layui-anim-upbit",C={tabClick:function(t,i,a,e){e=e||{};var a=a||u(this),i=i||a.parent().children("li").index(a),l=e.headerElem?a.parent():a.parents(".layui-tab").eq(0),e=e.bodyElem?u(e.bodyElem):l.children(".layui-tab-content").children(".layui-tab-item"),n=a.find("a"),n="javascript:;"!==n.attr("href")&&"_blank"===n.attr("target"),s="string"==typeof a.attr("lay-unselect"),o=l.attr("lay-filter");n||s||(a.addClass(r).siblings().removeClass(r),e.eq(i).addClass(y).siblings().removeClass(y)),layui.event.call(this,c,"tab("+o+")",{elem:l,index:i})},tabDelete:function(t,i){var i=i||u(this).parent(),a=i.index(),e=i.parents(".layui-tab").eq(0),l=e.children(".layui-tab-content").children(".layui-tab-item"),n=e.attr("lay-filter");i.hasClass(r)&&(i.next()[0]&&i.next().is("li")?C.tabClick.call(i.next()[0],null,a+1):i.prev()[0]&&i.prev().is("li")&&C.tabClick.call(i.prev()[0],null,a-1)),i.remove(),l.eq(a).remove(),setTimeout(function(){C.tabAuto()},50),layui.event.call(this,c,"tabDelete("+n+")",{elem:e,index:a})},tabAuto:function(){var e="layui-tab-bar",l="layui-tab-close",n=this;u(".layui-tab").each(function(){var t=u(this),i=t.children(".layui-tab-title"),a=(t.children(".layui-tab-content").children(".layui-tab-item"),'lay-stope="tabmore"'),a=u('');n===window&&8!=d.ie&&C.hideTabMore(!0),t.attr("lay-allowClose")&&i.find("li").each(function(){var t,i=u(this);i.find("."+l)[0]||((t=u('')).on("click",C.tabDelete),i.append(t))}),"string"!=typeof t.attr("lay-unauto")&&(i.prop("scrollWidth")>i.outerWidth()+1?i.find("."+e)[0]||(i.append(a),t.attr("overflow",""),a.on("click",function(t){i[this.title?"removeClass":"addClass"]("layui-tab-more"),this.title=this.title?"":"\u6536\u7f29"})):(i.find("."+e).remove(),t.removeAttr("overflow")))})},hideTabMore:function(t){var i=u(".layui-tab-title");!0!==t&&"tabmore"===u(t.target).attr("lay-stope")||(i.removeClass("layui-tab-more"),i.find(".layui-tab-bar").attr("title",""))},clickThis:function(){var t=u(this),i=t.parents(h),a=i.attr("lay-filter"),e=t.parent(),l=t.siblings("."+b),n="string"==typeof e.attr("lay-unselect");"javascript:;"!==t.attr("href")&&"_blank"===t.attr("target")||n||l[0]||(i.find("."+r).removeClass(r),e.addClass(r)),i.hasClass(p)&&(l.removeClass(m),l[0]&&(e["none"===l.css("display")?"addClass":"removeClass"](f+"ed"),"all"===i.attr("lay-shrink")&&e.siblings().removeClass(f+"ed"))),layui.event.call(this,c,"nav("+a+")",t)},collapse:function(){var t=u(this),i=t.find(".layui-colla-icon"),a=t.siblings(".layui-colla-content"),e=t.parents(".layui-collapse").eq(0),l=e.attr("lay-filter"),n="none"===a.css("display");"string"==typeof e.attr("lay-accordion")&&((e=e.children(".layui-colla-item").children("."+y)).siblings(".layui-colla-title").children(".layui-colla-icon").html(""),e.removeClass(y)),a[n?"addClass":"removeClass"](y),i.html(n?"":""),layui.event.call(this,c,"collapse("+l+")",{title:t,content:a,show:n})}},a=(i.prototype.render=i.prototype.init=function(t,i){var a=i?'[lay-filter="'+i+'"]':"",i={tab:function(){C.tabAuto.call({})},nav:function(){var s={},o={},c={},r="layui-nav-title";u(h+a).each(function(t){var i=u(this),a=u(''),e=i.find("."+f);i.find("."+l)[0]||(i.append(a),(i.hasClass(p)?e.find("dd,>."+r):e).on("mouseenter",function(){!function(t,i,a){var e,l=u(this),n=l.find("."+b);i.hasClass(p)?n[0]||(e=l.children("."+r),t.css({top:l.offset().top-i.offset().top,height:(e[0]?e:l).outerHeight(),opacity:1})):(n.addClass(m),n.hasClass("layui-nav-child-c")&&n.css({left:-(n.outerWidth()-l.width())/2}),n[0]?t.css({left:t.position().left+t.width()/2,width:0,opacity:0}):t.css({left:l.position().left+parseFloat(l.css("marginLeft")),top:l.position().top+l.height()-t.height()}),s[a]=setTimeout(function(){t.css({width:n[0]?0:l.width(),opacity:n[0]?0:1})},d.ie&&d.ie<10?0:200),clearTimeout(c[a]),"block"===n.css("display")&&clearTimeout(o[a]),o[a]=setTimeout(function(){n.addClass(y),l.find("."+v).addClass(v+"d")},300))}.call(this,a,i,t)}).on("mouseleave",function(){i.hasClass(p)?a.css({height:0,opacity:0}):(clearTimeout(o[t]),o[t]=setTimeout(function(){i.find("."+b).removeClass(y),i.find("."+v).removeClass(v+"d")},300))}),i.on("mouseleave",function(){clearTimeout(s[t]),c[t]=setTimeout(function(){i.hasClass(p)||a.css({width:0,left:a.position().left+a.width()/2,opacity:0})},200)})),e.find("a").each(function(){var t=u(this);t.parent();t.siblings("."+b)[0]&&!t.children("."+v)[0]&&t.append(''),t.off("click",C.clickThis).on("click",C.clickThis)})})},breadcrumb:function(){u(".layui-breadcrumb"+a).each(function(){var t=u(this),i="lay-separator",a=t.attr(i)||"/",e=t.find("a");e.next("span["+i+"]")[0]||(e.each(function(t){t!==e.length-1&&u(this).after(""+a+"")}),t.css("visibility","visible"))})},progress:function(){var e="layui-progress";u("."+e+a).each(function(){var t=u(this),i=t.find(".layui-progress-bar"),a=i.attr("lay-percent");i.css("width",/^.+\/.+$/.test(a)?100*new Function("return "+a)()+"%":a),t.attr("lay-showPercent")&&setTimeout(function(){i.html(''+a+"")},350)})},collapse:function(){u(".layui-collapse"+a).each(function(){u(this).find(".layui-colla-item").each(function(){var t=u(this),i=t.find(".layui-colla-title"),t="none"===t.find(".layui-colla-content").css("display");i.find(".layui-colla-icon").remove(),i.append(''+(t?"":"")+""),i.off("click",C.collapse).on("click",C.collapse)})})}};return i[t]?i[t]():layui.each(i,function(t,i){i()})},new i),e=u(document);u(function(){a.render()});e.on("click",".layui-tab-title li",C.tabClick),e.on("click",C.hideTabMore),u(window).on("resize",C.tabAuto),t(c,a)});layui.define("layer",function(e){"use strict";var v=layui.$,t=layui.layer,r=layui.hint(),y=layui.device(),i={config:{},set:function(e){var t=this;return t.config=v.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,n,e,t)}},n="upload",o="layui-upload-file",a="layui-upload-form",F="layui-upload-iframe",b="layui-upload-choose",x=function(e){var t=this;t.config=v.extend({},t.config,i.config,e),t.render()};x.prototype.config={accept:"images",exts:"",auto:!0,bindAction:"",url:"",force:"",field:"file",acceptMime:"",method:"post",data:{},drag:!0,size:0,number:0,multiple:!1},x.prototype.render=function(e){var t=this;(e=t.config).elem=v(e.elem),e.bindAction=v(e.bindAction),t.file(),t.events()},x.prototype.file=function(){var e=this,t=e.config,i=e.elemFile=v(['"].join("")),n=t.elem.next();(n.hasClass(o)||n.hasClass(a))&&n.remove(),y.ie&&y.ie<10&&t.elem.wrap('
              '),e.isFile()?(e.elemFile=t.elem,t.field=t.elem[0].name):t.elem.after(i),y.ie&&y.ie<10&&e.initIE()},x.prototype.initIE=function(){var i,e=this.config,t=v(''),n=v(['
              ',"
              "].join(""));v("#"+F)[0]||v("body").append(t),e.elem.next().hasClass(a)||(this.elemFile.wrap(n),e.elem.next("."+a).append((i=[],layui.each(e.data,function(e,t){t="function"==typeof t?t():t,i.push('')}),i.join(""))))},x.prototype.msg=function(e){return t.msg(e,{icon:2,shift:6})},x.prototype.isFile=function(){var e=this.config.elem[0];if(e)return"input"===e.tagName.toLocaleLowerCase()&&"file"===e.type},x.prototype.preview=function(n){window.FileReader&&layui.each(this.chooseFiles,function(e,t){var i=new FileReader;i.readAsDataURL(t),i.onload=function(){n&&n(e,t,this.result)}})},x.prototype.upload=function(i,e){var n,o,t,a,l=this,r=l.config,u=l.elemFile[0],c=function(){var t=0,o=0,e=i||l.files||l.chooseFiles||u.files,a=function(){r.multiple&&t+o===l.fileLength&&"function"==typeof r.allDone&&r.allDone({total:l.fileLength,successful:t,failed:o})};layui.each(e,function(i,e){var n=new FormData,e=(n.append(r.field,e),layui.each(r.data,function(e,t){t="function"==typeof t?t():t,n.append(e,t)}),{url:r.url,type:"post",data:n,contentType:!1,processData:!1,dataType:"json",headers:r.headers||{},success:function(e){t++,f(i,e),a()},error:function(e){o++,l.msg("Request URL is abnormal: "+(e.statusText||"error")),p(i),a()}});"function"==typeof r.progress&&(e.xhr=function(){var e=v.ajaxSettings.xhr();return e.upload.addEventListener("progress",function(e){var t;e.lengthComputable&&(t=Math.floor(e.loaded/e.total*100),r.progress(t,(r.item||r.elem)[0],e,i))}),e}),v.ajax(e)})},s=function(){var n=v("#"+F);l.elemFile.parent().submit(),clearInterval(x.timer),x.timer=setInterval(function(){var e,t=n.contents().find("body");try{e=t.text()}catch(i){l.msg("Cross-domain requests are not supported"),clearInterval(x.timer),p()}e&&(clearInterval(x.timer),t.html(""),f(0,e))},30)},f=function(e,t){if(l.elemFile.next("."+b).remove(),u.value="","json"===r.force&&"object"!=typeof t)try{t=JSON.parse(t)}catch(i){return t={},l.msg("Please return JSON data format")}"function"==typeof r.done&&r.done(t,e||0,function(e){l.upload(e)})},p=function(e){r.auto&&(u.value=""),"function"==typeof r.error&&r.error(e||0,function(e){l.upload(e)})},d=r.exts,m=(o=[],layui.each(i||l.chooseFiles,function(e,t){o.push(t.name)}),o),h={preview:function(e){l.preview(e)},upload:function(e,t){var i={};i[e]=t,l.upload(i)},pushFile:function(){return l.files=l.files||{},layui.each(l.chooseFiles,function(e,t){l.files[e]=t}),l.files},resetFile:function(e,t,i){t=new File([t],i);l.files=l.files||{},l.files[e]=t}},g={file:"\u6587\u4ef6",images:"\u56fe\u7247",video:"\u89c6\u9891",audio:"\u97f3\u9891"}[r.accept]||"\u6587\u4ef6",m=0===m.length?u.value.match(/[^\/\\]+\..+/g)||[]||"":m;if(0!==m.length){switch(r.accept){case"file":layui.each(m,function(e,t){if(d&&!RegExp(".\\.("+d+")$","i").test(escape(t)))return n=!0});break;case"video":layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"avi|mp4|wma|rmvb|rm|flash|3gp|flv")+")$","i").test(escape(t)))return n=!0});break;case"audio":layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"mp3|wav|mid")+")$","i").test(escape(t)))return n=!0});break;default:layui.each(m,function(e,t){if(!RegExp(".\\.("+(d||"jpg|png|gif|bmp|jpeg")+")$","i").test(escape(t)))return n=!0})}if(n)return l.msg("\u9009\u62e9\u7684"+g+"\u4e2d\u5305\u542b\u4e0d\u652f\u6301\u7684\u683c\u5f0f"),u.value="";if("choose"!==e&&!r.auto||(r.choose&&r.choose(h),"choose"!==e)){if(l.fileLength=(t=0,g=i||l.files||l.chooseFiles||u.files,layui.each(g,function(){t++}),t),r.number&&l.fileLength>r.number)return l.msg("\u540c\u65f6\u6700\u591a\u53ea\u80fd\u4e0a\u4f20: "+r.number+" \u4e2a\u6587\u4ef6
              \u60a8\u5f53\u524d\u5df2\u7ecf\u9009\u62e9\u4e86: "+l.fileLength+" \u4e2a\u6587\u4ef6");if(01024*r.size&&(t=1<=(t=r.size/1024)?t.toFixed(2)+"MB":r.size+"KB",u.value="",a=t)}),a)return l.msg("\u6587\u4ef6\u5927\u5c0f\u4e0d\u80fd\u8d85\u8fc7 "+a);if(!r.before||!1!==r.before(h))y.ie?(9'+e+"")};o.elem.off("upload.start").on("upload.start",function(){var e=v(this),t=e.attr("lay-data");if(t)try{t=new Function("return "+t)(),n.config=v.extend({},o,t)}catch(i){r.error("Upload element property lay-data configuration item has a syntax error: "+t)}n.config.item=e,n.elemFile[0].click()}),y.ie&&y.ie<10||o.elem.off("upload.over").on("upload.over",function(){v(this).attr("lay-over","")}).off("upload.leave").on("upload.leave",function(){v(this).removeAttr("lay-over")}).off("upload.drop").on("upload.drop",function(e,t){var i=v(this),t=t.originalEvent.dataTransfer.files||[];i.removeAttr("lay-over"),a(t),o.auto?n.upload():l(t)}),n.elemFile.off("upload.change").on("upload.change",function(){var e=this.files||[];a(e),o.auto?n.upload():l(e)}),o.bindAction.off("upload.action").on("upload.action",function(){n.upload()}),o.elem.data("haveEvents")||(n.elemFile.on("change",function(){v(this).trigger("upload.change")}),o.elem.on("click",function(){n.isFile()||v(this).trigger("upload.start")}),o.drag&&o.elem.on("dragover",function(e){e.preventDefault(),v(this).trigger("upload.over")}).on("dragleave",function(e){v(this).trigger("upload.leave")}).on("drop",function(e){e.preventDefault(),v(this).trigger("upload.drop",e)}),o.bindAction.on("click",function(){v(this).trigger("upload.action")}),o.elem.data("haveEvents",!0))},i.render=function(e){e=new x(e);return function(){var t=this;return{upload:function(e){t.upload.call(t,e)},reload:function(e){t.reload.call(t,e)},config:t.config}}.call(e)},e(n,i)});layui.define(["layer","util"],function(e){"use strict";var C=layui.$,h=layui.layer,d=layui.util,l=layui.hint(),w=(layui.device(),"form"),o=".layui-form",T="layui-this",$="layui-hide",E="layui-disabled",t=function(){this.config={verify:{required:[/[\S]+/,"\u5fc5\u586b\u9879\u4e0d\u80fd\u4e3a\u7a7a"],phone:[/^1\d{10}$/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u624b\u673a\u53f7"],email:[/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/,"\u90ae\u7bb1\u683c\u5f0f\u4e0d\u6b63\u786e"],url:[/^(#|(http(s?)):\/\/|\/\/)[^\s]+\.[^\s]+$/,"\u94fe\u63a5\u683c\u5f0f\u4e0d\u6b63\u786e"],number:function(e){if(!e||isNaN(e))return"\u53ea\u80fd\u586b\u5199\u6570\u5b57"},date:[/^(\d{4})[-\/](\d{1}|0\d{1}|1[0-2])([-\/](\d{1}|0\d{1}|[1-2][0-9]|3[0-1]))*$/,"\u65e5\u671f\u683c\u5f0f\u4e0d\u6b63\u786e"],identity:[/(^\d{15}$)|(^\d{17}(x|X|\d)$)/,"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u8eab\u4efd\u8bc1\u53f7"]},autocomplete:null}},i=(t.prototype.set=function(e){return C.extend(!0,this.config,e),this},t.prototype.verify=function(e){return C.extend(!0,this.config.verify,e),this},t.prototype.getFormElem=function(e){return C(o+(e?'[lay-filter="'+e+'"]':""))},t.prototype.on=function(e,t){return layui.onevent.call(this,w,e,t)},t.prototype.val=function(e,i){return this.getFormElem(e).each(function(e,t){var a=C(this);layui.each(i,function(e,t){var i,e=a.find('[name="'+e+'"]');e[0]&&("checkbox"===(i=e[0].type)?e[0].checked=t:"radio"===i?e.each(function(){this.value==t&&(this.checked=!0)}):e.val(t))})}),r.render(null,e),this.getValue(e)},t.prototype.getValue=function(e,t){t=t||this.getFormElem(e);var a={},n={},e=t.find("input,select,textarea");return layui.each(e,function(e,t){var i;C(this);t.name=(t.name||"").replace(/^\s*|\s*&/,""),t.name&&(/^.*\[\]$/.test(t.name)&&(i=t.name.match(/^(.*)\[\]$/g)[0],a[i]=0|a[i],i=t.name.replace(/^(.*)\[\]$/,"$1["+a[i]+++"]")),/^checkbox|radio$/.test(t.type)&&!t.checked||(n[i||t.name]=t.value))}),n},t.prototype.render=function(e,t){var i=this.config,a=C(o+(t?'[lay-filter="'+t+'"]':"")),n={input:function(e){e=e||a.find("input,textarea");i.autocomplete&&e.attr("autocomplete",i.autocomplete)},select:function(e){var p,c="\u8bf7\u9009\u62e9",m="layui-form-select",g="layui-select-title",k="layui-select-none",x="",e=e||a.find("select"),b=function(e,t){C(e.target).parent().hasClass(g)&&!t||(C("."+m).removeClass(m+"ed "+m+"up"),p&&x&&p.val(x)),p=null},u=function(a,e,t){var s,r,i,n,o,l,c=C(this),u=a.find("."+g),d=u.find("input"),f=a.find("dl"),h=f.children("dd"),y=f.children("dt"),v=this.selectedIndex;e||(r=c.attr("lay-search"),i=function(){var e=a.offset().top+a.outerHeight()+5-q.scrollTop(),t=f.outerHeight();v=c[0].selectedIndex,a.addClass(m+"ed"),h.removeClass($),y.removeClass($),s=null,h.eq(v).addClass(T).siblings().removeClass(T),e+t>q.height()&&t<=e&&a.addClass(m+"up"),o()},n=function(e){a.removeClass(m+"ed "+m+"up"),d.blur(),s=null,e||l(d.val(),function(e){var t=c[0].selectedIndex;e&&(x=C(c[0].options[t]).html(),0===t&&x===d.attr("placeholder")&&(x=""),d.val(x||""))})},o=function(){var e,t,i=f.children("dd."+T);i[0]&&(e=i.position().top,t=f.height(),i=i.height(),t\u65e0\u5339\u914d\u9879

              '):f.find("."+k).remove()},"keyup"),""===t&&f.find("."+k).remove(),o()}).on("blur",function(e){var t=c[0].selectedIndex;p=d,x=C(c[0].options[t]).html(),0===t&&x===d.attr("placeholder")&&(x=""),setTimeout(function(){l(d.val(),function(e){x||d.val("")},"blur")},200)}),h.on("click",function(){var e=C(this),t=e.attr("lay-value"),i=c.attr("lay-filter");return e.hasClass(E)||(e.hasClass("layui-select-tips")?d.val(""):(d.val(e.text()),e.addClass(T)),e.siblings().removeClass(T),c.val(t).removeClass("layui-form-danger"),layui.event.call(this,w,"select("+i+")",{elem:c[0],value:t,othis:a}),n(!0)),!1}),a.find("dl>dt").on("click",function(e){return!1}),C(document).off("click",b).on("click",b))};e.each(function(e,t){var i=C(this),a=i.next("."+m),n=this.disabled,l=t.value,r=C(t.options[t.selectedIndex]),t=t.options[0];if("string"==typeof i.attr("lay-ignore"))return i.show();var s,o="string"==typeof i.attr("lay-search"),t=t&&!t.value&&t.innerHTML||c,r=C(['
              ','
              ','','
              ','
              ',(t=i.find("*"),s=[],layui.each(t,function(e,t){0!==e||t.value?"optgroup"===t.tagName.toLowerCase()?s.push("
              "+t.label+"
              "):s.push('
              '+C.trim(t.innerHTML)+"
              "):s.push('
              '+C.trim(t.innerHTML||c)+"
              ")}),0===s.length&&s.push('
              \u6ca1\u6709\u9009\u9879
              '),s.join("")+"
              "),"
              "].join(""));a[0]&&a.remove(),i.after(r),u.call(this,r,n,o)})},checkbox:function(e){var o={checkbox:["layui-form-checkbox","layui-form-checked","checkbox"],_switch:["layui-form-switch","layui-form-onswitch","switch"]},e=e||a.find("input[type=checkbox]");e.each(function(e,t){var i=C(this),a=i.attr("lay-skin"),n=(i.attr("lay-text")||"").split("|"),l=this.disabled,r=o[a="switch"===a?"_"+a:a]||o.checkbox;if("string"==typeof i.attr("lay-ignore"))return i.show();var s=i.next("."+r[0]),t=C(['
              ",(l={checkbox:[t.title.replace(/\s/g,"")?""+t.title+"":"",''].join(""),_switch:""+((t.checked?n[0]:n[1])||"")+""})[a]||l.checkbox,"
              "].join(""));s[0]&&s.remove(),i.after(t),function(i,a){var n=C(this);i.on("click",function(){var e=n.attr("lay-filter"),t=(n.attr("lay-text")||"").split("|");n[0].disabled||(n[0].checked?(n[0].checked=!1,i.removeClass(a[1]).find("em").text(t[1])):(n[0].checked=!0,i.addClass(a[1]).find("em").text(t[0])),layui.event.call(n[0],w,a[2]+"("+e+")",{elem:n[0],value:n[0].value,othis:i}))})}.call(this,t,r)})},radio:function(e){var r="layui-form-radio",s=["",""],e=e||a.find("input[type=radio]");e.each(function(e,t){var i=C(this),a=i.next("."+r),n=this.disabled;if("string"==typeof i.attr("lay-ignore"))return i.show();a[0]&&a.remove();n=C(['
              ',''+s[t.checked?0:1]+"","
              "+(a=t.title||"",a="string"==typeof i.next().attr("lay-radio")?i.next().html():a)+"
              ","
              "].join(""));i.after(n),function(a){var n=C(this),l="layui-anim-scaleSpring";a.on("click",function(){var e=n[0].name,t=n.parents(o),i=n.attr("lay-filter"),e=t.find("input[name="+e.replace(/(\.|#|\[|\])/g,"\\$1")+"]");n[0].disabled||(layui.each(e,function(){var e=C(this).next("."+r);this.checked=!1,e.removeClass(r+"ed"),e.find(".layui-icon").removeClass(l).html(s[1])}),n[0].checked=!0,a.addClass(r+"ed"),a.find(".layui-icon").addClass(l).html(s[0]),layui.event.call(n[0],w,"radio("+i+")",{elem:n[0],value:n[0].value,othis:a}))})}.call(this,n)})}};return"object"===layui.type(e)?e.each(function(e,t){var i=C(t);i.closest(o).length&&("SELECT"===t.tagName?n.select(i):"INPUT"===t.tagName&&("checkbox"===(t=t.type)||"radio"===t?n[t](i):n.input(i)))}):e?n[e]?n[e]():l.error('\u4e0d\u652f\u6301\u7684 "'+e+'" \u8868\u5355\u6e32\u67d3'):layui.each(n,function(e,t){t()}),this},t.prototype.validate=function(e){var u=null,d=r.config.verify,f="layui-form-danger";return!(e=C(e))[0]||(e.attr("lay-verify")!==undefined||!1!==this.validate(e.find("*[lay-verify]")))&&(layui.each(e,function(e,r){var s=C(this),t=(s.attr("lay-verify")||"").split("|"),o=s.attr("lay-verType"),c=s.val();if(s.removeClass(f),layui.each(t,function(e,t){var i="",a=d[t];if(a){var n="function"==typeof a?i=a(c,r):!a[0].test(c),l="select"===r.tagName.toLowerCase()||/^checkbox|radio$/.test(r.type),i=i||a[1];if("required"===t&&(i=s.attr("lay-reqText")||i),n)return"tips"===o?h.tips(i,"string"!=typeof s.attr("lay-ignore")&&l?s.next():s,{tips:1}):"alert"===o?h.alert(i,{title:"\u63d0\u793a",shadeClose:!0}):/\bstring|number\b/.test(typeof i)&&h.msg(i,{icon:5,shift:6}),setTimeout(function(){(l?s.next().find("input"):r).focus()},7),s.addClass(f),u=!0}}),u)return u}),!u)},t.prototype.submit=function(e,t){var i=C(this),e="string"==typeof e?e:i.attr("lay-filter"),a=this.getFormElem?this.getFormElem(e):i.parents(o).eq(0),n=a.find("*[lay-verify]");if(!r.validate(n))return!1;n=r.getValue(null,a),a={elem:this.getFormElem?window.event&&window.event.target:this,form:(this.getFormElem?a:i.parents("form"))[0],field:n};return"function"==typeof t&&t(a),layui.event.call(this,w,"submit("+e+")",a)}),r=new t,t=C(document),q=C(window);C(function(){r.render()}),t.on("reset",o,function(){var e=C(this).attr("lay-filter");setTimeout(function(){r.render(null,e)},50)}),t.on("submit",o,i).on("click","*[lay-submit]",i),e(w,r)});layui.define(["laytpl","laypage","form","util"],function(e){"use strict";var m=layui.$,v=layui.laytpl,c=layui.laypage,g=layui.layer,y=layui.form,b=layui.util,f=layui.hint(),h=layui.device(),x={config:{checkName:"LAY_CHECKED",indexName:"LAY_TABLE_INDEX",disabledName:"LAY_DISABLED"},cache:{},index:layui.table?layui.table.index+1e4:0,set:function(e){var t=this;return t.config=m.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,C,e,t)}},p=function(){var a=this,e=a.config,i=e.id||e.index;return i&&(p.that[i]=a,p.config[i]=e),{config:e,reload:function(e,t){a.reload.call(a,e,t)},reloadData:function(e,t){x.reloadData(i,e,t)},setColsWidth:function(){a.setColsWidth.call(a)},resize:function(){a.resize.call(a)}}},l=function(e){var t=p.config[e];return t||f.error(e?"The table instance with ID '"+e+"' not found":"ID argument required"),t||null},k=function(e){var t=this.config||{},a=(e=e||{}).item3,i=e.content,t=(("escape"in a?a:t).escape&&(i=b.escape(i)),e.text&&a.exportTemplet||a.templet||a.toolbar);return t&&(i="function"==typeof t?t.call(a,e.tplData,e.obj):v(m(t).html()||String(i)).render(m.extend({LAY_COL:a},e.tplData))),e.text?m("
              "+i+"
              ").text():i},C="table",w="layui-hide",r="layui-hide-v",d="layui-none",s="layui-table-view",u=".layui-table-header",T=".layui-table-body",L=".layui-table-pageview",N=".layui-table-sort",D="layui-table-edit",A="layui-table-hover",E="layui-table-col-special",_="LAY_TABLE_MOVE_DICT",t=function(e){return['',"","{{# layui.each(d.data.cols, function(i1, item1){ }}","","{{# layui.each(item1, function(i2, item2){ }}",'{{# if(item2.fixed && item2.fixed !== "right"){ left = true; } }}','{{# if(item2.fixed === "right"){ right = true; } }}',(e=e||{}).fixed&&"right"!==e.fixed?'{{# if(item2.fixed && item2.fixed !== "right"){ }}':"right"===e.fixed?'{{# if(item2.fixed === "right"){ }}':"","{{# var isSort = !(item2.colGroup) && item2.sort; }}",'",e.fixed?"{{# }; }}":"","{{# }); }}","","{{# }); }}","","
              ','
              ','{{# if(item2.type === "checkbox"){ }}','',"{{# } else { }}",'{{-item2.title||""}}',"{{# if(isSort){ }}",'',"{{# } }}","{{# } }}","
              ","
              "].join("")},a=['',"","
              "].join(""),j=[,"{{# if(d.data.toolbar){ }}",'
              ','
              ','
              ',"
              ","{{# } }}",'
              ',"{{# if(d.data.loading){ }}",'
              ','',"
              ","{{# } }}","{{# var left, right; }}",'
              ',t(),"
              ",'
              ',a,"
              ","{{# if(left){ }}",'
              ','
              ',t({fixed:!0}),"
              ",'
              ',a,"
              ","
              ","{{# }; }}","{{# if(right){ }}",'
              ','
              ',t({fixed:"right"}),'
              ',"
              ",'
              ',a,"
              ","
              ","{{# }; }}","
              ","{{# if(d.data.totalRow){ }}",'
              ','','',"
              ","
              ","{{# } }}",'
              ','
              ',"
              ",""].join(""),R=m(window),S=m(document),i=function(e){this.index=++x.index,this.config=m.extend({},this.config,x.config,e),this.render()},F=(i.prototype.config={limit:10,loading:!0,escape:!0,cellMinWidth:60,editTrigger:"click",defaultToolbar:["filter","exports","print"],autoSort:!0,text:{none:"\u65e0\u6570\u636e"}},i.prototype.render=function(e){var t=this,a=t.config;if(a.elem=m(a.elem),a.where=a.where||{},a.id=a.id||a.elem.attr("id")||t.index,a.request=m.extend({pageName:"page",limitName:"limit"},a.request),a.response=m.extend({statusName:"code",statusCode:0,msgName:"msg",dataName:"data",totalRowName:"totalRow",countName:"count"},a.response),"object"==typeof a.page&&(a.limit=a.page.limit||a.limit,a.limits=a.page.limits||a.limits,t.page=a.page.curr=a.page.curr||1,delete a.page.elem,delete a.page.jump),!a.elem[0])return t;if("reloadData"===e)return t.pullData(t.page,{type:"reloadData"});a.height&&/^full-\d+$/.test(a.height)&&(t.fullHeightGap=a.height.split("-")[1],a.height=R.height()-t.fullHeightGap),t.setInit();var i,l,e=a.elem,n=e.next("."+s),o=t.elem=m("
              ");o.addClass((i=[s,s+"-"+t.index,"layui-form","layui-border-box"],a.className&&i.push(a.className),i.join(" "))).attr({"lay-filter":"LAY-TABLE-FORM-DF-"+t.index,"lay-id":a.id,style:(i=[],a.width&&i.push("width:"+a.width+"px;"),a.height&&i.push("height:"+a.height+"px;"),i.join(""))}).html(v(j).render({data:a,index:t.index})),a.index=t.index,t.key=a.id||a.index,n[0]&&n.remove(),e.after(o),t.layTool=o.find(".layui-table-tool"),t.layBox=o.find(".layui-table-box"),t.layHeader=o.find(u),t.layMain=o.find(".layui-table-main"),t.layBody=o.find(T),t.layFixed=o.find(".layui-table-fixed"),t.layFixLeft=o.find(".layui-table-fixed-l"),t.layFixRight=o.find(".layui-table-fixed-r"),t.layTotal=o.find(".layui-table-total"),t.layPage=o.find(".layui-table-page"),t.renderToolbar(),t.renderPagebar(),t.fullSize(),1
              ','
              ','
              '].join(""),a=this.layTool.find(".layui-table-tool-temp"),i=("default"===e.toolbar?a.html(t):"string"==typeof e.toolbar&&(t=m(e.toolbar).html()||"")&&a.html(v(t).render(e)),{filter:{title:"\u7b5b\u9009\u5217",layEvent:"LAYTABLE_COLS",icon:"layui-icon-cols"},exports:{title:"\u5bfc\u51fa",layEvent:"LAYTABLE_EXPORT",icon:"layui-icon-export"},print:{title:"\u6253\u5370",layEvent:"LAYTABLE_PRINT",icon:"layui-icon-print"}}),l=[];"object"==typeof e.defaultToolbar&&layui.each(e.defaultToolbar,function(e,t){t="string"==typeof t?i[t]:t;t&&l.push('
              ')}),this.layTool.find(".layui-table-tool-self").html(l.join(""))},i.prototype.renderPagebar=function(){var e,t=this.config,a=this.layPagebar=m('
              ');t.pagebar&&((e=m(t.pagebar).html()||"")&&a.append(v(e).render(t)),this.layPage.append(a))},i.prototype.setParentCol=function(e,t){var a=this.config,i=this.layHeader.find('th[data-key="'+a.index+"-"+t+'"]'),l=parseInt(i.attr("colspan"))||0;i[0]&&(t=t.split("-"),t=a.cols[t[0]][t[1]],e?l--:l++,i.attr("colspan",l),i[l<1?"addClass":"removeClass"](w),t.colspan=l,t.hide=l<1,(a=i.data("parentkey"))&&this.setParentCol(e,a))},i.prototype.setColsPatch=function(){var a=this,e=a.config;layui.each(e.cols,function(e,t){layui.each(t,function(e,t){t.hide&&a.setParentCol(t.hide,t.parentKey)})})},i.prototype.setColsWidth=function(){var t,a,i=this,o=i.config,l=0,c=0,r=0,d=0,s=i.setInit("width"),e=(i.eachCols(function(e,t){t.hide||l++}),s=s-("line"===o.skin||"nob"===o.skin?2:l+1)-i.getScrollWidth(i.layMain[0])-1,function(n){layui.each(o.cols,function(e,l){layui.each(l,function(e,t){var a=0,i=t.minWidth||o.cellMinWidth;t?t.colGroup||t.hide||(n?r&&r'+(e||"Error")+"
              ");a[0]&&(t.layNone.remove(),a.remove()),t.layFixed.addClass(w),t.layMain.find("tbody").html(""),t.layMain.append(t.layNone=e),t.layTotal.addClass(r),t.layPage.find(L).addClass(r),x.cache[t.key]=[],t.syncCheckAll()},i.prototype.page=1,i.prototype.pullData=function(t,a){var e,i=this,l=i.config,n=l.request,o=l.response,c=function(){"object"==typeof l.initSort&&i.sort(l.initSort.field,l.initSort.type)};a=a||{},"function"==typeof l.before&&l.before(l),i.startTime=(new Date).getTime(),l.url?((e={})[n.pageName]=t,e[n.limitName]=l.limit,n=m.extend(e,l.where),l.contentType&&0==l.contentType.indexOf("application/json")&&(n=JSON.stringify(n)),i.loading(),m.ajax({type:l.method||"get",url:l.url,contentType:l.contentType,data:n,dataType:l.dataType||"json",jsonpCallback:l.jsonpCallback,headers:l.headers||{},success:function(e){(e="function"==typeof l.parseData?l.parseData(e)||e:e)[o.statusName]!=o.statusCode?(i.renderForm(),i.errorView(e[o.msgName]||'\u8fd4\u56de\u7684\u6570\u636e\u4e0d\u7b26\u5408\u89c4\u8303\uff0c\u6b63\u786e\u7684\u6210\u529f\u72b6\u6001\u7801\u5e94\u4e3a\uff1a"'+o.statusName+'": '+o.statusCode)):(i.renderData({res:e,curr:t,count:e[o.countName],type:a.type}),c(),l.time=(new Date).getTime()-i.startTime+" ms"),i.setColsWidth(),"function"==typeof l.done&&l.done(e,t,e[o.countName])},error:function(e,t){i.errorView("\u8bf7\u6c42\u5f02\u5e38\uff0c\u9519\u8bef\u63d0\u793a\uff1a"+t),i.renderForm(),i.setColsWidth(),"function"==typeof l.error&&l.error(e,t)}})):"array"===layui.type(l.data)&&(e=t*l.limit-l.limit,(n={})[o.dataName]=l.data.concat().splice(e,l.limit),n[o.countName]=l.data.length,"object"==typeof l.totalRow&&(n[o.totalRowName]=m.extend({},l.totalRow)),i.renderData({res:n,curr:t,count:n[o.countName],type:a.type}),c(),i.setColsWidth(),"function"==typeof l.done&&l.done(n,t,n[o.countName]))},i.prototype.eachCols=function(e){return x.eachCols(null,e,this.config.cols),this},i.prototype.col=function(e){try{return e=e.split("-"),this.config.cols[e[1]][e[2]]}catch(t){return f.error(t),{}}},i.prototype.renderData=function(e){var u=this,y=u.config,t=e.res,l=e.curr,a=e.count,n=e.sort,i=t[y.response.dataName]||[],t=t[y.response.totalRowName],h=[],f=[],p=[],o=function(){var s;if(y.HAS_SET_COLS_PATCH||u.setColsPatch(),y.HAS_SET_COLS_PATCH=!0,!n&&u.sortKey)return u.sort(u.sortKey.field,u.sortKey.sort,!0);layui.each(i,function(o,c){var a=[],i=[],r=[],d=o+y.limit*(l-1)+1;"array"===layui.type(c)&&0===c.length||(n||(c[x.config.indexName]=o),u.eachCols(function(e,l){var e=l.field||e,t=y.index+"-"+l.key,n=c[e];n!==undefined&&null!==n||(n=""),l.colGroup||(t=['','
              "+function(){var e,t=m.extend(!0,{LAY_INDEX:d,LAY_COL:l},c),a=x.config.checkName,i=x.config.disabledName;switch(l.type){case"checkbox":return'";case"radio":return t[a]&&(s=o),'';case"numbers":return d}return l.toolbar?v(m(l.toolbar).html()||"").render(t):k.call(u,{item3:l,content:n,tplData:t})}(),"
              "].join(""),a.push(t),l.fixed&&"right"!==l.fixed&&i.push(t),"right"===l.fixed&&r.push(t))}),h.push(''+a.join("")+""),f.push(''+i.join("")+""),p.push(''+r.join("")+""))}),"fixed"===y.scrollPos&&"reloadData"===e.type||u.layBody.scrollTop(0),"reset"===y.scrollPos&&u.layBody.scrollLeft(0),u.layMain.find("."+d).remove(),u.layMain.find("tbody").html(h.join("")),u.layFixLeft.find("tbody").html(f.join("")),u.layFixRight.find("tbody").html(p.join("")),u.renderForm(),"number"==typeof s&&u.setThisRowChecked(s),u.syncCheckAll(),u.fullSize(),u.haveInit?u.scrollPatch():setTimeout(function(){u.scrollPatch()},50),u.haveInit=!0,g.close(u.tipsIndex)};return x.cache[u.key]=i,u.layTotal[0==i.length?"addClass":"removeClass"](r),u.layPage[y.page||y.pagebar?"removeClass":"addClass"](w),u.layPage.find(L)[!y.page||0==a||0===i.length&&1==l?"addClass":"removeClass"](r),0===i.length?(u.renderForm(),u.errorView(y.text.none)):(u.layFixLeft.removeClass(w),n?o():(o(),u.renderTotal(i,t),u.layTotal&&u.layTotal.removeClass(w),void(y.page&&(y.page=m.extend({elem:"layui-table-page"+y.index,count:a,limit:y.limit,limits:y.limits||[10,20,30,40,50,60,70,80,90],groups:3,layout:["prev","page","next","skip","count","limit"],prev:'',next:'',jump:function(e,t){t||(u.page=e.curr,y.limit=e.limit,u.pullData(e.curr))}},y.page),y.page.count=a,c.render(y.page)))))},i.prototype.renderTotal=function(e,o){var c,r=this,d=r.config,s={};d.totalRow&&(layui.each(e,function(e,i){"array"===layui.type(i)&&0===i.length||r.eachCols(function(e,t){var e=t.field||e,a=i[e];t.totalRow&&(s[e]=(s[e]||0)+(parseFloat(a)||0))})}),r.dataTotal={},c=[],r.eachCols(function(e,t){var a,e=t.field||e,i=o&&o[t.field],l=(a=t.totalRowText||"",n="totalRowDecimals"in t?t.totalRowDecimals:2,n=parseFloat(s[e]).toFixed(n),(l={LAY_COL:t})[e]=n,n=t.totalRow&&k.call(r,{item3:t,content:n,tplData:l})||a,i||n),n=['','
              "+("string"==typeof(a=t.totalRow||d.totalRow)?v(a).render(m.extend({TOTAL_NUMS:i||s[e],LAY_COL:t},t)):l),"
              "].join("");t.field&&(r.dataTotal[e]=l),c.push(n)}),r.layTotal.find("tbody").html(""+c.join("")+""))},i.prototype.getColElem=function(e,t){var a=this.config;return e.eq(0).find(".laytable-cell-"+a.index+"-"+t+":eq(0)")},i.prototype.renderForm=function(e){this.config;var t=this.elem.attr("lay-filter");y.render(e,t)},i.prototype.setThisRowChecked=function(e){this.config;var t="layui-table-click";this.layBody.find('tr[data-index="'+e+'"]').addClass(t).siblings("tr").removeClass(t)},i.prototype.sort=function(l,e,t,a){var i,n=this,o={},c=n.config,r=c.elem.attr("lay-filter"),d=x.cache[n.key];"string"==typeof l&&(s=l,n.layHeader.find("th").each(function(e,t){var a=m(this),i=a.data("field");if(i===l)return l=a,s=i,!1}));try{var s=s||l.data("field"),u=l.data("key");if(n.sortKey&&!t&&s===n.sortKey.field&&e===n.sortKey.sort)return;var y=n.layHeader.find("th .laytable-cell-"+u).find(N);n.layHeader.find("th").find(N).removeAttr("lay-sort"),y.attr("lay-sort",e||null),n.layFixed.find("th")}catch(h){f.error("Table modules: sort field '"+s+"' not matched")}n.sortKey={field:s,sort:e},c.autoSort&&("asc"===e?i=layui.sort(d,s):"desc"===e?i=layui.sort(d,s,!0):(i=layui.sort(d,x.config.indexName),delete n.sortKey,delete c.initSort)),o[c.response.dataName]=i||d,n.renderData({res:o,curr:n.page,count:n.count,sort:!0}),a&&(c.initSort={field:s,type:e},layui.event.call(l,C,"sort("+r+")",c.initSort))},i.prototype.loading=function(e){var t=this;t.config.loading&&(e?(t.layInit&&t.layInit.remove(),delete t.layInit,t.layBox.find(".layui-table-init").remove()):(t.layInit=m(['
              ','',"
              "].join("")),t.layBox.append(t.layInit)))},i.prototype.setCheckData=function(e,t){var a=this.config,i=x.cache[this.key];i[e]&&"array"!==layui.type(i[e])&&(i[e][a.checkName]=t)},i.prototype.syncCheckAll=function(){var e=this,i=e.config,t=e.layHeader.find('input[name="layTableCheckbox"]'),a=function(a){return e.eachCols(function(e,t){"checkbox"===t.type&&(t[i.checkName]=a)}),a};t[0]&&(x.checkStatus(e.key).isAll?(t[0].checked||(t.prop("checked",!0),e.renderForm("checkbox")),a(!0)):(t[0].checked&&(t.prop("checked",!1),e.renderForm("checkbox")),a(!1)))},i.prototype.getCssRule=function(a,i){var e=this.elem.find("style")[0],e=e.sheet||e.styleSheet||{},e=e.cssRules||e.rules;layui.each(e,function(e,t){if(t.selectorText===".laytable-cell-"+a)return i(t),!0})},i.prototype.fullSize=function(){var e=this,t=e.config,a=t.height;e.fullHeightGap&&(a=R.height()-e.fullHeightGap,e.elem.css("height",a=a<135?135:a)),a&&(a=parseFloat(a)-(e.layHeader.outerHeight()||38),t.toolbar&&(a-=e.layTool.outerHeight()||50),t.totalRow&&(a-=e.layTotal.outerHeight()||40),(t.page||t.pagebar)&&(a-=e.layPage.outerHeight()||43),e.layMain.outerHeight(a))},i.prototype.getScrollWidth=function(e){var t=0;return e?t=e.offsetWidth-e.clientWidth:((e=document.createElement("div")).style.width="100px",e.style.height="100px",e.style.overflowY="scroll",document.body.appendChild(e),t=e.offsetWidth-e.clientWidth,document.body.removeChild(e)),t},i.prototype.scrollPatch=function(){var e=this,t=e.layMain.children("table"),a=e.layMain.width()-e.layMain.prop("clientWidth"),i=e.layMain.height()-e.layMain.prop("clientHeight"),l=(e.getScrollWidth(e.layMain[0]),t.outerWidth()-e.layMain.width()),n=function(e){var t;a&&i?(e=e.eq(0)).find(".layui-table-patch")[0]||((t=m('
              ')).find("div").css({width:a}),e.find("tr").append(t)):e.find(".layui-table-patch").remove()};n(e.layHeader),n(e.layTotal);n=e.layMain.height()-i;e.layFixed.find(T).css("height",t.height()>=n?n:"auto"),e.layFixRight[0');a.html(t),r.height&&a.css("max-height",r.height-(s.layTool.outerHeight()||50)),i.find(".layui-table-tool-panel")[0]||i.append(a),s.renderForm(),a.on("click",function(e){layui.stope(e)}),e.done&&e.done(a,t)};switch(layui.stope(e),S.trigger("table.tool.panel.remove"),g.close(s.tipsIndex),t){case"LAYTABLE_COLS":l({list:(a=[],s.eachCols(function(e,t){t.field&&"normal"==t.type&&a.push('
            • ')}),a.join("")),done:function(){y.on("checkbox(LAY_TABLE_TOOL_COLS)",function(e){var e=m(e.elem),i=this.checked,l=e.data("key"),n=e.data("parentkey");layui.each(r.cols,function(a,e){layui.each(e,function(e,t){a+"-"+e===l&&(e=t.hide,t.hide=!i,s.elem.find('*[data-key="'+r.index+"-"+l+'"]')[i?"removeClass":"addClass"](w),e!=t.hide&&s.setParentCol(!i,n),s.resize())})})})}});break;case"LAYTABLE_EXPORT":h.ie?g.tips("\u5bfc\u51fa\u529f\u80fd\u4e0d\u652f\u6301 IE\uff0c\u8bf7\u7528 Chrome \u7b49\u9ad8\u7ea7\u6d4f\u89c8\u5668\u5bfc\u51fa",this,{tips:3}):l({list:['
            • \u5bfc\u51fa csv \u683c\u5f0f\u6587\u4ef6
            • ','
            • \u5bfc\u51fa xls \u683c\u5f0f\u6587\u4ef6
            • '].join(""),done:function(e,t){t.on("click",function(){var e=m(this).data("type");x.exportFile.call(s,r.id,null,e)})}});break;case"LAYTABLE_PRINT":var n=window.open("about:blank","_blank"),o=[""].join(""),c=m(s.layHeader.html());c.append(s.layMain.find("table").html()),c.append(s.layTotal.find("table").html()),c.find("th.layui-table-patch").remove(),c.find("thead>tr>th."+E).filter(function(e,t){return!m(t).children(".laytable-cell-group").length}).remove(),c.find("tbody>tr>td."+E).remove(),n.document.write(o+c.prop("outerHTML")),n.document.close(),n.print(),n.close()}layui.event.call(this,C,"toolbar("+d+")",m.extend({event:t,config:r},{}))}),s.layPagebar.on("click","*[lay-event]",function(e){var t=m(this).attr("lay-event");layui.event.call(this,C,"pagebar("+d+")",m.extend({event:t,config:r},{}))}),e.on("mousemove",function(e){var t=m(this),a=t.offset().left,e=e.clientX-a;t.data("unresize")||p.eventMoveElem||(l.allowResize=t.width()-e<=10,i.css("cursor",l.allowResize?"col-resize":""))}).on("mouseleave",function(){m(this);p.eventMoveElem||i.css("cursor","")}).on("mousedown",function(e){var t,a=m(this);l.allowResize&&(t=a.data("key"),e.preventDefault(),l.offset=[e.clientX,e.clientY],s.getCssRule(t,function(e){var t=e.style.width||a.outerWidth();l.rule=e,l.ruleWidth=parseFloat(t),l.minWidth=a.data("minwidth")||r.cellMinWidth}),a.data(_,l),p.eventMoveElem=a)}),p.docEvent||S.on("mousemove",function(e){var t;p.eventMoveElem&&(t=p.eventMoveElem.data(_)||{},p.eventMoveElem.data("resizing",1),e.preventDefault(),t.rule&&((e=t.ruleWidth+e.clientX-t.offset[0])':''))[0].value=n.data("content")||a[t]||i.text(),n.find("."+D)[0]||n.append(l),l.focus(),layui.stope(e)))}).on("mouseenter","td",function(){a.call(this)}).on("mouseleave","td",function(){a.call(this,"hide")}),"layui-table-grid-down"),a=function(e){var t=m(this),a=t.children(u);t.data("off")||(e?t.find(".layui-table-grid-down").remove():!(a.prop("scrollWidth")>a.outerWidth()||0
              '))},c=(s.layBody.on("click","."+o,function(e){var t=m(this).parent().children(u);s.tipsIndex=g.tips(['
              ',t.html(),"
              ",''].join(""),t[0],{tips:[3,""],time:-1,anim:-1,maxWidth:h.ios||h.android?300:s.elem.width()/2,isOutAnim:!1,skin:"layui-table-tips",success:function(e,t){e.find(".layui-table-tips-c").on("click",function(){g.close(t)})}}),layui.stope(e)}),function(e){var t=m(this),a=t.parents("tr").eq(0).data("index");layui.event.call(this,C,(e||"tool")+"("+d+")",n.call(this,{event:t.attr("lay-event")})),s.setThisRowChecked(a)});s.layBody.on("click","*[lay-event]",function(e){c.call(this),layui.stope(e)}).on("dblclick","*[lay-event]",function(e){c.call(this,"toolDouble"),layui.stope(e)}),s.layMain.on("scroll",function(){var e=m(this),t=e.scrollLeft(),e=e.scrollTop();s.layHeader.scrollLeft(t),s.layTotal.scrollLeft(t),s.layFixed.find(T).scrollTop(e),g.close(s.tipsIndex)}),R.on("resize",function(){s.resize()})},S.on("click",function(){S.trigger("table.remove.tool.panel")}),S.on("table.remove.tool.panel",function(){m(".layui-table-tool-panel").remove()}),x.init=function(a,i){i=i||{};var e=m(a?'table[lay-filter="'+a+'"]':".layui-table[lay-data]"),c="Table element property lay-data configuration item has a syntax error: ";return e.each(function(){var e=m(this),t=e.attr("lay-data");try{t=new Function("return "+t)()}catch(l){f.error(c+t,"error")}var n=[],o=m.extend({elem:this,cols:[],data:[],skin:e.attr("lay-skin"),size:e.attr("lay-size"),even:"string"==typeof e.attr("lay-even")},x.config,i,t);a&&e.hide(),e.find("thead>tr").each(function(i){o.cols[i]=[],m(this).children().each(function(e){var t=m(this),a=t.attr("lay-data");try{a=new Function("return "+a)()}catch(l){return f.error(c+a)}t=m.extend({title:t.text(),colspan:t.attr("colspan")||1,rowspan:t.attr("rowspan")||1},a);t.colspan<2&&n.push(t),o.cols[i].push(t)})}),e.find("tbody>tr").each(function(e){var a=m(this),l={};a.children("td").each(function(e,t){var a=m(this),i=a.data("field");if(i)return l[i]=a.html()}),layui.each(n,function(e,t){e=a.children("td").eq(e);l[t.field]=e.html()}),o.data[e]=l}),x.render(o)}),this},p.that={},p.config={},function(a,i,e,l){var n,o;l.colGroup&&(n=0,a++,l.CHILD_COLS=[],o=e+(parseInt(l.rowspan)||1),layui.each(i[o],function(e,t){t.parentKey?t.parentKey===l.key&&(t.PARENT_COL_INDEX=a,l.CHILD_COLS.push(t),F(a,i,o,t)):t.PARENT_COL_INDEX||1<=n&&n==(l.colspan||1)||(t.PARENT_COL_INDEX=a,l.CHILD_COLS.push(t),n+=t.hide?0:parseInt(1td'),a!==undefined&&null!==a||(a=""),0==l&&c.push(t.title||""),o.push('"'+k.call(d,{item3:t,content:a,tplData:n,text:"text",obj:d.commonMember.call(i.eq(0),{td:function(e){return i.filter('[data-field="'+e+'"]')}})})+'"')))}),i.push(o.join(","))}),d&&layui.each(d.dataTotal,function(e,t){r[e]||l.push(t)}),c.join(",")+"\r\n"+i.join("\r\n")+"\r\n"+l.join(","))),u.download=(a.title||o.title||"table_"+(o.index||""))+"."+n,document.body.appendChild(u),u.click(),document.body.removeChild(u)},x.resize=function(e){e?l(e)&&p.that[e].resize():layui.each(p.that,function(){this.resize()})},x.reload=function(e,t,a,i){if(l(e))return e=p.that[e],e.reload(t,a,i),p.call(e)},x.reloadData=function(){var a=m.extend([],arguments),i=(a[3]="reloadData",new RegExp("^("+["data","url","method","contentType","dataType","jsonpCallback","headers","where","page","limit","request","response","parseData","scrollPos"].join("|")+")$"));return layui.each(a[1],function(e,t){i.test(e)||delete a[1][e]}),x.reload.apply(null,a)},x.render=function(e){e=new i(e);return p.call(e)},x.clearCacheKey=function(e){return delete(e=m.extend({},e))[x.config.checkName],delete e[x.config.indexName],delete e[x.config.disabledName],e},m(function(){x.init()}),e(C,x)});layui.define("form",function(e){"use strict";var u=layui.$,i=layui.form,p=layui.layer,n="tree",a={config:{},index:layui[n]?layui[n].index+1e4:0,set:function(e){var i=this;return i.config=u.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,n,e,i)}},t=function(){var i=this,e=i.config,n=e.id||i.index;return t.that[n]=i,{config:t.config[n]=e,reload:function(e){i.reload.call(i,e)},getChecked:function(){return i.getChecked.call(i)},setChecked:function(e){return i.setChecked.call(i,e)}}},y="layui-hide",d="layui-disabled",f="layui-tree-set",C="layui-tree-iconClick",k="layui-icon-addition",v="layui-icon-subtraction",m="layui-tree-entry",x="layui-tree-main",b="layui-tree-txt",g="layui-tree-pack",w="layui-tree-spread",N="layui-tree-setLineShort",T="layui-tree-showLine",L="layui-tree-lineExtend",l=function(e){var i=this;i.index=++a.index,i.config=u.extend({},i.config,a.config,e),i.render()};l.prototype.config={data:[],showCheckbox:!1,showLine:!0,accordion:!1,onlyIconControl:!1,isJump:!1,edit:!1,text:{defaultNodeName:"\u672a\u547d\u540d",none:"\u65e0\u6570\u636e"}},l.prototype.reload=function(e){var n=this;layui.each(e,function(e,i){"array"===layui.type(i)&&delete n.config[e]}),n.config=u.extend(!0,{},n.config,e),n.render()},l.prototype.render=function(){var e=this,i=e.config,n=(e.checkids=[],u('
              ')),a=(e.tree(n),i.elem=u(i.elem));if(a[0]){if(e.key=i.id||e.index,e.elem=n,e.elemNone=u('
              '+i.text.none+"
              "),a.html(e.elem),0==e.elem.find(".layui-tree-set").length)return e.elem.append(e.elemNone);i.showCheckbox&&e.renderForm("checkbox"),e.elem.find(".layui-tree-set").each(function(){var e=u(this);e.parent(".layui-tree-pack")[0]||e.addClass("layui-tree-setHide"),!e.next()[0]&&e.parents(".layui-tree-pack").eq(1).hasClass("layui-tree-lineExtend")&&e.addClass(N),e.next()[0]||e.parents(".layui-tree-set").eq(0).next()[0]||e.addClass(N)}),e.events()}},l.prototype.renderForm=function(e){i.render(e,"LAY-tree-"+this.index)},l.prototype.tree=function(l,e){var r=this,c=r.config,e=e||c.data;layui.each(e,function(e,i){var n=i.children&&0"),t=u(['
              ','
              ','
              ',c.showLine?n?'':'':'',c.showCheckbox?'':"",c.isJump&&i.href?''+(i.title||i.label||c.text.defaultNodeName)+"":''+(i.title||i.label||c.text.defaultNodeName)+"","
              ",function(){if(!c.edit)return"";var n={add:'',update:'',del:''},a=['
              '];return!0===c.edit&&(c.edit=["update","del"]),"object"==typeof c.edit?(layui.each(c.edit,function(e,i){a.push(n[i]||"")}),a.join("")+"
              "):void 0}(),"
              "].join(""));n&&(t.append(a),r.tree(a,i.children)),l.append(t),t.prev("."+f)[0]&&t.prev().children(".layui-tree-pack").addClass("layui-tree-showLine"),n||t.parent(".layui-tree-pack").addClass("layui-tree-lineExtend"),r.spread(t,i),c.showCheckbox&&(i.checked&&r.checkids.push(i.id),r.checkClick(t,i)),c.edit&&r.operate(t,i)})},l.prototype.spread=function(a,e){var t=this.config,i=a.children("."+m),n=i.children("."+x),l=i.find("."+C),i=i.find("."+b),r=t.onlyIconControl?l:n,c="";r.on("click",function(e){var i=a.children("."+g),n=(r.children(".layui-icon")[0]?r:r.find(".layui-tree-icon")).children(".layui-icon");i[0]?a.hasClass(w)?(a.removeClass(w),i.slideUp(200),n.removeClass(v).addClass(k)):(a.addClass(w),i.slideDown(200),n.addClass(v).removeClass(k),t.accordion&&((i=a.siblings("."+f)).removeClass(w),i.children("."+g).slideUp(200),i.find(".layui-tree-icon").children(".layui-icon").removeClass(v).addClass(k))):c="normal"}),i.on("click",function(){u(this).hasClass(d)||(c=a.hasClass(w)?t.onlyIconControl?"open":"close":t.onlyIconControl?"close":"open",t.click&&t.click({elem:a,state:c,data:e}))})},l.prototype.setCheckbox=function(e,i,n){this.config;var t,l=n.prop("checked");n.prop("disabled")||("object"!=typeof i.children&&!e.find("."+g)[0]||e.find("."+g).find('input[same="layuiTreeCheck"]').each(function(){this.disabled||(this.checked=l)}),(t=function(e){var i,n,a;e.parents("."+f)[0]&&(n=(e=e.parent("."+g)).parent(),a=e.prev().find('input[same="layuiTreeCheck"]'),l?a.prop("checked",l):(e.find('input[same="layuiTreeCheck"]').each(function(){this.checked&&(i=!0)}),i||a.prop("checked",!1)),t(n))})(e),this.renderForm("checkbox"))},l.prototype.checkClick=function(n,a){var t=this,l=t.config;n.children("."+m).children("."+x).on("click",'input[same="layuiTreeCheck"]+',function(e){layui.stope(e);var e=u(this).prev(),i=e.prop("checked");e.prop("disabled")||(t.setCheckbox(n,a,e),l.oncheck&&l.oncheck({elem:n,checked:i,data:a}))})},l.prototype.operate=function(c,d){var s=this,o=s.config,e=c.children("."+m),h=e.children("."+x);e.children(".layui-tree-btnGroup").on("click",".layui-icon",function(e){layui.stope(e);var i,e=u(this).data("type"),a=c.children("."+g),t={data:d,type:e,elem:c};if("add"==e){a[0]||(o.showLine?(h.find("."+C).addClass("layui-tree-icon"),h.find("."+C).children(".layui-icon").addClass(k).removeClass("layui-icon-file")):h.find(".layui-tree-iconArrow").removeClass(y),c.append('
              '));var n,l=o.operate&&o.operate(t),r={};if(r.title=o.text.defaultNodeName,r.id=l,s.tree(c.children("."+g),[r]),o.showLine&&(a[0]?(a.hasClass(L)||a.addClass(L),c.find("."+g).each(function(){u(this).children("."+f).last().addClass(N)}),(a.children("."+f).last().prev().hasClass(N)?a.children("."+f).last().prev():a.children("."+f).last()).removeClass(N),!c.parent("."+g)[0]&&c.next()[0]&&a.children("."+f).last().removeClass(N)):(l=c.siblings("."+f),n=1,r=c.parent("."+g),layui.each(l,function(e,i){u(i).children("."+g)[0]||(n=0)}),1==n?(l.children("."+g).addClass(T),l.children("."+g).children("."+f).removeClass(N),c.children("."+g).addClass(T),r.removeClass(L),r.children("."+f).last().children("."+g).children("."+f).last().addClass(N)):c.children("."+g).children("."+f).addClass(N))),!o.showCheckbox)return;h.find('input[same="layuiTreeCheck"]')[0].checked&&(c.children("."+g).children("."+f).last().find('input[same="layuiTreeCheck"]')[0].checked=!0),s.renderForm("checkbox")}else"update"==e?(l=h.children("."+b).html(),h.children("."+b).html(""),h.append(''),h.children(".layui-tree-editInput").val(l).focus(),i=function(e){var i=(i=e.val().trim())||o.text.defaultNodeName;e.remove(),h.children("."+b).html(i),t.data.title=i,o.operate&&o.operate(t)},h.children(".layui-tree-editInput").blur(function(){i(u(this))}),h.children(".layui-tree-editInput").on("keydown",function(e){13===e.keyCode&&(e.preventDefault(),i(u(this)))})):p.confirm('\u786e\u8ba4\u5220\u9664\u8be5\u8282\u70b9 "'+(d.title||"")+'" \u5417\uff1f',function(e){if(o.operate&&o.operate(t),t.status="remove",p.close(e),!c.prev("."+f)[0]&&!c.next("."+f)[0]&&!c.parent("."+g)[0])return c.remove(),void s.elem.append(s.elemNone);var l,n,i;c.siblings("."+f).children("."+m)[0]?(o.showCheckbox&&(l=function(e){var i,n,a,t;e.parents("."+f)[0]&&(i=e.siblings("."+f).children("."+m),n=(e=e.parent("."+g).prev()).find('input[same="layuiTreeCheck"]')[0],a=1,(t=0)==n.checked&&(i.each(function(e,i){i=u(i).find('input[same="layuiTreeCheck"]')[0];0!=i.checked||i.disabled||(a=0),i.disabled||(t=1)}),1==a&&1==t&&(n.checked=!0,s.renderForm("checkbox"),l(e.parent("."+f)))))})(c),o.showLine&&(e=c.siblings("."+f),n=1,i=c.parent("."+g),layui.each(e,function(e,i){u(i).children("."+g)[0]||(n=0)}),1==n?(a[0]||(i.removeClass(L),e.children("."+g).addClass(T),e.children("."+g).children("."+f).removeClass(N)),(c.next()[0]?i.children("."+f).last():c.prev()).children("."+g).children("."+f).last().addClass(N),c.next()[0]||c.parents("."+f)[1]||c.parents("."+f).eq(0).next()[0]||c.prev("."+f).addClass(N)):!c.next()[0]&&c.hasClass(N)&&c.prev().addClass(N))):(e=c.parent("."+g).prev(),o.showLine?(e.find("."+C).removeClass("layui-tree-icon"),e.find("."+C).children(".layui-icon").removeClass(v).addClass("layui-icon-file"),(i=e.parents("."+g).eq(0)).addClass(L),i.children("."+f).each(function(){u(this).children("."+g).children("."+f).last().addClass(N)})):e.find(".layui-tree-iconArrow").addClass(y),c.parents("."+f).eq(0).removeClass(w),c.parent("."+g).remove()),c.remove()})})},l.prototype.events=function(){var i=this,t=i.config;i.elem.find(".layui-tree-checkedFirst");i.setChecked(i.checkids),i.elem.find(".layui-tree-search").on("keyup",function(){var e=u(this),n=e.val(),e=e.nextAll(),a=[];e.find("."+b).each(function(){var i,e=u(this).parents("."+m);-1!=u(this).html().indexOf(n)&&(a.push(u(this).parent()),(i=function(e){e.addClass("layui-tree-searchShow"),e.parent("."+g)[0]&&i(e.parent("."+g).parent("."+f))})(e.parent("."+f)))}),e.find("."+m).each(function(){var e=u(this).parent("."+f);e.hasClass("layui-tree-searchShow")||e.addClass(y)}),0==e.find(".layui-tree-searchShow").length&&i.elem.append(i.elemNone),t.onsearch&&t.onsearch({elem:a})}),i.elem.find(".layui-tree-search").on("keydown",function(){u(this).nextAll().find("."+m).each(function(){u(this).parent("."+f).removeClass("layui-tree-searchShow "+y)}),u(".layui-tree-emptyText")[0]&&u(".layui-tree-emptyText").remove()})},l.prototype.getChecked=function(){var e=this.config,i=[],n=[],t=(this.elem.find(".layui-form-checked").each(function(){i.push(u(this).prev()[0].value)}),function(e,a){layui.each(e,function(e,n){layui.each(i,function(e,i){if(n.id==i)return delete(i=u.extend({},n)).children,a.push(i),n.children&&(i.children=[],t(n.children,i.children)),!0})})});return t(u.extend({},e.data),n),n},l.prototype.setChecked=function(l){this.config;this.elem.find("."+f).each(function(e,i){var n=u(this).data("id"),a=u(i).children("."+m).find('input[same="layuiTreeCheck"]'),t=a.next();if("number"==typeof l){if(n==l)return a[0].checked||t.click(),!1}else"object"==typeof l&&layui.each(l,function(e,i){if(i==n&&!a[0].checked)return t.click(),!0})})},t.that={},t.config={},a.reload=function(e,i){e=t.that[e];return e.reload(i),t.call(e)},a.getChecked=function(e){return t.that[e].getChecked()},a.setChecked=function(e,i){return t.that[e].setChecked(i)},a.render=function(e){e=new l(e);return t.call(e)},e(n,a)});layui.define(["laytpl","form"],function(e){"use strict";var s=layui.$,n=layui.laytpl,t=layui.form,a="transfer",i={config:{},index:layui[a]?layui[a].index+1e4:0,set:function(e){var t=this;return t.config=s.extend({},t.config,e),t},on:function(e,t){return layui.onevent.call(this,a,e,t)}},l=function(){var t=this,e=t.config,a=e.id||t.index;return l.that[a]=t,{config:l.config[a]=e,reload:function(e){t.reload.call(t,e)},getData:function(){return t.getData.call(t)}}},d="layui-hide",h="layui-btn-disabled",r="layui-none",c="layui-transfer-box",u="layui-transfer-header",o="layui-transfer-search",f="layui-transfer-data",y=function(e){return['
              ','
              ','","
              ","{{# if(d.data.showSearch){ }}",'","{{# } }}",'
                ',"
                "].join("")},p=['
                ',y({index:0,checkAllName:"layTransferLeftCheckAll"}),'
                ','",'","
                ",y({index:1,checkAllName:"layTransferRightCheckAll"}),"
                "].join(""),v=function(e){var t=this;t.index=++i.index,t.config=s.extend({},t.config,i.config,e),t.render()};v.prototype.config={title:["\u5217\u8868\u4e00","\u5217\u8868\u4e8c"],width:200,height:360,data:[],value:[],showSearch:!1,id:"",text:{none:"\u65e0\u6570\u636e",searchNone:"\u65e0\u5339\u914d\u6570\u636e"}},v.prototype.reload=function(e){var t=this;t.config=s.extend({},t.config,e),t.render()},v.prototype.render=function(){var e=this,t=e.config,a=e.elem=s(n(p).render({data:t,index:e.index})),i=t.elem=s(t.elem);i[0]&&(t.data=t.data||[],t.value=t.value||[],e.key=t.id||e.index,i.html(e.elem),e.layBox=e.elem.find("."+c),e.layHeader=e.elem.find("."+u),e.laySearch=e.elem.find("."+o),e.layData=a.find("."+f),e.layBtn=a.find(".layui-transfer-active .layui-btn"),e.layBox.css({width:t.width,height:t.height}),e.layData.css({height:(i=t.height-e.layHeader.outerHeight(),t.showSearch&&(i-=e.laySearch.outerHeight()),i-2)}),e.renderData(),e.events())},v.prototype.renderData=function(){var e=this,i=(e.config,[{checkName:"layTransferLeftCheck",views:[]},{checkName:"layTransferRightCheck",views:[]}]);e.parseData(function(e){var t=e.selected?1:0,a=["
              • ",'',"
              • "].join("");i[t].views.push(a),delete e.selected}),e.layData.eq(0).html(i[0].views.join("")),e.layData.eq(1).html(i[1].views.join("")),e.renderCheckBtn()},v.prototype.renderForm=function(e){t.render(e,"LAY-transfer-"+this.index)},v.prototype.renderCheckBtn=function(r){var c=this,o=c.config;r=r||{},c.layBox.each(function(e){var t=s(this),a=t.find("."+f),t=t.find("."+u).find('input[type="checkbox"]'),i=a.find('input[type="checkbox"]'),n=0,l=!1;i.each(function(){var e=s(this).data("hide");(this.checked||this.disabled||e)&&n++,this.checked&&!e&&(l=!0)}),t.prop("checked",l&&n===i.length),c.layBtn.eq(e)[l?"removeClass":"addClass"](h),r.stopNone||(i=a.children("li:not(."+d+")").length,c.noneView(a,i?"":o.text.none))}),c.renderForm("checkbox")},v.prototype.noneView=function(e,t){var a=s('

                '+(t||"")+"

                ");e.find("."+r)[0]&&e.find("."+r).remove(),t.replace(/\s/g,"")&&e.append(a)},v.prototype.setValue=function(){var e=this.config,t=[];return this.layBox.eq(1).find("."+f+' input[type="checkbox"]').each(function(){s(this).data("hide")||t.push(this.value)}),e.value=t,this},v.prototype.parseData=function(t){var i=this.config,n=[];return layui.each(i.data,function(e,a){a=("function"==typeof i.parseData?i.parseData(a):a)||a,n.push(a=s.extend({},a)),layui.each(i.value,function(e,t){t==a.value&&(a.selected=!0)}),t&&t(a)}),i.data=n,this},v.prototype.getData=function(e){var t=this.config,i=[];return this.setValue(),layui.each(e||t.value,function(e,a){layui.each(t.data,function(e,t){delete t.selected,a==t.value&&i.push(t)})}),i},v.prototype.transfer=function(e,t){var a,i=this,n=i.config,l=i.layBox.eq(e),r=[],t=(t?((a=(t=t).find('input[type="checkbox"]'))[0].checked=!1,l.siblings("."+c).find("."+f).append(t.clone()),t.remove(),r.push(a[0].value),i.setValue()):l.each(function(e){s(this).find("."+f).children("li").each(function(){var e=s(this),t=e.find('input[type="checkbox"]'),a=t.data("hide");t[0].checked&&!a&&(t[0].checked=!1,l.siblings("."+c).find("."+f).append(e.clone()),e.remove(),r.push(t[0].value)),i.setValue()})}),i.renderCheckBtn(),l.siblings("."+c).find("."+o+" input"));""!==t.val()&&t.trigger("keyup"),n.onchange&&n.onchange(i.getData(r),e)},v.prototype.events=function(){var n=this,l=n.config;n.elem.on("click",'input[lay-filter="layTransferCheckbox"]+',function(){var e=s(this).prev(),t=e[0].checked,a=e.parents("."+c).eq(0).find("."+f);e[0].disabled||("all"===e.attr("lay-type")&&a.find('input[type="checkbox"]').each(function(){this.disabled||(this.checked=t)}),setTimeout(function(){n.renderCheckBtn({stopNone:!0})},0))}),n.elem.on("dblclick","."+f+">li",function(e){var t=s(this),a=t.children('input[type="checkbox"]'),i=t.parent().parent();a[0].disabled||n.transfer(i.data("index"),t)}),n.layBtn.on("click",function(){var e=s(this),t=e.data("index");e.hasClass(h)||n.transfer(t)}),n.laySearch.find("input").on("keyup",function(){var i=this.value,e=s(this).parents("."+o).eq(0).siblings("."+f),t=e.children("li"),t=(t.each(function(){var e=s(this),t=e.find('input[type="checkbox"]'),a=t[0].title,a=("cs"!==l.showSearch&&(a=a.toLowerCase(),i=i.toLowerCase()),-1!==a.indexOf(i));e[a?"removeClass":"addClass"](d),t.data("hide",!a)}),n.renderCheckBtn(),t.length===e.children("li."+d).length);n.noneView(e,t?l.text.searchNone:"")})},l.that={},l.config={},i.reload=function(e,t){e=l.that[e];return e.reload(t),l.call(e)},i.getData=function(e){return l.that[e].getData()},i.render=function(e){e=new v(e);return l.call(e)},e(a,i)});layui.define("jquery",function(e){"use strict";var a=layui.$,n=(layui.hint(),layui.device(),{config:{},set:function(e){var i=this;return i.config=a.extend({},i.config,e),i},on:function(e,i){return layui.onevent.call(this,d,e,i)}}),d="carousel",r="layui-this",s="layui-carousel-left",u="layui-carousel-right",c="layui-carousel-prev",m="layui-carousel-next",t="layui-carousel-arrow",l="layui-carousel-ind",i=function(e){var i=this;i.config=a.extend({},i.config,n.config,e),i.render()};i.prototype.config={width:"600px",height:"280px",full:!1,arrow:"hover",indicator:"inside",autoplay:!0,interval:3e3,anim:"",trigger:"click",index:0},i.prototype.render=function(){var e=this,i=e.config;i.elem=a(i.elem),i.elem[0]&&(e.elemItem=i.elem.find(">*[carousel-item]>*"),i.index<0&&(i.index=0),i.index>=e.elemItem.length&&(i.index=e.elemItem.length-1),i.interval<800&&(i.interval=800),i.full?i.elem.css({position:"fixed",width:"100%",height:"100%",zIndex:9999}):i.elem.css({width:i.width,height:i.height}),i.elem.attr("lay-anim",i.anim),e.elemItem.eq(i.index).addClass(r),e.elemItem.length<=1||(e.indicator(),e.arrow(),e.autoplay(),e.events()))},i.prototype.reload=function(e){var i=this;clearInterval(i.timer),i.config=a.extend({},i.config,e),i.render()},i.prototype.prevIndex=function(){var e=this.config.index-1;return e=e<0?this.elemItem.length-1:e},i.prototype.nextIndex=function(){var e=this.config.index+1;return e=e>=this.elemItem.length?0:e},i.prototype.addIndex=function(e){var i=this.config;i.index=i.index+(e=e||1),i.index>=this.elemItem.length&&(i.index=0)},i.prototype.subIndex=function(e){var i=this.config;i.index=i.index-(e=e||1),i.index<0&&(i.index=this.elemItem.length-1)},i.prototype.autoplay=function(){var e=this,i=e.config;i.autoplay&&(clearInterval(e.timer),e.timer=setInterval(function(){e.slide()},i.interval))},i.prototype.arrow=function(){var i=this,e=i.config,n=a(['",'"].join(""));e.elem.attr("lay-arrow",e.arrow),e.elem.find("."+t)[0]&&e.elem.find("."+t).remove(),e.elem.append(n),n.on("click",function(){var e=a(this).attr("lay-type");i.slide(e)})},i.prototype.indicator=function(){var i,n=this,t=n.config,e=n.elemInd=a(['
                  ',(i=[],layui.each(n.elemItem,function(e){i.push("")}),i.join("")),"
                "].join(""));t.elem.attr("lay-indicator",t.indicator),t.elem.find("."+l)[0]&&t.elem.find("."+l).remove(),t.elem.append(e),"updown"===t.anim&&e.css("margin-top",-e.height()/2),e.find("li").on("hover"===t.trigger?"mouseover":t.trigger,function(){var e=a(this).index();e>t.index?n.slide("add",e-t.index):ea.length&&(a.value=a.length),parseInt(a.value)===a.value||a.half||(a.value=Math.ceil(a.value)-a.value<.5?Math.ceil(a.value):Math.floor(a.value)),'
                  "),n=1;n<=a.length;n++){var t='
                • ";a.half&&parseInt(a.value)!==a.value&&n==Math.ceil(a.value)?i=i+'
                • ":i+=t}i+="
                "+(a.text?''+a.value+"\u661f":"")+"";var o=a.elem,s=o.next(".layui-rate");s[0]&&s.remove(),e.elemTemp=u(i),a.span=e.elemTemp.next("span"),a.setText&&a.setText(a.value),o.html(e.elemTemp),o.addClass("layui-inline"),a.readonly||e.action()},a.prototype.setvalue=function(e){this.config.value=e,this.render()},a.prototype.action=function(){var i=this.config,n=this.elemTemp,t=n.find("i").width();n.children("li").each(function(e){var a=e+1,l=u(this);l.on("click",function(e){i.value=a,i.half&&e.pageX-u(this).offset().left<=t/2&&(i.value=i.value-.5),i.text&&n.next("span").text(i.value+"\u661f"),i.choose&&i.choose(i.value),i.setText&&i.setText(i.value)}),l.on("mousemove",function(e){n.find("i").each(function(){u(this).addClass(c).removeClass(s)}),n.find("i:lt("+a+")").each(function(){u(this).addClass(r).removeClass(f)}),i.half&&e.pageX-u(this).offset().left<=t/2&&l.children("i").addClass(o).removeClass(r)}),l.on("mouseleave",function(){n.find("i").each(function(){u(this).addClass(c).removeClass(s)}),n.find("i:lt("+Math.floor(i.value)+")").each(function(){u(this).addClass(r).removeClass(f)}),i.half&&parseInt(i.value)!==i.value&&n.children("li:eq("+Math.floor(i.value)+")").children("i").addClass(o).removeClass("layui-icon-rate-solid layui-icon-rate")})})},a.prototype.events=function(){this.config},l.render=function(e){e=new a(e);return function(){var a=this;return{setvalue:function(e){a.setvalue.call(a,e)},config:a.config}}.call(e)},e(i,l)});layui.define("jquery",function(l){"use strict";var g=layui.$,e=function(l){};e.prototype.load=function(l){var t,i,n,e,r,o,a,c,m,s,u,f,y,d=this,p=0,h=g((l=l||{}).elem);if(h[0])return e=g(l.scrollElem||document),r=l.mb||50,o=!("isAuto"in l)||l.isAuto,a=l.end||"\u6ca1\u6709\u66f4\u591a\u4e86",c=l.scrollElem&&l.scrollElem!==document,m="\u52a0\u8f7d\u66f4\u591a",s=g('"),h.find(".layui-flow-more")[0]||h.append(s),u=function(l,e){l=g(l),s.before(l),(e=0==e||null)?s.html(a):s.find("a").html(m),i=e,t=null,y&&y()},f=function(){t=!0,s.find("a").html(''),"function"==typeof l.done&&l.done(++p,u)},f(),s.find("a").on("click",function(){g(this);i||t||f()}),l.isLazyimg&&(y=d.lazyimg({elem:l.elem+" img",scrollElem:l.scrollElem})),o&&e.on("scroll",function(){var e=g(this),o=e.scrollTop();n&&clearTimeout(n),!i&&h.width()&&(n=setTimeout(function(){var l=(c?e:g(window)).height();(c?e.prop("scrollHeight"):document.documentElement.scrollHeight)-o-l<=r&&(t||f())},100))}),d},e.prototype.lazyimg=function(l){var e,c=this,m=0,s=g((l=l||{}).scrollElem||document),u=l.elem||"img",f=l.scrollElem&&l.scrollElem!==document,y=function(e,l){var o,t=s.scrollTop(),l=t+l,i=f?e.offset().top-s.offset().top+t:e.offset().top;t<=i&&i<=l&&e.attr("lay-src")&&(o=e.attr("lay-src"),layui.img(o,function(){var l=c.lazyimg.elem.eq(m);e.attr("src",o).removeAttr("lay-src"),l[0]&&n(l),m++},function(){c.lazyimg.elem.eq(m);e.removeAttr("lay-src")}))},n=function(l,e){var o=(f?e||s:g(window)).height(),t=s.scrollTop(),i=t+o;if(c.lazyimg.elem=g(u),l)y(l,o);else for(var n=0;n','
                '+e+"
                ",'
                ','',"
                ",""].join(""));return d.ie&&d.ie<8?s.removeClass("layui-hide").addClass("layui-show"):(c[0]&&c.remove(),f.call(a,o,s[0],n),s.addClass("layui-hide").after(o),a.index)},e.prototype.getContent=function(t){t=n(t);if(t[0])return l(t[0].document.body.innerHTML)},e.prototype.getText=function(t){t=n(t);if(t[0])return u(t[0].document.body).text()},e.prototype.setContent=function(t,e,i){var l=n(t);l[0]&&(i?u(l[0].document.body).append(e):u(l[0].document.body).html(e),layedit.sync(t))},e.prototype.sync=function(t){t=n(t);t[0]&&u("#"+t[1].attr("textarea")).val(l(t[0].document.body.innerHTML))},e.prototype.getSelection=function(t){var t=n(t);if(t[0])return t=p(t[0].document),document.selection?t.text:t.toString()},function(a,n,o){var s=this,r=a.find("iframe");r.css({height:o.height}).on("load",function(){var t=r.contents(),e=r.prop("contentWindow"),i=t.find("head"),l=u([""].join("")),t=t.find("body");i.append(l),t.attr("contenteditable","true").css({"min-height":o.height}).html(n.value||""),m.apply(s,[e,r,n,o]),g.call(s,e,a,o)})}),n=function(t){t=u("#LAY_layedit_"+t);return[t.prop("contentWindow"),t]},l=function(t){return t=8==d.ie?t.replace(/<.+>/g,function(t){return t.toLowerCase()}):t},m=function(e,t,i,l){var a=e.document,n=u(a.body);n.on("keydown",function(t){if(13===t.keyCode){var e=p(a);if("pre"===h(e).parentNode.tagName.toLowerCase())return t.shiftKey?void 0:(c.msg("\u8bf7\u6682\u65f6\u7528shift+enter"),!1);a.execCommand("formatBlock",!1,"

                ")}}),u(i).parents("form").on("submit",function(){var t=n.html();8==d.ie&&(t=t.replace(/<.+>/g,function(t){return t.toLowerCase()})),i.value=t}),n.on("paste",function(t){a.execCommand("formatBlock",!1,"

                "),setTimeout(function(){o.call(e,n),i.value=n.html()},100)})},o=function(t){this.document;t.find("*[style]").each(function(){var t=this.style.textAlign;this.removeAttribute("style"),u(this).css({"text-align":t||""})}),t.find("table").addClass("layui-table"),t.find("script,link").remove()},p=function(t){return t.selection?t.selection.createRange():t.getSelection().getRangeAt(0)},h=function(t){return t.endContainer||t.parentElement().childNodes[0]},v=function(t,e,i){var l,a,n=this.document,o=document.createElement(t);for(l in e)o.setAttribute(l,e[l]);o.removeAttribute("text"),n.selection?(a=i.text||e.text,"a"===t&&!a||(a&&(o.innerHTML=a),i.pasteHTML(u(o).prop("outerHTML")),i.select())):(a=i.toString()||e.text,"a"===t&&!a||(a&&(o.innerHTML=a),i.deleteContents(),i.insertNode(o)))},b=function(e,t){var i=this.document,l="layedit-tool-active",i=h(p(i)),a=function(t){return e.find(".layedit-tool-"+t)};t&&t[t.hasClass(l)?"removeClass":"addClass"](l),e.find(">i").removeClass(l),a("unlink").addClass(y),u(i).parents().each(function(){var t=this.tagName.toLowerCase(),e=this.style.textAlign;"b"!==t&&"strong"!==t||a("b").addClass(l),"i"!==t&&"em"!==t||a("i").addClass(l),"u"===t&&a("u").addClass(l),"strike"===t&&a("d").addClass(l),"p"===t&&a("center"===e?"center":"right"===e?"right":"left").addClass(l),"a"===t&&(a("link").addClass(l),a("unlink").removeClass(y))})},g=function(a,t,e){var n=a.document,o=u(n.body),s={link:function(i){var t=h(i),l=u(t).parent();x.call(o,{href:l.attr("href"),target:l.attr("target")},function(t){var e=l[0];"A"===e.tagName?e.href=t.url:v.call(a,"a",{target:t.target,href:t.url,text:t.url},i)})},unlink:function(t){n.execCommand("unlink")},code:function(e){k.call(o,function(t){v.call(a,"pre",{text:t.code,"lay-lang":t.lang},e)})},help:function(){c.open({type:2,title:"\u5e2e\u52a9",area:["600px","380px"],shadeClose:!0,shade:.1,skin:"layui-layer-msg",content:["","no"]})}},r=t.find(".layui-layedit-tool"),i=function(){var t,e=u(this),i=e.attr("layedit-event"),l=e.attr("lay-command");e.hasClass(y)||(o.focus(),(t=p(n)).commonAncestorContainer,l?(n.execCommand(l),/justifyLeft|justifyCenter|justifyRight/.test(l)&&n.execCommand("formatBlock",!1,"

                "),setTimeout(function(){o.focus()},10)):s[i]&&s[i].call(this,t),b.call(a,r,e))},l=/image/;r.find(">i").on("mousedown",function(){var t=u(this).attr("layedit-event");l.test(t)||i.call(this)}).on("click",function(){var t=u(this).attr("layedit-event");l.test(t)&&i.call(this)}),o.on("click",function(){b.call(a,r)})},x=function(t,i){var l=this,t=c.open({type:1,id:"LAY_layedit_link",area:"350px",shade:.05,shadeClose:!0,moveType:1,title:"\u8d85\u94fe\u63a5",skin:"layui-layer-msg",content:['

                  ','
                • ','','
                  ','',"
                  ","
                • ",'
                • ','','
                  ','",'","
                  ","
                • ",'
                • ','','',"
                • ","
                "].join(""),success:function(t,e){a.render("radio"),t.find(".layui-btn-primary").on("click",function(){c.close(e),l.focus()}),a.on("submit(layedit-link-yes)",function(t){c.close(x.index),i&&i(t.field)})}});x.index=t},k=function(i){var l=this,t=c.open({type:1,id:"LAY_layedit_code",area:"550px",shade:.05,shadeClose:!0,moveType:1,title:"\u63d2\u5165\u4ee3\u7801",skin:"layui-layer-msg",content:['
                  ','
                • ','','
                  ','","
                  ","
                • ",'
                • ','','
                  ','',"
                  ","
                • ",'
                • ','','',"
                • ","
                "].join(""),success:function(t,e){a.render("select"),t.find(".layui-btn-primary").on("click",function(){c.close(e),l.focus()}),a.on("submit(layedit-code-yes)",function(t){c.close(k.index),i&&i(t.field)})}});k.index=t},C={html:'',strong:'',italic:'',underline:'',del:'',"|":'',left:'',center:'',right:'',link:'',unlink:'',face:'',image:'',code:'',help:''},e=new e;t(i,e)});layui.define(["lay","util"],function(e){"use strict";var d=layui.$,o=layui.util,u="layui-code-title",l={elem:".layui-code",title:"</>",about:"",ln:!0};e("code",function(e){var c=e=d.extend({},l,e);e.elem=d(e.elem),e.elem[0]&&layui.each(e.elem.get().reverse(),function(e,l){var t,a=d(l),i=(i=a.html(),d.trim(i).replace(/^\n|\n$/,"")),l=d.extend({},c,lay.options(l),(t={},layui.each(["title","height","encode","skin","about"],function(e,l){var i=a.attr("lay-"+l);"string"==typeof i&&(t[l]=i)}),t)),s=l.ln?"ol":"ul",s=d("<"+s+' class="layui-code-'+s+'">'),n=d('
                ');a.addClass("layui-code-view layui-box"),l.skin&&("notepad"===l.skin&&(l.skin="dark"),a.addClass("layui-code-"+l.skin)),i=(i=l.encode?o.escape(i):i).replace(/[\r\t\n]+/g,"
              • "),a.html(s.html("
              • "+i+"
              • ")),a.children("."+u)[0]||(n.html(l.title+(l.about?'
                '+l.about+"
                ":"")),a.prepend(n)),0<(i=Math.floor(s.find("li").length/100))&&s.css("margin-left",i+"px"),l.height&&s.css("max-height",l.height)})})}).addcss("modules/code.css?v=3","skincodecss"); \ No newline at end of file