From 52eca133d1834bca7ce66bc4fd17ecf3352a482d Mon Sep 17 00:00:00 2001
From: jiazx0107 <jiazx0107@163.com>
Date: 星期一, 15 十二月 2025 10:05:07 +0800
Subject: [PATCH] 调整登录页面

---
 fzzy-igdss-web/src/main/resources/static/login/images/icon-user.png                   |    0 
 fzzy-igdss-web/src/main/resources/static/css/style.css                                |    5 
 fzzy-igdss-web/src/main/resources/static/login/images/login2-box-tit.png              |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/login2-left.gif                 |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/login2-left-bg.png              |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/login2-bg.png                   |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/i-body1.png                     |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/login-app-code.png              |    0 
 fzzy-igdss-core/src/main/java/com/fzzy/igds/service/DeviceIotService.java             |    6 
 fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/system/SysCaptchaController.java |    2 
 fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/Bank.java                          |   12 
 fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysLoginController.java          |    2 
 fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysIndexController.java          |    2 
 fzzy-igdss-web/src/main/resources/static/login/images/icon-yzm.png                    |    0 
 /dev/null                                                                             |  320 ---------------------
 fzzy-igdss-web/src/main/resources/templates/login.html                                |  259 +++++++++++++---
 fzzy-igdss-web/src/main/resources/static/login/images/login-left.jpg                  |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/login-titimg2.png               |    0 
 fzzy-igdss-web/src/main/resources/static/login/images/yanzhengma.jpg                  |    0 
 fzzy-igdss-view/src/main/java/com/fzzy/igds/DeptPR.java                               |    3 
 fzzy-igdss-web/src/main/resources/static/login/css/layui.css                          |    1 
 fzzy-igdss-web/src/main/resources/static/login/loginAndRegister.js                    |    0 
 fzzy-igdss-web/src/main/resources/static/login/css/login.css                          |  245 ++++++++++++++++
 fzzy-igdss-web/src/main/resources/static/login/images/icon-pw.png                     |    0 
 24 files changed, 464 insertions(+), 393 deletions(-)

diff --git a/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/Bank.java b/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/Bank.java
index 257e8d3..e88a43b 100644
--- a/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/Bank.java
+++ b/fzzy-igdss-core/src/main/java/com/fzzy/igds/domain/Bank.java
@@ -18,16 +18,16 @@
 @Entity
 @Table(name = "d_bank")
 @TableName("d_bank")
-@EqualsAndHashCode(callSuper=false)
+@EqualsAndHashCode(callSuper = false)
 public class Bank extends BizBaseEntity implements Serializable {
 
     /**
-	 * 
-	 */
-	private static final long serialVersionUID = 1L;
-	
+     *
+     */
+    private static final long serialVersionUID = 1L;
 
-	@Id
+
+    @Id
     @Column(name = "id", columnDefinition = "varchar(40) COMMENT '閾惰ID'")
     @TableField("id")
     private String id;
diff --git a/fzzy-igdss-core/src/main/java/com/fzzy/igds/service/DeviceIotService.java b/fzzy-igdss-core/src/main/java/com/fzzy/igds/service/DeviceIotService.java
index 197d39c..359c635 100644
--- a/fzzy-igdss-core/src/main/java/com/fzzy/igds/service/DeviceIotService.java
+++ b/fzzy-igdss-core/src/main/java/com/fzzy/igds/service/DeviceIotService.java
@@ -17,9 +17,9 @@
 import java.util.stream.Collectors;
 
 /**
- * @Description
- * @Author CZT
- * @Date 2025/11/28 14:45
+ * @Desc:
+ * @Author: CZT
+ * @Date: 2025/11/28 14:45
  */
 @Slf4j
 @Service
diff --git a/fzzy-igdss-view/src/main/java/com/fzzy/igds/DeptPR.java b/fzzy-igdss-view/src/main/java/com/fzzy/igds/DeptPR.java
index 4da2269..6bf5eec 100644
--- a/fzzy-igdss-view/src/main/java/com/fzzy/igds/DeptPR.java
+++ b/fzzy-igdss-view/src/main/java/com/fzzy/igds/DeptPR.java
@@ -5,9 +5,6 @@
 import com.fzzy.igds.domain.Dept;
 import com.fzzy.igds.service.CoreDeptService;
 import com.fzzy.igds.utils.ContextUtil;
-import com.ruoyi.common.core.domain.entity.SysDept;
-import com.ruoyi.common.core.domain.entity.SysUser;
-import com.ruoyi.system.service.ISysDeptService;
 import org.springframework.beans.BeanUtils;
 import org.springframework.stereotype.Component;
 import javax.annotation.Resource;
diff --git a/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysIndexController.java b/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysIndexController.java
index 9717fe1..aa4999c 100644
--- a/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysIndexController.java
+++ b/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysIndexController.java
@@ -178,7 +178,7 @@
     @GetMapping("/system/main")
     public String main(ModelMap mmap) {
         mmap.put("version", FrameworkConfig.getVersion());
-        return "main_v2";
+        return "main_v1";
     }
 
     // content-main class
diff --git a/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysLoginController.java b/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysLoginController.java
index 381d69a..876ffa5 100644
--- a/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysLoginController.java
+++ b/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/SysLoginController.java
@@ -61,7 +61,7 @@
         String companyId = FrameworkConfig.getCompanyId();
         mmap.put("isAllowRegister", Convert.toBool(configService.getKey("sys.account.registerUser", companyId), false));
         mmap.put("isAllowRegister", true);
-        return "login_new";
+        return "login";
     }
 
     @PostMapping("/login")
diff --git a/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/system/SysCaptchaController.java b/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/system/SysCaptchaController.java
index ef832d3..99aab46 100644
--- a/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/system/SysCaptchaController.java
+++ b/fzzy-igdss-web/src/main/java/com/fzzy/sys/controller/system/SysCaptchaController.java
@@ -46,7 +46,7 @@
             response.setContentType("image/jpeg");
 
             String type = request.getParameter("type");
-            String capStr = null;
+            String capStr;
             String code = null;
             BufferedImage bi = null;
             if ("math".equals(type)) {
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/css/ax-response.css b/fzzy-igdss-web/src/main/resources/static/axui/css/ax-response.css
deleted file mode 100644
index f43fb5b..0000000
--- a/fzzy-igdss-web/src/main/resources/static/axui/css/ax-response.css
+++ /dev/null
@@ -1,1325 +0,0 @@
-@charset "utf-8";
-/*
- *Last modified: 2022-06-27 21:29:39
- *Filename: ax-response.css
- *Description: Global CSS
- *Version: v2.0.0Beta
- *Website:www.axui.cn or ax.hobly.cn
- *Contact:3217728223@qq.com
- *Author:Michael
- */
-/*x1 screen,PC devices*/
-@media screen and (-webkit-max-device-pixel-ratio: 1.1), (max-device-pixel-ratio: 1.1) {
-  /*scrollbar*/
-  ::-webkit-scrollbar {
-    width: 10px;
-    height: 10px;
-    background: transparent;
-  }
-  ::-webkit-scrollbar-track {
-    background-color: rgba(0, 0, 0, 0.04);
-  }
-  ::-webkit-scrollbar-thumb {
-    background-color: rgba(0, 0, 0, 0.3);
-  }
-  ::-webkit-scrollbar-thumb:hover {
-    background-color: rgba(0, 0, 0, 0.4);
-  }
-  ::-webkit-scrollbar-corner {
-    background-color: rgba(0, 0, 0, 0.04);
-  }
-  body {
-    scrollbar-arrow-color: #b3b3b3;
-    scrollbar-face-color: #b3b3b3;
-    scrollbar-3dlight-color: #b3b3b3;
-    scrollbar-highlight-color: #f0f0f0;
-    scrollbar-shadow-color: #b3b3b3;
-    scrollbar-darkshadow-color: #b3b3b3;
-    scrollbar-track-color: #f0f0f0;
-    scrollbar-base-color: #f0f0f0;
-  }
-}
-/*x2 & x3 screen,Mobile devices*/
-@media screen and (-webkit-min-device-pixel-ratio: 1.8), (min-device-pixel-ratio: 1.8) {
-  /*global*/
-  html {
-    font-size: calc(160px/14);
-  }
-  body {
-    font-family: "Arial", "Helvetica Neue", "sans-serif", "pingfang SC", "Hiragino Sans GB", "寰蒋闆呴粦", "microsoft yahei", "瀹嬩綋", "simsun";
-    color: #000;
-    line-height: 2.2rem;
-  }
-  .ax-box-body.ax-padding.ax-xl {
-    padding-top: 0;
-  }
-  .ax-gutter-line {
-    -webkit-transform: scaleX(0.5);
-    transform: scaleX(0.5);
-  }
-  .ax-break-line {
-    -webkit-transform: scaleY(0.5);
-    transform: scaleY(0.5);
-  }
-  /**/
-  input,
-  textarea,
-  select,
-  button {
-    font-family: "Arial", "Helvetica Neue", "sans-serif", "pingfang SC", "Hiragino Sans GB", "寰蒋闆呴粦", "microsoft yahei", "瀹嬩綋", "simsun";
-  }
-  a {
-    color: #000;
-    text-decoration: none;
-    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-  }
-  a:hover {
-    color: #000;
-    text-decoration: none !important;
-  }
-  a:active {
-    text-decoration: none !important;
-  }
-  /*button*/
-  .ax-btn.ax-primary:not(.ax-line),
-  .ax-btn.ax-secondary:not(.ax-line),
-  .ax-btn.ax-success:not(.ax-line),
-  .ax-btn.ax-danger:not(.ax-line),
-  .ax-btn.ax-warning:not(.ax-line),
-  .ax-btn.ax-ad:not(.ax-line),
-  .ax-btn.ax-info:not(.ax-line),
-  .ax-btn.ax-black:not(.ax-line) {
-    border-width: 0;
-  }
-  .ax-btn.ax-primary:not(.ax-line):after,
-  .ax-btn.ax-secondary:not(.ax-line):after,
-  .ax-btn.ax-success:not(.ax-line):after,
-  .ax-btn.ax-danger:not(.ax-line):after,
-  .ax-btn.ax-warning:not(.ax-line):after,
-  .ax-btn.ax-ad:not(.ax-line):after,
-  .ax-btn.ax-info:not(.ax-line):after,
-  .ax-btn.ax-black:not(.ax-line):after {
-    border-width: 0;
-  }
-  .ax-btn-group .ax-btn:not(.ax-line) {
-    border-width: 1px;
-  }
-  .ax-btn-group .ax-btn:not(.ax-line):after {
-    border-width: 1px;
-  }
-}
-/*x3 screen,Mobile devices*/
-@media screen and (-webkit-min-device-pixel-ratio: 2.4), (min-device-pixel-ratio: 2.4) {
-  /*global*/
-  .ax-gutter-line {
-    -webkit-transform: scaleX(0.3333);
-    transform: scaleX(0.3333);
-  }
-  .ax-break-line {
-    -webkit-transform: scaleY(0.3333);
-    transform: scaleY(0.3333);
-  }
-}
-/*Telephone & iPad*/
-@media screen and (max-width: 900px) {
-  /*global*/
-  .ax-hide-tel {
-    display: none !important;
-  }
-  .ax-border-tel {
-    border: 1px solid #ebebeb;
-    background-color: #fff;
-  }
-  .ax-margin-tel {
-    margin: 1.4rem;
-    box-sizing: border-box;
-  }
-  .ax-padding-tel {
-    padding: 1.4rem;
-    box-sizing: border-box;
-  }
-  .ax-radius-tel {
-    border-radius: 0.3rem;
-  }
-  .ax-iconfont:before {
-    top: 0;
-  }
-  /*overflow*/
-  .ax-overflow {
-    position: relative;
-  }
-  .ax-overflow.ax-done .ax-inner {
-    padding-right: 3.8rem;
-  }
-  .ax-overflow .ax-inner {
-    width: 100%;
-    box-sizing: border-box;
-    overflow-y: hidden;
-    overflow-x: auto;
-  }
-  .ax-overflow:before {
-    content: '\203A';
-    font-size: 2.2rem;
-    color: #198cff;
-    width: 4.4rem;
-    height: 100%;
-    justify-content: center;
-    align-items: center;
-    overflow: hidden;
-    box-sizing: border-box;
-    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff);
-    position: absolute;
-    top: 0;
-    right: 0;
-    display: none;
-  }
-  .ax-overflow.ax-done:before {
-    display: flex;
-    animation: ax-overflow 1s linear infinite;
-  }
-  @keyframes ax-overflow {
-    0% {
-      text-indent: 2.8rem;
-    }
-    50% {
-      text-indent: 3.6rem;
-    }
-    100% {
-      text-indent: 2.8rem;
-    }
-  }
-  /*header*/
-  .ax-space-header {
-    height: 4.4rem;
-  }
-  .ax-header .ax-logo {
-    height: 4.4rem;
-    display: inline-flex;
-    justify-content: center;
-    align-items: center;
-  }
-  .ax-header .ax-logo img {
-    max-width: 11rem;
-    max-height: 4.4rem;
-  }
-  .ax-header .ax-row {
-    padding: 0 0.6rem;
-  }
-  .ax-header .ax-col {
-    text-align: center;
-  }
-  .ax-header .ax-nav {
-    display: none;
-  }
-  .ax-header span[class*="-open"],
-  .ax-header a[class*="-open"] {
-    display: inline-block;
-    color: #475b66;
-    font-size: 1.8rem;
-    text-align: center;
-    width: calc(4.4rem - 1rem);
-    height: calc(4.4rem - 1rem);
-    line-height: calc(4.4rem - 1rem + 0.3rem);
-    margin: 0.5rem auto;
-    position: relative;
-    transition: all 100ms linear;
-  }
-  .ax-header .ax-image {
-    display: inline-block;
-    border-radius: 100%;
-    height: 2.8rem;
-    width: 2.8rem;
-    background-repeat: no-repeat;
-    background-size: cover;
-    margin: calc((4.4rem - 2.8rem)/2) calc((4.4rem - 1rem - 2.8rem)/2);
-    position: relative;
-  }
-  .ax-header *[class*="-open"].open_logo {
-    border-radius: 0;
-    height: 4.4rem;
-    width: auto;
-    position: inherit;
-    top: 0;
-  }
-  .ax-header *[class*="-open"].open_logo img {
-    height: 4.4rem;
-  }
-  .ax-header *[class*="-open"] .ax-badge {
-    position: absolute;
-    top: 0;
-    right: -0.2rem;
-  }
-  .ax-header *[class*="-open"] .ax-dot {
-    position: absolute;
-    top: 0.4rem;
-    right: 0.4rem;
-  }
-  .ax-header .ax-back {
-    width: 4.4rem;
-    height: 4.4rem;
-    line-height: 4.4rem;
-    margin-left: -0.6rem;
-  }
-  .ax-header .ax-back:after {
-    display: none;
-  }
-  .ax-header .ax-back + .ax-col {
-    text-align: left;
-  }
-  .ax-header .ax-resemble {
-    width: calc(100% - 1.6rem);
-    height: 2.8rem;
-    line-height: 2.8rem;
-    margin: calc((4.4rem - 2.8rem)/2) calc((4.4rem - 2.8rem)/2);
-  }
-  .ax-header .ax-resemble input {
-    font-size: 1.2rem;
-    border: none;
-    background-color: #f5f5f5;
-    border-radius: 2.8rem;
-  }
-  .ax-header .ax-resemble *[class*="search"] {
-    height: 2.8rem;
-    line-height: 2.8rem;
-  }
-  .ax-header .ax-resemble *[class*="search"]:after {
-    display: none;
-  }
-  .ax-header .ax-resemble .ax-mask {
-    display: block;
-  }
-  .ax-header .ax-title {
-    height: 4.4rem;
-  }
-  .ax-header .ax-back + .ax-col .ax-title,
-  .ax-header .ax-open + .ax-col .ax-title {
-    padding: 0;
-  }
-  .ax-header .ax-title .ax-row02 {
-    font-size: 1rem;
-  }
-  /*footer*/
-  .ax-footer .ax-operate,
-  .ax-footer .ax-copyright {
-    text-align: center;
-    font-size: 1.2rem;
-    line-height: 1.8rem;
-  }
-  .ax-footer .ax-operate {
-    margin: 1.4rem 0;
-  }
-  .ax-footer .ax-operate a {
-    margin: 0 0.8rem !important;
-  }
-  .ax-footer .ax-operate a.ax-icon {
-    margin: 0 0.8rem !important;
-  }
-  .ax-footer .ax-operate a[class*="font"] {
-    margin: 0 0.8rem !important;
-  }
-  .ax-footer .ax-copyright img {
-    max-height: 1.8rem;
-  }
-  /*btmnav btmbtn*/
-  .ax-btmnav,
-  .ax-space-btmnav,
-  .ax-btmbtn,
-  .ax-space-btmbtn {
-    display: block;
-  }
-  /*grade*/
-  .ax-grade .ax-outer {
-    display: block;
-    width: calc(100% - 1.4rem*2) !important;
-    max-height: calc(100% - 8.8rem - 1.4rem*2);
-    overflow-y: auto;
-    overflow-x: hidden;
-    background-color: #fff;
-    border-radius: 0.3rem !important;
-    transform: translate(-50%, -50%) !important;
-    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-    position: fixed;
-    left: 500% !important;
-    right: auto !important;
-    top: 50% !important;
-    z-index: 5;
-  }
-  .ax-grade ul.ax-outer ul {
-    display: block;
-    border-radius: 0;
-    border: none;
-  }
-  .ax-grade:hover .ax-outer,
-  .ax-grade.ax-right:hover .ax-outer {
-    left: 50% !important;
-  }
-  .ax-grade ul.ax-outer li ul {
-    display: block;
-    border: 0;
-    border-top: 1px solid #ebebeb;
-    transform: none;
-    position: inherit;
-    top: auto;
-    right: auto;
-  }
-  .ax-grade ul.ax-outer li *[class*="-right"] {
-    transform: rotate(90deg);
-  }
-  .ax-grade ul.ax-outer a {
-    padding: 0 1.4rem;
-  }
-  .ax-grade ul.ax-outer > li > ul > li > a {
-    padding-left: calc(1.4rem*3);
-  }
-  .ax-grade ul.ax-outer > li > ul > li > ul > li > a {
-    padding-left: calc(1.4rem*5);
-  }
-  .ax-grade ul.ax-outer > li > ul > li > ul > li > ul > li > a {
-    padding-left: calc(1.4rem*7);
-  }
-  .ax-grade ul.ax-outer > li > ul > li > ul > li > ul > li > ul > li > a {
-    padding-left: calc(1.4rem*9);
-  }
-  /*step*/
-  /*form*/
-  .ax-form-group {
-    padding: 0 1.4rem;
-  }
-  .ax-padding-lr .ax-form-group,
-  .ax-padding .ax-form-group {
-    padding-left: 0;
-    padding-right: 0;
-  }
-  .ax-form-con {
-    flex: auto;
-    width: 0;
-  }
-  .ax-form-input {
-    width: 100%;
-  }
-  .ax-form-label {
-    width: 7rem;
-    text-align: left;
-    justify-content: flex-start;
-    margin-right: 0;
-  }
-  /*fit tel*/
-  .ax-fit-tel .ax-btn.ax-circle,
-  .ax-fit-tel .ax-btn.ax-circle:after {
-    padding: 0;
-  }
-  .ax-fit-tel .ax-form-group {
-    padding: 0.5rem 1.4rem;
-  }
-  .ax-fit-tel .ax-pos-right {
-    right: -1rem;
-  }
-  .ax-fit-tel .ax-form-label {
-    width: 6rem;
-  }
-  .ax-fit-tel input[type="text"],
-  .ax-fit-tel input[type="number"],
-  .ax-fit-tel input[type="password"],
-  .ax-fit-tel input[type="file"],
-  .ax-fit-tel select,
-  .ax-fit-tel textarea {
-    border: 0rem;
-  }
-  .ax-fit-tel input[type="text"]:not([readonly]):not([class*='ax-check']),
-  .ax-fit-tel input[type="text"][readonly].mbsc-comp,
-  .ax-fit-tel input[type="number"]:not([readonly]):not([class*='ax-check']),
-  .ax-fit-tel input[type="password"]:not([readonly]):not([class*='ax-check']),
-  .ax-fit-tel input[type="file"]:not([readonly]):not([class*='ax-check']),
-  .ax-fit-tel textarea:not([readonly]):not([class*='ax-check']) {
-    padding-left: 0;
-    padding-right: 0;
-  }
-  .ax-fit-tel input[type="text"]:focus,
-  .ax-fit-tel input[type="number"]:focus,
-  .ax-fit-tel input[type="password"]:focus,
-  .ax-fit-tel input[type="file"]:focus,
-  .ax-fit-tel select:focus,
-  .ax-fit-tel textarea:focus {
-    border: 0rem;
-    box-shadow: none;
-  }
-  .ax-fit-tel .ax-file-btn {
-    border-radius: 0.3rem;
-  }
-  .ax-fit-tel .ax-bunch-txt:last-child {
-    margin-right: 0;
-  }
-  .ax-fit-tel .ax-form-img:before {
-    display: none;
-  }
-  .ax-fit-tel .ax-form-img a,
-  .ax-fit-tel .ax-form-img span,
-  .ax-fit-tel .ax-form-img i {
-    margin: 0;
-  }
-  .ax-fit-tel .ax-pos-left {
-    padding-left: 0;
-  }
-  .ax-fit-tel .ax-input-group .ax-title {
-    height: 3.8rem;
-    line-height: 3.8rem;
-    background: none;
-    justify-content: flex-start;
-    text-align: left;
-    padding-left: 0;
-  }
-  .ax-fit-tel .ax-input-group .ax-title:before,
-  .ax-fit-tel .ax-input-group .ax-title:after {
-    display: none;
-  }
-  .ax-fit-tel .ax-form-btn,
-  .ax-fit-tel .ax-form-btn:hover {
-    color: #333333;
-    background: transparent;
-    border-radius: 0;
-    padding: 0 1.4rem;
-    margin-right: -1.4rem;
-    margin-left: 1.4rem;
-  }
-  .ax-fit-tel .ax-form-btn [class*="font"],
-  .ax-fit-tel .ax-form-btn:hover [class*="font"] {
-    color: #333333;
-  }
-  .ax-fit-tel .ax-form-btn:before {
-    content: '';
-    width: 1px;
-    height: 1.4rem;
-    margin-top: calc(-1.4rem/2);
-    background-color: #ebebeb;
-    position: absolute;
-    top: 50%;
-    left: 0;
-  }
-  .ax-fit-tel .ax-form-btn:after {
-    display: none;
-  }
-  .ax-fit-tel .ax-form-btn:hover,
-  .ax-fit-tel .ax-form-btn:focus {
-    background: transparent;
-    box-shadow: none;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-primary,
-  .ax-fit-tel .ax-form-btn.ax-btn-primary [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-primary svg {
-    color: #198cff;
-    fill: #198cff;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-secondary,
-  .ax-fit-tel .ax-form-btn.ax-btn-secondary [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-secondary svg {
-    color: #475b66;
-    fill: #475b66;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-danger,
-  .ax-fit-tel .ax-form-btn.ax-btn-danger [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-danger svg {
-    color: #dc3545;
-    fill: #dc3545;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-success,
-  .ax-fit-tel .ax-form-btn.ax-btn-success [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-success svg {
-    color: #41a358;
-    fill: #41a358;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-warning,
-  .ax-fit-tel .ax-form-btn.ax-btn-warning [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-warning svg {
-    color: #ffc107;
-    fill: #ffc107;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-info,
-  .ax-fit-tel .ax-form-btn.ax-btn-info [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-info svg {
-    color: #14ccc9;
-    fill: #14ccc9;
-  }
-  .ax-fit-tel .ax-form-btn.ax-btn-ad,
-  .ax-fit-tel .ax-form-btn.ax-btn-ad [class*="font"],
-  .ax-fit-tel .ax-form-btn.ax-btn-ad svg {
-    color: #ff8400;
-    fill: #ff8400;
-  }
-  .ax-fit-tel .ax-form-input + .ax-strength {
-    margin-top: -0.2rem;
-    margin-bottom: 0;
-    padding: 0;
-  }
-  .ax-fit-tel .ax-radio,
-  .ax-fit-tel .ax-checkbox {
-    font-size: 1.6rem;
-  }
-  .ax-fit-tel .ax-select:not(.ax-open) .ax-select-inner {
-    border-color: transparent;
-  }
-  .ax-fit-tel .ax-amount {
-    border: none;
-  }
-  .ax-fit-tel .ax-amount [decrease],
-  .ax-fit-tel .ax-amount [increase] {
-    width: 3.8rem;
-    line-height: calc(3.8rem, - 0.2rem);
-    border-radius: 3.8rem;
-    border: 1px solid #e0e0e0;
-  }
-  .ax-fit-tel .ax-amount input:not([readonly]):not([disabled]):focus {
-    box-shadow: none;
-  }
-  .ax-fit-tel .ax-input-group .ax-operate,
-  .ax-fit-tel .ax-input-group .ax-operate:after {
-    border-radius: 0.3rem;
-  }
-  .ax-fit-tel .ax-file:before {
-    border: none;
-    padding-left: 0;
-    padding-right: 0;
-  }
-  .ax-fit-tel .ax-file.ax-focus:before {
-    box-shadow: none;
-  }
-  .ax-fit-tel .ax-file:after {
-    display: none;
-  }
-  /*tab*/
-  .ax-tab,
-  .ax-tab .ax-tab-nav {
-    text-align: center;
-  }
-  .ax-tab-content {
-    text-align: left;
-  }
-  /*plugins*/
-  /*popup*/
-  .ax-popup {
-    max-width: calc(100vw - 1.4rem*2) !important;
-  }
-  .ax-popup-content {
-    max-width: 100% !important;
-  }
-  .ax-popup .ax-popup-body {
-    max-height: calc(100vh - 1.4rem*2);
-  }
-  /*pagination*/
-  .ax-pagination {
-    text-align: center !important;
-  }
-  .ax-pagination * {
-    display: none;
-  }
-  .ax-pagination a.ax-next,
-  .ax-pagination a.ax-prev {
-    display: inline-block;
-    padding: 1.1rem 1.4rem;
-  }
-  .ax-pagination a * {
-    display: inline-block;
-  }
-  /*audio*/
-  .ax-aplayer.aplayer-bottom .aplayer-body {
-    padding: 0 0.8rem;
-    width: 100%;
-  }
-  .ax-aplayer.aplayer-bottom .aplayer-list {
-    width: 100%;
-    border-left: 0;
-    border-right: 0;
-    bottom: 4.9rem;
-    right: 0;
-  }
-  /*message*/
-  .ax-message {
-    width: 100% !important;
-  }
-  .ax-message[data-position*="center-"],
-  .ax-message[data-position*="right-"] {
-    left: 0;
-    right: auto;
-    transform: translateX(0);
-  }
-  .ax-message[data-position="center-center"] {
-    transform: translate(0, -50%);
-  }
-  /*scrollnav*/
-  .ax-scrollnav-v {
-    background-color: rgba(255, 255, 255, 0.9);
-    border: 1px solid #ebebeb;
-    border-radius: 0.3rem;
-    top: auto;
-    bottom: 1.4rem;
-  }
-  .ax-scrollnav-v .ax-close {
-    top: calc(-3.8rem - 1.4rem);
-    bottom: auto;
-  }
-}
-/* more than Telephone+pad*/
-/*pc+Laptop+iPad rotate+iPadpro*/
-@media screen and (min-width: 900px) {
-  /*global*/
-}
-/*Telephone+iPad rotate+iPad*/
-/*Telephone*/
-@media screen and (max-width: 500px) {
-  /*global*/
-  /*break gutter*/
-  .ax-break-lg,
-  .ax-break-xl,
-  .ax-break-xxl {
-    height: 1.4rem;
-  }
-  .ax-gutter-lg,
-  .ax-gutter-xl,
-  .ax-gutter-xxl {
-    width: 1.4rem;
-  }
-  /*layout grid space*/
-  .ax-grid.ax-space-lg,
-  .ax-grid.ax-space-xl,
-  .ax-grid.ax-space-xxl {
-    margin: calc(-1.4rem/2) auto;
-  }
-  .ax-grid.ax-space-lg .ax-grid-inner,
-  .ax-grid.ax-space-xl .ax-grid-inner,
-  .ax-grid.ax-space-xxl .ax-grid-inner {
-    margin: auto calc(-1.4rem/2);
-  }
-  .ax-grid.ax-space-lg .ax-grid-block,
-  .ax-grid.ax-space-xl .ax-grid-block,
-  .ax-grid.ax-space-xxl .ax-grid-block {
-    padding: calc(1.4rem/2) calc(1.4rem/2);
-  }
-  /*layout grid split*/
-  .ax-row[class*="ax-split"],
-  .ax-flex-row[class*="ax-split"],
-  .ax-flex-col[class*="ax-split"] {
-    display: block;
-  }
-  .ax-row[class*="ax-split"]:after,
-  .ax-flex-row[class*="ax-split"]:after {
-    content: ".";
-    display: block;
-    height: 0;
-    clear: both;
-    visibility: hidden;
-  }
-  .ax-row.ax-split > .ax-col,
-  .ax-flex-row.ax-split > *[class*="ax-flex-block"],
-  .ax-row.ax-split-1 > .ax-col,
-  .ax-flex-row.ax-split-1 > *[class*="ax-flex-block"] {
-    width: 100%;
-  }
-  .ax-row[class*="ax-split"] *[class*="ax-gutter"] {
-    display: none;
-  }
-  .ax-row.ax-split-2 > .ax-col,
-  .ax-flex-row.ax-split-2 > *[class*="ax-flex-block"] {
-    width: 50%;
-    float: left;
-  }
-  .ax-row.ax-split-3 > .ax-col,
-  .ax-flex-row.ax-split-3 > *[class*="ax-flex-block"] {
-    width: 33.33%;
-    float: left;
-  }
-  .ax-row.ax-split-4 > .ax-col,
-  .ax-flex-row.ax-split-4 > *[class*="ax-flex-block"] {
-    width: 25%;
-    float: left;
-  }
-  .ax-row.ax-split-5 > .ax-col,
-  .ax-flex-row.ax-split-5 > *[class*="ax-flex-block"] {
-    width: 20%;
-    float: left;
-  }
-  .ax-row.ax-split-6 > .ax-col,
-  .ax-flex-row.ax-split-6 > *[class*="ax-flex-block"] {
-    width: 16.66%;
-    float: left;
-  }
-  .ax-grid.ax-split .ax-grid-block,
-  .ax-grid.ax-split-1 .ax-grid-block,
-  .ax-grid-table.ax-split .ax-grid-block,
-  .ax-grid-table.ax-split-1 .ax-grid-block {
-    width: 100%;
-  }
-  .ax-grid.ax-split-2 .ax-grid-block,
-  .ax-grid-table.ax-split-2 .ax-grid-block {
-    width: 50%;
-  }
-  .ax-grid.ax-split-3 .ax-grid-block,
-  .ax-grid-table.ax-split-3 .ax-grid-block {
-    width: 33.33%;
-  }
-  .ax-grid.ax-split-4 .ax-grid-block,
-  .ax-grid-table.ax-split-4 .ax-grid-block {
-    width: 25%;
-  }
-  .ax-grid.ax-split-5 .ax-grid-block,
-  .ax-grid-table.ax-split-5 .ax-grid-block {
-    width: 20%;
-  }
-  .ax-grid.ax-split-6 .ax-grid-block,
-  .ax-grid-table.ax-split-6 .ax-grid-block {
-    width: 16.66%;
-  }
-  /*table*/
-  .ax-table {
-    font-size: 1.2rem;
-  }
-  .ax-table th {
-    font-size: 1.2rem;
-  }
-  /*statistics*/
-  .ax-statistics .ax-item {
-    width: 100% !important;
-    box-sizing: border-box;
-  }
-  .ax-statistics .ax-item .ax-title {
-    font-size: 1.2rem;
-    line-height: 1.8rem;
-  }
-  .ax-statistics .ax-item .ax-text {
-    font-size: 2.2rem;
-    line-height: 2.8rem;
-  }
-  .ax-statistics .ax-item .ax-image {
-    width: 3.8rem;
-    height: 3.8rem;
-  }
-  .ax-statistics .ax-item .ax-font01 {
-    font-size: 3.8rem;
-    line-height: 3.8rem;
-  }
-  .ax-statistics.ax-grid .ax-item .ax-image {
-    margin-left: 1.4rem;
-    margin-right: 0;
-  }
-  .ax-statistics .ax-item .ax-font03 {
-    font-size: 1.2rem;
-    line-height: calc(3.8rem/2);
-  }
-  .ax-statistics.ax-grid .ax-item .ax-font03 {
-    margin: 0;
-  }
-  .ax-statistics.ax-grid .ax-item *:first-child.ax-font01 {
-    margin-left: 1.4rem;
-  }
-  .ax-statistics .ax-item .ax-icon {
-    width: 3.8rem;
-    height: 3.8rem;
-    line-height: 3.8rem;
-  }
-  .ax-statistics.ax-grid .ax-item .ax-icon {
-    font-size: 1.8rem;
-    margin-left: 1.4rem;
-    margin-right: 0;
-  }
-  .ax-statistics .ax-item .ax-font02 .ax-row01 {
-    font-size: calc(3.8rem - 1.8rem);
-    line-height: calc(3.8rem - 1.8rem);
-  }
-  .ax-statistics .ax-item .ax-image .ax-badge,
-  .ax-statistics .ax-item .ax-icon .ax-badge,
-  .ax-statistics .ax-item .ax-font01 .ax-badge {
-    right: -0.6rem;
-  }
-  .ax-statistics .ax-item .ax-text .ax-arrow {
-    font-size: 0.8rem;
-    line-height: 1.2rem;
-    right: -3rem;
-  }
-  /*article*/
-  .ax-article ul,
-  .ax-article ol {
-    padding-left: calc(1.4rem*2);
-  }
-  /*comment*/
-  .ax-comment .ax-item .ax-avatar {
-    width: 2.8rem;
-    height: 2.8rem;
-    margin-right: 0.8rem;
-  }
-  /*flag*/
-  .ax-flag {
-    font-size: 0.8rem;
-    width: 3rem;
-    height: 3rem;
-  }
-  .ax-flag i {
-    height: 5rem;
-    width: 5rem;
-    line-height: 8.6rem;
-  }
-  .ax-flag.ax-left i {
-    top: -2.8rem;
-    left: -2.8rem;
-  }
-  .ax-flag.ax-right i {
-    top: -2.8rem;
-    right: -2.8rem;
-  }
-  /*badge*/
-  .ax-badge {
-    font-size: 0.8rem;
-    line-height: 1.4rem;
-    height: 1.4rem;
-  }
-  .ax-dot {
-    width: 0.6rem;
-    height: 0.6rem;
-  }
-  /*info block*/
-  .ax-info-block .ax-img {
-    height: 8.4rem;
-    width: calc(8.4rem + 2.8rem);
-  }
-  .ax-info-block .ax-num {
-    font-size: 1rem;
-    min-width: 1.4rem;
-    height: 1.4rem;
-    line-height: 1.4rem;
-    margin-top: calc((2.2rem - 1.4rem)/2);
-  }
-  .ax-info-block .ax-arrow {
-    font-size: 1rem;
-  }
-  /*item block*/
-  .ax-item-block .ax-gallery > span,
-  .ax-item-block .ax-gallery > a {
-    margin-right: 0.2rem;
-    width: calc((100% - 0.4rem)/3);
-    height: 7.6rem;
-    line-height: 7.6rem;
-  }
-  .ax-item-block .ax-gallery > span,
-  .ax-item-block .ax-gallery > a {
-    border-radius: 0;
-  }
-  .ax-item-block .ax-gallery > span:nth-last-of-type(1),
-  .ax-item-block .ax-gallery > a:nth-last-of-type(1) {
-    border-top-right-radius: 0.3rem;
-    border-bottom-right-radius: 0.3rem;
-  }
-  .ax-item-block .ax-gallery > span:first-child,
-  .ax-item-block .ax-gallery > a:first-child {
-    border-top-left-radius: 0.3rem;
-    border-bottom-left-radius: 0.3rem;
-  }
-  .ax-item-block .ax-gallery > span:nth-child(3),
-  .ax-item-block .ax-gallery > a:nth-child(3) {
-    border-top-right-radius: 0.3rem;
-    border-bottom-right-radius: 0.3rem;
-    margin-right: 0;
-  }
-  .ax-item-block .ax-gallery > span:nth-child(3) ~ span,
-  .ax-item-block .ax-gallery > a:nth-child(3) ~ a {
-    display: none;
-  }
-  .ax-item-block .ax-gallery > a:nth-child(3) ~ a.ax-more {
-    display: inline-block;
-    border-top-right-radius: 0.3rem;
-    border-bottom-right-radius: 0.3rem;
-    margin-right: 0;
-    position: absolute;
-    right: 0;
-    top: 0;
-  }
-  .ax-item-block .ax-gallery > .ax-num {
-    left: 0.4rem;
-    bottom: 0.4rem;
-  }
-  .ax-item-block .ax-img {
-    height: calc(2.2rem*3);
-    width: calc(2.2rem*3 + 2.8rem);
-  }
-  .ax-item-block .ax-from,
-  .ax-item-block .ax-keywords,
-  .ax-item-block .ax-from *[class*='-color-'],
-  .ax-item-block .ax-keywords *[class*='-color-'],
-  .ax-item-block .ax-from *[class*='font'],
-  .ax-item-block .ax-keywords *[class*='font'] {
-    color: #b3b3b3;
-    font-size: 1.2rem;
-  }
-  .ax-item-block .ax-split .ax-img {
-    width: 100%;
-    height: 16rem;
-    margin-left: 0;
-    margin-right: 0;
-  }
-  .ax-item-block .ax-split .ax-img:first-child {
-    margin-bottom: 0.8rem;
-  }
-  .ax-item-block .ax-split .ax-img:last-child {
-    margin-top: 0.8rem;
-  }
-  .ax-item-block.ax-ad:after {
-    font-size: 1rem;
-  }
-  /*card*/
-  .ax-card-block {
-    padding: 0 0 0.8rem 0;
-    border-width: 0;
-    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.12);
-  }
-  .ax-card-block:hover {
-    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.12);
-  }
-  .ax-card-block .ax-img {
-    height: 12rem;
-    margin-bottom: 0.8rem;
-    border-radius: 0.3rem 0.3rem 0 0;
-  }
-  .ax-card-block .ax-title {
-    padding: 0 0.8rem;
-  }
-  .ax-card-block .ax-title:first-child,
-  .ax-card-block .ax-gallery + .ax-title {
-    padding-top: 0.8rem;
-  }
-  .ax-card-block > .ax-gallery span,
-  .ax-card-block > .ax-gallery a {
-    height: 7.6rem;
-    line-height: 7.6rem;
-  }
-  .ax-card-block .ax-operate {
-    margin-top: 0.8rem;
-    margin-bottom: -0.8rem;
-    padding: 0 0.8rem;
-  }
-  .ax-card-block .ax-gallery > .ax-num {
-    left: 0.4rem;
-    bottom: 0.4rem;
-  }
-  .ax-card-block .ax-des {
-    margin-top: 0.8rem;
-    padding: 0 0.8rem;
-  }
-  .ax-card-block .ax-from {
-    font-size: 1.2rem;
-    margin-top: 0.8rem;
-    padding: 0 0.8rem;
-  }
-  .ax-card-block .ax-from svg {
-    height: 1.2rem;
-  }
-  .ax-card-block .ax-from .ax-iconfont {
-    font-size: 1.2rem;
-  }
-  .ax-card-block .ax-from > span,
-  .ax-card-block .ax-from > a,
-  .ax-card-block .ax-keywords > span,
-  .ax-card-block .ax-keywords > a {
-    margin-right: 0.8rem;
-  }
-  .ax-card-block .ax-keywords {
-    font-size: 1.2rem;
-    margin-top: 0.8rem;
-    padding: 0 0.8rem;
-  }
-  .ax-card-block .ax-gallery {
-    margin: 0.8rem;
-  }
-  .ax-card-block .ax-img + .ax-gallery {
-    margin-top: -0.6rem;
-    margin-bottom: 0;
-    margin-left: 0;
-    margin-right: 0;
-  }
-  .ax-card-block .ax-view {
-    font-size: 1rem;
-    margin: 0.8rem 0.8rem 0 0.8rem;
-    line-height: 2.8rem;
-  }
-  .ax-card-block .ax-view .ax-heads span {
-    width: 1.8rem;
-    height: 1.8rem;
-  }
-  .ax-card-block .ax-view .ax-heads span:not(:first-child) {
-    margin-left: -0.9rem;
-  }
-  /*filter*/
-  .ax-filter {
-    font-size: 1.2rem;
-  }
-  .ax-filter .ax-item {
-    padding: 0 0.8rem;
-  }
-  .ax-filter .ax-search {
-    width: 100%;
-  }
-  .ax-filter .ax-item:not(.ax-search-box) .ax-text a {
-    padding: 0 0.8rem;
-  }
-  .ax-filter .ax-item .ax-head {
-    padding-right: 0;
-    margin-right: 0.4rem;
-  }
-  .ax-filter .ax-item .ax-head::before {
-    display: none;
-  }
-  .ax-filter .ax-item:not(.ax-search-box) .ax-text {
-    white-space: nowrap;
-    overflow-x: auto;
-  }
-  /*dialog*/
-  .ax-dialog .ax-dialog-wrapper,
-  .ax-dialog[data-size="md"] .ax-dialog-wrapper,
-  .ax-dialog[data-size="lg"] .ax-dialog-wrapper {
-    width: calc(100vw - 1.4rem*2);
-  }
-  .ax-dialog-body {
-    max-height: 500px;
-  }
-  /*drawer*/
-  .ax-drawer[data-placement="left"] .ax-drawer-wrapper {
-    left: -70%;
-    right: auto;
-    width: 70%;
-  }
-  .ax-drawer[data-placement="right"] .ax-drawer-wrapper {
-    right: -70%;
-    width: 70%;
-  }
-  .ax-drawer[data-placement="right"][data-size="sm"] .ax-drawer-wrapper,
-  .ax-drawer[data-placement="right"][data-size="md"] .ax-drawer-wrapper {
-    right: -70%;
-  }
-  .ax-drawer[data-placement="left"][data-size="sm"] .ax-drawer-wrapper,
-  .ax-drawer[data-placement="left"][data-size="md"] .ax-drawer-wrapper {
-    left: -70%;
-  }
-  .ax-drawer[data-placement="top"][data-size="sm"] .ax-drawer-wrapper {
-    top: -40%;
-  }
-  .ax-drawer[data-placement="top"][data-size="md"] .ax-drawer-wrapper {
-    top: -60%;
-  }
-  .ax-drawer[data-placement="top"][data-size="lg"] .ax-drawer-wrapper {
-    top: -80%;
-  }
-  .ax-drawer[data-placement="bottom"][data-size="sm"] .ax-drawer-wrapper {
-    bottom: -40%;
-  }
-  .ax-drawer[data-placement="bottom"][data-size="md"] .ax-drawer-wrapper {
-    bottom: -60%;
-  }
-  .ax-drawer[data-placement="bottom"][data-size="lg"] .ax-drawer-wrapper {
-    bottom: -80%;
-  }
-  .ax-drawer[data-placement="top"][data-size="sm"] .ax-drawer-wrapper .ax-drawer-body,
-  .ax-drawer[data-placement="bottom"][data-size="sm"] .ax-drawer-wrapper .ax-drawer-body {
-    max-height: 40%;
-  }
-  .ax-drawer[data-placement="top"][data-size="md"] .ax-drawer-wrapper .ax-drawer-body,
-  .ax-drawer[data-placement="bottom"][data-size="md"] .ax-drawer-wrapper .ax-drawer-body {
-    max-height: 60%;
-  }
-  .ax-drawer[data-placement="top"][data-size="lg"] .ax-drawer-wrapper .ax-drawer-body,
-  .ax-drawer[data-placement="bottom"][data-size="lg"] .ax-drawer-wrapper .ax-drawer-body {
-    max-height: 80%;
-  }
-  .ax-drawer video,
-  .ax-drawer audio {
-    width: 100% !important;
-  }
-  .ax-drawer.ax-drawer-show[data-placement="left"][data-size="sm"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="left"][data-size="md"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="left"][data-size="lg"] .ax-drawer-wrapper {
-    left: 0;
-  }
-  .ax-drawer.ax-drawer-show[data-placement="right"][data-size="sm"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="right"][data-size="md"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="right"][data-size="lg"] .ax-drawer-wrapper {
-    right: 0;
-  }
-  .ax-drawer.ax-drawer-show[data-placement="top"][data-size="sm"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="top"][data-size="md"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="top"][data-size="lg"] .ax-drawer-wrapper {
-    top: 0;
-  }
-  .ax-drawer.ax-drawer-show[data-placement="bottom"][data-size="sm"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="bottom"][data-size="md"] .ax-drawer-wrapper,
-  .ax-drawer.ax-drawer-show[data-placement="bottom"][data-size="lg"] .ax-drawer-wrapper {
-    bottom: 0;
-  }
-  /*plugins*/
-  /*menu*/
-  .ax-menu {
-    width: 100%;
-  }
-  /*progress*/
-  .ax-progress .ax-progress-body {
-    height: 0.3rem;
-    border-radius: 0.3rem;
-    margin-top: calc((2.8rem - 0.3rem)/2);
-  }
-  .ax-progress.ax-lg .ax-progress-body {
-    font-size: 1rem;
-    height: 1.4rem;
-    line-height: 1.4rem;
-    border-radius: 1.4rem;
-  }
-  .ax-progress.ax-lg .ax-progress-bar {
-    border-radius: 1.4rem;
-  }
-  .ax-progress.ax-lg .ax-progress-bar i {
-    padding: 0 0.8rem;
-  }
-  .ax-progress-circle {
-    width: 8rem;
-  }
-  .ax-progress-circle.ax-half {
-    width: 10rem;
-  }
-  .ax-progress-circle .ax-progress-text svg {
-    width: 1.8rem;
-    height: 1.8rem;
-  }
-  .ax-progress-line > svg {
-    height: 0.3rem;
-    border-radius: 0.3rem;
-    margin-top: calc((2.8rem - 0.3rem)/2);
-  }
-  .ax-progress-circle .ax-progress-text .ax-row01,
-  .ax-progress-line .ax-progress-text .ax-row01 {
-    font-size: 1rem;
-    line-height: 1.4rem;
-  }
-  .ax-progress-circle .ax-progress-text .ax-row02,
-  .ax-progress-line .ax-progress-text .ax-row02 {
-    line-height: 1.8rem;
-  }
-  /*video with swiper*/
-  .ax-videojs[class*='ax-playlist-'] .swiper-container {
-    margin: 0.8rem;
-  }
-  .ax-videojs.ax-playlist-bottom .swiper-container {
-    height: 10rem;
-  }
-  .ax-videojs[class*='ax-playlist-'] .swiper-slide figcaption {
-    font-size: 1.2rem;
-  }
-  .ax-videojs[class*='ax-playlist-'] .swiper-slide-active i {
-    font-size: 1.2rem;
-  }
-  .ax-videojs[class*='ax-playlist-'] .swiper-slide em {
-    font-size: 1rem;
-  }
-  .ax-videojs.ax-playlist-side .video-js {
-    height: 20rem;
-  }
-  .ax-videojs.ax-playlist-side .swiper-container {
-    width: 12rem;
-    height: 18rem;
-  }
-  .ax-videojs.ax-playlist-bottom .video-js {
-    height: 22rem;
-  }
-  .ax-videojs.ax-playlist-pages .video-js {
-    height: 22rem;
-  }
-  /*audio*/
-  .ax-aplayer.aplayer-fixed {
-    max-width: 32rem;
-  }
-  .ax-aplayer.aplayer-fixed .aplayer-body {
-    max-width: 32rem;
-  }
-  .ax-aplayer.aplayer-bottom .aplayer-info .aplayer-music .aplayer-title {
-    font-size: 1.2rem;
-  }
-  .ax-aplayer.aplayer-bottom .aplayer-info .aplayer-music .aplayer-author {
-    font-size: 1rem;
-  }
-  .ax-aplayer.aplayer-bottom .aplayer-time-inner {
-    display: none;
-  }
-  /*upload*/
-  .ax-dropzone .ax-image {
-    height: 8rem;
-  }
-  .ax-dropzone .ax-grid-block {
-    width: calc((100%/24)*8) !important;
-  }
-  /*datatime*/
-  .ax-date .ax-date-wrapper,
-  .ax-date .ax-date-ymd,
-  .ax-date .ax-date-time {
-    display: block;
-  }
-  .ax-date .ax-date-body {
-    min-width: calc(100vw - 1.4rem*2 - 2px);
-  }
-  .ax-date .ax-date-body table tbody .ax-with-lunar {
-    width: calc((100vw - 1.4rem*2 - 2px - 0.8rem*2)/7);
-  }
-  .ax-date .ax-date-body table.ax-ytable tbody span,
-  .ax-date .ax-date-body table.ax-mtable tbody span {
-    width: calc((100vw - 1.4rem*2 - 2px - 0.8rem*2)/3) !important;
-    margin: 0;
-  }
-  .ax-date .ax-date-body table.ax-ytable tbody .ax-start span,
-  .ax-date .ax-date-body table.ax-ytable tbody .ax-end span,
-  .ax-date .ax-date-body table.ax-ytable tbody .ax-contain span,
-  .ax-date .ax-date-body table.ax-mtable tbody .ax-start span,
-  .ax-date .ax-date-body table.ax-ymtable tbody .ax-end span,
-  .ax-date .ax-date-body table.ax-mtable tbody .ax-contain span {
-    width: calc((100vw - 1.4rem*2 - 2px - 0.8rem*2)/3) !important;
-  }
-  .ax-date .ax-date-time .ax-time-item {
-    line-height: 2.8rem;
-  }
-  .ax-date .ax-date-menu {
-    width: 100%;
-    text-align: center;
-  }
-  .ax-date .ax-date-menu a {
-    display: inline-block;
-    margin: 0 0.8rem;
-  }
-  /*select*/
-  .ax-select .ax-select-dropdown {
-    border-top-left-radius: 0.3rem;
-    border-top-right-radius: 0.3rem;
-    width: calc(100vw - 1.4rem*2);
-    transform: translate(-50%, -50%);
-    position: fixed;
-    left: 50%;
-    top: 50%;
-  }
-  .ax-select .ax-select-dropdown .ax-item-list {
-    max-height: calc((3.8rem + 1px)*8 - 1px);
-  }
-}
-/*iPad*/
-/*iPad flip & iPadpro*/
-@media screen and (min-width: 900px) and (max-width: 1200px) {
-  .ax-hide-pad {
-    display: none !important;
-  }
-}
-/*Laptop & Desktop & iPadpro flip*/
-@media screen and (min-width: 1200px) and (max-width: 3000px) {
-  .ax-hide-pc {
-    display: none !important;
-  }
-}
-/*Laptop & iPadpro flip*/
-@media screen and (min-width: 1200px) and (max-width: 1500px) {
-  .ax-hide-pc {
-    display: none !important;
-  }
-}
-/*Telephone & Laptop & iPad*/
-/*Desktop*/
-@media screen and (min-width: 1500px) {
-  .ax-hide-pc {
-    display: none !important;
-  }
-}
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/css/ax.css b/fzzy-igdss-web/src/main/resources/static/axui/css/ax.css
deleted file mode 100644
index 5d30c82..0000000
--- a/fzzy-igdss-web/src/main/resources/static/axui/css/ax.css
+++ /dev/null
@@ -1,19621 +0,0 @@
-@charset "utf-8";
-/*
- *Last modified: 2022-06-27 22:43:17
- *Filename: ax.css
- *Description: Global CSS
- *Version: v2.0.0Beta
- *Website:www.axui.cn or ax.hobly.cn
- *Contact:3217728223@qq.com
- *Author:Michael
- */
-/*鍥炬爣瀛椾綋*/
-@font-face {
-  font-family: 'ax-iconfont';
-  src: url('data:font/woff2;charset=utf-8;base64,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') format('woff2');
-  font-weight: normal;
-  font-style: normal;
-}
-.ax-iconfont {
-  font-family: 'ax-iconfont';
-  font-size: 1.4rem;
-  position: relative;
-}
-.ax-iconfont:before {
-  position: relative;
-}
-.ax-icon-pinterest:before {
-  content: "pinterest";
-}
-.ax-icon-qzone:before {
-  content: "qzone";
-}
-.ax-icon-google:before {
-  content: "google";
-}
-.ax-icon-tumblr:before {
-  content: "tumblr";
-}
-.ax-icon-qzone-f:before {
-  content: "qzone-f";
-}
-.ax-icon-tumblr-f:before {
-  content: "tumblr-f";
-}
-.ax-icon-pinterest-f:before {
-  content: "pinterest-f";
-}
-.ax-icon-zhihu:before {
-  content: "zhihu";
-}
-.ax-icon-jd:before {
-  content: "jd";
-}
-.ax-icon-baidu:before {
-  content: "baidu";
-}
-.ax-icon-amazon:before {
-  content: "amazon";
-}
-.ax-icon-douban:before {
-  content: "douban";
-}
-.ax-icon-tmall:before {
-  content: "tmall";
-}
-.ax-icon-163music:before {
-  content: "163music";
-}
-.ax-icon-css3:before {
-  content: "css3";
-}
-.ax-icon-iqiyi:before {
-  content: "iqiyi";
-}
-.ax-icon-qqmusic:before {
-  content: "qqmusic";
-}
-.ax-icon-stackoverflow:before {
-  content: "stackoverflow";
-}
-.ax-icon-gitee:before {
-  content: "gitee";
-}
-.ax-icon-csdn:before {
-  content: "csdn";
-}
-.ax-icon-github:before {
-  content: "github";
-}
-.ax-icon-oschina:before {
-  content: "oschina";
-}
-.ax-icon-nodejs:before {
-  content: "nodejs";
-}
-.ax-icon-bilibili:before {
-  content: "bilibili";
-}
-.ax-icon-xiaomi:before {
-  content: "xiaomi";
-}
-.ax-icon-android:before {
-  content: "android";
-}
-.ax-icon-html5:before {
-  content: "html5";
-}
-.ax-icon-ios:before {
-  content: "ios";
-}
-.ax-icon-codepen:before {
-  content: "codepen";
-}
-.ax-icon-aliyun:before {
-  content: "aliyun";
-}
-.ax-icon-taobao:before {
-  content: "taobao";
-}
-.ax-icon-microsoft:before {
-  content: "microsoft";
-}
-.ax-icon-youku:before {
-  content: "youku";
-}
-.ax-icon-ebay:before {
-  content: "ebay";
-}
-.ax-icon-google-f:before {
-  content: "google-f";
-}
-.ax-icon-huawei:before {
-  content: "huawei";
-}
-.ax-icon-tiktok:before {
-  content: "tiktok";
-}
-.ax-icon-xunlei:before {
-  content: "xunlei";
-}
-.ax-icon-folder-open-f:before {
-  content: "folder-open-f";
-}
-.ax-icon-folder-open:before {
-  content: "folder-open";
-}
-.ax-icon-scan:before {
-  content: "scan";
-}
-.ax-icon-barcode:before {
-  content: "barcode";
-}
-.ax-icon-qrcode:before {
-  content: "qrcode";
-}
-.ax-icon-star-half:before {
-  content: "star-half";
-}
-.ax-icon-warning-o-t:before {
-  content: "warning-o-t";
-}
-.ax-icon-bulb-t:before {
-  content: "bulb-t";
-}
-.ax-icon-check-t:before {
-  content: "check-t";
-}
-.ax-icon-arrow-left-t:before {
-  content: "arrow-left-t";
-}
-.ax-icon-arrow-right-t:before {
-  content: "arrow-right-t";
-}
-.ax-icon-close-t:before {
-  content: "close-t";
-}
-.ax-icon-minus-t:before {
-  content: "minus-t";
-}
-.ax-icon-plus-t:before {
-  content: "plus-t";
-}
-.ax-icon-arrow-up-t:before {
-  content: "arrow-up-t";
-}
-.ax-icon-arrow-down-t:before {
-  content: "arrow-down-t";
-}
-.ax-icon-right-t:before {
-  content: "right-t";
-}
-.ax-icon-close-o-t:before {
-  content: "close-o-t";
-}
-.ax-icon-check-o-t:before {
-  content: "check-o-t";
-}
-.ax-icon-info-o-t:before {
-  content: "info-o-t";
-}
-.ax-icon-question-o-t:before {
-  content: "question-o-t";
-}
-.ax-icon-clock-t:before {
-  content: "clock-t";
-}
-.ax-icon-up-t:before {
-  content: "up-t";
-}
-.ax-icon-down-t:before {
-  content: "down-t";
-}
-.ax-icon-left-t:before {
-  content: "left-t";
-}
-.ax-icon-pause:before {
-  content: "pause";
-}
-.ax-icon-play:before {
-  content: "play";
-}
-.ax-icon-addpic:before {
-  content: "addpic";
-}
-.ax-icon-cloud-upload-f:before {
-  content: "cloud-upload-f";
-}
-.ax-icon-cloud-download-f:before {
-  content: "cloud-download-f";
-}
-.ax-icon-swap:before {
-  content: "swap";
-}
-.ax-icon-sort-az-up:before {
-  content: "sort-az-up";
-}
-.ax-icon-arrowflag:before {
-  content: "arrowflag";
-}
-.ax-icon-fingerprint:before {
-  content: "fingerprint";
-}
-.ax-icon-select:before {
-  content: "select";
-}
-.ax-icon-list-ol:before {
-  content: "list-ol";
-}
-.ax-icon-sort:before {
-  content: "sort";
-}
-.ax-icon-sort-az-down:before {
-  content: "sort-az-down";
-}
-.ax-icon-sort-amount-down:before {
-  content: "sort-amount-down";
-}
-.ax-icon-sort-amount-up:before {
-  content: "sort-amount-up";
-}
-.ax-icon-sort-num-down:before {
-  content: "sort-num-down";
-}
-.ax-icon-sort-num-up:before {
-  content: "sort-num-up";
-}
-.ax-icon-street:before {
-  content: "street";
-}
-.ax-icon-repair:before {
-  content: "repair";
-}
-.ax-icon-quote-right-f:before {
-  content: "quote-right-f";
-}
-.ax-icon-quote-left-f:before {
-  content: "quote-left-f";
-}
-.ax-icon-quote-right:before {
-  content: "quote-right";
-}
-.ax-icon-quote-left:before {
-  content: "quote-left";
-}
-.ax-icon-gift:before {
-  content: "gift";
-}
-.ax-icon-gift-f:before {
-  content: "gift-f";
-}
-.ax-icon-power:before {
-  content: "power";
-}
-.ax-icon-at:before {
-  content: "at";
-}
-.ax-icon-hash:before {
-  content: "hash";
-}
-.ax-icon-award:before {
-  content: "award";
-}
-.ax-icon-award-f:before {
-  content: "award-f";
-}
-.ax-icon-loader:before {
-  content: "loader";
-}
-.ax-icon-sync:before {
-  content: "sync";
-}
-.ax-icon-refresh:before {
-  content: "refresh";
-}
-.ax-icon-umbrella:before {
-  content: "umbrella";
-}
-.ax-icon-umbrella-f:before {
-  content: "umbrella-f";
-}
-.ax-icon-slash-h-f:before {
-  content: "slash-h-f";
-}
-.ax-icon-slash-f:before {
-  content: "slash-f";
-}
-.ax-icon-slash-h:before {
-  content: "slash-h";
-}
-.ax-icon-slash:before {
-  content: "slash";
-}
-.ax-icon-badge-new:before {
-  content: "badge-new";
-}
-.ax-icon-badge-vip:before {
-  content: "badge-vip";
-}
-.ax-icon-badge-hot:before {
-  content: "badge-hot";
-}
-.ax-icon-redo:before {
-  content: "redo";
-}
-.ax-icon-redo-f:before {
-  content: "redo-f";
-}
-.ax-icon-female:before {
-  content: "female";
-}
-.ax-icon-male:before {
-  content: "male";
-}
-.ax-icon-calendar-f:before {
-  content: "calendar-f";
-}
-.ax-icon-calendar:before {
-  content: "calendar";
-}
-.ax-icon-apply:before {
-  content: "apply";
-}
-.ax-icon-apply-f:before {
-  content: "apply-f";
-}
-.ax-icon-bigger:before {
-  content: "bigger";
-}
-.ax-icon-smaller:before {
-  content: "smaller";
-}
-.ax-icon-widgets-f:before {
-  content: "widgets-f";
-}
-.ax-icon-widgets:before {
-  content: "widgets";
-}
-.ax-icon-align-center:before {
-  content: "align-center";
-}
-.ax-icon-align-right:before {
-  content: "align-right";
-}
-.ax-icon-align-justify:before {
-  content: "align-justify";
-}
-.ax-icon-align-left:before {
-  content: "align-left";
-}
-.ax-icon-grid:before {
-  content: "grid";
-}
-.ax-icon-grid-f:before {
-  content: "grid-f";
-}
-.ax-icon-divide:before {
-  content: "divide";
-}
-.ax-icon-percent:before {
-  content: "percent";
-}
-.ax-icon-pull-up:before {
-  content: "pull-up";
-}
-.ax-icon-pull-down:before {
-  content: "pull-down";
-}
-.ax-icon-org:before {
-  content: "org";
-}
-.ax-icon-org-f:before {
-  content: "org-f";
-}
-.ax-icon-dot-left:before {
-  content: "dot-left";
-}
-.ax-icon-dot-right:before {
-  content: "dot-right";
-}
-.ax-icon-me-f:before {
-  content: "me-f";
-}
-.ax-icon-me:before {
-  content: "me";
-}
-.ax-icon-home:before {
-  content: "home";
-}
-.ax-icon-home-f:before {
-  content: "home-f";
-}
-.ax-icon-tobottom:before {
-  content: "tobottom";
-}
-.ax-icon-totop:before {
-  content: "totop";
-}
-.ax-icon-printer:before {
-  content: "printer";
-}
-.ax-icon-printer-f:before {
-  content: "printer-f";
-}
-.ax-icon-zoomin-f:before {
-  content: "zoomin-f";
-}
-.ax-icon-zoomout-f:before {
-  content: "zoomout-f";
-}
-.ax-icon-good-f:before {
-  content: "good-f";
-}
-.ax-icon-bad-f:before {
-  content: "bad-f";
-}
-.ax-icon-good:before {
-  content: "good";
-}
-.ax-icon-bad:before {
-  content: "bad";
-}
-.ax-icon-corner-up-left:before {
-  content: "corner-up-left";
-}
-.ax-icon-corner-left-down:before {
-  content: "corner-left-down";
-}
-.ax-icon-corner-up-right:before {
-  content: "corner-up-right";
-}
-.ax-icon-corner-right-up:before {
-  content: "corner-right-up";
-}
-.ax-icon-seal-refuse-f:before {
-  content: "seal-refuse-f";
-}
-.ax-icon-seal:before {
-  content: "seal";
-}
-.ax-icon-seal-f:before {
-  content: "seal-f";
-}
-.ax-icon-seal-ok-f:before {
-  content: "seal-ok-f";
-}
-.ax-icon-pad:before {
-  content: "pad";
-}
-.ax-icon-pad-f:before {
-  content: "pad-f";
-}
-.ax-icon-pc:before {
-  content: "pc";
-}
-.ax-icon-pc-f:before {
-  content: "pc-f";
-}
-.ax-icon-qq:before {
-  content: "qq";
-}
-.ax-icon-weibo:before {
-  content: "weibo";
-}
-.ax-icon-wechat:before {
-  content: "wechat";
-}
-.ax-icon-trending-down:before {
-  content: "trending-down";
-}
-.ax-icon-telephone:before {
-  content: "telephone";
-}
-.ax-icon-trending-up:before {
-  content: "trending-up";
-}
-.ax-icon-telephone-f:before {
-  content: "telephone-f";
-}
-.ax-icon-qq-f:before {
-  content: "qq-f";
-}
-.ax-icon-weibo-f:before {
-  content: "weibo-f";
-}
-.ax-icon-renren-f:before {
-  content: "renren-f";
-}
-.ax-icon-wechat-f:before {
-  content: "wechat-f";
-}
-.ax-icon-facebook:before {
-  content: "facebook";
-}
-.ax-icon-twitter:before {
-  content: "twitter";
-}
-.ax-icon-facebook-f:before {
-  content: "facebook-f";
-}
-.ax-icon-twitter-f:before {
-  content: "twitter-f";
-}
-.ax-icon-pause-o:before {
-  content: "pause-o";
-}
-.ax-icon-play-o:before {
-  content: "play-o";
-}
-.ax-icon-pause-o-f:before {
-  content: "pause-o-f";
-}
-.ax-icon-play-o-f:before {
-  content: "play-o-f";
-}
-.ax-icon-flash-off:before {
-  content: "flash-off";
-}
-.ax-icon-flash:before {
-  content: "flash";
-}
-.ax-icon-flash-off-f:before {
-  content: "flash-off-f";
-}
-.ax-icon-flash-f:before {
-  content: "flash-f";
-}
-.ax-icon-moon:before {
-  content: "moon";
-}
-.ax-icon-moon-f:before {
-  content: "moon-f";
-}
-.ax-icon-logout:before {
-  content: "logout";
-}
-.ax-icon-login:before {
-  content: "login";
-}
-.ax-icon-cube:before {
-  content: "cube";
-}
-.ax-icon-cube-f:before {
-  content: "cube-f";
-}
-.ax-icon-tv:before {
-  content: "tv";
-}
-.ax-icon-tv-f:before {
-  content: "tv-f";
-}
-.ax-icon-wifi:before {
-  content: "wifi";
-}
-.ax-icon-wifi-off:before {
-  content: "wifi-off";
-}
-.ax-icon-star:before {
-  content: "star";
-}
-.ax-icon-star-f:before {
-  content: "star-f";
-}
-.ax-icon-film:before {
-  content: "film";
-}
-.ax-icon-filter:before {
-  content: "filter";
-}
-.ax-icon-film-f:before {
-  content: "film-f";
-}
-.ax-icon-filter-f:before {
-  content: "filter-f";
-}
-.ax-icon-paperplane:before {
-  content: "paperplane";
-}
-.ax-icon-paperplane-f:before {
-  content: "paperplane-f";
-}
-.ax-icon-tags:before {
-  content: "tags";
-}
-.ax-icon-tags-f:before {
-  content: "tags-f";
-}
-.ax-icon-nav-v:before {
-  content: "nav-v";
-}
-.ax-icon-nav:before {
-  content: "nav";
-}
-.ax-icon-nav-f:before {
-  content: "nav-f";
-}
-.ax-icon-nav-v-f:before {
-  content: "nav-v-f";
-}
-.ax-icon-mic-off:before {
-  content: "mic-off";
-}
-.ax-icon-mic:before {
-  content: "mic";
-}
-.ax-icon-mic-off-f:before {
-  content: "mic-off-f";
-}
-.ax-icon-mic-f:before {
-  content: "mic-f";
-}
-.ax-icon-message-s:before {
-  content: "message-s";
-}
-.ax-icon-message-o:before {
-  content: "-message-o";
-}
-.ax-icon-message-s-f:before {
-  content: "message-s-f";
-}
-.ax-icon-message-o-f:before {
-  content: "message-o-f";
-}
-.ax-icon-sun:before {
-  content: "sun";
-}
-.ax-icon-sun-f:before {
-  content: "sun-f";
-}
-.ax-icon-map:before {
-  content: "map";
-}
-.ax-icon-pin:before {
-  content: "pin";
-}
-.ax-icon-map-f:before {
-  content: "map-f";
-}
-.ax-icon-pin-f:before {
-  content: "pin-f";
-}
-.ax-icon-headphones:before {
-  content: "headphones";
-}
-.ax-icon-headphones-f:before {
-  content: "headphones-f";
-}
-.ax-icon-empty:before {
-  content: "empty";
-}
-.ax-icon-box:before {
-  content: "box";
-}
-.ax-icon-box-f:before {
-  content: "box-f";
-}
-.ax-icon-image:before {
-  content: "image";
-}
-.ax-icon-image-f:before {
-  content: "image-f";
-}
-.ax-icon-image-alt-f:before {
-  content: "image-alt-f";
-}
-.ax-icon-clock:before {
-  content: "clock";
-}
-.ax-icon-clock-f:before {
-  content: "clock-f";
-}
-.ax-icon-camera:before {
-  content: "camera";
-}
-.ax-icon-camera-f:before {
-  content: "camera-f";
-}
-.ax-icon-phone-off:before {
-  content: "phone-off";
-}
-.ax-icon-phone-call:before {
-  content: "phone-call";
-}
-.ax-icon-phone-f:before {
-  content: "phone-f";
-}
-.ax-icon-phone-call-f:before {
-  content: "phone-call-f";
-}
-.ax-icon-phone-off-f:before {
-  content: "phone-off-f";
-}
-.ax-icon-phone-missed-f:before {
-  content: "phone-missed-f";
-}
-.ax-icon-phone-missed:before {
-  content: "phone-missed";
-}
-.ax-icon-phone:before {
-  content: "phone";
-}
-.ax-icon-people-f:before {
-  content: "people-f";
-}
-.ax-icon-person-delete:before {
-  content: "person-delete";
-}
-.ax-icon-people:before {
-  content: "people";
-}
-.ax-icon-person:before {
-  content: "person";
-}
-.ax-icon-person-add:before {
-  content: "person-add";
-}
-.ax-icon-person-remove:before {
-  content: "person-remove";
-}
-.ax-icon-person-done:before {
-  content: "person-done";
-}
-.ax-icon-person-add-f:before {
-  content: "person-add-f";
-}
-.ax-icon-person-f:before {
-  content: "person-f";
-}
-.ax-icon-person-remove-f:before {
-  content: "person-remove-f";
-}
-.ax-icon-person-delete-f:before {
-  content: "person-delete-f";
-}
-.ax-icon-pie-alt-f:before {
-  content: "pie-alt-f";
-}
-.ax-icon-person-done-f:before {
-  content: "person-done-f";
-}
-.ax-icon-radio:before {
-  content: "radio";
-}
-.ax-icon-radio-f:before {
-  content: "radio-f";
-}
-.ax-icon-shield:before {
-  content: "shield";
-}
-.ax-icon-shield-off:before {
-  content: "shield-off";
-}
-.ax-icon-shield-off-f:before {
-  content: "shield-off-f";
-}
-.ax-icon-shield-f:before {
-  content: "shield-f";
-}
-.ax-icon-settings-alt:before {
-  content: "settings-alt";
-}
-.ax-icon-settings:before {
-  content: "settings";
-}
-.ax-icon-settings-f:before {
-  content: "settings-f";
-}
-.ax-icon-settings-alt-f:before {
-  content: "settings-alt-f";
-}
-.ax-icon-bag:before {
-  content: "bag";
-}
-.ax-icon-cart:before {
-  content: "cart";
-}
-.ax-icon-bag-f:before {
-  content: "bag-f";
-}
-.ax-icon-cart-f:before {
-  content: "cart-f";
-}
-.ax-icon-toggle-left:before {
-  content: "toggle-left";
-}
-.ax-icon-toggle-right:before {
-  content: "toggle-right";
-}
-.ax-icon-toggle-left-f:before {
-  content: "toggle-left-f";
-}
-.ax-icon-toggle-right-f:before {
-  content: "toggle-right-f";
-}
-.ax-icon-lock:before {
-  content: "lock";
-}
-.ax-icon-unlock:before {
-  content: "unlock";
-}
-.ax-icon-lock-f:before {
-  content: "lock-f";
-}
-.ax-icon-unlock-f:before {
-  content: "unlock-f";
-}
-.ax-icon-email:before {
-  content: "email";
-}
-.ax-icon-music:before {
-  content: "music";
-}
-.ax-icon-video-off:before {
-  content: "video-off";
-}
-.ax-icon-video:before {
-  content: "video";
-}
-.ax-icon-email-f:before {
-  content: "email-f";
-}
-.ax-icon-music-f:before {
-  content: "music-f";
-}
-.ax-icon-video-off-f:before {
-  content: "video-off-f";
-}
-.ax-icon-video-f:before {
-  content: "video-f";
-}
-.ax-icon-link-open:before {
-  content: "link-open";
-}
-.ax-icon-undo:before {
-  content: "undo";
-}
-.ax-icon-undo-f:before {
-  content: "undo-f";
-}
-.ax-icon-share:before {
-  content: "share";
-}
-.ax-icon-share-f:before {
-  content: "share-f";
-}
-.ax-icon-trash:before {
-  content: "trash";
-}
-.ax-icon-trash-alt:before {
-  content: "trash-alt";
-}
-.ax-icon-trash-f:before {
-  content: "trash-f";
-}
-.ax-icon-trash-alt-f:before {
-  content: "trash-alt-f";
-}
-.ax-icon-eye-off-f:before {
-  content: "eye-off-f";
-}
-.ax-icon-eye-off-alt:before {
-  content: "eye-off-alt";
-}
-.ax-icon-eye-off:before {
-  content: "eye-off";
-}
-.ax-icon-eye:before {
-  content: "eye";
-}
-.ax-icon-eye-f:before {
-  content: "eye-f";
-}
-.ax-icon-heart:before {
-  content: "heart";
-}
-.ax-icon-heart-f:before {
-  content: "heart-f";
-}
-.ax-icon-editing:before {
-  content: "editing";
-}
-.ax-icon-edit:before {
-  content: "edit";
-}
-.ax-icon-editing-f:before {
-  content: "editing-f";
-}
-.ax-icon-edit-f:before {
-  content: "edit-f";
-}
-.ax-icon-global-f:before {
-  content: "global-f";
-}
-.ax-icon-global:before {
-  content: "global";
-}
-.ax-icon-earth:before {
-  content: "earth";
-}
-.ax-icon-earth-f:before {
-  content: "earth-f";
-}
-.ax-icon-bulb:before {
-  content: "bulb";
-}
-.ax-icon-bulb-f:before {
-  content: "bulb-f";
-}
-.ax-icon-theme:before {
-  content: "theme";
-}
-.ax-icon-theme-f:before {
-  content: "theme-f";
-}
-.ax-icon-compass:before {
-  content: "compass";
-}
-.ax-icon-compass-f:before {
-  content: "compass-f";
-}
-.ax-icon-bell:before {
-  content: "bell";
-}
-.ax-icon-bell-off:before {
-  content: "bell-off";
-}
-.ax-icon-bell-off-f:before {
-  content: "bell-off-f";
-}
-.ax-icon-bell-f:before {
-  content: "bell-f";
-}
-.ax-icon-list:before {
-  content: "list";
-}
-.ax-icon-more:before {
-  content: "more";
-}
-.ax-icon-menu:before {
-  content: "menu";
-}
-.ax-icon-more-v:before {
-  content: "more-v";
-}
-.ax-icon-menu-fold:before {
-  content: "menu-fold";
-}
-.ax-icon-menu-unfold:before {
-  content: "menu-unfold";
-}
-.ax-icon-bar:before {
-  content: "bar";
-}
-.ax-icon-pie:before {
-  content: "pie";
-}
-.ax-icon-pie-f:before {
-  content: "pie-f";
-}
-.ax-icon-options:before {
-  content: "options";
-}
-.ax-icon-options-v:before {
-  content: "options-v";
-}
-.ax-icon-options-f:before {
-  content: "options-f";
-}
-.ax-icon-options-v-f:before {
-  content: "options-v-f";
-}
-.ax-icon-attach:before {
-  content: "attach";
-}
-.ax-icon-attach-v:before {
-  content: "attach-v";
-}
-.ax-icon-link:before {
-  content: "link";
-}
-.ax-icon-link-h:before {
-  content: "link-h";
-}
-.ax-icon-volume-down:before {
-  content: "volume-down";
-}
-.ax-icon-volume-up:before {
-  content: "volume-up";
-}
-.ax-icon-volume-off:before {
-  content: "volume-off";
-}
-.ax-icon-volume-mute:before {
-  content: "volume-mute";
-}
-.ax-icon-volume-off-f:before {
-  content: "volume-off-f";
-}
-.ax-icon-volume-up-f:before {
-  content: "volume-up-f";
-}
-.ax-icon-volume-down-f:before {
-  content: "volume-down-f";
-}
-.ax-icon-volume-mute-f:before {
-  content: "volume-mute-f";
-}
-.ax-icon-copy:before {
-  content: "copy";
-}
-.ax-icon-copy-f:before {
-  content: "copy-f";
-}
-.ax-icon-file-remove:before {
-  content: "file-remove";
-}
-.ax-icon-file-add:before {
-  content: "file-add";
-}
-.ax-icon-file:before {
-  content: "file";
-}
-.ax-icon-file-text:before {
-  content: "file-text";
-}
-.ax-icon-folder-add:before {
-  content: "folder-add";
-}
-.ax-icon-folder:before {
-  content: "folder";
-}
-.ax-icon-folder-remove:before {
-  content: "folder-remove";
-}
-.ax-icon-file-text-f:before {
-  content: "file-text-f";
-}
-.ax-icon-file-add-f:before {
-  content: "file-add-f";
-}
-.ax-icon-file-remove-f:before {
-  content: "file-remove-f";
-}
-.ax-icon-file-f:before {
-  content: "file-f";
-}
-.ax-icon-folder-add-f:before {
-  content: "folder-add-f";
-}
-.ax-icon-folder-remove-f:before {
-  content: "folder-remove-f";
-}
-.ax-icon-folder-f:before {
-  content: "folder-f";
-}
-.ax-icon-zoomin:before {
-  content: "zoomin";
-}
-.ax-icon-zoomout:before {
-  content: "zoomout";
-}
-.ax-icon-search:before {
-  content: "search";
-}
-.ax-icon-cloud-download:before {
-  content: "cloud-download";
-}
-.ax-icon-cloud-upload:before {
-  content: "cloud-upload";
-}
-.ax-icon-download:before {
-  content: "download";
-}
-.ax-icon-upload:before {
-  content: "upload";
-}
-.ax-icon-warning-o:before {
-  content: "warning-o";
-}
-.ax-icon-info-o:before {
-  content: "info-o";
-}
-.ax-icon-question-o:before {
-  content: "question-o";
-}
-.ax-icon-question:before {
-  content: "question";
-}
-.ax-icon-warning-o-f:before {
-  content: "warning-o-f";
-}
-.ax-icon-info-o-f:before {
-  content: "info-o-f";
-}
-.ax-icon-question-o-f:before {
-  content: "question-o-f";
-}
-.ax-icon-minus-s:before {
-  content: "minus-s";
-}
-.ax-icon-minus-o:before {
-  content: "minus-o";
-}
-.ax-icon-minus-o-f:before {
-  content: "minus-o-f";
-}
-.ax-icon-minus-s-f:before {
-  content: "minus-s-f";
-}
-.ax-icon-minus:before {
-  content: "minus";
-}
-.ax-icon-code-download:before {
-  content: "code-download";
-}
-.ax-icon-plus:before {
-  content: "plus";
-}
-.ax-icon-plus-s:before {
-  content: "plus-s";
-}
-.ax-icon-plus-o:before {
-  content: "plus-o";
-}
-.ax-icon-plus-s-f:before {
-  content: "plus-s-f";
-}
-.ax-icon-plus-o-f:before {
-  content: "plus-o-f";
-}
-.ax-icon-backspace:before {
-  content: "backspace";
-}
-.ax-icon-backspace-f:before {
-  content: "backspace-f";
-}
-.ax-icon-corner-down-left:before {
-  content: "corner-down-left";
-}
-.ax-icon-corner-left-up:before {
-  content: "corner-left-up";
-}
-.ax-icon-corner-right-down:before {
-  content: "corner-right-down";
-}
-.ax-icon-corner-down-right:before {
-  content: "corner-down-right";
-}
-.ax-icon-left-up:before {
-  content: "left-up";
-}
-.ax-icon-left-down:before {
-  content: "left-down";
-}
-.ax-icon-right-up:before {
-  content: "right-up";
-}
-.ax-icon-right-down:before {
-  content: "right-down";
-}
-.ax-icon-expand:before {
-  content: "expand";
-}
-.ax-icon-collapse:before {
-  content: "collapse";
-}
-.ax-icon-check-o-gap:before {
-  content: "check-o-gap";
-}
-.ax-icon-check-s-gap:before {
-  content: "check-s-gap";
-}
-.ax-icon-close-s:before {
-  content: "close-s";
-}
-.ax-icon-close-o:before {
-  content: "close-o";
-}
-.ax-icon-close-o-f:before {
-  content: "close-o-f";
-}
-.ax-icon-close-s-f:before {
-  content: "close-s-f";
-}
-.ax-icon-close:before {
-  content: "close";
-}
-.ax-icon-circle:before {
-  content: "circle";
-}
-.ax-icon-check-o-f:before {
-  content: "check-o-f";
-}
-.ax-icon-check-o:before {
-  content: "check-o";
-}
-.ax-icon-square:before {
-  content: "square";
-}
-.ax-icon-check-s-f:before {
-  content: "check-s-f";
-}
-.ax-icon-check:before {
-  content: "check";
-}
-.ax-icon-check-s:before {
-  content: "check-s";
-}
-.ax-icon-down-double:before {
-  content: "down-double";
-}
-.ax-icon-left-double:before {
-  content: "left-double";
-}
-.ax-icon-right-double:before {
-  content: "right-double";
-}
-.ax-icon-up-double:before {
-  content: "up-double";
-}
-.ax-icon-code-o:before {
-  content: "code-o";
-}
-.ax-icon-code-o-f:before {
-  content: "code-o-f";
-}
-.ax-icon-code:before {
-  content: "code";
-}
-.ax-icon-right-o-f:before {
-  content: "right-o-f";
-}
-.ax-icon-down-o-f:before {
-  content: "down-o-f";
-}
-.ax-icon-left-o-f:before {
-  content: "left-o-f";
-}
-.ax-icon-up-o-f:before {
-  content: "up-o-f";
-}
-.ax-icon-left-o:before {
-  content: "left-o";
-}
-.ax-icon-up-o:before {
-  content: "up-o";
-}
-.ax-icon-down-o:before {
-  content: "down-o";
-}
-.ax-icon-right-o:before {
-  content: "right-o";
-}
-.ax-icon-down:before {
-  content: "down";
-}
-.ax-icon-left:before {
-  content: "left";
-}
-.ax-icon-right:before {
-  content: "right";
-}
-.ax-icon-up:before {
-  content: "up";
-}
-.ax-icon-arrow-left:before {
-  content: "arrow-left";
-}
-.ax-icon-arrow-right:before {
-  content: "arrow-right";
-}
-.ax-icon-arrow-down:before {
-  content: "arrow-down";
-}
-.ax-icon-arrow-up:before {
-  content: "arrow-up";
-}
-.ax-icon-triangle-down:before {
-  content: "triangle-down";
-}
-.ax-icon-triangle-up:before {
-  content: "triangle-up";
-}
-.ax-icon-triangle-right:before {
-  content: "triangle-right";
-}
-.ax-icon-triangle-left:before {
-  content: "triangle-left";
-}
-.ax-icon-triangle-down-f:before {
-  content: "triangle-down-f";
-}
-.ax-icon-triangle-left-f:before {
-  content: "triangle-left-f";
-}
-.ax-icon-triangle-up-f:before {
-  content: "triangle-up-f";
-}
-.ax-icon-triangle-right-f:before {
-  content: "triangle-right-f";
-}
-.ax-icon-arrow-down-o:before {
-  content: "arrow-down-o";
-}
-.ax-icon-arrow-left-o:before {
-  content: "arrow-left-o";
-}
-.ax-icon-arrow-up-o:before {
-  content: "arrow-up-o";
-}
-.ax-icon-arrow-right-o:before {
-  content: "arrow-right-o";
-}
-.ax-icon-arrow-down-o-f:before {
-  content: "arrow-down-o-f";
-}
-.ax-icon-arrow-left-o-f:before {
-  content: "arrow-left-o-f";
-}
-.ax-icon-arrow-right-o-f:before {
-  content: "arrow-right-o-f";
-}
-.ax-icon-arrow-up-o-f:before {
-  content: "arrow-up-o-f";
-}
-/*reset*/
-:root {
-  --load-svg: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiMxOThjZmYiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxIDEpIiBzdHJva2Utd2lkdGg9IjEiPgogICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuMiIgY3g9IjE0IiBjeT0iMTQiIHI9IjEyIi8+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNCwyNkM3LjM3MiwyNiwyLDIwLjYyOSwyLDE0Ij4KICAgICAgICAgICAgICAgIDxhbmltYXRlVHJhbnNmb3JtCiAgICAgICAgICAgICAgICAgICAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIgogICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIKICAgICAgICAgICAgICAgICAgICBmcm9tPSIwIDE0IDE0IgogICAgICAgICAgICAgICAgICAgIHRvPSIzNjAgMTQgMTQiCiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIKICAgICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPgogICAgICAgICAgICA8L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
-  --load-svg-w: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHJva2U9IiNmZmZmZmYiPgogICAgPGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4KICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxIDEpIiBzdHJva2Utd2lkdGg9IjEiPgogICAgICAgICAgICA8Y2lyY2xlIHN0cm9rZS1vcGFjaXR5PSIuMiIgY3g9IjE0IiBjeT0iMTQiIHI9IjEyIi8+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNCwyNkM3LjM3MiwyNiwyLDIwLjYyOSwyLDE0Ij4KICAgICAgICAgICAgICAgIDxhbmltYXRlVHJhbnNmb3JtCiAgICAgICAgICAgICAgICAgICAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIgogICAgICAgICAgICAgICAgICAgIHR5cGU9InJvdGF0ZSIKICAgICAgICAgICAgICAgICAgICBmcm9tPSIwIDE0IDE0IgogICAgICAgICAgICAgICAgICAgIHRvPSIzNjAgMTQgMTQiCiAgICAgICAgICAgICAgICAgICAgZHVyPSIxcyIKICAgICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIvPgogICAgICAgICAgICA8L3BhdGg+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=");
-  --load-gif: url("data:image/gif;base64,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");
-}
-html {
-  font-size: 10px;
-  width: 100%;
-  padding: 0;
-  margin: 0;
-  background-color: #fff;
-}
-body {
-  text-align: left;
-  font-size: 1.4rem;
-  color: #333333;
-  line-height: 2.8rem;
-  font-family: "寰蒋闆呴粦", "microsoft yahei", "Arial", "Helvetica Neue", "sans-serif", "瀹嬩綋", "simsun";
-  width: 100%;
-  min-height: 100%;
-  padding: 0;
-  margin: 0;
-  background-color: #fff;
-}
-:focus {
-  outline: 0;
-}
-::-ms-clear,
-::-ms-reveal {
-  display: none;
-}
-* {
-  margin: 0;
-  padding: 0;
-  -webkit-tap-highlight-color: transparent;
-}
-fieldset {
-  border: 1px dotted #ccc;
-  border-radius: 0.3rem;
-}
-sup,
-sub {
-  font-size: 0.6rem;
-}
-pre {
-  color: #666666;
-  font-size: 1.2rem;
-  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
-  line-height: 1.8rem;
-  white-space: pre-wrap;
-  word-wrap: break-word;
-}
-button[type='button'],
-input[type='button'],
-input[type='submit'],
-input[type='text'],
-input[type='search'],
-input[type='reset'] {
-  -webkit-appearance: none;
-}
-input[type='text'],
-input[type='search'] {
-  font-size: 1.4rem;
-}
-em,
-i {
-  font-style: normal;
-}
-s,
-u {
-  text-decoration: none;
-}
-ul,
-li,
-form {
-  list-style-image: none;
-  list-style: none;
-  list-style-type: none;
-  list-style-position: outside;
-  margin: 0;
-  padding: 0;
-}
-a,
-span,
-font,
-input,
-textarea,
-select,
-label,
-i {
-  display: inline-block;
-  vertical-align: top;
-}
-a span,
-label {
-  cursor: pointer;
-}
-input,
-textarea,
-button {
-  font-size: 1.4rem;
-  outline: none;
-  resize: none;
-  -webkit-appearance: none;
-  transition: all 100ms linear;
-  vertical-align: top;
-}
-select {
-  font-size: 1.4rem;
-  outline: none;
-  resize: none;
-  transition: all 100ms linear;
-}
-input[type=checkbox] {
-  -webkit-appearance: checkbox;
-}
-input[type=radio] {
-  -webkit-appearance: radio;
-}
-input[type=search]::-webkit-search-cancel-button {
-  -webkit-appearance: none;
-}
-input,
-textarea,
-select,
-button {
-  font-family: "寰蒋闆呴粦", "microsoft yahei", "Arial", "Helvetica Neue", "sans-serif", "瀹嬩綋", "simsun";
-}
-img {
-  border: 0;
-  vertical-align: middle;
-}
-svg {
-  vertical-align: middle;
-}
-form,
-div,
-p {
-  display: block;
-}
-p {
-  margin: 0;
-  padding: 0.6em 0 0.6em 0;
-}
-a {
-  color: #333333;
-  text-decoration: none;
-  transition: color 100ms linear, background-color 100ms linear, box-shadow 100ms linear;
-}
-a:hover {
-  color: #198cff;
-  text-decoration: none;
-}
-a:active {
-  color: #0059b2;
-  text-decoration: none;
-}
-.ax-text-cancel,
-a.ax-text-cancel,
-.ax-text-cancel a,
-.ax-text-cancel:hover,
-a.ax-text-cancel:hover,
-.ax-text-cancel a:hover {
-  color: #b3b3b3;
-  text-decoration: line-through;
-  margin: 0 0.4rem;
-  cursor: text;
-}
-a.ax-color-ignore,
-.ax-color-ignore a {
-  color: #b3b3b3;
-  text-decoration: none;
-}
-a.ax-color-ignore:hover,
-.ax-color-ignore a:hover {
-  color: #b3b3b3;
-  text-decoration: underline;
-}
-a.ax-color-primary,
-.ax-color-primary a {
-  color: #198cff;
-  text-decoration: none;
-}
-a.ax-color-primary:hover,
-.ax-color-primary a:hover {
-  color: #198cff;
-  text-decoration: underline;
-}
-a.ax-color-secondary,
-.ax-color-secondary a {
-  color: #475b66;
-  text-decoration: none;
-}
-a.ax-color-secondary:hover,
-.ax-color-secondary a:hover {
-  color: #475b66;
-  text-decoration: underline;
-}
-a.ax-color-success,
-.ax-color-success a {
-  color: #41a358;
-  text-decoration: none;
-}
-a.ax-color-success:hover,
-.ax-color-success a:hover {
-  color: #41a358;
-  text-decoration: underline;
-}
-a.ax-color-danger,
-.ax-color-danger a {
-  color: #dc3545;
-  text-decoration: none;
-}
-a.ax-color-danger:hover,
-.ax-color-danger a:hover {
-  color: #dc3545;
-  text-decoration: underline;
-}
-a.ax-color-warning,
-.ax-color-warning a {
-  color: #ffc107;
-  text-decoration: none;
-}
-a.ax-color-warning:hover,
-.ax-color-warning a:hover {
-  color: #ffc107;
-  text-decoration: underline;
-}
-a.ax-color-info,
-.ax-color-info a {
-  color: #14ccc9;
-  text-decoration: none;
-}
-a.ax-color-info:hover,
-.ax-color-info a:hover {
-  color: #14ccc9;
-  text-decoration: underline;
-}
-a.ax-color-ad,
-.ax-color-ad a {
-  color: #ff8400;
-  text-decoration: none;
-}
-a.ax-color-ad:hover,
-.ax-color-ad a:hover {
-  color: #ff8400;
-  text-decoration: underline;
-}
-a[class*='ax-btn']:hover {
-  text-decoration: none;
-}
-@font-face {
-  font-family: 'DINCond-Light';
-  src: url('../fonts/DINCond-Light.otf');
-  font-weight: normal;
-  font-style: normal;
-}
-.ax-font-lighter {
-  font-family: 'DINCond-Light';
-}
-@font-face {
-  font-family: 'DINCond-Regular';
-  src: url('../fonts/DINCond-Regular.otf');
-  font-weight: normal;
-  font-style: normal;
-}
-.ax-font-light {
-  font-family: 'DINCond-Regular';
-}
-@font-face {
-  font-family: 'DINCond-Medium';
-  src: url('../fonts/DINCond-Medium.otf');
-  font-weight: normal;
-  font-style: normal;
-}
-.ax-font-regular {
-  font-family: 'DINCond-Medium';
-}
-@font-face {
-  font-family: 'DINCond-Bold';
-  src: url('../fonts/DINCond-Bold.otf');
-  font-weight: normal;
-  font-style: normal;
-}
-.ax-font-bold {
-  font-family: 'DINCond-Bold';
-}
-@font-face {
-  font-family: 'DINCond-Black';
-  src: url('../fonts/DINCond-Black.otf');
-  font-weight: normal;
-  font-style: normal;
-}
-.ax-font-bolder {
-  font-family: 'DINCond-Black';
-}
-/*placeholder*/
-input::-webkit-input-placeholder,
-textarea::-webkit-input-placeholder {
-  color: rgba(0, 0, 0, 0.3);
-}
-input::-moz-placeholder,
-textarea::-moz-placeholder {
-  color: rgba(0, 0, 0, 0.3);
-}
-input:-ms-input-placeholder,
-textarea:-ms-input-placeholder {
-  color: rgba(0, 0, 0, 0.3);
-}
-input::-o-placeholder,
-textarea::-o-placeholder {
-  color: rgba(0, 0, 0, 0.3);
-}
-input::placeholder,
-textarea::placeholder {
-  color: rgba(0, 0, 0, 0.3);
-}
-.ax-reverse input::-webkit-input-placeholder,
-textarea::-webkit-input-placeholder {
-  color: rgba(255, 255, 255, 0.2);
-}
-.ax-reverse input::-moz-placeholder,
-textarea::-moz-placeholder {
-  color: rgba(255, 255, 255, 0.2);
-}
-.ax-reverse input:-ms-input-placeholder,
-textarea:-ms-input-placeholder {
-  color: rgba(255, 255, 255, 0.2);
-}
-.ax-reverse input::-o-placeholder,
-textarea::-o-placeholder {
-  color: rgba(255, 255, 255, 0.2);
-}
-.ax-reverse input::placeholder,
-textarea::placeholder {
-  color: rgba(255, 255, 255, 0.2);
-}
-/*global*/
-.ax-clear {
-  height: 0;
-  width: 100%;
-  overflow: hidden;
-  clear: both;
-  margin: 0rem;
-  padding: 0rem;
-}
-.ax-content {
-  width: 120rem;
-  margin: 0 auto;
-}
-/*radius square*/
-.ax-radius,
-*[class*="ax-btn"].ax-radius:after {
-  border-radius: 0.3rem;
-}
-.ax-radius-top {
-  border-top-left-radius: 0.3rem;
-  border-top-right-radius: 0.3rem;
-}
-.ax-radius-bottom {
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-}
-.ax-radius-left {
-  border-top-left-radius: 0.3rem;
-  border-bottom-left-radius: 0.3rem;
-}
-.ax-radius-right {
-  border-top-right-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-}
-/*radius size*/
-.ax-radius-xxs,
-.ax-avatar.ax-radius-xxs,
-.ax-sign.ax-radius-xxs {
-  border-radius: 0.3rem;
-}
-.ax-radius-xs,
-.ax-avatar.ax-radius-xs,
-.ax-sign.ax-radius-xs {
-  border-radius: calc(0.3rem*2);
-}
-.ax-radius-xs.ax-radius-top {
-  border-top-left-radius: calc(0.3rem*2);
-  border-top-right-radius: calc(0.3rem*2);
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-xs.ax-radius-bottom {
-  border-bottom-left-radius: calc(0.3rem*2);
-  border-bottom-right-radius: calc(0.3rem*2);
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-radius-xs.ax-radius-left {
-  border-top-left-radius: calc(0.3rem*2);
-  border-bottom-left-radius: calc(0.3rem*2);
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-xs.ax-radius-right {
-  border-top-right-radius: calc(0.3rem*2);
-  border-bottom-right-radius: calc(0.3rem*2);
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-radius-sm,
-.ax-avatar.ax-radius-sm,
-.ax-sign.ax-radius-sm {
-  border-radius: calc(0.3rem*3);
-}
-.ax-radius-sm.ax-radius-top {
-  border-top-left-radius: calc(0.3rem*3);
-  border-top-right-radius: calc(0.3rem*3);
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-sm.ax-radius-bottom {
-  border-bottom-left-radius: calc(0.3rem*3);
-  border-bottom-right-radius: calc(0.3rem*3);
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-radius-sm.ax-radius-left {
-  border-top-left-radius: calc(0.3rem*3);
-  border-bottom-left-radius: calc(0.3rem*3);
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-sm.ax-radius-right {
-  border-top-right-radius: calc(0.3rem*3);
-  border-bottom-right-radius: calc(0.3rem*3);
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-radius-md,
-.ax-avatar.ax-radius-md,
-.ax-sign.ax-radius-md {
-  border-radius: calc(0.3rem*4);
-}
-.ax-radius-md.ax-radius-top {
-  border-top-left-radius: calc(0.3rem*4);
-  border-top-right-radius: calc(0.3rem*4);
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-md.ax-radius-bottom {
-  border-bottom-left-radius: calc(0.3rem*4);
-  border-bottom-right-radius: calc(0.3rem*4);
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-radius-md.ax-radius-left {
-  border-top-left-radius: calc(0.3rem*4);
-  border-bottom-left-radius: calc(0.3rem*4);
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-md.ax-radius-right {
-  border-top-right-radius: calc(0.3rem*4);
-  border-bottom-right-radius: calc(0.3rem*4);
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-radius-lg,
-.ax-avatar.ax-radius-lg,
-.ax-sign.ax-radius-lg {
-  border-radius: calc(0.3rem*6);
-}
-.ax-radius-lg.ax-radius-top {
-  border-top-left-radius: calc(0.3rem*6);
-  border-top-right-radius: calc(0.3rem*6);
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-lg.ax-radius-bottom {
-  border-bottom-left-radius: calc(0.3rem*6);
-  border-bottom-right-radius: calc(0.3rem*6);
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-radius-lg.ax-radius-left {
-  border-top-left-radius: calc(0.3rem*6);
-  border-bottom-left-radius: calc(0.3rem*6);
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-lg.ax-radius-right {
-  border-top-right-radius: calc(0.3rem*6);
-  border-bottom-right-radius: calc(0.3rem*6);
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-radius-xl,
-.ax-avatar.ax-radius-xl,
-.ax-sign.ax-radius-xl {
-  border-radius: calc(0.3rem*8);
-}
-.ax-radius-xl.ax-radius-top {
-  border-top-left-radius: calc(0.3rem*8);
-  border-top-right-radius: calc(0.3rem*8);
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-xl.ax-radius-bottom {
-  border-bottom-left-radius: calc(0.3rem*8);
-  border-bottom-right-radius: calc(0.3rem*8);
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-radius-xl.ax-radius-left {
-  border-top-left-radius: calc(0.3rem*8);
-  border-bottom-left-radius: calc(0.3rem*8);
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-xl.ax-radius-right {
-  border-top-right-radius: calc(0.3rem*8);
-  border-bottom-right-radius: calc(0.3rem*8);
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-radius-xxl,
-.ax-avatar.ax-radius-xxl,
-.ax-sign.ax-radius-xxl {
-  border-radius: calc(0.3rem*10);
-}
-.ax-radius-xxl.ax-radius-top {
-  border-top-left-radius: calc(0.3rem*10);
-  border-top-right-radius: calc(0.3rem*10);
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-xxl.ax-radius-bottom {
-  border-bottom-left-radius: calc(0.3rem*10);
-  border-bottom-right-radius: calc(0.3rem*10);
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-radius-xxl.ax-radius-left {
-  border-top-left-radius: calc(0.3rem*10);
-  border-bottom-left-radius: calc(0.3rem*10);
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-radius-xxl.ax-radius-right {
-  border-top-right-radius: calc(0.3rem*10);
-  border-bottom-right-radius: calc(0.3rem*10);
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-square,
-*[class*="ax-btn"].ax-square,
-*[class*="ax-btn"].ax-square:after {
-  border-radius: 0;
-}
-.ax-square-top {
-  border-top-left-radius: 0;
-  border-top-right-radius: 0;
-}
-.ax-square-bottom {
-  border-bottom-left-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-square-left {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-square-right {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-/*shadow*/
-.ax-shadow {
-  box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.1);
-}
-.ax-shadow-border {
-  box-shadow: 1px 0 0 #ebebeb, -1px 0 0 #ebebeb, 0 1px 0 #ebebeb, 0 -1px 0 #ebebeb, 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);
-}
-.ax-shadow-light {
-  box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.06);
-}
-.ax-shadow-dark {
-  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.12);
-  box-shadow: 0.5rem 0.5rem 2rem rgba(51, 51, 51, 0.4);
-}
-.ax-shadow-cloud {
-  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
-}
-.ax-shadow-primary {
-  box-shadow: 1px 2px 1rem rgba(25, 140, 255, 0.2);
-}
-.ax-shadow-secondary {
-  box-shadow: 1px 2px 1rem rgba(71, 91, 102, 0.2);
-}
-.ax-shadow-success {
-  box-shadow: 1px 2px 1rem rgba(65, 163, 88, 0.2);
-}
-.ax-shadow-danger {
-  box-shadow: 1px 2px 1rem rgba(220, 53, 69, 0.2);
-}
-.ax-shadow-info {
-  box-shadow: 1px 2px 1rem rgba(20, 204, 201, 0.2);
-}
-.ax-shadow-warning {
-  box-shadow: 1px 2px 1rem rgba(255, 193, 7, 0.3);
-}
-.ax-shadow-ad {
-  box-shadow: 1px 2px 1rem rgba(255, 132, 0, 0.2);
-}
-/*ellipsis*/
-.ax-ell {
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-ell-2 {
-  max-width: 100%;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-3 {
-  max-width: 100%;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-subject {
-  font-size: 1.8rem;
-  line-height: 2.8rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-ell-2-subject {
-  font-size: 1.8rem;
-  max-height: calc(2.8rem * 2);
-  max-width: 100%;
-  line-height: 2.8rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-3-subject {
-  font-size: 1.8rem;
-  max-height: calc(2.8rem * 3);
-  max-width: 100%;
-  line-height: 2.8rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 3;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-title {
-  font-size: 1.6rem;
-  line-height: 2.2rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-ell-2-title {
-  font-size: 1.6rem;
-  max-height: calc(2.2rem * 2);
-  max-width: 100%;
-  line-height: 2.2rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-3-title {
-  font-size: 1.6rem;
-  max-height: calc(2.2rem * 3);
-  max-width: 100%;
-  line-height: 2.2rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 3;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-body {
-  font-size: 1.4rem;
-  line-height: 2.2rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-ell-2-body {
-  font-size: 1.4rem;
-  max-height: calc(2.2rem * 2);
-  max-width: 100%;
-  line-height: 2.2rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-3-body {
-  font-size: 1.4rem;
-  max-height: calc(2.2rem * 3);
-  max-width: 100%;
-  line-height: 2.2rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 3;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-des {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-ell-2-des {
-  font-size: 1.4rem;
-  max-height: calc(1.8rem * 2);
-  max-width: 100%;
-  line-height: 1.8rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-3-des {
-  font-size: 1.4rem;
-  max-height: calc(1.8rem * 3);
-  max-width: 100%;
-  line-height: 1.8rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 3;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-ignore {
-  font-size: 1.2rem;
-  line-height: 1.6rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-ell-2-ignore {
-  font-size: 1.2rem;
-  max-height: calc(1.6rem * 2);
-  max-width: 100%;
-  line-height: 1.6rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-ell-3-ignore {
-  font-size: 1.2rem;
-  max-height: calc(1.6rem * 3);
-  max-width: 100%;
-  line-height: 1.6rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-/*border*/
-.ax-border {
-  border: 1px solid #ebebeb;
-}
-.ax-border-tb {
-  border-top: 1px solid #ebebeb;
-  border-bottom: 1px solid #ebebeb;
-}
-.ax-border-lr {
-  border-left: 1px solid #ebebeb;
-  border-right: 1px solid #ebebeb;
-}
-.ax-border-grid td,
-.ax-border-grid th {
-  position: relative;
-}
-.ax-border-grid td:before,
-.ax-border-grid th:before {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: #ebebeb;
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-border-grid tr td:last-child:not([class*='-sorting']):after,
-.ax-border-grid tr th:last-child:not([class*='-sorting']):after {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: #ebebeb;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-table.ax-border-grid {
-  position: relative;
-}
-.ax-table.ax-border-grid:after {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: #ebebeb;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-/*margin*/
-.ax-margin {
-  margin: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-margin-tb {
-  margin-top: 1.4rem;
-  margin-bottom: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-margin-lr {
-  margin-left: 1.4rem;
-  margin-right: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-margin-left {
-  margin-left: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-margin-right {
-  margin-right: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-margin.ax-xxs {
-  margin: 0.4rem;
-}
-.ax-margin.ax-xs {
-  margin: 0.8rem;
-}
-.ax-margin.ax-sm {
-  margin: 1rem;
-}
-.ax-margin.ax-md {
-  margin: 1.4rem;
-}
-.ax-margin.ax-lg {
-  margin: 1.8rem;
-}
-.ax-margin.ax-xl {
-  margin: 2.2rem;
-}
-.ax-margin.ax-xxl {
-  margin: 2.8rem;
-}
-.ax-margin-tb.ax-xxs {
-  margin-top: 0.4rem;
-  margin-bottom: 0.4rem;
-}
-.ax-margin-tb.ax-xs {
-  margin-top: 0.8rem;
-  margin-bottom: 0.8rem;
-}
-.ax-margin-tb.ax-sm {
-  margin-top: 1rem;
-  margin-bottom: 1rem;
-}
-.ax-margin-tb.ax-md {
-  margin-top: 1.4rem;
-  margin-bottom: 1.4rem;
-}
-.ax-margin-tb.ax-lg {
-  margin-top: 1.8rem;
-  margin-bottom: 1.8rem;
-}
-.ax-margin-tb.ax-xl {
-  margin-top: 2.2rem;
-  margin-bottom: 2.2rem;
-}
-.ax-margin-tb.ax-xxl {
-  margin-top: 2.8rem;
-  margin-bottom: 2.8rem;
-}
-.ax-margin-lr.ax-xxs {
-  margin-left: 0.4rem;
-  margin-right: 0.4rem;
-}
-.ax-margin-lr.ax-xs {
-  margin-left: 0.8rem;
-  margin-right: 0.8rem;
-}
-.ax-margin-lr.ax-sm {
-  margin-left: 1rem;
-  margin-right: 1rem;
-}
-.ax-margin-lr.ax-md {
-  margin-left: 1.4rem;
-  margin-right: 1.4rem;
-}
-.ax-margin-lr.ax-lg {
-  margin-left: 1.8rem;
-  margin-right: 1.8rem;
-}
-.ax-margin-lr.ax-xl {
-  margin-left: 2.2rem;
-  margin-right: 2.2rem;
-}
-.ax-margin-lr.ax-xxl {
-  margin-left: 2.8rem;
-  margin-right: 2.8rem;
-}
-.ax-margin-left.ax-xxs {
-  margin-left: 0.4rem;
-}
-.ax-margin-left.ax-xs {
-  margin-left: 0.8rem;
-}
-.ax-margin-left.ax-sm {
-  margin-left: 1rem;
-}
-.ax-margin-left.ax-md {
-  margin-left: 1.4rem;
-}
-.ax-margin-left.ax-lg {
-  margin-left: 1.8rem;
-}
-.ax-margin-left.ax-xl {
-  margin-left: 2.2rem;
-}
-.ax-margin-left.ax-xxl {
-  margin-left: 2.8rem;
-}
-.ax-margin-right.ax-xxs {
-  margin-right: 0.4rem;
-}
-.ax-margin-right.ax-xs {
-  margin-right: 0.8rem;
-}
-.ax-margin-right.ax-sm {
-  margin-right: 1rem;
-}
-.ax-margin-right.ax-md {
-  margin-right: 1.4rem;
-}
-.ax-margin-right.ax-lg {
-  margin-right: 1.8rem;
-}
-.ax-margin-right.ax-xl {
-  margin-right: 2.2rem;
-}
-.ax-margin-right.ax-xxl {
-  margin-right: 2.8rem;
-}
-.ax-margin-top.ax-xxs {
-  margin-top: 0.4rem;
-}
-.ax-margin-top.ax-xs {
-  margin-top: 0.8rem;
-}
-.ax-margin-top.ax-sm {
-  margin-top: 1rem;
-}
-.ax-margin-top.ax-md {
-  margin-top: 1.4rem;
-}
-.ax-margin-top.ax-lg {
-  margin-top: 1.8rem;
-}
-.ax-margin-top.ax-xl {
-  margin-top: 2.2rem;
-}
-.ax-margin-top.ax-xxl {
-  margin-top: 2.8rem;
-}
-.ax-margin-bottom.ax-xxs {
-  margin-bottom: 0.4rem;
-}
-.ax-margin-bottom.ax-xs {
-  margin-bottom: 0.8rem;
-}
-.ax-margin-bottom.ax-sm {
-  margin-bottom: 1rem;
-}
-.ax-margin-bottom.ax-md {
-  margin-bottom: 1.4rem;
-}
-.ax-margin-bottom.ax-lg {
-  margin-bottom: 1.8rem;
-}
-.ax-margin-bottom.ax-xl {
-  margin-bottom: 2.2rem;
-}
-.ax-margin-bottom.ax-xxl {
-  margin-bottom: 2.8rem;
-}
-/*padding*/
-.ax-padding {
-  padding: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-padding-tb {
-  padding: 1.4rem 0;
-  box-sizing: border-box;
-}
-.ax-padding-lr {
-  padding: 0 1.4rem;
-  box-sizing: border-box;
-}
-.ax-padding-left {
-  padding-left: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-padding-right {
-  padding-right: 1.4rem;
-  box-sizing: border-box;
-}
-.ax-padding.ax-xxs {
-  padding: 0.4rem;
-}
-.ax-padding.ax-xs {
-  padding: 0.8rem;
-}
-.ax-padding.ax-sm {
-  padding: 1rem;
-}
-.ax-padding.ax-md {
-  padding: 1.4rem;
-}
-.ax-padding.ax-lg {
-  padding: 1.8rem;
-}
-.ax-padding.ax-xl {
-  padding: 2.2rem;
-}
-.ax-padding.ax-xxl {
-  padding: 2.8rem;
-}
-.ax-padding-tb.ax-xxs {
-  padding-top: 0.4rem;
-  padding-bottom: 0.4rem;
-}
-.ax-padding-tb.ax-xs {
-  padding-top: 0.8rem;
-  padding-bottom: 0.8rem;
-}
-.ax-padding-tb.ax-sm {
-  padding-top: 1rem;
-  padding-bottom: 1rem;
-}
-.ax-padding-tb.ax-md {
-  padding-top: 1.4rem;
-  padding-bottom: 1.4rem;
-}
-.ax-padding-tb.ax-lg {
-  padding-top: 1.8rem;
-  padding-bottom: 1.8rem;
-}
-.ax-padding-tb.ax-xl {
-  padding-top: 2.2rem;
-  padding-bottom: 2.2rem;
-}
-.ax-padding-tb.ax-xxl {
-  padding-top: 2.8rem;
-  padding-bottom: 2.8rem;
-}
-.ax-padding-lr.ax-xxs {
-  padding-left: 0.4rem;
-  padding-right: 0.4rem;
-}
-.ax-padding-lr.ax-xs {
-  padding-left: 0.8rem;
-  padding-right: 0.8rem;
-}
-.ax-padding-lr.ax-sm {
-  padding-left: 1rem;
-  padding-right: 1rem;
-}
-.ax-padding-lr.ax-md {
-  padding-left: 1.4rem;
-  padding-right: 1.4rem;
-}
-.ax-padding-lr.ax-lg {
-  padding-left: 1.8rem;
-  padding-right: 1.8rem;
-}
-.ax-padding-lr.ax-xl {
-  padding-left: 2.2rem;
-  padding-right: 2.2rem;
-}
-.ax-padding-lr.ax-xxl {
-  padding-left: 2.8rem;
-  padding-right: 2.8rem;
-}
-.ax-padding-left.ax-xxs {
-  padding-left: 0.4rem;
-}
-.ax-padding-left.ax-xs {
-  padding-left: 0.8rem;
-}
-.ax-padding-left.ax-sm {
-  padding-left: 1rem;
-}
-.ax-padding-left.ax-md {
-  padding-left: 1.4rem;
-}
-.ax-padding-left.ax-lg {
-  padding-left: 1.8rem;
-}
-.ax-padding-left.ax-xl {
-  padding-left: 2.2rem;
-}
-.ax-padding-left.ax-xxl {
-  padding-left: 2.8rem;
-}
-.ax-padding-right.ax-xxs {
-  padding-right: 0.4rem;
-}
-.ax-padding-right.ax-xs {
-  padding-right: 0.8rem;
-}
-.ax-padding-right.ax-sm {
-  padding-right: 1rem;
-}
-.ax-padding-right.ax-md {
-  padding-right: 1.4rem;
-}
-.ax-padding-right.ax-lg {
-  padding-right: 1.8rem;
-}
-.ax-padding-right.ax-xl {
-  padding-right: 2.2rem;
-}
-.ax-padding-right.ax-xxl {
-  padding-right: 2.8rem;
-}
-.ax-padding-top.ax-xxs {
-  padding-top: 0.4rem;
-}
-.ax-padding-top.ax-xs {
-  padding-top: 0.8rem;
-}
-.ax-padding-top.ax-sm {
-  padding-top: 1rem;
-}
-.ax-padding-top.ax-md {
-  padding-top: 1.4rem;
-}
-.ax-padding-top.ax-lg {
-  padding-top: 1.8rem;
-}
-.ax-padding-top.ax-xl {
-  padding-top: 2.2rem;
-}
-.ax-padding-top.ax-xxl {
-  padding-top: 2.8rem;
-}
-.ax-padding-bottom.ax-xxs {
-  padding-bottom: 0.4rem;
-}
-.ax-padding-bottom.ax-xs {
-  padding-bottom: 0.8rem;
-}
-.ax-padding-bottom.ax-sm {
-  padding-bottom: 1rem;
-}
-.ax-padding-bottom.ax-md {
-  padding-bottom: 1.4rem;
-}
-.ax-padding-bottom.ax-lg {
-  padding-bottom: 1.8rem;
-}
-.ax-padding-bottom.ax-xl {
-  padding-bottom: 2.2rem;
-}
-.ax-padding-bottom.ax-xxl {
-  padding-bottom: 2.8rem;
-}
-/*col break*/
-.ax-gutter-xxs {
-  width: 0.4rem;
-  overflow: hidden;
-}
-.ax-gutter-xs {
-  width: 0.8rem;
-  overflow: hidden;
-}
-.ax-gutter-sm {
-  width: 1.2rem;
-  overflow: hidden;
-}
-.ax-gutter,
-.ax-gutter-md {
-  width: 1.4rem;
-  overflow: hidden;
-}
-.ax-gutter-lg {
-  width: 1.6rem;
-  overflow: hidden;
-}
-.ax-gutter-xl {
-  width: 2.2rem;
-  overflow: hidden;
-}
-.ax-gutter-xxl {
-  width: 2.8rem;
-  overflow: hidden;
-}
-/*row break*/
-.ax-break-xxs {
-  height: 0.4rem;
-  overflow: hidden;
-}
-.ax-break-xs {
-  height: 0.8rem;
-  overflow: hidden;
-}
-.ax-break-sm {
-  height: 1rem;
-  overflow: hidden;
-}
-.ax-break,
-.ax-break-md {
-  height: 1.4rem;
-  overflow: hidden;
-}
-.ax-break-lg {
-  height: 1.8rem;
-  overflow: hidden;
-}
-.ax-break-xl {
-  height: 2.2rem;
-  overflow: hidden;
-}
-.ax-break-xxl {
-  height: 2.8rem;
-  overflow: hidden;
-}
-/*line break*/
-.ax-gutter-line {
-  height: 100%;
-  width: 1px;
-  background-color: #ebebeb;
-}
-.ax-border {
-  border: 1px solid #ebebeb;
-}
-.ax-break-line {
-  height: 1px;
-  overflow: hidden;
-  background-color: #ebebeb;
-}
-.ax-break-text {
-  display: flex;
-  flex-wrap: nowrap;
-  box-sizing: border-box;
-  line-height: calc(2.8rem + 0.1rem);
-}
-.ax-break-text .ax-left,
-.ax-break-text .ax-right {
-  flex: auto;
-  height: 1px;
-  overflow: hidden;
-  background-color: #ebebeb;
-  margin-top: calc(2.8rem / 2);
-}
-.ax-break-text span {
-  color: #b3b3b3;
-  margin: auto 1.4rem;
-}
-.ax-break-text.ax-align-left .ax-left {
-  -webkit-box-flex: 0;
-  -moz-box-flex: 0;
-  -ms-flex: 0;
-  box-flex: 0;
-  width: calc(3.8rem);
-}
-.ax-break-text.ax-align-right .ax-right {
-  -webkit-box-flex: 0;
-  -moz-box-flex: 0;
-  -ms-flex: 0;
-  box-flex: 0;
-  width: calc(3.8rem);
-}
-/*headline*/
-.ax-headline {
-  text-align: center;
-  margin: calc(1.4rem*2) auto;
-  position: relative;
-}
-.ax-headline .ax-body {
-  font-size: 2.2rem;
-  line-height: 2.2rem;
-}
-.ax-headline .ax-title {
-  color: #333333;
-  position: relative;
-}
-.ax-headline .ax-title:before {
-  content: '';
-  width: 2.2rem;
-  height: 0.2rem;
-  background-color: #333333;
-  overflow: hidden;
-  position: absolute;
-  left: calc(-1.2rem - 2.2rem);
-  top: 1.1rem;
-}
-.ax-headline .ax-title:after {
-  content: '';
-  width: 2.2rem;
-  height: 0.2rem;
-  background-color: #333333;
-  overflow: hidden;
-  position: absolute;
-  right: calc(-1.2rem - 2.2rem);
-  top: calc(2.2rem / 2 + 0.1rem);
-}
-.ax-headline .ax-adorn {
-  font-size: 1.2rem;
-  color: #b3b3b3;
-  line-height: 1.8rem;
-  margin-bottom: 1rem;
-}
-.ax-headline .ax-des {
-  font-size: 1.4rem;
-  color: #666666;
-  line-height: 1.8rem;
-  margin-top: 1rem;
-}
-.ax-headline.ax-align-left .ax-title:before,
-.ax-headline.ax-align-left .ax-title:after,
-.ax-headline.ax-align-right .ax-title:before,
-.ax-headline.ax-align-right .ax-title:after {
-  display: none;
-}
-.ax-headline.ax-align-left {
-  padding-left: 1.4rem;
-}
-.ax-headline.ax-align-left:before {
-  content: '';
-  width: 0.3rem;
-  height: 100%;
-  background-color: #333333;
-  overflow: hidden;
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-headline.ax-align-right {
-  padding-right: 1.4rem;
-}
-.ax-headline.ax-align-right:after {
-  content: '';
-  width: 0.3rem;
-  height: 100%;
-  background-color: #333333;
-  overflow: hidden;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-headline.ax-sm .ax-body {
-  font-size: 1.8rem;
-  line-height: 1.8rem;
-}
-.ax-headline.ax-sm .ax-title:before,
-.ax-headline.ax-sm .ax-title:after {
-  width: 1.8rem;
-  top: calc(1.8rem / 2 + 0.1rem);
-}
-.ax-headline.ax-sm .ax-title:before {
-  left: calc(-0.8rem - 1.8rem);
-}
-.ax-headline.ax-sm .ax-title:after {
-  right: calc(-0.8rem - 1.8rem);
-}
-.ax-headline.ax-lg .ax-body {
-  font-size: calc(2.8rem + 0.4rem);
-  line-height: calc(2.8rem + 0.4rem);
-}
-.ax-headline.ax-lg .ax-title:before,
-.ax-headline.ax-lg .ax-title:after {
-  width: 2.8rem;
-  top: calc((2.8rem + 0.4rem) / 2 + 0.1rem);
-}
-.ax-headline.ax-lg .ax-title:before {
-  left: calc(-1.4rem - 2.8rem);
-}
-.ax-headline.ax-lg .ax-title:after {
-  right: calc(-1.4rem - 2.8rem);
-}
-.ax-headline.ax-primary .ax-title {
-  color: #198cff;
-}
-.ax-headline.ax-primary .ax-title:before,
-.ax-headline.ax-primary .ax-title:after {
-  background-color: #d7e7f5;
-}
-.ax-headline.ax-secondary .ax-title {
-  color: #475b66;
-}
-.ax-headline.ax-secondary .ax-title:before,
-.ax-headline.ax-secondary .ax-title:after {
-  background-color: #dfe3e5;
-}
-.ax-headline.ax-success .ax-title {
-  color: #41a358;
-}
-.ax-headline.ax-success .ax-title:before,
-.ax-headline.ax-success .ax-title:after {
-  background-color: #e1f0e5;
-}
-.ax-headline.ax-danger .ax-title {
-  color: #dc3545;
-}
-.ax-headline.ax-danger .ax-title:before,
-.ax-headline.ax-danger .ax-title:after {
-  background-color: #f0dddf;
-}
-.ax-headline.ax-warning .ax-title {
-  color: #ffc107;
-}
-.ax-headline.ax-warning .ax-title:before,
-.ax-headline.ax-warning .ax-title:after {
-  background-color: #f5edd7;
-}
-.ax-headline.ax-info .ax-title {
-  color: #14ccc9;
-}
-.ax-headline.ax-info .ax-title:before,
-.ax-headline.ax-info .ax-title:after {
-  background-color: #cef0f0;
-}
-.ax-headline.ax-ad .ax-title {
-  color: #ff8400;
-}
-.ax-headline.ax-ad .ax-title:before,
-.ax-headline.ax-ad .ax-title:after {
-  background-color: #f5e7d7;
-}
-.ax-headline.ax-align-left .ax-title,
-.ax-headline.ax-align-right .ax-title {
-  color: #333333;
-}
-.ax-headline.ax-align-left.ax-primary:before,
-.ax-headline.ax-align-right.ax-primary:after {
-  background-color: #198cff;
-}
-.ax-headline.ax-align-left.ax-secondary:before,
-.ax-headline.ax-align-right.ax-secondary:after {
-  background-color: #475b66;
-}
-.ax-headline.ax-align-left.ax-success:before,
-.ax-headline.ax-align-right.ax-success:after {
-  background-color: #41a358;
-}
-.ax-headline.ax-align-left.ax-danger:before,
-.ax-headline.ax-align-right.ax-danger:after {
-  background-color: #dc3545;
-}
-.ax-headline.ax-align-left.ax-warning:before,
-.ax-headline.ax-align-right.ax-warning:after {
-  background-color: #ffc107;
-}
-.ax-headline.ax-align-left.ax-info:before,
-.ax-headline.ax-align-right.ax-info:after {
-  background-color: #14ccc9;
-}
-.ax-headline.ax-align-left.ax-ad:before,
-.ax-headline.ax-align-right.ax-ad:after {
-  background-color: #ff8400;
-}
-.ax-headline.ax-style-simple .ax-title:before,
-.ax-headline.ax-style-simple .ax-title:after {
-  display: none;
-}
-.ax-headline.ax-style-dash .ax-title:before,
-.ax-headline.ax-style-dash .ax-title:after {
-  display: none;
-}
-.ax-headline.ax-style-dash {
-  margin-bottom: calc(1.4rem*4);
-}
-.ax-headline.ax-style-dash:after {
-  content: '';
-  width: 2.2rem;
-  height: 0.2rem;
-  background-color: #333333;
-  overflow: hidden;
-  transform: translate(-50%, 0);
-  position: absolute;
-  left: 50%;
-  bottom: calc(-1.4rem*2);
-}
-.ax-headline.ax-style-underline .ax-title:after {
-  display: none;
-}
-.ax-headline.ax-style-underline .ax-title:before {
-  width: 100%;
-  height: 0.6rem;
-  background-color: #ffc107;
-  right: auto;
-  left: 0;
-  top: auto;
-  bottom: -0.2rem;
-}
-.ax-headline.ax-style-underline .ax-title i {
-  position: relative;
-}
-.ax-headline.ax-style-tab {
-  text-align: left;
-  line-height: 3.8rem;
-}
-.ax-headline.ax-style-tab .ax-body {
-  line-height: 3.8rem;
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-}
-.ax-headline.ax-style-tab .ax-title:before,
-.ax-headline.ax-style-tab .ax-title:after {
-  display: none;
-}
-.ax-headline.ax-style-tab .ax-more {
-  margin-left: calc(1.4rem*2);
-}
-.ax-headline.ax-style-tab .ax-des {
-  margin-top: 0;
-}
-.ax-headline.ax-style-tab .ax-body .ax-des {
-  margin-left: 1.4rem;
-}
-.ax-headline.ax-style-tab .ax-body .ax-badge,
-.ax-headline.ax-style-tab .ax-body .ax-dot {
-  margin-left: 0.8rem;
-}
-/*align*/
-.ax-align-left {
-  text-align: left !important;
-}
-.ax-align-right {
-  text-align: right !important;
-}
-.ax-align-center {
-  text-align: center !important;
-}
-.ax-align-left-center {
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-}
-.ax-align-right-center {
-  display: flex;
-  justify-content: flex-end;
-  align-items: center;
-}
-.ax-align-top-center {
-  display: flex;
-  justify-content: center;
-  align-items: flex-start;
-}
-.ax-align-origin,
-.ax-align-center-center {
-  display: flex;
-  align-items: center;
-  justify-content: center;
-}
-.ax-align-bottom-center {
-  display: flex;
-  justify-content: center;
-  align-items: flex-end;
-}
-.ax-align-top-left {
-  display: flex;
-  justify-content: flex-start;
-  align-items: flex-start;
-}
-.ax-align-top-center {
-  display: flex;
-  justify-content: center;
-  align-items: flex-start;
-}
-.ax-align-top-right {
-  display: flex;
-  justify-content: flex-end;
-  align-items: flex-start;
-}
-.ax-align-bottom-left {
-  display: flex;
-  justify-content: flex-start;
-  align-items: flex-end;
-}
-.ax-align-bottom-center {
-  display: flex;
-  justify-content: center;
-  align-items: flex-end;
-}
-.ax-align-bottom-right {
-  display: flex;
-  justify-content: flex-end;
-  align-items: flex-end;
-}
-.ax-float-left {
-  float: left;
-}
-.ax-float-right {
-  float: right;
-}
-/*transition 鍔ㄧ敾*/
-.ax-deg360 {
-  transform: rotate(360deg);
-}
-.ax-deg180 {
-  transform: rotate(-180deg);
-}
-/*animation 鍔ㄧ敾*/
-@keyframes rotate360 {
-  0% {
-    transform: rotate(0deg);
-  }
-  100% {
-    transform: rotate(360deg);
-  }
-}
-.ax-rotate360 {
-  animation-timing-function: linear;
-  animation-duration: 2000ms;
-  animation-fill-mode: both;
-  animation-name: rotate360;
-}
-@keyframes rotate180 {
-  0% {
-    transform: rotate(0deg);
-  }
-  100% {
-    transform: rotate(-180deg);
-  }
-}
-.ax-rotate180 {
-  animation-duration: 500ms;
-  animation-fill-mode: both;
-  animation-name: rotate180;
-}
-@keyframes rotate90 {
-  0% {
-    transform: rotate(0deg);
-  }
-  100% {
-    transform: rotate(-90deg);
-  }
-}
-.ax-rotate90 {
-  animation-duration: 200ms;
-  animation-fill-mode: both;
-  animation-name: rotate90;
-}
-@keyframes rotate45 {
-  0% {
-    transform: rotate(0deg);
-  }
-  100% {
-    transform: rotate(-45deg);
-  }
-}
-.ax-rotate45 {
-  animation-duration: 200ms;
-  animation-fill-mode: both;
-  animation-name: rotate45;
-}
-@keyframes bounce {
-  from,
-  20%,
-  53%,
-  to {
-    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-    -webkit-transform: translate3d(0, 0, 0);
-    transform: translate3d(0, 0, 0);
-  }
-  40%,
-  43% {
-    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
-    transform: translate3d(0, -30px, 0) scaleY(1.1);
-  }
-  70% {
-    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
-    transform: translate3d(0, -15px, 0) scaleY(1.05);
-  }
-  80% {
-    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
-    transform: translate3d(0, 0, 0) scaleY(0.95);
-  }
-  90% {
-    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
-    transform: translate3d(0, -4px, 0) scaleY(1.02);
-  }
-}
-.ax-bounceShow {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  transform-origin: center bottom;
-  animation-name: bounce;
-}
-@keyframes flash {
-  from,
-  50%,
-  to {
-    opacity: 1;
-  }
-  25%,
-  75% {
-    opacity: 0;
-  }
-}
-.ax-flashShow {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flash;
-}
-@keyframes pulse {
-  from,
-  50%,
-  to {
-    -webkit-transform: scale3d(1, 1, 1);
-    transform: scale3d(1, 1, 1);
-  }
-  25%,
-  75% {
-    -webkit-transform: scale3d(1.05, 1.05, 1.05);
-    transform: scale3d(1.05, 1.05, 1.05);
-  }
-}
-.ax-pulseShow {
-  animation-duration: 300ms;
-  animation-name: pulse;
-  animation-timing-function: ease-in-out;
-}
-@keyframes shake {
-  from,
-  to {
-    -webkit-transform: translate3d(0, 0, 0);
-    transform: translate3d(0, 0, 0);
-  }
-  10%,
-  30%,
-  50%,
-  70%,
-  90% {
-    -webkit-transform: translate3d(-10px, 0, 0);
-    transform: translate3d(-10px, 0, 0);
-  }
-  20%,
-  40%,
-  60%,
-  80% {
-    -webkit-transform: translate3d(10px, 0, 0);
-    transform: translate3d(10px, 0, 0);
-  }
-}
-.ax-shakeShow {
-  animation-duration: 300ms;
-  animation-name: shake;
-}
-@keyframes fadeIn {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 0;
-  }
-  to {
-    opacity: 1;
-  }
-}
-.ax-fadeIn {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeIn;
-}
-@keyframes fadeOut {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 1;
-  }
-  to {
-    opacity: 0;
-  }
-}
-.ax-fadeOut {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeIn;
-}
-@keyframes fadeInUp {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 0;
-    -webkit-transform: translate3d(0, 20%, 0);
-    transform: translate3d(0, 20%, 0);
-  }
-  to {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-fadeInUp {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeInUp;
-}
-@keyframes fadeOutUp {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-  to {
-    opacity: 0;
-    -webkit-transform: translate3d(0, 20%, 0);
-    transform: translate3d(0, 20%, 0);
-  }
-}
-.ax-fadeOutUp {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeOutUp;
-}
-@keyframes fadeInDown {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 0;
-    -webkit-transform: translate3d(0, -20%, 0);
-    transform: translate3d(0, -20%, 0);
-  }
-  to {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-fadeInDown {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeInDown;
-}
-@keyframes fadeOutDown {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 1;
-  }
-  to {
-    opacity: 0;
-    -webkit-transform: translate3d(0, -20%, 0);
-    transform: translate3d(0, -20%, 0);
-  }
-}
-.ax-fadeOutDown {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeOutDown;
-}
-@keyframes fadeInLeft {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 0;
-    -webkit-transform: translate3d(20%, 0, 0);
-    transform: translate3d(20%, 0, 0);
-  }
-  to {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-fadeInLeft {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeInLeft;
-}
-@keyframes fadeOutLeft {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 1;
-  }
-  to {
-    opacity: 0;
-    -webkit-transform: translate3d(20%, 0, 0);
-    transform: translate3d(20%, 0, 0);
-  }
-}
-.ax-fadeOutLeft {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeOutLeft;
-}
-@keyframes fadeInRight {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 0;
-    -webkit-transform: translate3d(-20%, 0, 0);
-    transform: translate3d(-20%, 0, 0);
-  }
-  to {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-fadeInRight {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeInRight;
-}
-@keyframes fadeOutRight {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  from {
-    opacity: 1;
-  }
-  to {
-    opacity: 0;
-    -webkit-transform: translate3d(-20%, 0, 0);
-    transform: translate3d(-20%, 0, 0);
-  }
-}
-.ax-fadeOutRight {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: fadeOutRight;
-}
-@keyframes springIn {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    transform: scale(0.7);
-    opacity: 0;
-  }
-  45% {
-    transform: scale(1.02);
-    opacity: 1;
-  }
-  80% {
-    transform: scale(0.98);
-  }
-  100% {
-    transform: scale(1);
-  }
-}
-.ax-springIn {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: springIn;
-}
-@keyframes springOut {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    transform: scale(1);
-  }
-  20% {
-    transform: scale(0.98);
-  }
-  55% {
-    transform: scale(1.02);
-    opacity: 1;
-  }
-  100% {
-    transform: scale(0.7);
-    opacity: 0;
-  }
-}
-.ax-springOut {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: springOut;
-}
-@keyframes scaleIn {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    transform: scale(0.5);
-    opacity: 0;
-  }
-  100% {
-    transform: scale(1);
-    opacity: 1;
-  }
-}
-.ax-scaleIn {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: scaleIn;
-}
-@keyframes scaleOut {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    transform: scale(1);
-    opacity: 1;
-  }
-  100% {
-    transform: scale(0.5);
-    opacity: 0;
-  }
-}
-.ax-scaleOut {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: scaleOut;
-}
-@keyframes flyInLeft {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 0;
-    -webkit-transform: translate3d(-50%, 50%, 0) rotate(-30deg);
-    transform: translate3d(-50%, 50%, 0) rotate(-30deg);
-  }
-  100% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-flyInLeft {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyInLeft;
-}
-@keyframes flyOutLeft {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-  100% {
-    opacity: 0;
-    -webkit-transform: translate3d(-50%, 50%, 0) rotate(-30deg);
-    transform: translate3d(-50%, 50%, 0) rotate(-30deg);
-  }
-}
-.ax-flyOutLeft {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyOutLeft;
-}
-@keyframes flyInRight {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 0;
-    -webkit-transform: translate3d(50%, 50%, 0) rotate(30deg);
-    transform: translate3d(50%, 50%, 0) rotate(30deg);
-  }
-  100% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-flyInRight {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyInRight;
-}
-@keyframes flyOutRight {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-  100% {
-    opacity: 0;
-    -webkit-transform: translate3d(50%, 50%, 0) rotate(30deg);
-    transform: translate3d(50%, 50%, 0) rotate(30deg);
-  }
-}
-.ax-flyOutRight {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyOutRight;
-}
-@keyframes flyInUp {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 0;
-    -webkit-transform: translate3d(0%, -100%, 0) rotate(-30deg);
-    transform: translate3d(0%, -100%, 0) rotate(-30deg);
-  }
-  100% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-flyInUp {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyInUp;
-}
-@keyframes flyOutUp {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-  100% {
-    opacity: 0;
-    -webkit-transform: translate3d(0%, -100%, 0) rotate(-30deg);
-    transform: translate3d(0%, -100%, 0) rotate(-30deg);
-  }
-}
-.ax-flyOutUp {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyOutUp;
-}
-@keyframes flyInDown {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 0;
-    -webkit-transform: translate3d(0%, 100%, 0) rotate(30deg);
-    transform: translate3d(0%, 100%, 0) rotate(30deg);
-  }
-  100% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-}
-.ax-flyInDown {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyInDown;
-}
-@keyframes flyOutDown {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    opacity: 1;
-    -webkit-transform: none;
-    transform: none;
-  }
-  100% {
-    opacity: 0;
-    -webkit-transform: translate3d(0%, 100%, 0) rotate(30deg);
-    transform: translate3d(0%, 100%, 0) rotate(30deg);
-  }
-}
-.ax-flyOutDown {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: flyOutDown;
-}
-@keyframes rotateIn {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    transform: scale(0.5) rotate(180deg);
-    opacity: 0;
-  }
-  100% {
-    transform: scale(1) rotate(0deg);
-    opacity: 1;
-  }
-}
-.ax-rotateIn {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: rotateIn;
-}
-@keyframes rotateOut {
-  from,
-  to {
-    animation-timing-function: cubic-bezier(0.18, 0.64, 0.56, 1);
-  }
-  0% {
-    transform: scale(1) rotate(0deg);
-    opacity: 1;
-  }
-  100% {
-    transform: scale(0.5) rotate(180deg);
-    opacity: 0;
-  }
-}
-.ax-rotateOut {
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  animation-name: rotateOut;
-}
-[class*="In"].ax-slowest,
-[class*="Out"].ax-slowest,
-[class*="Show"].ax-slowest,
-[class*="rotate"].ax-slowest {
-  animation-duration: 500ms;
-}
-[class*="In"].ax-slower,
-[class*="Out"].ax-slower,
-[class*="Show"].ax-slower,
-[class*="rotate"].ax-slower {
-  animation-duration: 400ms;
-}
-[class*="In"].ax-slow,
-[class*="Out"].ax-slow,
-[class*="Show"].ax-slow,
-[class*="rotate"].ax-slow {
-  animation-duration: 300ms;
-}
-[class*="In"].ax-normal,
-[class*="Out"].ax-normal,
-[class*="Show"].ax-normal,
-[class*="rotate"].ax-normal {
-  animation-duration: 200ms;
-}
-[class*="In"].ax-fast,
-[class*="Out"].ax-fast,
-[class*="rotate"].ax-fast {
-  animation-duration: 100ms;
-}
-/*width height 100%*/
-.ax-full-width {
-  width: 100%;
-}
-.ax-full-height {
-  height: 100%;
-}
-.ax-full-all {
-  width: 100%;
-  height: 100%;
-  overflow: hidden;
-  box-sizing: border-box;
-}
-.ax-full-main {
-  box-sizing: border-box;
-  padding: 1.4rem;
-  height: 100%;
-  width: 100%;
-  overflow: hidden;
-  position: absolute;
-  top: 0;
-  left: 0;
-}
-/*grid layout*/
-.ax-grid {
-  width: 100%;
-  box-sizing: border-box;
-  margin: 0 auto;
-}
-.ax-grid-inner {
-  box-sizing: border-box;
-  zoom: 1;
-  margin: auto 0;
-}
-.ax-grid-inner:after {
-  content: ".";
-  display: block;
-  height: 0;
-  clear: both;
-  visibility: hidden;
-}
-.ax-grid-block {
-  float: left;
-  padding: 0;
-  box-sizing: border-box;
-}
-.ax-grid.ax-space-0 {
-  margin: 0 auto;
-}
-.ax-grid.ax-space-0 .ax-grid-inner {
-  margin: auto 0;
-}
-.ax-grid.ax-space-0 .ax-grid-block {
-  padding: 0;
-}
-.ax-grid.ax-space-xxs {
-  margin: calc(-0.4rem/2) auto;
-}
-.ax-grid.ax-space-xxs .ax-grid-inner {
-  margin: auto calc(-0.4rem/2);
-}
-.ax-grid.ax-space-xxs .ax-grid-block {
-  padding: calc(0.4rem/2) calc(0.4rem/2);
-}
-.ax-grid.ax-space-xs {
-  margin: calc(-0.8rem/2) auto;
-}
-.ax-grid.ax-space-xs .ax-grid-inner {
-  margin: auto calc(-0.8rem/2);
-}
-.ax-grid.ax-space-xs .ax-grid-block {
-  padding: calc(0.8rem/2) calc(0.8rem/2);
-}
-.ax-grid.ax-space-sm {
-  margin: calc(-1rem/2) auto;
-}
-.ax-grid.ax-space-sm .ax-grid-inner {
-  margin: auto calc(-1.2rem/2);
-}
-.ax-grid.ax-space-sm .ax-grid-block {
-  padding: calc(1rem/2) calc(1.2rem/2);
-}
-.ax-grid.ax-space-md,
-.ax-grid.ax-space {
-  margin: calc(-1.4rem/2) auto;
-}
-.ax-grid.ax-space-md .ax-grid-inner,
-.ax-grid.ax-space .ax-grid-inner {
-  margin: auto calc(-1.4rem/2);
-}
-.ax-grid.ax-space-md .ax-grid-block,
-.ax-grid.ax-space .ax-grid-block {
-  padding: calc(1.4rem/2) calc(1.4rem/2);
-}
-.ax-grid.ax-space-lg {
-  margin: calc(-1.8rem/2) auto;
-}
-.ax-grid.ax-space-lg .ax-grid-inner {
-  margin: auto calc(-1.6rem/2);
-}
-.ax-grid.ax-space-lg .ax-grid-block {
-  padding: calc(1.8rem/2) calc(1.6rem/2);
-}
-.ax-grid.ax-space-xl {
-  margin: calc(-2.2rem/2) auto;
-}
-.ax-grid.ax-space-xl .ax-grid-inner {
-  margin: auto calc(-2.2rem/2);
-}
-.ax-grid.ax-space-xl .ax-grid-block {
-  padding: calc(2.2rem/2) calc(2.2rem/2);
-}
-.ax-grid.ax-space-xxl {
-  margin: calc(-2.8rem/2) auto;
-}
-.ax-grid.ax-space-xxl .ax-grid-inner {
-  margin: auto calc(-2.8rem/2);
-}
-.ax-grid.ax-space-xxl .ax-grid-block {
-  padding: calc(2.8rem/2) calc(2.8rem/2);
-}
-.ax-grid-table {
-  width: 100%;
-  overflow: hidden;
-  box-sizing: border-box;
-  zoom: 1;
-  border-left: 1px solid #ebebeb;
-  border-top: 1px solid #ebebeb;
-}
-.ax-grid-table .ax-grid-block {
-  padding: 0;
-  border-right: 1px solid #ebebeb;
-  border-bottom: 1px solid #ebebeb;
-}
-.ax-grid-table:after {
-  content: ".";
-  display: block;
-  height: 0;
-  clear: both;
-  visibility: hidden;
-}
-/*flex layout*/
-.ax-flex-row,
-.ax-flex-col {
-  display: flex;
-  flex-wrap: nowrap;
-  box-sizing: border-box;
-}
-.ax-flex-row {
-  flex-direction: row;
-  width: 100%;
-}
-.ax-flex-row > [class*='ax-flex-block'] {
-  width: 0;
-}
-.ax-flex-col {
-  flex-direction: column;
-  height: 100%;
-}
-.ax-flex-col > [class*='ax-flex-block'] {
-  height: 0;
-}
-.ax-flex-block,
-.ax-flex-block-1 {
-  flex: auto;
-  position: relative;
-}
-.ax-flex-block-2 {
-  flex: 2 1 auto;
-  position: relative;
-}
-.ax-flex-block-3 {
-  flex: 3 1 auto;
-  position: relative;
-}
-.ax-flex-block-4 {
-  flex: 4 1 auto;
-  position: relative;
-}
-.ax-flex-block-5 {
-  flex: 5 1 auto;
-  position: relative;
-}
-.ax-flex-block-6 {
-  flex: 6 1 auto;
-  position: relative;
-}
-@-moz-document url-prefix() {
-  .ax-flex-block {
-    min-width: 0;
-    /*hack firefox ellipsis*/
-  }
-}
-.ax-noflex-block {
-  -webkit-box-flex: 0;
-  -moz-box-flex: 0;
-  box-flex: 0;
-  flex: none;
-  position: relative;
-}
-/*grid layout*/
-.ax-row {
-  box-sizing: border-box;
-  display: flex;
-  flex-wrap: nowrap;
-  flex-direction: row;
-  width: 100%;
-  zoom: 1;
-}
-.ax-row > [class*='ax-flex-block'] {
-  width: 0;
-}
-.ax-col {
-  display: block;
-  flex: auto;
-  width: 0;
-  position: relative;
-}
-.ax-col > [class*='ax-flex-block'] {
-  height: 0;
-}
-.ax-col-1 {
-  width: calc((100%/24)*1);
-}
-_:-ms-lang(x),
-.ax-col-1 {
-  width: 4.166666%;
-}
-.ax-col-2 {
-  width: calc((100%/24)*2);
-}
-.ax-col-3 {
-  width: calc((100%/24)*3);
-}
-_:-ms-lang(x),
-.ax-col-3 {
-  width: 12.5%;
-}
-.ax-col-4 {
-  width: calc((100%/24)*4);
-}
-_:-ms-lang(x),
-.ax-col-4 {
-  width: 16.66666%;
-}
-.ax-col-5 {
-  width: calc((100%/24)*5);
-}
-.ax-col-6 {
-  width: calc((100%/24)*6);
-}
-.ax-col-7 {
-  width: calc((100%/24)*7);
-}
-_:-ms-lang(x),
-.ax-col-7 {
-  width: 29.166666%;
-}
-.ax-col-8 {
-  width: calc((100%/24)*8);
-}
-.ax-col-9 {
-  width: calc((100%/24)*9);
-}
-.ax-col-10 {
-  width: calc((100%/24)*10);
-}
-.ax-col-11 {
-  width: calc((100%/24)*11);
-}
-.ax-col-12 {
-  width: calc((100%/24)*12);
-}
-.ax-col-13 {
-  width: calc((100%/24)*13);
-}
-.ax-col-14 {
-  width: calc((100%/24)*14);
-}
-.ax-col-15 {
-  width: calc((100%/24)*15);
-}
-.ax-col-16 {
-  width: calc((100%/24)*16);
-}
-.ax-col-17 {
-  width: calc((100%/24)*17);
-}
-.ax-col-18 {
-  width: calc((100%/24)*18);
-}
-.ax-col-19 {
-  width: calc((100%/24)*19);
-}
-.ax-col-20 {
-  width: calc((100%/24)*20);
-}
-.ax-col-21 {
-  width: calc((100%/24)*21);
-}
-.ax-col-22 {
-  width: calc((100%/24)*22);
-}
-.ax-col-23 {
-  width: calc((100%/24)*23);
-}
-.ax-col-24 {
-  width: calc((100%/24)*24);
-}
-.ax-col-1-avg {
-  width: calc(100%/1);
-}
-.ax-col-2-avg {
-  width: calc(100%/2);
-}
-.ax-col-3-avg {
-  width: calc(100%/3);
-}
-.ax-col-4-avg {
-  width: calc(100%/4);
-}
-.ax-col-5-avg {
-  width: calc(100%/5);
-}
-.ax-col-6-avg {
-  width: calc(100%/6);
-}
-_:-ms-lang(x),
-.ax-col-6-avg {
-  width: 16.66666%;
-}
-.ax-col-7-avg {
-  width: calc(100%/7);
-}
-_:-ms-lang(x),
-.ax-col-7-avg {
-  width: 14.2857%;
-}
-.ax-col-8-avg {
-  width: calc(100%/8);
-}
-_:-ms-fullscreen,
-:root .ax-col-8-avg {
-  width: 12.4999%;
-}
-.ax-col-9-avg {
-  width: calc(100%/9);
-}
-_:-ms-fullscreen,
-:root .ax-col-9-avg {
-  width: 11.111%;
-}
-.ax-col-10-avg {
-  width: calc(100%/10);
-}
-.ax-col-11-avg {
-  width: calc(100%/11);
-}
-_:-ms-fullscreen,
-:root .ax-col-11-avg {
-  width: 9.090909%;
-}
-.ax-col-12-avg {
-  width: calc(100%/12);
-}
-/*color background*/
-.ax-color-primary,
-.ax-color-primary [class*="font"],
-.ax-color-primary svg {
-  color: #198cff;
-  fill: #198cff;
-}
-.ax-color-secondary,
-.ax-color-secondary [class*="font"],
-.ax-color-secondary svg {
-  color: #475b66;
-  fill: #475b66;
-}
-.ax-color-success,
-.ax-color-success [class*="font"],
-.ax-color-success svg {
-  color: #41a358;
-  fill: #41a358;
-}
-.ax-color-danger,
-.ax-color-danger [class*="font"],
-.ax-color-danger svg {
-  color: #dc3545;
-  fill: #dc3545;
-}
-.ax-color-warning,
-.ax-color-warning [class*="font"],
-.ax-color-warning svg {
-  color: #ffc107;
-  fill: #ffc107;
-}
-.ax-color-info,
-.ax-color-info [class*="font"],
-.ax-color-info svg {
-  color: #14ccc9;
-  fill: #14ccc9;
-}
-.ax-color-ad,
-.ax-color-ad [class*="font"],
-.ax-color-ad svg {
-  color: #ff8400;
-  fill: #ff8400;
-}
-.ax-color-title,
-.ax-color-title [class*="font"],
-.ax-color-title svg {
-  color: #333333;
-  fill: #333333;
-}
-.ax-color-des,
-.ax-color-des [class*="font"],
-.ax-color-des svg {
-  color: #666666;
-  fill: #666666;
-}
-.ax-color-ignore,
-.ax-color-ignore [class*="font"],
-.ax-color-ignore svg {
-  color: #b3b3b3;
-  fill: #b3b3b3;
-}
-.ax-color-forbid,
-.ax-color-forbid [class*="font"],
-.ax-color-forbid svg {
-  color: #b3b3b3;
-  fill: #b3b3b3;
-  cursor: not-allowed;
-}
-.ax-color-white,
-.ax-color-white [class*="font"],
-.ax-color-white svg {
-  color: #fff;
-  fill: #fff;
-}
-.ax-bg-primary,
-.ax-avatar.ax-bg-primary {
-  background-color: #198cff;
-  color: #fff;
-}
-.ax-bg-secondary,
-.ax-avatar.ax-bg-secondary {
-  background-color: #475b66;
-  color: #fff;
-}
-.ax-bg-success,
-.ax-avatar.ax-bg-success {
-  background-color: #41a358;
-  color: #fff;
-}
-.ax-bg-danger,
-.ax-avatar.ax-bg-danger {
-  background-color: #dc3545;
-  color: #fff;
-}
-.ax-bg-warning,
-.ax-avatar.ax-bg-warning {
-  background-color: #ffc107;
-  color: #333333;
-}
-.ax-bg-info,
-.ax-avatar.ax-bg-info {
-  background-color: #14ccc9;
-  color: #fff;
-}
-.ax-bg-ad,
-.ax-avatar.ax-bg-ad {
-  background-color: #ff8400;
-  color: #fff;
-}
-.ax-bg-title,
-.ax-avatar.ax-bg-title {
-  background-color: #333333;
-  color: #fff;
-}
-.ax-bg-des,
-.ax-avatar.ax-bg-des {
-  background-color: #666666;
-  color: #fff;
-}
-.ax-bg-ignore,
-.ax-avatar.ax-bg-ignore {
-  background-color: #b3b3b3;
-}
-.ax-bg-white,
-.ax-avatar.ax-bg-white {
-  background-color: #fff;
-}
-.ax-bglit-primary,
-.ax-avatar.ax-bglit-primary {
-  background-color: #f0f7ff;
-  color: #0b72da;
-}
-.ax-bglit-secondary,
-.ax-avatar.ax-bglit-secondary {
-  background-color: #f5f8fa;
-  color: #383e42;
-}
-.ax-bglit-success,
-.ax-avatar.ax-bglit-success {
-  background-color: #edfaf0;
-  color: #3b7649;
-}
-.ax-bglit-danger,
-.ax-avatar.ax-bglit-danger {
-  background-color: #fff0f1;
-  color: #b22c39;
-}
-.ax-bglit-warning,
-.ax-avatar.ax-bglit-warning {
-  background-color: #fffaeb;
-  color: #333333;
-}
-.ax-bglit-info,
-.ax-avatar.ax-bglit-info {
-  background-color: #ebfaf9;
-  color: #189593;
-}
-.ax-bglit-ad,
-.ax-avatar.ax-bglit-ad {
-  background-color: #fff5eb;
-  color: #c2690a;
-}
-.ax-bglit-title,
-.ax-avatar.ax-bglit-title {
-  background-color: #f5f5f5;
-  color: #333333;
-}
-/*gradient bg*/
-.ax-bg-primary.ax-gradient-0 {
-  background: linear-gradient(0deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient,
-.ax-gradient,
-.ax-bg-primary.ax-gradient-45 {
-  background: linear-gradient(45deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-90 {
-  background: linear-gradient(90deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-135 {
-  background: linear-gradient(135deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-180 {
-  background: linear-gradient(180deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-225 {
-  background: linear-gradient(225deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-270 {
-  background: linear-gradient(270deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-315 {
-  background: linear-gradient(315deg, #198cff, #6619ff);
-}
-.ax-bg-primary.ax-gradient-360 {
-  background: linear-gradient(360deg, #198cff, #6619ff);
-}
-.ax-bg-secondary.ax-gradient-0 {
-  background: linear-gradient(0deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient,
-.ax-bg-secondary.ax-gradient-45 {
-  background: linear-gradient(45deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-90 {
-  background: linear-gradient(90deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-135 {
-  background: linear-gradient(135deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-180 {
-  background: linear-gradient(180deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-225 {
-  background: linear-gradient(225deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-270 {
-  background: linear-gradient(270deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-315 {
-  background: linear-gradient(315deg, #475b66, #63a0be);
-}
-.ax-bg-secondary.ax-gradient-360 {
-  background: linear-gradient(360deg, #475b66, #63a0be);
-}
-.ax-bg-success.ax-gradient-0 {
-  background: linear-gradient(0deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient,
-.ax-bg-success.ax-gradient-45 {
-  background: linear-gradient(45deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-90 {
-  background: linear-gradient(90deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-135 {
-  background: linear-gradient(135deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-180 {
-  background: linear-gradient(180deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-225 {
-  background: linear-gradient(225deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-270 {
-  background: linear-gradient(270deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-315 {
-  background: linear-gradient(315deg, #41a358, #b2d956);
-}
-.ax-bg-success.ax-gradient-360 {
-  background: linear-gradient(360deg, #41a358, #b2d956);
-}
-.ax-bg-danger.ax-gradient-0 {
-  background: linear-gradient(0deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient,
-.ax-bg-danger.ax-gradient-45 {
-  background: linear-gradient(45deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-90 {
-  background: linear-gradient(90deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-135 {
-  background: linear-gradient(135deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-180 {
-  background: linear-gradient(180deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-225 {
-  background: linear-gradient(225deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-270 {
-  background: linear-gradient(270deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-315 {
-  background: linear-gradient(315deg, #dc3545, #ffc000);
-}
-.ax-bg-danger.ax-gradient-360 {
-  background: linear-gradient(360deg, #dc3545, #ffc000);
-}
-.ax-bg-warning.ax-gradient-0 {
-  background: linear-gradient(0deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient,
-.ax-bg-warning.ax-gradient-45 {
-  background: linear-gradient(45deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-90 {
-  background: linear-gradient(90deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-135 {
-  background: linear-gradient(135deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-180 {
-  background: linear-gradient(180deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-225 {
-  background: linear-gradient(225deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-270 {
-  background: linear-gradient(270deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-315 {
-  background: linear-gradient(315deg, #ffc107, #ffde7a);
-}
-.ax-bg-warning.ax-gradient-360 {
-  background: linear-gradient(360deg, #ffc107, #ffde7a);
-}
-.ax-bg-info.ax-gradient-0 {
-  background: linear-gradient(0deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient,
-.ax-bg-info.ax-gradient-45 {
-  background: linear-gradient(45deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-90 {
-  background: linear-gradient(90deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-135 {
-  background: linear-gradient(135deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-180 {
-  background: linear-gradient(180deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-225 {
-  background: linear-gradient(225deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-270 {
-  background: linear-gradient(270deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-315 {
-  background: linear-gradient(315deg, #14ccc9, #2c7be6);
-}
-.ax-bg-info.ax-gradient-360 {
-  background: linear-gradient(360deg, #14ccc9, #2c7be6);
-}
-.ax-bg-ad.ax-gradient-0 {
-  background: linear-gradient(0deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient,
-.ax-bg-ad.ax-gradient-45 {
-  background: linear-gradient(45deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-90 {
-  background: linear-gradient(90deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-135 {
-  background: linear-gradient(135deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-180 {
-  background: linear-gradient(180deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-225 {
-  background: linear-gradient(225deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-270 {
-  background: linear-gradient(270deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-315 {
-  background: linear-gradient(315deg, #ff8400, #ffdd23);
-}
-.ax-bg-ad.ax-gradient-360 {
-  background: linear-gradient(360deg, #ff8400, #ffdd23);
-}
-/*svg loading*/
-.ax-loading {
-  height: 2.8rem;
-  width: 2.8rem;
-  margin: auto;
-}
-.ax-loading svg {
-  transform-origin: center center;
-  animation: rotate360 2s linear infinite;
-  height: 100%;
-  width: 100%;
-}
-.ax-loading circle {
-  fill: none;
-  stroke-width: 0.2rem;
-  stroke-dasharray: 1, 200;
-  stroke-dashoffset: 0;
-  animation: loading-dash 1.5s ease-in-out infinite, loading-color 6s ease-in-out infinite;
-  stroke-linecap: round;
-}
-@keyframes loading-dash {
-  0% {
-    stroke-dasharray: 1, 200;
-    stroke-dashoffset: 0;
-  }
-  50% {
-    stroke-dasharray: 89, 200;
-    stroke-dashoffset: -3.5rem;
-  }
-  100% {
-    stroke-dasharray: 89, 200;
-    stroke-dashoffset: -12.4rem;
-  }
-}
-@keyframes loading-color {
-  100%,
-  0% {
-    stroke: #dc3545;
-  }
-  40% {
-    stroke: #198cff;
-  }
-  66% {
-    stroke: #ff8400;
-  }
-  80%,
-  90% {
-    stroke: #41a358;
-  }
-}
-.ax-loading i {
-  animation: rotate360 1s linear infinite;
-  background: transparent;
-  box-sizing: border-box;
-  border: 0.2rem solid rgba(25, 140, 255, 0.2);
-  border-bottom-color: #198cff;
-  border-radius: 50%;
-  height: 100%;
-  width: 100%;
-}
-.ax-loading.ax-white i {
-  border-color: rgba(255, 255, 255, 0.2);
-  border-bottom-color: #fff;
-}
-.ax-waiting {
-  position: relative;
-}
-.ax-waiting:after {
-  content: "";
-  position: absolute;
-  animation: wait 1s infinite steps(3, start);
-}
-@keyframes wait {
-  33.33% {
-    content: ".";
-  }
-  66.67% {
-    content: "..";
-  }
-  100% {
-    content: "...";
-  }
-}
-/*loading btn*/
-.ax-btn-loading {
-  width: 1.4rem;
-  height: 1.4rem;
-  margin-right: 0.4rem;
-  background-repeat: no-repeat;
-  background-position: center;
-  background-size: 1.4rem auto;
-  background-image: var(--load-svg);
-}
-.ax-btn-loading.ax-gif {
-  background-image: var(--load-gif);
-}
-.ax-btn-loading.ax-white,
-.ax-btn.ax-primary:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-seconday:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-warning:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-info:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-danger:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-suscess:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-ad:not(.ax-line) .ax-btn-loading,
-.ax-btn.ax-black:not(.ax-line) .ax-btn-loading {
-  background-image: var(--load-svg-w);
-}
-/*alert*/
-.ax-alert {
-  font-size: 1.4rem;
-  color: #c8990b;
-  line-height: 1.8rem;
-  background-color: #fffaeb;
-  border: 1px solid #f5edd7;
-  border-radius: 0.3rem;
-  padding: calc(0.8rem + 0.1rem) 1.4rem;
-  position: relative;
-}
-.ax-alert .ax-close {
-  font-family: 'ax-iconfont';
-  font-size: 1.4rem;
-  text-align: center;
-  color: rgba(0, 0, 0, 0.2);
-  text-decoration: none;
-  width: calc(3.8rem - 2px);
-  height: calc(3.8rem - 2px);
-  line-height: calc(3.8rem - 2px);
-  transition: all 200ms linear;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-alert .ax-close:before {
-  content: "close";
-  width: calc(3.8rem - 2px);
-  height: calc(3.8rem - 2px);
-}
-.ax-alert .ax-close:hover {
-  color: rgba(0, 0, 0, 0.8);
-}
-.ax-alert .ax-title {
-  font-weight: bold;
-  margin-bottom: 0.4rem;
-}
-.ax-alert .ax-des {
-  font-size: 1.2rem;
-}
-.ax-alert.ax-sm {
-  display: flex;
-  justify-content: flex-start;
-  align-items: flex-start;
-}
-.ax-alert.ax-sm [class*='font']:first-child {
-  margin-right: 0.8rem;
-  flex-shrink: 0;
-}
-.ax-alert.ax-lg {
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-}
-.ax-alert.ax-lg [class*='font']:first-child {
-  font-size: 2.8rem;
-  margin-right: 1.4rem;
-  flex-shrink: 0;
-}
-.ax-alert.ax-lg .ax-title {
-  font-size: 1.4rem;
-}
-.ax-alert.ax-primary {
-  color: #0b72da;
-  background-color: #f0f7ff;
-  border-color: #d7e7f5;
-}
-.ax-alert.ax-secondary {
-  color: #383e42;
-  background-color: #f5f8fa;
-  border-color: #dfe3e5;
-}
-.ax-alert.ax-success {
-  color: #3b7649;
-  background-color: #edfaf0;
-  border-color: #e1f0e5;
-}
-.ax-alert.ax-danger {
-  color: #b22c39;
-  background-color: #fff0f1;
-  border-color: #f0dddf;
-}
-.ax-alert.ax-warning {
-  color: #c8990b;
-  background-color: #fffaeb;
-  border-color: #f5edd7;
-}
-.ax-alert.ax-ad {
-  color: #c2690a;
-  background-color: #fff5eb;
-  border-color: #f5e7d7;
-}
-.ax-alert.ax-info {
-  color: #189593;
-  background-color: #ebfaf9;
-  border-color: #cef0f0;
-}
-.ax-alert.ax-light {
-  color: #666666;
-  background-color: rgba(0, 0, 0, 0.02);
-  border-color: #ebebeb;
-}
-.ax-alert.ax-borderless {
-  border: none;
-}
-.ax-alert.ax-square {
-  border-radius: 0;
-}
-/*tag*/
-.ax-tag {
-  display: inline-flex;
-  justify-content: flex-start;
-  align-items: center;
-  position: relative;
-  padding: 0 1rem;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  font-size: 1.4rem;
-  line-height: 2.8rem;
-}
-.ax-tag i {
-  font-family: arial;
-  font-size: 2.2rem;
-  width: 2.8rem;
-  text-align: center;
-  color: rgba(0, 0, 0, 0.2);
-  text-decoration: none;
-  cursor: pointer;
-  margin-right: -1rem;
-  transition: all 200ms linear;
-}
-.ax-tag i:before {
-  content: "\00D7";
-}
-.ax-tag i:hover {
-  color: rgba(0, 0, 0, 0.3);
-}
-.ax-tag s {
-  font-family: arial;
-  font-size: 1.4rem;
-  cursor: pointer;
-  color: #b3b3b3;
-  width: 1.6rem;
-  height: 1.6rem;
-  line-height: 1.6rem;
-  text-align: center;
-  border-radius: 1.6rem;
-  text-decoration: none;
-  background-color: #f0f0f0;
-  transition: all 200ms linear;
-  position: absolute;
-  right: -0.8rem;
-  top: -0.8rem;
-}
-.ax-tag s:before {
-  content: "\00D7";
-}
-.ax-tag s:hover {
-  color: #666666;
-}
-.ax-tag.ax-primary,
-*.ax-tag.ax-primary:hover {
-  color: #1063b7;
-  background-color: #f0f7ff;
-  border-color: #d7e7f5;
-}
-.ax-tag.ax-secondary,
-*.ax-tag.ax-secondary:hover {
-  color: #2d2e2f;
-  background-color: #f5f8fa;
-  border-color: #dfe3e5;
-}
-.ax-tag.ax-success,
-*.ax-tag.ax-success:hover {
-  color: #355d3f;
-  background-color: #edfaf0;
-  border-color: #e1f0e5;
-}
-.ax-tag.ax-danger,
-*.ax-tag.ax-danger:hover {
-  color: #942c36;
-  background-color: #fff0f1;
-  border-color: #f0dddf;
-}
-.ax-tag.ax-warning,
-*.ax-tag.ax-warning:hover {
-  color: #a6800e;
-  background-color: #fffaeb;
-  border-color: #f5edd7;
-}
-.ax-tag.ax-ad,
-*.ax-tag.ax-ad:hover {
-  color: #a0590e;
-  background-color: #fff5eb;
-  border-color: #f5e7d7;
-}
-.ax-tag.ax-info,
-*.ax-tag.ax-info:hover {
-  color: #187675;
-  background-color: #ebfaf9;
-  border-color: #cef0f0;
-}
-.ax-tag.ax-light,
-*.ax-tag.ax-light:hover {
-  color: #666666;
-  background-color: rgba(0, 0, 0, 0.02);
-  border-color: #ebebeb;
-}
-.ax-tag.ax-borderless {
-  border-width: 0;
-}
-.ax-tag.ax-square {
-  border-radius: 0;
-}
-.ax-tag.ax-round {
-  border-radius: 2.8rem;
-}
-/*result*/
-.ax-result {
-  font-size: 5.4rem;
-  width: 5.4rem;
-  height: 5.4rem;
-  line-height: 5.4rem;
-  text-align: center;
-  background-repeat: no-repeat;
-  background-position: center;
-  background-size: 5.4rem;
-  margin: auto;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-}
-.ax-result *[class*="font"] {
-  font-size: 5.4rem;
-}
-.ax-result svg {
-  width: 5.4rem;
-  height: 5.4rem;
-}
-.ax-result.ax-success {
-  color: #198cff;
-}
-.ax-result.ax-error {
-  color: #dc3545;
-}
-.ax-result.ax-warning {
-  color: #ffc107;
-}
-.ax-result.ax-info {
-  color: #14ccc9;
-}
-.ax-result.ax-question {
-  color: #ff8400;
-}
-@keyframes draw-rotate {
-  100% {
-    stroke-dashoffset: 0;
-    transform: rotate(0deg);
-  }
-}
-@keyframes draw-line {
-  100% {
-    stroke-dashoffset: 0;
-  }
-}
-@keyframes draw-circle {
-  0% {
-    transform: scale(0.7);
-    opacity: 1;
-  }
-  45% {
-    transform: scale(1.2);
-    opacity: 1;
-  }
-  80% {
-    transform: scale(0.8);
-    opacity: 1;
-  }
-  100% {
-    transform: scale(1);
-    opacity: 1;
-  }
-}
-@keyframes draw-waiting {
-  0% {
-    stroke-dasharray: 0, 229;
-    stroke-dashoffset: 0;
-  }
-  50% {
-    stroke-dasharray: 114, 129;
-    stroke-dashoffset: -57;
-  }
-  100% {
-    stroke-dasharray: 0, 229;
-    stroke-dashoffset: -228;
-  }
-}
-@keyframes draw-waiting2 {
-  0% {
-    stroke-dasharray: 0, 250;
-    stroke-dashoffset: 0;
-  }
-  50% {
-    stroke-dasharray: 125, 250;
-    stroke-dashoffset: -62;
-  }
-  100% {
-    stroke-dasharray: 0, 250;
-    stroke-dashoffset: -249;
-  }
-}
-.ax-result .svg-out,
-.ax-result .svg-in-1:not(.svg-circle),
-.ax-result .svg-in-2:not(.svg-circle),
-.ax-result .svg-bg {
-  stroke-width: 3.7253;
-  stroke-linecap: round;
-  stroke-linejoin: round;
-}
-.ax-result .svg-line {
-  fill: none;
-}
-.ax-result .svg-circle {
-  opacity: 0;
-}
-.ax-result svg:not(.svg-success):not(.svg-error):not(.svg-warning):not(.svg-info):not(.svg-question) .svg-bg {
-  stroke: #ebebeb;
-  animation: draw-waiting 1.5s linear infinite;
-}
-.svg-success .svg-out {
-  stroke: #198cff;
-}
-.svg-success .svg-in-1 {
-  stroke: #198cff;
-}
-.svg-success .svg-bg {
-  stroke: #f0f7ff;
-}
-.svg-error .svg-out {
-  stroke: #dc3545;
-}
-.svg-error .svg-bg {
-  stroke: #fff0f1;
-}
-.svg-error .svg-in-1,
-.svg-error .svg-in-2 {
-  stroke: #dc3545;
-}
-.svg-warning .svg-out {
-  stroke: #ffc107;
-}
-.svg-warning .svg-in-1 {
-  stroke: #ffc107;
-}
-.svg-warning .svg-bg {
-  stroke: #fffaeb;
-}
-.svg-warning .svg-circle {
-  fill: #ffc107;
-}
-.svg-info .svg-out {
-  stroke: #14ccc9;
-}
-.svg-info .svg-in-1 {
-  stroke: #14ccc9;
-}
-.svg-info .svg-bg {
-  stroke: #ebfaf9;
-}
-.svg-info .svg-circle {
-  fill: #14ccc9;
-}
-.svg-question .svg-out {
-  stroke: #ff8400;
-}
-.svg-question .svg-in-1 {
-  stroke: #ff8400;
-}
-.svg-question .svg-bg {
-  stroke: #fff5eb;
-}
-.svg-question .svg-circle {
-  fill: #ff8400;
-}
-.svg-success .svg-out {
-  stroke-dasharray: 227 229;
-  stroke-dashoffset: 228;
-  transform-origin: 50% 50%;
-  transform: rotate(-90deg);
-}
-.svg-success .svg-in-1 {
-  stroke-dasharray: 49 51;
-  stroke-dashoffset: 50;
-}
-.svg-error .svg-out {
-  stroke-dasharray: 227 229;
-  stroke-dashoffset: 228;
-  transform-origin: 50% 50%;
-  transform: rotate(-90deg);
-}
-.svg-error .svg-in-1 {
-  stroke-dasharray: 42 44;
-  stroke-dashoffset: -43;
-}
-.svg-error .svg-in-2 {
-  stroke-dasharray: 42 44;
-  stroke-dashoffset: -43;
-}
-.svg-warning .svg-out {
-  stroke-dasharray: 248 250;
-  stroke-dashoffset: 249;
-}
-.svg-warning .svg-in-1 {
-  stroke-dasharray: 30 32;
-  stroke-dashoffset: 31;
-}
-.svg-warning .svg-in-2 {
-  transform-origin: 4.33492rem 6.43337rem;
-}
-.svg-info .svg-out {
-  stroke-dasharray: 227 229;
-  stroke-dashoffset: 228;
-  transform-origin: 50% 50%;
-  transform: rotate(-90deg);
-}
-.svg-info .svg-in-1 {
-  stroke-dasharray: 35 37;
-  stroke-dashoffset: -36;
-}
-.svg-info .svg-in-2 {
-  transform-origin: 4.33492rem 2.35856rem;
-}
-.svg-question .svg-out {
-  stroke-dasharray: 227 229;
-  stroke-dashoffset: 228;
-  transform-origin: 50% 50%;
-  transform: rotate(-90deg);
-}
-.svg-question .svg-in-1 {
-  stroke-dasharray: 59 61;
-  stroke-dashoffset: 60;
-}
-.svg-question .svg-in-2 {
-  transform-origin: 4.46612rem 6.05502rem;
-}
-/*榛樿绛夊緟*/
-.svg-success .svg-out,
-.svg-error .svg-out,
-.svg-info .svg-out,
-.svg-question .svg-out {
-  animation: draw-waiting 1.5s linear infinite;
-}
-.svg-warning .svg-out {
-  animation: draw-waiting2 1.5s linear infinite;
-}
-/*鏄剧ず鏈�缁堢粨鏋�*/
-.ax-result-show .svg-success .svg-out {
-  animation: draw-rotate 800ms ease-out 0ms forwards;
-}
-.ax-result-show .svg-success .svg-in-1 {
-  animation: draw-line 400ms ease-out 800ms forwards;
-}
-.ax-result-show .svg-error .svg-out {
-  animation: draw-rotate 800ms ease-out 0ms forwards;
-}
-.ax-result-show .svg-error .svg-in-1 {
-  animation: draw-line 400ms ease-out 800ms forwards;
-}
-.ax-result-show .svg-error .svg-in-2 {
-  animation: draw-line 400ms ease-out 1200ms forwards;
-}
-.ax-result-show .svg-warning .svg-out {
-  animation: draw-line 800ms ease-out 0ms forwards;
-}
-.ax-result-show .svg-warning .svg-in-1 {
-  animation: draw-line 400ms ease-out 800ms forwards;
-}
-.ax-result-show .svg-warning .svg-in-2 {
-  animation: draw-circle 400ms ease-out 1200ms forwards;
-}
-.ax-result-show .svg-info .svg-out {
-  animation: draw-rotate 800ms ease-out 0ms forwards;
-}
-.ax-result-show .svg-info .svg-in-1 {
-  animation: draw-line 400ms ease-out 1200ms forwards;
-}
-.ax-result-show .svg-info .svg-in-2 {
-  animation: draw-circle 400ms ease-out 800ms forwards;
-}
-.ax-result-show .svg-question .svg-out {
-  animation: draw-rotate 800ms ease-out 0ms forwards;
-}
-.ax-result-show .svg-question .svg-in-1 {
-  animation: draw-line 400ms ease-out 800ms forwards;
-}
-.ax-result-show .svg-question .svg-in-2 {
-  animation: draw-circle 400ms ease-out 1200ms forwards;
-}
-/*tips before*/
-.ax-ace {
-  width: 1.4rem;
-  height: 1.4rem;
-  line-height: 1.4rem;
-  text-align: center;
-  border-radius: 100%;
-  color: #fff;
-  font-family: arial;
-  font-size: 1.2rem;
-  vertical-align: middle;
-}
-.ax-ace-success {
-  background-color: #198cff;
-}
-.ax-ace-success:before {
-  content: '\221A';
-}
-.ax-ace-error {
-  background-color: #dc3545;
-}
-.ax-ace-error:before {
-  content: '\00D7';
-}
-.ax-ace-warning {
-  background-color: #ffc107;
-}
-.ax-ace-warning:before {
-  content: '\0021';
-}
-.ax-ace-info {
-  background-color: #14ccc9;
-}
-.ax-ace-info:before {
-  content: '\0069';
-}
-.ax-ace-question {
-  background-color: #ff8400;
-}
-.ax-ace-question:before {
-  content: '\003F';
-}
-/*menu*/
-.ax-menu {
-  width: 22rem;
-  display: block;
-  box-sizing: border-box;
-}
-.ax-menu ul {
-  display: none;
-}
-.ax-menu li {
-  box-sizing: border-box;
-  position: relative;
-  transition: all 200ms ease-out;
-}
-.ax-menu > li {
-  border-bottom: none;
-}
-.ax-menu.ax-menu-dark > li {
-  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
-}
-.ax-menu > li:before {
-  content: '';
-  width: 0.3rem;
-  height: 0;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-  transition: all 200ms ease-out;
-}
-.ax-menu li a {
-  color: #333333;
-  height: 4.4rem;
-  line-height: 4.4rem;
-  display: flex;
-  position: relative;
-  transition: all 200ms linear;
-}
-.ax-menu.ax-menu-dark li a {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-menu > li > a {
-  padding-left: 1.4rem;
-}
-/*level 1*/
-.ax-menu > li > ul > li > a {
-  padding-left: calc(1.4rem*3);
-}
-/*level 2*/
-.ax-menu > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*5);
-}
-/*level 3*/
-.ax-menu > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*7);
-}
-/*level 4*/
-.ax-menu > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*9);
-}
-/*level 5*/
-.ax-menu > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*11);
-}
-/*level 6*/
-.ax-menu > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*13);
-}
-/*level 7*/
-.ax-menu > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*15);
-}
-/*level 8*/
-.ax-menu .ax-name {
-  line-height: 1.8rem;
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-  flex: auto;
-  width: 0;
-  transition: all 200ms linear;
-}
-.ax-menu .ax-legend {
-  color: #666666;
-  width: 2.4rem;
-  text-align: center;
-  margin-right: 0.4rem;
-  transition: all 200ms linear;
-}
-.ax-menu.ax-menu-dark .ax-legend {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-menu .ax-badge {
-  margin-right: 1.4rem;
-  margin-top: calc(2.2rem - 0.8rem);
-}
-.ax-menu .ax-dot {
-  margin-right: 1.4rem;
-  margin-top: calc(2.2rem - 0.3rem);
-}
-.ax-menu .ax-arrow {
-  width: 3.8rem;
-  text-align: center;
-  color: #ccc;
-  font-size: 1.2rem;
-  transition: all 200ms linear;
-}
-.ax-menu span.ax-dot:nth-last-child(2),
-.ax-menu span.ax-badge:nth-last-child(2) {
-  margin-right: 0;
-}
-.ax-menu.ax-menu-dark .ax-arrow {
-  color: rgba(255, 255, 255, 0.2);
-}
-.ax-menu .ax-active > a > .ax-arrow {
-  -webkit-transform: rotate(90deg);
-  transform: rotate(90deg);
-}
-.ax-menu .ax-active {
-  background: transparent;
-}
-.ax-menu.ax-menu-dark .ax-selected ul {
-  background-color: rgba(0, 0, 0, 0.1);
-}
-.ax-menu .ax-active:before {
-  height: 100%;
-}
-.ax-menu li:hover > a .ax-name,
-.ax-menu li:hover > a .ax-legend,
-.ax-menu li:hover > a .ax-arrow {
-  color: #198cff;
-}
-.ax-menu > li > a .ax-name {
-  font-weight: bold;
-}
-.ax-menu.ax-menu-dark > li > a .ax-name {
-  font-weight: normal;
-}
-.ax-menu.ax-menu-dark li:hover > a .ax-name,
-.ax-menu.ax-menu-dark li:hover > a .ax-legend,
-.ax-menu.ax-menu-dark li:hover > a .ax-arrow {
-  color: #fff;
-}
-.ax-menu li:hover > a.ax-selected[aria-disabled="true"] .ax-name,
-.ax-menu li:hover > a.ax-selected[aria-disabled="true"] .ax-legend {
-  color: #b3b3b3;
-}
-.ax-menu li:hover > a.ax-disabled .ax-arrow {
-  color: #ccc;
-}
-.ax-menu.ax-menu-dark li:hover > a[aria-disabled="true"] .ax-name,
-.ax-menu.ax-menu-dark li:hover > a[aria-disabled="true"] .ax-legend,
-.ax-menu.ax-menu-dark li:hover > a[aria-disabled="true"] .ax-arrow {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-menu *[aria-expanded="true"],
-.ax-menu *[aria-expanded="true"] .ax-legend {
-  color: #333333;
-}
-.ax-menu *[aria-disabled="true"],
-.ax-menu *[aria-disabled="true"] .ax-legend {
-  color: #b3b3b3;
-}
-.ax-menu.ax-menu-dark *[aria-expanded="true"],
-.ax-menu.ax-menu-dark *[aria-expanded="true"] .ax-legend {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-menu.ax-menu-dark *[aria-disabled="true"],
-.ax-menu.ax-menu-dark *[aria-disabled="true"] .ax-legend {
-  color: #fff;
-}
-.ax-menu a.ax-selected[aria-child="false"] {
-  color: #198cff;
-  background-color: rgba(25, 140, 255, 0.06);
-}
-.ax-menu.ax-menu-dark a.ax-selected[aria-child="false"] {
-  color: #198cff;
-  background-color: rgba(25, 140, 255, 0.1);
-}
-.ax-menu a.ax-selected[aria-child="false"] .ax-legend {
-  color: #198cff;
-}
-.ax-menu li:hover > a.ax-selected[aria-child="false"] .ax-name,
-.ax-menu li:hover > a.ax-selected[aria-child="false"] .ax-legend {
-  color: #198cff;
-}
-/*menu style*/
-.ax-menu.ax-full {
-  width: 100%;
-}
-.ax-menu.ax-no-padding > li:before {
-  display: none;
-}
-.ax-menu.ax-no-padding > li > a {
-  padding-left: 0;
-}
-.ax-menu.ax-no-padding > li > ul > li > a {
-  padding-left: calc(1.4rem*2);
-}
-.ax-menu.ax-no-padding > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*4);
-}
-.ax-menu.ax-no-padding > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*6);
-}
-.ax-menu.ax-no-padding > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*7);
-}
-.ax-menu.ax-no-padding > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*10);
-}
-.ax-menu.ax-no-padding > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*12);
-}
-.ax-menu.ax-no-padding > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > a {
-  padding-left: calc(1.4rem*14);
-}
-.ax-menu.ax-style-dot > li:before,
-.ax-menu.ax-style-dot > li > a:before {
-  display: none;
-}
-.ax-menu.ax-style-dot a.ax-selected[aria-child="false"]:before {
-  width: 0.5rem;
-  height: 0.5rem;
-  border-radius: 100%;
-  background-color: #198cff;
-  content: '';
-  position: absolute;
-  left: calc(1.4rem*2 - 0.4rem);
-  top: calc((4.4rem - 0.5rem)/2);
-}
-.ax-menu.ax-style-dot > li > a.ax-selected[aria-child="false"]:before {
-  display: none;
-}
-.ax-menu.ax-no-padding.ax-style-dot a.ax-selected[aria-child="false"]:before {
-  left: calc(1.4rem - 0.4rem);
-}
-.ax-menu.ax-style-dot > li:before {
-  display: none;
-}
-.ax-menu.ax-style-line > li:before {
-  display: none;
-}
-.ax-menu.ax-style-line a.ax-selected[aria-child="false"]:before {
-  position: absolute;
-  background-color: #198cff;
-  content: '';
-  width: 0.2rem;
-  height: 100%;
-  left: 0;
-  top: 0;
-}
-/*menu row*/
-.ax-menu.ax-menu-row {
-  display: inline-block;
-  width: auto;
-  z-index: 610;
-}
-.ax-menu.ax-menu-row li {
-  position: relative;
-}
-.ax-menu.ax-menu-row ul {
-  width: 100%;
-  position: absolute;
-  background-color: #fff;
-  box-size: border-box;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-}
-.ax-menu.ax-menu-row ul > li:first-child > a {
-  border-top-left-radius: 0.3rem;
-  border-top-right-radius: 0.3rem;
-}
-.ax-menu.ax-menu-row ul > li:last-child > a {
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-}
-.ax-menu.ax-menu-row .ax-collapse {
-  overflow: inherit;
-}
-.ax-menu.ax-menu-row .ax-collapse:not(.ax-show) {
-  display: none;
-}
-.ax-menu.ax-menu-row > li {
-  display: inline-block;
-  box-sizing: border-box;
-  width: 18rem;
-}
-.ax-menu.ax-menu-row > li li {
-  text-align: left;
-}
-.ax-menu.ax-menu-row > li::before {
-  display: none;
-}
-.ax-menu.ax-menu-row > li > a > .ax-arrow {
-  transform: rotate(90deg);
-}
-.ax-menu.ax-menu-row > li.ax-active > [aria-expand="true"] > .ax-arrow {
-  transform: rotate(270deg);
-}
-.ax-menu.ax-menu-row > li > a {
-  display: inline-block;
-}
-.ax-menu.ax-menu-row > li > a > span {
-  display: inline-block;
-}
-.ax-menu.ax-menu-row > li > a > span.ax-name {
-  flex: none;
-  width: auto;
-}
-.ax-menu.ax-menu-row > li > ul {
-  left: -0.1rem;
-  top: calc(100% + 0.6rem);
-  box-sizing: border-box;
-}
-.ax-menu.ax-menu-row > li > ul > li ul {
-  right: calc(-100% - 0.1rem - 0.6rem);
-  top: -0.1rem;
-}
-.ax-menu.ax-menu-row > li > ul .ax-active > a > .ax-arrow,
-.ax-menu.ax-menu-row > li > ul [aria-expanded="true"] > .ax-arrow {
-  -webkit-transform: rotate(180deg);
-  transform: rotate(180deg);
-}
-.ax-menu.ax-menu-row > li > a .ax-name {
-  font-weight: normal;
-  line-height: 3.8rem;
-}
-.ax-menu.ax-menu-row li a {
-  line-height: 3.8rem;
-  height: 3.8rem;
-}
-.ax-menu.ax-menu-row > li li {
-  border-bottom: 1px solid #ebebeb;
-  padding-left: 0;
-}
-.ax-menu.ax-menu-row > li a {
-  padding-left: 1.4rem;
-}
-.ax-menu.ax-menu-row > li li:hover {
-  background-color: #fafafa;
-}
-.ax-menu.ax-menu-row > li ul li:last-child {
-  border-bottom: 0;
-}
-.ax-menu.ax-menu-row a.ax-selected[aria-child="false"],
-.ax-menu.ax-menu-row a.ax-selected[aria-child="false"]:hover {
-  background-color: #198cff;
-  color: #fff;
-}
-.ax-menu.ax-menu-row a.ax-selected[aria-child="false"]:hover .ax-name,
-.ax-menu.ax-menu-row a.ax-selected[aria-child="false"]:hover .ax-legend,
-.ax-menu.ax-menu-row a.ax-selected[aria-child="false"]:hover .ax-arrow {
-  color: #fff;
-}
-.ax-menu.ax-menu-center > li a,
-.ax-menu.ax-menu-center > li a {
-  padding-left: 0 !important;
-}
-.ax-menu.ax-menu-center > li > a,
-.ax-menu.ax-menu-center > li > a {
-  padding-left: 3.8rem !important;
-}
-.ax-menu.ax-menu-center > li {
-  text-align: center;
-}
-.ax-menu.ax-menu-center .ax-name {
-  justify-content: center;
-}
-.ax-menu.ax-menu-row > li a,
-.ax-menu > li > a[class*='ax-btn'] {
-  padding-left: 2rem;
-}
-.ax-menu a[class*='ax-btn'] .ax-arrow {
-  width: auto;
-}
-/*dot & badge*/
-.ax-dot {
-  width: 0.8rem;
-  height: 0.8rem;
-  border-radius: 100%;
-  background-color: #dc3545;
-}
-.ax-dot.ax-primary {
-  background-color: #198cff;
-}
-.ax-dot.ax-secondary {
-  background-color: #475b66;
-}
-.ax-dot.ax-success {
-  background-color: #41a358;
-}
-.ax-dot.ax-danger {
-  background-color: #dc3545;
-}
-.ax-dot.ax-warning {
-  background-color: #ffc107;
-}
-.ax-dot.ax-info {
-  background-color: #14ccc9;
-}
-.ax-dot.ax-ad {
-  background-color: #ff8400;
-}
-.ax-dot.ax-light {
-  background-color: #ebebeb;
-}
-.ax-dot.ax-dark {
-  background-color: #333333;
-}
-.ax-dot.ax-ignore {
-  background-color: #b3b3b3;
-}
-.ax-dot.ax-white {
-  background-color: #fff;
-}
-.ax-badge {
-  font-family: "寰蒋闆呴粦", "microsoft yahei", "Arial", "Helvetica Neue", "sans-serif", "瀹嬩綋", "simsun";
-  font-weight: normal;
-  font-size: 1.2rem;
-  color: #fff;
-  line-height: 1.6rem;
-  height: 1.6rem;
-  padding: 0 0.5rem;
-  border-radius: 1.6rem;
-  box-sizing: border-box;
-  background-color: #dc3545;
-}
-.ax-badge.ax-radius {
-  border-radius: 0.3rem;
-}
-.ax-badge.ax-drop {
-  border-radius: 1.6rem 1.6rem 1.6rem 0;
-}
-.ax-badge.ax-border {
-  color: #dc3545;
-  line-height: 1.4rem;
-  padding: 0 0.4rem;
-  border-width: 1px;
-  border-style: solid;
-  border-color: #dc3545;
-  background: transparent;
-}
-.ax-badge.ax-primary {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-badge.ax-border.ax-primary {
-  border-color: #198cff;
-  color: #198cff;
-  background: transparent;
-}
-.ax-badge.ax-secondary {
-  color: #fff;
-  background-color: #475b66;
-}
-.ax-badge.ax-border.ax-secondary {
-  color: #475b66;
-  border-color: #475b66;
-  background: transparent;
-}
-.ax-badge.ax-success {
-  color: #fff;
-  background-color: #41a358;
-}
-.ax-badge.ax-border.ax-success {
-  color: #41a358;
-  border-color: #41a358;
-  background: transparent;
-}
-.ax-badge.ax-danger {
-  color: #fff;
-  background-color: #dc3545;
-}
-.ax-badge.ax-border.ax-danger {
-  color: #dc3545;
-  border-color: #dc3545;
-  background: transparent;
-}
-.ax-badge.ax-warning {
-  color: #333333;
-  background-color: #ffc107;
-}
-.ax-badge.ax-border.ax-warning {
-  color: #ffc107;
-  border-color: #ffc107;
-  background: transparent;
-}
-.ax-badge.ax-info {
-  color: #fff;
-  background-color: #14ccc9;
-}
-.ax-badge.ax-border.ax-info {
-  color: #14ccc9;
-  border-color: #14ccc9;
-  background: transparent;
-}
-.ax-badge.ax-ad {
-  color: #fff;
-  background-color: #ff8400;
-}
-.ax-badge.ax-border.ax-ad {
-  color: #ff8400;
-  border-color: #ff8400;
-  background: transparent;
-}
-.ax-badge.ax-light {
-  color: #666666;
-  background-color: #ebebeb;
-}
-.ax-badge.ax-border.ax-light {
-  color: #666666;
-  border-color: #ebebeb;
-  background: transparent;
-}
-.ax-badge.ax-dark {
-  color: #fff;
-  background-color: #333333;
-}
-.ax-badge.ax-border.ax-dark {
-  color: #333333;
-  border-color: #333333;
-  background: transparent;
-}
-.ax-badge.ax-ignore {
-  color: #333333;
-  background-color: #b3b3b3;
-}
-.ax-badge.ax-border.ax-ignore {
-  color: #b3b3b3;
-  border-color: #b3b3b3;
-  background: transparent;
-}
-.ax-badge.ax-white {
-  color: #333333;
-  background-color: #fff;
-}
-.ax-badge.ax-border.ax-white {
-  color: #fff;
-  border-color: #fff;
-  background: transparent;
-}
-/*flag*/
-.ax-flag {
-  font-size: 1rem;
-  width: 4.2rem;
-  height: 4.2rem;
-  display: block;
-  overflow: hidden;
-  position: absolute;
-  z-index: 3;
-}
-.ax-flag i {
-  color: #fff;
-  height: 6rem;
-  width: 6rem;
-  line-height: 10rem;
-  text-align: center;
-  background-color: #198cff;
-  position: absolute;
-}
-.ax-flag.ax-left {
-  left: 0;
-  top: 0;
-}
-.ax-flag.ax-left i {
-  top: -3rem;
-  left: -3rem;
-  transform: rotate(-45deg);
-  -webkit-transform: rotate(-45deg);
-  -moz-transform: rotate(-45deg);
-}
-.ax-flag.ax-right {
-  right: 0;
-  top: 0;
-}
-.ax-flag.ax-right i {
-  top: -3rem;
-  right: -3rem;
-  transform: rotate(45deg);
-  -webkit-transform: rotate(45deg);
-  -moz-transform: rotate(45deg);
-}
-.ax-flag.ax-primary i {
-  background-color: #198cff;
-}
-.ax-flag.ax-secondary i {
-  background-color: #475b66;
-}
-.ax-flag.ax-success i {
-  background-color: #41a358;
-}
-.ax-flag.ax-danger i {
-  background-color: #dc3545;
-}
-.ax-flag.ax-warning i {
-  color: #333333;
-  background-color: #ffc107;
-}
-.ax-flag.ax-info i {
-  background-color: #14ccc9;
-}
-.ax-flag.ax-ad i {
-  background-color: #ff8400;
-}
-.ax-flag.ax-light i {
-  color: #666666;
-  background-color: #ebebeb;
-}
-.ax-flag.ax-dark i {
-  color: #fff;
-  background-color: #333333;
-}
-.ax-flag.ax-ignore i {
-  color: #999999;
-  background-color: #f0f0f0;
-}
-.ax-flag.ax-white i {
-  color: #333333;
-  background-color: #fff;
-}
-/*text*/
-h1 {
-  font-family: "Arial", "Helvetica Neue", "sans-serif", "pingfang SC", "Hiragino Sans GB", "寰蒋闆呴粦", "microsoft yahei", "瀹嬩綋", "simsun";
-  font-size: 2.8rem;
-  line-height: calc(2.8rem + 1.6rem);
-}
-h2 {
-  font-family: "Arial", "Helvetica Neue", "sans-serif", "pingfang SC", "Hiragino Sans GB", "寰蒋闆呴粦", "microsoft yahei", "瀹嬩綋", "simsun";
-  font-size: 2.2rem;
-  line-height: calc(2.2rem + 1.2rem);
-}
-h3 {
-  font-family: "Arial", "Helvetica Neue", "sans-serif", "pingfang SC", "Hiragino Sans GB", "寰蒋闆呴粦", "microsoft yahei", "瀹嬩綋", "simsun";
-  font-size: 1.8rem;
-  line-height: calc(1.8rem + 1.2rem);
-}
-h4 {
-  font-size: 1.6rem;
-}
-h5 {
-  font-size: 1.4rem;
-}
-blockquote {
-  background-color: rgba(94, 140, 186, 0.1);
-  padding: 0.5rem 2rem;
-  margin-left: 0;
-  margin-right: 0;
-  margin-bottom: 1.4rem;
-  border-left: 0.4rem solid rgba(94, 140, 186, 0.4);
-}
-fieldset {
-  margin: 1.4rem 0;
-  padding: 0 0.8rem;
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0;
-}
-fieldset legend {
-  font-weight: bold;
-  padding: 0 0.8rem;
-  margin-left: 0.8rem;
-}
-fieldset td {
-  padding: 0.4rem;
-}
-.ax-article {
-  text-align: left;
-  padding: calc(1.4rem);
-}
-.ax-article a:not([class*="ax-btn"]),
-.ax-article a:not([class*="ax-btn"]):hover {
-  color: #198cff;
-  text-decoration: underline;
-}
-.ax-article .ax-text-cancel,
-.ax-article a.ax-text-cancel,
-.ax-article .ax-text-cancel a,
-.ax-article .ax-text-cancel:hover,
-.ax-article a.ax-text-cancel:hover,
-.ax-article .ax-text-cancel a:hover {
-  color: #b3b3b3;
-  text-decoration: line-through;
-  margin: 0 0.4rem;
-  cursor: text;
-}
-.ax-article a.ax-color-ignore,
-.ax-article .ax-color-ignore a {
-  color: #b3b3b3;
-  text-decoration: none;
-}
-.ax-article a.ax-color-ignore:hover,
-.ax-article .ax-color-ignore a:hover {
-  color: #b3b3b3;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-primary,
-.ax-article .ax-color-primary a {
-  color: #198cff;
-  text-decoration: none;
-}
-.ax-article a.ax-color-primary:hover,
-.ax-article .ax-color-primary a:hover {
-  color: #198cff;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-secondary,
-.ax-article .ax-color-secondary a {
-  color: #475b66;
-  text-decoration: none;
-}
-.ax-article a.ax-color-secondary:hover,
-.ax-article .ax-color-secondary a:hover {
-  color: #475b66;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-success,
-.ax-article .ax-color-success a {
-  color: #41a358;
-  text-decoration: none;
-}
-.ax-article a.ax-color-success:hover,
-.ax-article .ax-color-success a:hover {
-  color: #41a358;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-danger,
-.ax-article .ax-color-danger a {
-  color: #dc3545;
-  text-decoration: none;
-}
-.ax-article a.ax-color-danger:hover,
-.ax-article .ax-color-danger a:hover {
-  color: #dc3545;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-warning,
-.ax-article .ax-color-warning a {
-  color: #ffc107;
-  text-decoration: none;
-}
-.ax-article a.ax-color-warning:hover,
-.ax-article .ax-color-warning a:hover {
-  color: #ffc107;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-info,
-.ax-article .ax-color-info a {
-  color: #14ccc9;
-  text-decoration: none;
-}
-.ax-article a.ax-color-info:hover,
-.ax-article .ax-color-info a:hover {
-  color: #14ccc9;
-  text-decoration: underline;
-}
-.ax-article a.ax-color-ad,
-.ax-article .ax-color-ad a {
-  color: #ff8400;
-  text-decoration: none;
-}
-.ax-article a.ax-color-ad:hover,
-.ax-article .ax-color-ad a:hover {
-  color: #ff8400;
-  text-decoration: underline;
-}
-.ax-article a,
-.ax-article span {
-  display: inline;
-}
-.ax-article img {
-  height: auto !important;
-  width: auto !important;
-  max-width: 100%;
-}
-.ax-article video {
-  max-width: 100%;
-}
-.ax-article audio {
-  max-width: 100%;
-}
-.ax-article ol li {
-  list-style-type: decimal;
-  list-style-position: inside;
-}
-.ax-article ul,
-.ax-article ol {
-  padding-left: calc(1.4rem*3);
-}
-.ax-article h2 {
-  border-left: 0.4rem solid rgba(94, 140, 186, 0.4);
-  padding-left: 0.8rem;
-  margin: 1.4rem 0;
-}
-.ax-article ul:not(.ax-menu) li {
-  position: relative;
-  padding-left: 1.4rem;
-}
-.ax-article ul:not(.ax-menu) li:before {
-  content: '';
-  position: absolute;
-  left: 0;
-  top: calc(2.8rem/2 - 0.2rem);
-  width: 0.4rem;
-  height: 0.4rem;
-  border-radius: 0.4rem;
-  background-color: #ccc;
-}
-/*article alt*/
-.ax-good {
-  text-align: center;
-  margin: calc(1.4rem*2) auto;
-}
-.ax-good .ax-text {
-  font-size: 1.2rem;
-  color: #666666;
-  width: 100%;
-  line-height: 2.8rem;
-  text-align: center;
-  display: block;
-  position: absolute;
-  left: 0;
-  bottom: -2.8rem;
-}
-.ax-good a {
-  line-height: 4.6rem;
-  border-radius: 4.6rem;
-  padding: 0 4.6rem;
-  border: 1px solid #ebebeb;
-  transition: all 100ms linear;
-  position: relative;
-}
-.ax-good a:hover {
-  color: #fff;
-  background-color: #198cff;
-  border-color: #198cff;
-}
-.ax-good a *[class*='font'] {
-  font-size: 2.2rem;
-  color: #198cff;
-  margin-right: 0.8rem;
-  transition: all 100ms linear;
-}
-.ax-good-hover a {
-  color: #fff;
-  background-color: #198cff;
-  border-color: #198cff;
-}
-.ax-good-hover a *[class*='font'] {
-  color: #fff;
-}
-.ax-good a:hover *[class*='font'] {
-  color: #fff;
-}
-.ax-good a .num {
-  font-size: 1.8rem;
-  transition: all 100ms linear;
-}
-.ax-good.ax-done a {
-  color: #b3b3b3;
-}
-.ax-good.ax-done a *[class*='font'] {
-  color: #b3b3b3;
-}
-.ax-good.ax-done a:hover,
-.ax-good.ax-done a *[class*='font']:hover {
-  color: #b3b3b3;
-  background-color: #fff;
-  border-color: #ebebeb;
-}
-/*avatar*/
-.ax-avatar {
-  color: #666666;
-  width: 4.4rem;
-  height: 4.4rem;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  border-radius: 0.3rem;
-  box-sizing: border-box;
-  position: relative;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  text-align: center;
-}
-.ax-avatar .ax-dot {
-  box-shadow: 0 0 0 0.2rem #fff;
-  position: absolute;
-  right: -0.2rem;
-  top: -0.2rem;
-}
-.ax-avatar .ax-badge {
-  box-shadow: 0 0 0 0.2rem #fff;
-  position: absolute;
-  right: -0.8rem;
-  top: -0.8rem;
-}
-.ax-avatar.ax-square {
-  border-radius: 0;
-}
-.ax-avatar.ax-round {
-  border-radius: 100%;
-}
-.ax-avatar.ax-xxs {
-  font-size: 1.2rem;
-  height: 2.2rem;
-  width: 2.2rem;
-}
-.ax-avatar.ax-xs {
-  font-size: 1.2rem;
-  height: calc(3.8rem - 1rem);
-  width: calc(3.8rem - 1rem);
-}
-.ax-avatar.ax-sm {
-  font-size: 1.4rem;
-  height: 3.8rem;
-  width: 3.8rem;
-}
-.ax-avatar.ax-md {
-  font-size: 1.6rem;
-  height: 4.4rem;
-  width: 4.4rem;
-}
-.ax-avatar.ax-lg {
-  font-size: 1.8rem;
-  height: calc(2.8rem*2);
-  width: calc(2.8rem*2);
-}
-.ax-avatar.ax-xl {
-  font-size: 2.2rem;
-  height: calc(2.8rem*3);
-  width: calc(2.8rem*3);
-}
-.ax-avatar.ax-xxl {
-  font-size: 3.2rem;
-  height: calc(2.8rem*4);
-  width: calc(2.8rem*4);
-}
-/*sign*/
-.ax-sign {
-  color: #666666;
-  width: 4.4rem;
-  height: 4.4rem;
-  border-radius: 0.3rem;
-  border: 1px solid #666666;
-  box-sizing: border-box;
-  position: relative;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  text-align: center;
-}
-.ax-sign:hover {
-  color: #666666;
-  text-decoration: none !important;
-}
-.ax-sign *[class*="font"] {
-  font-size: 1.8rem;
-}
-.ax-sign svg {
-  fill: #666666;
-  height: 1.8rem;
-  width: 1.8rem;
-}
-.ax-sign img {
-  height: 1.8rem;
-  width: 1.8rem;
-}
-.ax-sign .ax-dot {
-  box-shadow: 0 0 0 0.2rem #fff;
-  position: absolute;
-  right: -0.2rem;
-  top: -0.2rem;
-}
-.ax-sign .ax-badge {
-  box-shadow: 0 0 0 0.2rem #fff;
-  position: absolute;
-  right: -0.8rem;
-  top: -0.8rem;
-}
-.ax-sign.ax-square {
-  border-radius: 0;
-}
-.ax-sign.ax-round {
-  border-radius: 100%;
-}
-.ax-sign.ax-borderless {
-  border-width: 0;
-}
-.ax-sign.ax-xxs {
-  font-size: 1.2rem;
-  height: 2.2rem;
-  width: 2.2rem;
-}
-.ax-sign.ax-xxs *[class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-sign.ax-xxs svg {
-  height: 1.2rem;
-  width: 1.2rem;
-}
-.ax-sign.ax-xxs img {
-  height: 1.2rem;
-  width: 1.2rem;
-}
-.ax-sign.ax-xs {
-  font-size: 1.4rem;
-  height: 2.8rem;
-  width: 2.8rem;
-}
-.ax-sign.ax-xs *[class*="font"] {
-  font-size: 1.4rem;
-}
-.ax-sign.ax-xs svg {
-  height: 1.4rem;
-  width: 1.4rem;
-}
-.ax-sign.ax-xs img {
-  height: 1.4rem;
-  width: 1.4rem;
-}
-.ax-sign.ax-sm {
-  font-size: 1.6rem;
-  height: 3.8rem;
-  width: 3.8rem;
-}
-.ax-sign.ax-sm *[class*="font"] {
-  font-size: 1.6rem;
-}
-.ax-sign.ax-sm svg {
-  height: 1.6rem;
-  width: 1.6rem;
-}
-.ax-sign.ax-sm img {
-  height: 1.6rem;
-  width: 1.6rem;
-}
-.ax-sign.ax-md {
-  font-size: 1.8rem;
-  height: 4.4rem;
-  width: 4.4rem;
-}
-.ax-sign.ax-md *[class*="font"] {
-  font-size: 1.8rem;
-}
-.ax-sign.ax-md svg {
-  height: 1.8rem;
-  width: 1.8rem;
-}
-.ax-sign.ax-md img {
-  height: 1.8rem;
-  width: 1.8rem;
-}
-.ax-sign.ax-lg {
-  font-size: 2.8rem;
-  height: calc(2.8rem*2);
-  width: calc(2.8rem*2);
-}
-.ax-sign.ax-lg *[class*="font"] {
-  font-size: 2.6rem;
-}
-.ax-sign.ax-lg svg {
-  height: 2.6rem;
-  width: 2.6rem;
-}
-.ax-sign.ax-lg img {
-  height: 2.6rem;
-  width: 2.6rem;
-}
-.ax-sign.ax-xl {
-  font-size: 3.2rem;
-  height: calc(2.8rem*3);
-  width: calc(2.8rem*3);
-}
-.ax-sign.ax-xl *[class*="font"] {
-  font-size: 3.2rem;
-}
-.ax-sign.ax-xl svg {
-  height: 3.2rem;
-  width: 3.2rem;
-}
-.ax-sign.ax-xl img {
-  height: 3.2rem;
-  width: 3.2rem;
-}
-.ax-sign.ax-xxl {
-  font-size: 3.8rem;
-  height: calc(2.8rem*4);
-  width: calc(2.8rem*4);
-}
-.ax-sign.ax-xxl *[class*="font"] {
-  font-size: 4.4rem;
-}
-.ax-sign.ax-xxl svg {
-  height: 4.4rem;
-  width: 4.4rem;
-}
-.ax-sign.ax-xxl img {
-  height: 4.4rem;
-  width: 4.4rem;
-}
-.ax-sign.ax-color-primary {
-  border-color: #198cff;
-}
-.ax-sign.ax-color-secondary {
-  border-color: #475b66;
-}
-.ax-sign.ax-color-success {
-  border-color: #41a358;
-}
-.ax-sign.ax-color-danger {
-  border-color: #dc3545;
-}
-.ax-sign.ax-color-warning {
-  border-color: #ffc107;
-}
-.ax-sign.ax-color-info {
-  border-color: #14ccc9;
-}
-.ax-sign.ax-color-ad {
-  border-color: #ff8400;
-}
-.ax-sign.ax-color-title {
-  border-color: #333333;
-}
-.ax-sign.ax-color-des {
-  border-color: #666666;
-}
-.ax-sign.ax-color-ignore {
-  border-color: #b3b3b3;
-}
-.ax-sign.ax-bglit {
-  color: #666666;
-  border-color: #666666;
-  background-color: #f5f5f5;
-}
-.ax-sign.ax-bglit-primary {
-  color: #198cff;
-  border-color: #198cff;
-}
-.ax-sign.ax-bglit-secondary {
-  color: #475b66;
-  border-color: #475b66;
-}
-.ax-sign.ax-bglit-success {
-  color: #41a358;
-  border-color: #41a358;
-}
-.ax-sign.ax-bglit-danger {
-  color: #dc3545;
-  border-color: #dc3545;
-}
-.ax-sign.ax-bglit-warning {
-  color: #ffc107;
-  border-color: #ffc107;
-}
-.ax-sign.ax-bglit-info {
-  color: #14ccc9;
-  border-color: #14ccc9;
-}
-.ax-sign.ax-bglit-ad {
-  color: #ff8400;
-  border-color: #ff8400;
-}
-.ax-sign.ax-bglit-title {
-  color: #333333;
-  border-color: #333333;
-}
-.ax-sign.ax-bg {
-  color: #fff;
-  border-width: 0;
-  background-color: #666666;
-}
-.ax-sign[class*="-bg-"] {
-  color: #fff;
-  border-width: 0;
-}
-.ax-sign.ax-bg svg,
-.ax-sign[class*="-bg-"] svg {
-  fill: #fff;
-}
-/*buoy*/
-.ax-buoy {
-  font-size: 1.2rem;
-  color: #333333;
-  height: calc(3.8rem - 1.6rem);
-  line-height: 2.2rem;
-  text-decoration: none;
-  text-align: center;
-  border-radius: 0.3rem;
-  background-color: #fff;
-  position: relative;
-  box-sizing: border-box;
-  transition: all 100ms linear;
-}
-.ax-buoy:after {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: #ebebeb;
-  transition: border-color 100ms linear;
-}
-.ax-buoy > i:first-child {
-  color: #666666;
-  background-color: #fafafa;
-  padding: 0 0.6rem;
-  border-right: 1px solid #ebebeb;
-  border-top-left-radius: 0.3rem;
-  border-bottom-left-radius: 0.3rem;
-  position: relative;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  transition: all 100ms linear;
-}
-.ax-buoy.ax-reverse > i:first-child {
-  background-color: #fff;
-}
-.ax-buoy.ax-reverse > i:last-child {
-  border-top-right-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-}
-.ax-buoy > i:first-child [class*="font"] {
-  font-size: 1.2rem;
-  margin-right: 0.4rem;
-  transition: all 100ms linear;
-}
-.ax-buoy > i.ax-icon [class*="font"] {
-  margin-right: 0;
-}
-.ax-buoy > i:first-child svg {
-  fill: #666666;
-  height: 1.2rem;
-  margin-right: 0.4rem;
-  transition: all 100ms linear;
-}
-.ax-buoy > i:last-child {
-  padding: 0 0.6rem;
-  transition: all 100ms linear;
-}
-.ax-buoy.ax-reverse > i:last-child {
-  background-color: #fafafa;
-}
-.ax-buoy.ax-more > i:first-child:after {
-  content: '';
-  width: 0.5rem;
-  height: 0.5rem;
-  margin-left: 0.4rem;
-  margin-top: -0.1rem;
-  background: linear-gradient(135deg, transparent 50%, #666666 50%, #666666 100%);
-  transform: rotate(45deg);
-  transition: all 100ms linear;
-}
-.ax-buoy:not(.ax-reverse) > i:first-child:hover {
-  color: #b3b3b3;
-}
-.ax-buoy:not(.ax-reverse) > i:first-child:hover svg {
-  fill: #b3b3b3;
-}
-.ax-buoy:not(.ax-reverse) > i:first-child:hover:after {
-  background: linear-gradient(135deg, transparent 50%, #b3b3b3 50%, #b3b3b3 100%);
-}
-.ax-buoy.ax-primary {
-  color: #198cff;
-}
-.ax-buoy.ax-success {
-  color: #41a358;
-}
-.ax-buoy.ax-danger {
-  color: #dc3545;
-}
-.ax-buoy.ax-warning {
-  color: #ffc107;
-}
-.ax-buoy.ax-info {
-  color: #14ccc9;
-}
-.ax-buoy.ax-ad {
-  color: #ff8400;
-}
-.ax-buoy.ax-dark {
-  color: #333333;
-}
-.ax-buoy.ax-primary:not(.ax-reverse) > i:first-child {
-  background-color: #198cff;
-}
-.ax-buoy.ax-primary.ax-reverse > i:last-child {
-  background-color: #198cff;
-}
-.ax-buoy.ax-primary:after {
-  border-color: #198cff;
-}
-.ax-buoy.ax-success:not(.ax-reverse) > i:first-child {
-  background-color: #41a358;
-}
-.ax-buoy.ax-success.ax-reverse > i:last-child {
-  background-color: #41a358;
-}
-.ax-buoy.ax-success:after {
-  border-color: #41a358;
-}
-.ax-buoy.ax-danger:not(.ax-reverse) > i:first-child {
-  background-color: #dc3545;
-}
-.ax-buoy.ax-danger.ax-reverse > i:last-child {
-  background-color: #dc3545;
-}
-.ax-buoy.ax-danger:after {
-  border-color: #dc3545;
-}
-.ax-buoy.ax-warning:not(.ax-reverse) > i:first-child {
-  background-color: #ffc107;
-}
-.ax-buoy.ax-warning.ax-reverse > i:last-child {
-  background-color: #ffc107;
-}
-.ax-buoy.ax-warning:after {
-  border-color: #ffc107;
-}
-.ax-buoy.ax-info:not(.ax-reverse) > i:first-child {
-  background-color: #14ccc9;
-}
-.ax-buoy.ax-info.ax-reverse > i:last-child {
-  background-color: #14ccc9;
-}
-.ax-buoy.ax-info:after {
-  border-color: #14ccc9;
-}
-.ax-buoy.ax-ad:not(.ax-reverse) > i:first-child {
-  background-color: #ff8400;
-}
-.ax-buoy.ax-ad.ax-reverse > i:last-child {
-  background-color: #ff8400;
-}
-.ax-buoy.ax-ad:after {
-  border-color: #ff8400;
-}
-.ax-buoy.ax-dark > i:first-child {
-  background-color: #333333;
-}
-.ax-buoy.ax-dark.ax-reverse > i:last-child {
-  background-color: #333333;
-}
-.ax-buoy.ax-dark:after {
-  border-color: #333333;
-}
-.ax-buoy.ax-primary > i:first-child,
-.ax-buoy.ax-success > i:first-child,
-.ax-buoy.ax-danger > i:first-child,
-.ax-buoy.ax-warning > i:first-child,
-.ax-buoy.ax-info > i:first-child,
-.ax-buoy.ax-ad > i:first-child,
-.ax-buoy.ax-dark > i:first-child {
-  border-width: 0;
-}
-.ax-buoy.ax-primary:not(.ax-reverse) > i:first-child,
-.ax-buoy.ax-success:not(.ax-reverse) > i:first-child,
-.ax-buoy.ax-danger:not(.ax-reverse) > i:first-child,
-.ax-buoy.ax-warning:not(.ax-reverse) > i:first-child,
-.ax-buoy.ax-info:not(.ax-reverse) > i:first-child,
-.ax-buoy.ax-ad:not(.ax-reverse) > i:first-child,
-.ax-buoy.ax-dark:not(.ax-reverse) > i:first-child {
-  color: #fff;
-}
-.ax-buoy.ax-primary:not(.ax-reverse) > i:first-child svg,
-.ax-buoy.ax-success:not(.ax-reverse) > i:first-child svg,
-.ax-buoy.ax-danger:not(.ax-reverse) > i:first-child svg,
-.ax-buoy.ax-warning:not(.ax-reverse) > i:first-child svg,
-.ax-buoy.ax-info:not(.ax-reverse) > i:first-child svg,
-.ax-buoy.ax-ad:not(.ax-reverse) > i:first-child svg,
-.ax-buoy.ax-dark:not(.ax-reverse) > i:first-child svg {
-  fill: #fff;
-}
-.ax-buoy.ax-primary.ax-more:not(.ax-reverse) > i:first-child:after,
-.ax-buoy.ax-success.ax-more:not(.ax-reverse) > i:first-child:after,
-.ax-buoy.ax-danger.ax-more:not(.ax-reverse) > i:first-child:after,
-.ax-buoy.ax-warning.ax-more:not(.ax-reverse) > i:first-child:after,
-.ax-buoy.ax-info.ax-more:not(.ax-reverse) > i:first-child:after,
-.ax-buoy.ax-ad.ax-more:not(.ax-reverse) > i:first-child::after,
-.ax-buoy.ax-dark.ax-more:not(.ax-reverse) > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #fff 50%, #fff 100%);
-}
-.ax-buoy.ax-primary:not(.ax-reverse) > i:first-child:hover,
-.ax-buoy.ax-success:not(.ax-reverse) > i:first-child:hover,
-.ax-buoy.ax-danger:not(.ax-reverse) > i:first-child:hover,
-.ax-buoy.ax-warning:not(.ax-reverse) > i:first-child:hover,
-.ax-buoy.ax-info:not(.ax-reverse) > i:first-child:hover,
-.ax-buoy.ax-ad:not(.ax-reverse) > i:first-child:hover,
-.ax-buoy.ax-dark:not(.ax-reverse) > i:first-child:hover {
-  color: rgba(255, 255, 255, 0.6);
-}
-.ax-buoy.ax-primary:not(.ax-reverse) > i:first-child:hover svg,
-.ax-buoy.ax-success:not(.ax-reverse) > i:first-child:hover svg,
-.ax-buoy.ax-danger:not(.ax-reverse) > i:first-child:hover svg,
-.ax-buoy.ax-warning:not(.ax-reverse) > i:first-child:hover svg,
-.ax-buoy.ax-info:not(.ax-reverse) > i:first-child:hover svg,
-.ax-buoy.ax-ad:not(.ax-reverse) > i:first-child:hover svg,
-.ax-buoy.ax-dark:not(.ax-reverse) > i:first-child:hover svg {
-  fill: rgba(255, 255, 255, 0.6);
-}
-.ax-buoy.ax-primary.ax-more:not(.ax-reverse) > i:first-child:hover:after,
-.ax-buoy.ax-success.ax-more:not(.ax-reverse) > i:first-child:hover:after,
-.ax-buoy.ax-danger.ax-more:not(.ax-reverse) > i:first-child:hover:after,
-.ax-buoy.ax-warning.ax-more:not(.ax-reverse) > i:first-child:hover:after,
-.ax-buoy.ax-info.ax-more:not(.ax-reverse) > i:first-child:hover:after,
-.ax-buoy.ax-ad.ax-more:not(.ax-reverse) > i:first-child:hover:after,
-.ax-buoy.ax-dark.ax-more:not(.ax-reverse) > i:first-child:hover:after {
-  background: linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.6) 100%);
-}
-.ax-buoy.ax-sm {
-  height: 1.8rem;
-  line-height: 1.8rem;
-}
-.ax-buoy.ax-sm > i {
-  padding: 0 0.4rem;
-}
-.ax-buoy.ax-md {
-  height: 2.2rem;
-  line-height: 2.2rem;
-}
-.ax-buoy.ax-md > i {
-  padding: 0 0.6rem;
-}
-.ax-buoy.ax-lg {
-  height: 2.8rem;
-  line-height: 2.8rem;
-}
-.ax-buoy.ax-lg > i {
-  padding: 0 1rem;
-}
-.ax-buoy.ax-borderless:after {
-  display: none;
-}
-.ax-buoy.ax-primary.ax-reverse > i:first-child {
-  color: #198cff;
-}
-.ax-buoy.ax-primary.ax-reverse > i:first-child svg {
-  fill: #198cff;
-}
-.ax-buoy.ax-more.ax-primary.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #198cff 50%, #198cff 100%);
-}
-.ax-buoy.ax-success.ax-reverse > i:first-child {
-  color: #41a358;
-}
-.ax-buoy.ax-success.ax-reverse > i:first-child svg {
-  fill: #41a358;
-}
-.ax-buoy.ax-more.ax-success.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #41a358 50%, #41a358 100%);
-}
-.ax-buoy.ax-danger.ax-reverse > i:first-child {
-  color: #dc3545;
-}
-.ax-buoy.ax-danger.ax-reverse > i:first-child svg {
-  fill: #dc3545;
-}
-.ax-buoy.ax-more.ax-danger.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #dc3545 50%, #dc3545 100%);
-}
-.ax-buoy.ax-warning.ax-reverse > i:first-child {
-  color: #ffc107;
-}
-.ax-buoy.ax-warning.ax-reverse > i:first-child svg {
-  fill: #ffc107;
-}
-.ax-buoy.ax-more.ax-warning.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #ffc107 50%, #ffc107 100%);
-}
-.ax-buoy.ax-info.ax-reverse > i:first-child {
-  color: #14ccc9;
-}
-.ax-buoy.ax-info.ax-reverse > i:first-child svg {
-  fill: #14ccc9;
-}
-.ax-buoy.ax-more.ax-info.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #14ccc9 50%, #14ccc9 100%);
-}
-.ax-buoy.ax-ad.ax-reverse > i:first-child {
-  color: #ff8400;
-}
-.ax-buoy.ax-ad.ax-reverse > i:first-child svg {
-  fill: #ff8400;
-}
-.ax-buoy.ax-more.ax-ad.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #ff8400 50%, #ff8400 100%);
-}
-.ax-buoy.ax-dark.ax-reverse > i:first-child {
-  color: #333333;
-}
-.ax-buoy.ax-dark.ax-reverse > i:first-child svg {
-  fill: #333333;
-}
-.ax-buoy.ax-more.ax-dark.ax-reverse > i:first-child:after {
-  background: linear-gradient(135deg, transparent 50%, #333333 50%, #333333 100%);
-}
-.ax-buoy.ax-primary.ax-reverse > i:last-child,
-.ax-buoy.ax-success.ax-reverse > i:last-child,
-.ax-buoy.ax-danger.ax-reverse > i:last-child,
-.ax-buoy.ax-warning.ax-reverse > i:last-child,
-.ax-buoy.ax-info.ax-reverse > i:last-child,
-.ax-buoy.ax-ad.ax-reverse > i:last-child,
-.ax-buoy.ax-dark.ax-reverse > i:last-child {
-  color: #fff;
-}
-.ax-buoy.ax-reverse > i:last-child:hover {
-  color: #666666;
-}
-.ax-buoy.ax-primary.ax-reverse > i:last-child:hover,
-.ax-buoy.ax-success.ax-reverse > i:last-child:hover,
-.ax-buoy.ax-danger.ax-reverse > i:last-child:hover,
-.ax-buoy.ax-warning.ax-reverse > i:last-child:hover,
-.ax-buoy.ax-info.ax-reverse > i:last-child:hover,
-.ax-buoy.ax-ad.ax-reverse > i:last-child:hover,
-.ax-buoy.ax-dark.ax-reverse > i:last-child:hover {
-  color: rgba(255, 255, 255, 0.6);
-}
-/*comment*/
-.ax-comment {
-  background-color: #fff;
-  font-size: 1.4rem;
-}
-.ax-comment .ax-item {
-  box-sizing: border-box;
-  display: flex;
-  padding: 2.2rem 0;
-}
-.ax-comment .ax-item .ax-avatar {
-  margin-right: 1.2rem;
-}
-.ax-comment .ax-item .ax-text {
-  display: block;
-  flex: auto;
-  width: 0;
-}
-.ax-comment .ax-item .ax-reply {
-  color: #666666;
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-  border-left: 1px solid #ccc;
-  padding: 0.4rem 0 0.4rem 1rem;
-  margin: 1rem 0;
-}
-.ax-comment .ax-item .ax-reply .ax-reply {
-  padding: 0 0 0 1rem;
-}
-.ax-comment .ax-item .ax-reply a,
-.ax-comment .ax-item .ax-reply span {
-  display: inline;
-}
-.ax-comment .ax-item .ax-row01 {
-  line-height: 1.8rem;
-}
-.ax-comment .ax-item .ax-name {
-  color: #666666;
-}
-.ax-comment .ax-item a.ax-name:hover {
-  color: #198cff;
-}
-.ax-comment .ax-item .ax-time {
-  color: #ccc;
-  font-size: 1.2rem;
-}
-.ax-comment .ax-item .ax-floor {
-  color: #b3b3b3;
-  font-size: 1.2rem;
-}
-.ax-comment .ax-item .ax-row02 {
-  line-height: 2.2rem;
-  margin: 0.4rem auto 1rem auto;
-}
-.ax-comment .ax-item .ax-row02 span {
-  display: inline;
-}
-.ax-comment .ax-item .ax-row02 a,
-.ax-comment .ax-item .ax-reply a {
-  color: #198cff;
-}
-.ax-comment .ax-item .ax-row03 .ax-action {
-  margin-left: 1.4rem;
-  color: #666666;
-}
-.ax-comment .ax-item .ax-row03 .ax-action *[class*="font"] {
-  color: #666666;
-  margin-right: 0.4rem;
-}
-.ax-comment .ax-item .ax-row03 .ax-action:hover {
-  color: #198cff;
-}
-.ax-comment .ax-item .ax-row03 .ax-action:hover *[class*="font"] {
-  color: #198cff;
-}
-.ax-comment .ax-item.ax-more {
-  line-height: 4.4rem;
-}
-.ax-comment .ax-item.ax-more .ax-avatar {
-  background: transparent;
-}
-/*from*/
-.ax-from {
-  color: #666666;
-  font-size: 1.4rem;
-  width: 100%;
-  box-sizing: border-box;
-  display: flex;
-  zoom: 1;
-}
-.ax-from .ax-left {
-  display: block;
-  flex: auto;
-  width: 0;
-  position: relative;
-}
-.ax-from a:not([class*='ax-btn']) {
-  color: #666666;
-}
-.ax-from .ax-avatar {
-  margin-right: 0.8rem;
-}
-/*author*/
-.ax-author {
-  font-size: 1.4rem;
-  width: 100%;
-  box-sizing: border-box;
-  display: flex;
-  zoom: 1;
-}
-.ax-author .ax-left {
-  line-height: 2.2rem;
-  display: block;
-  flex: auto;
-  width: 0;
-  position: relative;
-}
-.ax-author .ax-right {
-  color: #666666;
-}
-.ax-author .ax-des {
-  font-size: 1.2rem;
-  color: #666666;
-}
-.ax-author a:not([class*='ax-btn']) {
-  color: #666666;
-}
-.ax-author .ax-avatar {
-  margin-right: 0.8rem;
-}
-/*share*/
-.ax-share {
-  text-align: center;
-  margin: calc(1.4rem*2) auto;
-}
-.ax-share a {
-  margin: 0 0.8rem;
-}
-/*button*/
-.ax-btn {
-  font-size: 1.4rem;
-  color: #333333;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  text-decoration: none;
-  text-align: center;
-  border-radius: 0.3rem;
-  background-color: #fff;
-  padding: 0 2rem;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  position: relative;
-  box-sizing: border-box;
-  transition: all 100ms linear;
-}
-button.ax-btn {
-  font-size: 1.4rem;
-  height: 3.8rem;
-  line-height: calc(3.8rem - 0.4rem);
-  text-decoration: none;
-  border-radius: 0.3rem;
-  cursor: pointer;
-  background-color: #fff;
-  padding: 0 2rem;
-  border: 1px solid rgba(0, 0, 0, 0.12);
-}
-input.ax-btn {
-  font-size: 1.4rem;
-  height: 3.8rem;
-  line-height: calc(3.8rem - 0.4rem);
-  text-decoration: none;
-  border-radius: 0.3rem;
-  cursor: pointer;
-  background-color: #fff;
-  padding: 0 2rem;
-  border: 1px solid rgba(0, 0, 0, 0.12);
-  display: inline-block;
-}
-.ax-btn:not(button):after {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: rgba(0, 0, 0, 0.12);
-  transition: border-color 100ms linear;
-}
-/**/
-.ax-btn.ax-line {
-  background: transparent;
-}
-button.ax-btn.ax-line {
-  background-color: #fff;
-}
-input.ax-btn.ax-line {
-  background-color: #fff;
-}
-.ax-btn.ax-line:not(button):after {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: rgba(0, 0, 0, 0.12);
-  transition: border-color 100ms linear;
-}
-.ax-btn.ax-text {
-  background: transparent !important;
-  border: none !important;
-}
-.ax-btn.ax-text:after {
-  display: none !important;
-}
-.ax-btn.ax-text:hover {
-  box-shadow: none !important;
-}
-/**/
-.ax-btn *[class*="font"],
-.ax-btn img,
-.ax-btn.ax-line *[class*="font"],
-.ax-btn.ax-line img,
-.ax-btn.ax-text *[class*="font"],
-.ax-btn.ax-text img {
-  transition: all 100ms linear;
-  margin-right: 0.4rem;
-}
-.ax-btn.ax-xxs *[class*="font"] {
-  font-size: 1.2rem;
-  margin-right: 0;
-}
-.ax-btn.ax-xs *[class*="font"] {
-  font-size: 1.2rem;
-  margin-right: 0;
-}
-.ax-btn.ax-sm *[class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-btn.ax-lg *[class*="font"] {
-  font-size: 2.2rem;
-}
-.ax-btn *[class*="font"].ax-at-right,
-.ax-btn img.ax-at-right,
-.ax-btn.ax-line *[class*="font"].ax-at-right,
-.ax-btn.ax-line img.ax-at-right,
-.ax-btn.ax-text *[class*="font"].ax-at-right,
-.ax-btn.ax-text img.ax-at-right {
-  margin-right: 0;
-  margin-left: 0.4rem;
-}
-.ax-btn *[class*="font"].ax-at-left,
-.ax-btn img.ax-at-left,
-.ax-btn.ax-line *[class*="font"].ax-at-left,
-.ax-btn.ax-line img.ax-at-left,
-.ax-btn.ax-text *[class*="font"].ax-at-left,
-.ax-btn.ax-text img.ax-at-left {
-  margin-left: 0;
-  margin-right: 0.4rem;
-}
-.ax-btn.ax-xxs {
-  font-size: 1.2rem;
-  height: 1.8rem;
-  line-height: 1.8rem;
-  padding: 0 0.4rem;
-}
-button.ax-btn.ax-xxs {
-  font-size: 1.2rem;
-  height: 1.8rem;
-  line-height: calc(1.8rem - 0.4rem);
-  padding: 0 0.4rem;
-}
-input.ax-btn.ax-xxs {
-  font-size: 1.2rem;
-  height: 1.8rem;
-  line-height: calc(1.8rem - 0.4rem);
-  padding: 0 0.4rem;
-}
-.ax-btn.ax-xs {
-  font-size: 1.2rem;
-  height: 2.2rem;
-  line-height: 2.2rem;
-  padding: 0 0.6rem;
-}
-button.ax-btn.ax-xs {
-  font-size: 1.2rem;
-  height: 2.2rem;
-  line-height: 1.8rem;
-  padding: 0 0.6rem;
-}
-input.ax-btn.ax-xs {
-  font-size: 1.2rem;
-  height: 2.2rem;
-  line-height: 1.8rem;
-  padding: 0 0.6rem;
-}
-.ax-btn.ax-sm {
-  font-size: 1.2rem;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  padding: 0 1rem;
-}
-button.ax-btn.ax-sm {
-  font-size: 1.2rem;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1.4rem);
-  padding: 0 1rem;
-}
-input.ax-btn.ax-sm {
-  font-size: 1.2rem;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1.4rem);
-  padding: 0 1rem;
-}
-.ax-btn.ax-lg {
-  font-size: 1.6rem;
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-  padding: 0 3rem;
-}
-button.ax-btn.ax-lg {
-  font-size: 1.6rem;
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 0.6rem);
-  padding: 0 3rem;
-}
-input.ax-btn.ax-lg {
-  font-size: 1.6rem;
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 0.6rem);
-  padding: 0 3rem;
-}
-.ax-btn.ax-round,
-.ax-btn.ax-round:after,
-.ax-btn.ax-line.ax-round,
-.ax-btn.ax-line.ax-round:after {
-  border-radius: 3.8rem;
-}
-.ax-btn.ax-xxs.ax-round,
-.ax-btn.ax-xxs.ax-round:after {
-  border-radius: 1.8rem;
-}
-.ax-btn.ax-xs.ax-round,
-.ax-btn.ax-xs.ax-round:after {
-  border-radius: 2.2rem;
-}
-.ax-btn.ax-sm.ax-round,
-.ax-btn.ax-sm.ax-round:after {
-  border-radius: calc(3.8rem - 1rem);
-}
-.ax-btn.ax-lg.ax-round,
-.ax-btn.ax-lg.ax-round:after {
-  border-radius: calc(3.8rem + 1rem);
-}
-.ax-btn.ax-circle,
-.ax-btn.ax-circle:after,
-.ax-btn.ax-line.ax-circle,
-.ax-btn.ax-line.ax-circle:after {
-  padding: 0;
-  border-radius: 3.8rem;
-  width: 3.8rem;
-  text-align: center;
-}
-.ax-btn.ax-xxs.ax-circle,
-.ax-btn.ax-xxs.ax-circle:after {
-  padding: 0;
-  border-radius: 1.8rem;
-  width: 1.8rem;
-}
-.ax-btn.ax-xs.ax-circle,
-.ax-btn.ax-xs.ax-circle:after {
-  padding: 0;
-  border-radius: 2.2rem;
-  width: 2.2rem;
-}
-.ax-btn.ax-sm.ax-circle,
-.ax-btn.ax-sm.ax-circle:after {
-  padding: 0;
-  border-radius: calc(3.8rem - 1rem);
-  width: calc(3.8rem - 1rem);
-}
-.ax-btn.ax-lg.ax-circle,
-.ax-btn.ax-lg.ax-circle:after {
-  padding: 0;
-  border-radius: calc(3.8rem + 1rem);
-  width: calc(3.8rem + 1rem);
-}
-.ax-btn.ax-circle *[class*='font'],
-.ax-btn.ax-line.ax-circle *[class*='font'],
-.ax-btn-text.ax-circle *[class*='font'],
-.ax-btn.ax-circle svg,
-.ax-btn.ax-line.ax-circle svg,
-.ax-btn-text.ax-circle svg,
-.ax-btn.ax-circle img,
-.ax-btn.ax-line.ax-circle img,
-.ax-btn-text.ax-circle img {
-  margin: 0;
-}
-.ax-btn.ax-long,
-input.ax-btn.ax-long,
-button.ax-btn.ax-long {
-  width: 12rem;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-btn.ax-longer,
-input.ax-btn.ax-longer,
-button.ax-btn.ax-longer {
-  width: 20rem;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-btn.ax-longest,
-input.ax-btn.ax-longest,
-button.ax-btn.ax-longest {
-  width: 24rem;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-btn.ax-long.ax-xs,
-input.ax-btn.ax-long.ax-xs,
-button.ax-btn.ax-long.ax-xs {
-  width: 6rem;
-}
-.ax-btn.ax-longer.ax-xs,
-input.ax-btn.ax-longer.ax-xs,
-button.ax-btn.ax-longer.ax-xs {
-  width: 8rem;
-}
-.ax-btn.ax-longest.ax-xs,
-input.ax-btn.ax-longest.ax-xs,
-button.ax-btn.ax-longest.ax-xs {
-  width: 12rem;
-}
-.ax-btn.ax-long.ax-sm,
-input.ax-btn.ax-long.ax-sm,
-button.ax-btn.ax-long.ax-sm {
-  width: 8rem;
-}
-.ax-btn.ax-longer.ax-sm,
-input.ax-btn.ax-longer.ax-sm,
-button.ax-btn.ax-longer.ax-sm {
-  width: 12rem;
-}
-.ax-btn.ax-longest.ax-sm,
-input.ax-btn.ax-longest.ax-sm,
-button.ax-btn.ax-longest.ax-sm {
-  width: 18rem;
-}
-.ax-btn.ax-long.ax-lg,
-input.ax-btn.ax-long.ax-lg,
-button.ax-btn.ax-long.ax-lg {
-  width: 16rem;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-btn.ax-longer.ax-lg,
-input.ax-btn.ax-longer.ax-lg,
-button.ax-btn.ax-longer.ax-lg {
-  width: 24rem;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-btn.ax-longest.ax-lg,
-input.ax-btn.ax-longest.ax-lg,
-button.ax-btn.ax-longest.ax-lg {
-  width: 28rem;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-btn.ax-full {
-  display: block;
-  text-align: center;
-}
-input.ax-full,
-button.ax-full {
-  width: 100%;
-}
-input.ax-margin-lr,
-button.ax-margin-lr {
-  width: calc(100% - (1.4rem * 2));
-}
-input.ax-margin-left,
-button.ax-margin-right {
-  width: calc(100% - 1.4rem);
-}
-/*type icon*/
-.ax-btn.ax-icon {
-  color: rgba(0, 0, 0, 0.5);
-  width: 3.8rem;
-  text-align: center;
-}
-.ax-btn.ax-icon [class*="font"] {
-  margin: 0;
-}
-.ax-btn.ax-icon img {
-  margin: 0;
-  width: 1.8rem;
-  height: 1.8rem;
-}
-.ax-btn.ax-icon:not(.ax-xs):not(.ax-sm):not(.ax-lg) [class*="font"] {
-  font-size: 1.8rem;
-}
-.ax-btn.ax-icon.ax-xs [class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-btn.ax-icon.ax-xs img {
-  width: 1.2rem;
-  height: 1.2rem;
-}
-.ax-btn.ax-icon.ax-sm [class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-btn.ax-icon.ax-sm img {
-  width: 1.2rem;
-  height: 1.2rem;
-}
-.ax-btn.ax-icon.ax-lg [class*="font"] {
-  font-size: 2.2rem;
-}
-.ax-btn.ax-icon.ax-lg img {
-  width: 2.2rem;
-  height: 2.2rem;
-}
-.ax-btn.ax-icon,
-button.ax-btn.ax-icon {
-  padding: 0;
-}
-.ax-btn.ax-icon.ax-xxs {
-  width: 1.8rem;
-}
-.ax-btn.ax-icon.ax-xs {
-  width: 2.2rem;
-}
-.ax-btn.ax-icon.ax-sm {
-  width: calc(3.8rem - 1rem);
-}
-.ax-btn.ax-icon.ax-lg {
-  width: calc(3.8rem + 1rem);
-}
-/*btn active hover*/
-.ax-btn:hover {
-  color: #198cff;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(25, 140, 255, 0.2);
-  background-color: #ffffff;
-}
-.ax-btn:hover:after {
-  border-color: #198cff;
-}
-input.ax-btn:hover,
-button.ax-btn:hover {
-  border-color: #198cff;
-}
-.ax-btn:active {
-  color: rgba(25, 140, 255, 0.6);
-  background-color: #fafcff;
-}
-.ax-btn.ax-line:hover {
-  color: #198cff;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(25, 140, 255, 0.2);
-  background-color: #ffffff;
-}
-.ax-btn.ax-line:hover:after {
-  border-color: #198cff;
-}
-input.ax-btn.ax-line:hover,
-button.ax-btn.ax-line:hover {
-  border-color: #198cff;
-}
-.ax-btn.ax-line:active {
-  color: rgba(25, 140, 255, 0.6);
-}
-.ax-btn.ax-text:hover {
-  color: #198cff;
-  text-decoration: underline;
-}
-.ax-btn.ax-text:active {
-  color: rgba(25, 140, 255, 0.6);
-}
-/*btn foucus*/
-.ax-btn:not(:active):focus {
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-}
-.ax-btn:not(:active).ax-primary:focus {
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-}
-.ax-btn:not(:active).ax-secondary:focus {
-  box-shadow: 0 0 0 0.3rem rgba(71, 91, 102, 0.2);
-}
-.ax-btn:not(:active).ax-success:focus {
-  box-shadow: 0 0 0 0.3rem rgba(65, 163, 88, 0.2);
-}
-.ax-btn:not(:active).ax-danger:focus {
-  box-shadow: 0 0 0 0.3rem rgba(220, 53, 69, 0.2);
-}
-.ax-btn:not(:active).ax-warning:focus {
-  box-shadow: 0 0 0 0.3rem rgba(255, 193, 7, 0.2);
-}
-.ax-btn:not(:active).ax-info:focus {
-  box-shadow: 0 0 0 0.3rem rgba(20, 204, 201, 0.2);
-}
-.ax-btn:not(:active).ax-ad:focus {
-  box-shadow: 0 0 0 0.3rem rgba(255, 132, 0, 0.2);
-}
-.ax-btn:not(:active).ax-black:focus {
-  box-shadow: 0 0 0 0.3rem rgba(0, 0, 0, 0.12);
-}
-/*btn color*/
-.ax-btn.ax-primary,
-.ax-btn.ax-reverse.ax-primary {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-btn.ax-primary *[class*="font"],
-.ax-btn.ax-reverse.ax-primary *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-primary:hover,
-.ax-btn.ax-reverse.ax-primary:hover {
-  color: #fff;
-  background-color: #2d96ff;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(25, 140, 255, 0.5);
-}
-.ax-btn.ax-primary:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-primary:hover,
-button.ax-btn.ax-primary:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-primary:active,
-.ax-btn.ax-reverse.ax-primary:active {
-  color: rgba(255, 255, 255, 0.6);
-  background-color: #0072e5;
-}
-.ax-btn.ax-primary:active *[class*="font"],
-.ax-btn.ax-primary:active img,
-.ax-btn.ax-reverse.ax-primary:active *[class*="font"],
-.ax-btn.ax-reverse.ax-primary:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-primary,
-.ax-btn.ax-line.ax-primary *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-primary,
-.ax-btn.ax-reverse.ax-line.ax-primary *[class*="font"] {
-  color: #198cff;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-primary:hover,
-.ax-btn.ax-reverse.ax-line.ax-primary:hover {
-  color: #198cff;
-  background-color: rgba(25, 140, 255, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(25, 140, 255, 0.2);
-}
-.ax-btn.ax-line.ax-primary:after,
-.ax-btn.ax-reverse.ax-line.ax-primary:after {
-  border-color: #198cff;
-}
-input.ax-btn.ax-line.ax-primary:hover,
-button.ax-btn.ax-line.ax-primary:hover {
-  border-color: #198cff;
-}
-.ax-btn.ax-line.ax-primary:active,
-.ax-btn.ax-reverse.ax-line.ax-primary:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-primary *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-primary *[class*="font"] {
-  color: #198cff;
-}
-input.ax-btn.ax-line.ax-primary,
-button.ax-btn.ax-line.ax-primary,
-input.ax-btn.ax-reverse.ax-line.ax-primary,
-button.ax-btn.ax-reverse.ax-line.ax-primary {
-  border-color: #198cff;
-}
-.ax-btn.ax-text.ax-primary,
-.ax-btn.ax-text.ax-primary:hover,
-.ax-btn.ax-text.ax-reverse.ax-primary,
-.ax-btn.ax-text.ax-reverse.ax-primary:hover {
-  color: #198cff;
-}
-.ax-btn.ax-text.ax-primary:active,
-.ax-btn.ax-text.ax-reverse.ax-primary:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-primary *[class*="font"],
-.ax-btn.ax-text.ax-reverse.ax-primary *[class*="font"] {
-  color: #198cff;
-}
-/**/
-.ax-btn.ax-secondary,
-.ax-btn.ax-reverse.ax-secondary {
-  color: #fff;
-  background-color: #475b66;
-}
-.ax-btn.ax-secondary *[class*="font"],
-.ax-btn.ax-reverse.ax-secondary *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-secondary:hover,
-.ax-btn.ax-reverse.ax-secondary:hover {
-  color: #fff;
-  background-color: #4f6672;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(71, 91, 102, 0.5);
-}
-.ax-btn.ax-secondary:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-secondary:hover,
-button.ax-btn.ax-secondary:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-secondary:active,
-.ax-btn.ax-reverse.ax-secondary:active {
-  color: rgba(255, 255, 255, 0.6);
-  background-color: #324048;
-}
-.ax-btn.ax-secondary:active *[class*="font"],
-.ax-btn.ax-secondary:active img,
-.ax-btn.ax-reverse.ax-secondary:active *[class*="font"],
-.ax-btn.ax-reverse.ax-secondary:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-secondary,
-.ax-btn.ax-reverse.ax-line.ax-secondary {
-  color: #475b66;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-secondary *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-secondary *[class*="font"] {
-  color: #475b66;
-}
-.ax-btn.ax-line.ax-secondary:hover,
-.ax-btn.ax-reverse.ax-line.ax-secondary:hover {
-  color: #475b66;
-  background-color: rgba(71, 91, 102, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(71, 91, 102, 0.2);
-}
-input.ax-btn.ax-line.ax-secondary:hover,
-button.ax-btn.ax-line.ax-secondary:hover {
-  border-color: #475b66;
-}
-.ax-btn.ax-line.ax-secondary:after,
-.ax-btn.ax-reverse.ax-line.ax-secondary:after {
-  border-color: #475b66;
-}
-.ax-btn.ax-line.ax-secondary:active,
-.ax-btn.ax-reverse.ax-line.ax-secondary:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-secondary,
-button.ax-btn.ax-line.ax-secondary,
-input.ax-btn.ax-reverse.ax-line.ax-secondary,
-button.ax-btn.ax-reverse.ax-line.ax-secondary {
-  border-color: #475b66;
-}
-.ax-btn.ax-text.ax-secondary,
-.ax-btn.ax-text.ax-secondary:hover,
-.ax-btn.ax-reverse.ax-text.ax-secondary,
-.ax-btn.ax-reverse.ax-text.ax-secondary:hover {
-  color: #475b66;
-}
-.ax-btn.ax-text.ax-secondary:active,
-.ax-btn.ax-reverse.ax-text.ax-secondary:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-secondary *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-secondary *[class*="font"] {
-  color: #475b66;
-}
-/**/
-.ax-btn.ax-success,
-.ax-btn.ax-reverse.ax-success {
-  color: #fff;
-  background-color: #41a358;
-}
-.ax-btn.ax-success *[class*="font"],
-.ax-btn.ax-reverse.ax-success *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-success:hover,
-.ax-btn.ax-reverse.ax-success:hover {
-  color: #fff;
-  background-color: #47b260;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(65, 163, 88, 0.5);
-}
-.ax-btn.ax-success:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-success:hover,
-button.ax-btn.ax-success:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-success:active,
-.ax-btn.ax-reverse.ax-success:active {
-  background-color: #327f44;
-  color: rgba(255, 255, 255, 0.6);
-}
-.ax-btn.ax-success:active *[class*="font"],
-.ax-btn.ax-success:active img,
-.ax-btn.ax-reverse.ax-success:active *[class*="font"],
-.ax-btn.ax-reverse.ax-success:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-success,
-.ax-btn.ax-reverse.ax-line.ax-success {
-  color: #41a358;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-success *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-success *[class*="font"] {
-  color: #41a358;
-}
-.ax-btn.ax-line.ax-success:hover,
-.ax-btn.ax-reverse.ax-line.ax-success:hover {
-  color: #41a358;
-  background-color: rgba(65, 163, 88, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(65, 163, 88, 0.2);
-}
-.ax-btn.ax-line.ax-success:after,
-.ax-btn.ax-reverse.ax-line.ax-success:after {
-  border-color: #41a358;
-}
-input.ax-btn.ax-line.ax-success:hover,
-button.ax-btn.ax-line.ax-success:hover {
-  border-color: #41a358;
-}
-.ax-btn.ax-line.ax-success:active,
-.ax-btn.ax-reverse.ax-line.ax-success:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-success,
-button.ax-btn.ax-line.ax-success,
-input.ax-btn.ax-reverse.ax-line.ax-success,
-button.ax-btn.ax-reverse.ax-line.ax-success {
-  border-color: #41a358;
-}
-.ax-btn.ax-text.ax-success,
-.ax-btn.ax-text.ax-success:hover,
-.ax-btn.ax-reverse.ax-text.ax-success,
-.ax-btn.ax-reverse.ax-text.ax-success:hover {
-  color: #41a358;
-}
-.ax-btn.ax-text.ax-success:active,
-.ax-btn.ax-reverse.ax-text.ax-success:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-success *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-success *[class*="font"] {
-  color: #41a358;
-}
-/**/
-.ax-btn.ax-danger,
-.ax-btn.ax-reverse.ax-danger {
-  background-color: #dc3545;
-  color: #fff;
-}
-.ax-btn.ax-danger *[class*="font"],
-.ax-btn.ax-reverse.ax-danger *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-danger:hover,
-.ax-btn.ax-reverse.ax-danger:hover {
-  color: #fff;
-  background-color: #df4655;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(220, 53, 69, 0.5);
-}
-.ax-btn.ax-danger:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-success:hover,
-button.ax-btn.ax-success:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-danger:active,
-.ax-btn.ax-reverse.ax-danger:active {
-  color: rgba(255, 255, 255, 0.6);
-  background-color: #bd2130;
-}
-.ax-btn.ax-danger:active *[class*="font"],
-.ax-btn.ax-danger:active img,
-.ax-btn.ax-reverse.ax-danger:active *[class*="font"],
-.ax-btn.ax-reverse.ax-danger:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-danger,
-.ax-btn.ax-line.ax-danger *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-danger,
-.ax-btn.ax-reverse.ax-line.ax-danger *[class*="font"] {
-  color: #dc3545;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-danger:hover,
-.ax-btn.ax-reverse.ax-line.ax-danger:hover {
-  color: #dc3545;
-  background-color: rgba(220, 53, 69, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(220, 53, 69, 0.2);
-}
-.ax-btn.ax-line.ax-danger:after,
-.ax-btn.ax-reverse.ax-line.ax-danger:after {
-  border-color: #dc3545;
-}
-input.ax-btn.ax-line.ax-line.ax-success:hover,
-button.ax-btn.ax-line.ax-line.ax-success:hover {
-  border-color: #dc3545;
-}
-.ax-btn.ax-line.ax-danger:active,
-.ax-btn.ax-reverse.ax-line.ax-danger:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-danger,
-button.ax-btn.ax-line.ax-danger,
-input.ax-btn.ax-reverse.ax-line.ax-danger,
-button.ax-btn.ax-reverse.ax-line.ax-danger {
-  border-color: #dc3545;
-}
-.ax-btn.ax-text.ax-danger,
-.ax-btn.ax-text.ax-danger:hover,
-.ax-btn.ax-reverse.ax-text.ax-danger,
-.ax-btn.ax-reverse.ax-text.ax-danger:hover {
-  color: #dc3545;
-}
-.ax-btn.ax-text.ax-danger:active,
-.ax-btn.ax-reverse.ax-text.ax-danger:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-danger *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-danger *[class*="font"] {
-  color: #dc3545;
-}
-/**/
-.ax-btn.ax-warning,
-.ax-btn.ax-reverse.ax-warning {
-  color: #333333;
-  background-color: #ffc107;
-}
-.ax-btn.ax-warning *[class*="font"],
-.ax-btn.ax-reverse.ax-warning *[class*="font"] {
-  color: #333333;
-}
-.ax-btn.ax-warning:hover,
-.ax-btn.ax-reverse.ax-warning:hover {
-  color: #333333;
-  background-color: #ffc61b;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(255, 193, 7, 0.5);
-}
-.ax-btn.ax-warning:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-warning:hover,
-button.ax-btn.ax-warning:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-warning:active,
-.ax-btn.ax-reverse.ax-warning:active {
-  color: rgba(0, 0, 0, 0.5);
-  background-color: #d39e00;
-}
-.ax-btn.ax-warning:active *[class*="font"],
-.ax-btn.ax-warning:active img,
-.ax-btn.ax-reverse.ax-warning:active *[class*="font"],
-.ax-btn.ax-reverse.ax-warning:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-warning,
-.ax-btn.ax-reverse.ax-line.ax-warning {
-  color: #ffc107;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-warning *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-warning *[class*="font"] {
-  color: #ffc107;
-}
-.ax-btn.ax-line.ax-warning:hover,
-.ax-btn.ax-reverse.ax-line.ax-warning:hover {
-  color: #ffc107;
-  background-color: rgba(255, 193, 7, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(255, 193, 7, 0.2);
-}
-.ax-btn.ax-line.ax-warning:after,
-.ax-btn.ax-reverse.ax-line.ax-warning:after {
-  border-color: #ffc107;
-}
-input.ax-btn.ax-line.ax-warning:hover,
-button.ax-btn.ax-line.ax-warning:hover {
-  border-color: #ffc107;
-}
-.ax-btn.ax-line.ax-warning:active,
-.ax-btn.ax-reverse.ax-line.ax-warning:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-warning,
-button.ax-btn.ax-line.ax-warning,
-input.ax-btn.ax-reverse.ax-line.ax-warning,
-button.ax-btn.ax-reverse.ax-line.ax-warning {
-  border-color: #ffc107;
-}
-.ax-btn.ax-text.ax-warning,
-.ax-btn.ax-text.ax-warning:hover,
-.ax-btn.ax-reverse.ax-text.ax-warning,
-.ax-btn.ax-reverse.ax-text.ax-warning:hover {
-  color: #ffc107;
-}
-.ax-btn.ax-text.ax-warning:active,
-.ax-btn.ax-reverse.ax-text.ax-warning:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-warning *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-warning *[class*="font"] {
-  color: #ffc107;
-}
-/**/
-.ax-btn.ax-info,
-.ax-btn.ax-reverse.ax-info {
-  background-color: #14ccc9;
-  color: #fff;
-}
-.ax-btn.ax-info *[class*="font"],
-.ax-btn.ax-reverse.ax-info *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-info:hover,
-.ax-btn.ax-reverse.ax-info:hover {
-  color: #fff;
-  background-color: #16dfdb;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(20, 204, 201, 0.5);
-}
-.ax-btn.ax-info:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-info:hover,
-button.ax-btn.ax-info:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-info:active,
-.ax-btn.ax-reverse.ax-info:active {
-  color: rgba(255, 255, 255, 0.6);
-  background-color: #0f9e9b;
-}
-.ax-btn.ax-info:active *[class*="font"],
-.ax-btn.ax-info:active img,
-.ax-btn.ax-reverse.ax-info:active *[class*="font"],
-.ax-btn.ax-reverse.ax-info:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-info,
-.ax-btn.ax-reverse.ax-line.ax-info {
-  color: #14ccc9;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-info *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-info *[class*="font"] {
-  color: #14ccc9;
-}
-.ax-btn.ax-line.ax-info:hover,
-.ax-btn.ax-reverse.ax-line.ax-info:hover {
-  color: #14ccc9;
-  background-color: rgba(20, 204, 201, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(20, 204, 201, 0.2);
-}
-.ax-btn.ax-line.ax-info:after,
-.ax-btn.ax-reverse.ax-line.ax-info:after {
-  border-color: #14ccc9;
-}
-input.ax-btn.ax-line.ax-info:hover,
-button.ax-btn.ax-line.ax-info:hover {
-  border-color: #14ccc9;
-}
-.ax-btn.ax-line.ax-info:active,
-.ax-btn.ax-reverse.ax-line.ax-info:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-info,
-button.ax-btn.ax-line.ax-info,
-input.ax-btn.ax-reverse.ax-line.ax-info,
-button.ax-btn.ax-reverse.ax-line.ax-info {
-  border-color: #14ccc9;
-}
-.ax-btn.ax-text.ax-info,
-.ax-btn.ax-text.ax-info:hover,
-.ax-btn.ax-reverse.ax-text.ax-info,
-.ax-btn.ax-reverse.ax-text.ax-info:hover {
-  color: #14ccc9;
-}
-.ax-btn.ax-text.ax-info:active,
-.ax-btn.ax-reverse.ax-text.ax-info:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-info *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-info *[class*="font"] {
-  color: #14ccc9;
-}
-/**/
-.ax-btn.ax-ad,
-.ax-btn.ax-reverse.ax-ad {
-  background-color: #ff8400;
-  color: #fff;
-}
-.ax-btn.ax-ad *[class*="font"],
-.ax-btn.ax-reverse.ax-ad *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-ad:hover,
-.ax-btn.ax-reverse.ax-ad:hover {
-  background-color: #ff8e14;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(255, 132, 0, 0.5);
-  color: #fff;
-}
-.ax-btn.ax-ad:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-ad:hover,
-button.ax-btn.ax-ad:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-ad:active,
-.ax-btn.ax-reverse.ax-ad:active {
-  color: rgba(255, 255, 255, 0.6);
-  background-color: #cc6a00;
-}
-.ax-btn.ax-ad:active *[class*="font"],
-.ax-btn.ax-ad:active img,
-.ax-btn.ax-reverse.ax-ad:active *[class*="font"],
-.ax-btn.ax-reverse.ax-ad:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-ad,
-.ax-btn.ax-reverse.ax-line.ax-ad {
-  color: #ff8400;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-ad *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-ad *[class*="font"] {
-  color: #ff8400;
-}
-.ax-btn.ax-line.ax-ad:hover,
-.ax-btn.ax-reverse.ax-line.ax-ad:hover {
-  color: #ff8400;
-  background-color: rgba(255, 132, 0, 0.1);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(255, 132, 0, 0.2);
-}
-.ax-btn.ax-line.ax-ad:after,
-.ax-btn.ax-reverse.ax-line.ax-ad:after {
-  border-color: #ff8400;
-}
-input.ax-btn.ax-line.ax-ad:hover,
-button.ax-btn.ax-line.ax-ad:hover {
-  border-color: #ff8400;
-}
-.ax-btn.ax-line.ax-ad:active,
-.ax-btn.ax-reverse.ax-line.ax-ad:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-ad,
-button.ax-btn.ax-line.ax-ad,
-input.ax-btn.ax-reverse.ax-line.ax-ad,
-button.ax-btn.ax-reverse.ax-line.ax-ad {
-  border-color: #ff8400;
-}
-.ax-btn.ax-text.ax-ad,
-.ax-btn.ax-text.ax-ad:hover,
-.ax-btn.ax-reverse.ax-text.ax-ad,
-.ax-btn.ax-reverse.ax-text.ax-ad:hover {
-  color: #ff8400;
-}
-.ax-btn.ax-text.ax-ad:active,
-.ax-btn.ax-reverse.ax-text.ax-ad:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-ad *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-ad *[class*="font"] {
-  color: #ff8400;
-}
-/**/
-.ax-btn.ax-ignore {
-  color: #999999;
-  background-color: #f0f0f0;
-}
-.ax-btn.ax-ignore *[class*="font"] {
-  color: #999999;
-}
-.ax-btn.ax-ignore:hover {
-  background-color: #fafafa;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(0, 0, 0, 0.1);
-}
-.ax-btn.ax-ignore:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-ignore:hover,
-button.ax-btn.ax-ignore:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-ignore:active {
-  background-color: #e6e6e6;
-}
-.ax-btn.ax-line.ax-ignore {
-  color: #999999;
-  background: transparent;
-}
-.ax-btn.ax-line.ax-ignore *[class*="font"] {
-  color: #999999;
-}
-.ax-btn.ax-line.ax-ignore:hover {
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(0, 0, 0, 0.1);
-  background-color: rgba(179, 179, 179, 0.1);
-}
-.ax-btn.ax-line.ax-ignore:after {
-  border-color: #ccc;
-}
-input.ax-btn.ax-line.ax-ignore:hover,
-button.ax-btn.ax-line.ax-ignore:hover {
-  border-color: #ccc;
-}
-.ax-btn.ax-line.ax-ignore:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-info,
-button.ax-btn.ax-line.ax-info {
-  border-color: #ccc;
-}
-.ax-btn.ax-text.ax-ignore,
-.ax-btn.ax-text.ax-ignore:hover {
-  color: #ccc;
-}
-.ax-btn.ax-text.ax-ignore:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-ignore *[class*="font"] {
-  color: #ccc;
-}
-/**/
-.ax-btn.ax-black,
-.ax-btn.ax-reverse.ax-black {
-  background-color: #333333;
-  color: #fff;
-}
-.ax-btn.ax-black *[class*="font"],
-.ax-btn.ax-reverse.ax-black *[class*="font"] {
-  color: #fff;
-}
-.ax-btn.ax-black:hover,
-.ax-btn.ax-reverse.ax-black:hover {
-  background-color: #666666;
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(51, 51, 51, 0.5);
-}
-.ax-btn.ax-black:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-input.ax-btn.ax-black:hover,
-button.ax-btn.ax-black:hover {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-black:active,
-.ax-btn.ax-reverse.ax-black:active {
-  color: rgba(255, 255, 255, 0.6);
-  background-color: #262626;
-}
-.ax-btn.ax-black:active *[class*="font"],
-.ax-btn.ax-black:active img,
-.ax-btn.ax-reverse.ax-black:active *[class*="font"],
-.ax-btn.ax-reverse.ax-black:active img {
-  opacity: 0.6;
-}
-.ax-btn.ax-line.ax-black,
-.ax-btn.ax-reverse.ax-line.ax-black {
-  color: #333333;
-  background: transparent;
-  border-color: #333333;
-}
-.ax-btn.ax-line.ax-black *[class*="font"],
-.ax-btn.ax-reverse.ax-line.ax-black *[class*="font"] {
-  color: #333333;
-}
-.ax-btn.ax-line.ax-black:hover,
-.ax-btn.ax-reverse.ax-line.ax-black:hover {
-  background-color: rgba(179, 179, 179, 0.2);
-  box-shadow: 0.2rem 0.2rem 1rem 0 rgba(51, 51, 51, 0.2);
-}
-.ax-btn.ax-line.ax-black:after,
-.ax-btn.ax-reverse.ax-line.ax-black:after {
-  border-color: #333333;
-}
-input.ax-btn.ax-line.ax-black:hover,
-button.ax-btn.ax-line.ax-black:hover {
-  border-color: #333333;
-}
-.ax-btn.ax-line.ax-black:active,
-.ax-btn.ax-reverse.ax-line.ax-black:active {
-  opacity: 0.6;
-}
-input.ax-btn.ax-line.ax-black,
-button.ax-btn.ax-line.ax-black,
-input.ax-btn.ax-reverse.ax-line.ax-black,
-button.ax-btn.ax-reverse.ax-line.ax-black {
-  border-color: #333333;
-}
-.ax-btn.ax-text.ax-black,
-.ax-btn.ax-text.ax-black:hover,
-.ax-btn.ax-reverse.ax-text.ax-black,
-.ax-btn.ax-reverse.ax-text.ax-black:hover {
-  color: #333333;
-}
-.ax-btn.ax-text.ax-black:active,
-.ax-btn.ax-reverse.ax-text.ax-black:active {
-  opacity: 0.6;
-}
-.ax-btn.ax-text.ax-black *[class*="font"],
-.ax-btn.ax-reverse.ax-text.ax-black *[class*="font"] {
-  color: #333333;
-}
-/**/
-.ax-btn.ax-reverse,
-.ax-btn.ax-line.ax-reverse {
-  background: transparent;
-  color: #fff;
-}
-input.ax-reverse.ax-btn,
-button.ax-reverse.ax-btn,
-input.ax-reverse.ax-btn.ax-line,
-button.ax-reverse.ax-btn.ax-line {
-  border-color: #fff;
-}
-.ax-btn.ax-reverse:after,
-.ax-btn.ax-reverse.ax-line:after {
-  border-color: #fff;
-}
-.ax-btn.ax-reverse:hover {
-  color: #fff;
-  background-color: rgba(255, 255, 255, 0.1);
-}
-.ax-btn.ax-reverse:active {
-  opacity: 0.6;
-}
-input.ax-reverse.ax-btn.ax-ignore,
-button.ax-reverse.ax-btn.ax-ignore,
-input.ax-reverse.ax-btn.ax-ignore.ax-line,
-button.ax-reverse.ax-btn.ax-ignore.ax-line {
-  color: rgba(255, 255, 255, 0.5);
-  border-color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-reverse.ax-ignore {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-reverse.ax-ignore *[class*="font"] {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-reverse.ax-ignore:after {
-  border-color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-reverse.ax-primary:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-secondary:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-success:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-danger:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-warning:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-info:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-ad:not(.ax-line):after,
-.ax-btn.ax-reverse.ax-black:not(.ax-line):after {
-  display: none;
-}
-button.ax-btn.ax-reverse.ax-primary:not(.ax-line),
-button.ax-btn.ax-reverse.ax-secondary:not(.ax-line),
-button.ax-btn.ax-reverse.ax-success:not(.ax-line),
-button.ax-btn.ax-reverse.ax-danger:not(.ax-line),
-button.ax-btn.ax-reverse.ax-warning:not(.ax-line),
-button.ax-btn.ax-reverse.ax-info:not(.ax-line),
-button.ax-btn.ax-reverse.ax-ad:not(.ax-line),
-button.ax-btn.ax-reverse.ax-black:not(.ax-line) {
-  border-color: transparent;
-}
-input.ax-btn.ax-reverse.ax-primary:not(.ax-line),
-input.ax-btn.ax-reverse.ax-secondary:not(.ax-line),
-input.ax-btn.ax-reverse.ax-success:not(.ax-line),
-input.ax-btn.ax-reverse.ax-danger:not(.ax-line),
-input.ax-btn.ax-reverse.ax-warning:not(.ax-line),
-input.ax-btn.ax-reverse.ax-info:not(.ax-line),
-input.ax-btn.ax-reverse.ax-ad:not(.ax-line),
-input.ax-btn.ax-reverse.ax-black:not(.ax-line) {
-  border-color: transparent;
-}
-/*btn disable*/
-.ax-btn.ax-disabled,
-.ax-btn.ax-disabled:hover,
-.ax-btn.ax-line.ax-disabled,
-.ax-btn.ax-line.ax-disabled:hover {
-  color: #333333;
-  cursor: not-allowed;
-  box-shadow: none;
-  opacity: 0.3;
-  text-decoration: none;
-}
-.ax-btn.ax-disabled:after,
-.ax-btn.ax-line.ax-disabled:after,
-.ax-btn.ax-disabled:hover:after,
-.ax-btn.ax-line.ax-disabled:hover:after {
-  border-color: #ccc;
-}
-.ax-btn.ax-disabled:hover *,
-.ax-btn.ax-disabled:active *,
-.ax-btn.ax-line.ax-disabled:hover *,
-.ax-btn.ax-line.ax-disabled:active *,
-.ax-btn.ax-text.ax-disabled:hover *,
-.ax-btn.ax-text.ax-disabled:active * {
-  opacity: 1;
-  box-shadow: none;
-  cursor: not-allowed;
-}
-.ax-btn.ax-reverse.ax-disabled,
-.ax-btn.ax-reverse.ax-line.ax-disabled {
-  background: transparent;
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-reverse.ax-disabled:after,
-.ax-btn.ax-reverse.ax-line.ax-disabled:after {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-primary.ax-disabled:after,
-.ax-btn.ax-secondary.ax-disabled:after,
-.ax-btn.ax-success.ax-disabled:after,
-.ax-btn.ax-danger.ax-disabled:after,
-.ax-btn.ax-warning.ax-disabled:after,
-.ax-btn.ax-info.ax-disabled:after,
-.ax-btn.ax-ad.ax-disabled:after,
-.ax-btn.ax-black.ax-disabled:after,
-.ax-btn.ax-primary.ax-disabled:hover:after,
-.ax-btn.ax-secondary.ax-disabled:hover:after,
-.ax-btn.ax-success.ax-disabled:hover:after,
-.ax-btn.ax-danger.ax-disabled:hover:after,
-.ax-btn.ax-warning.ax-disabled:hover:after,
-.ax-btn.ax-info.ax-disabled:hover:after,
-.ax-btn.ax-ad.ax-disabled:hover:after,
-.ax-btn.ax-black.ax-disabled:hover:after {
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-btn.ax-primary.ax-disabled,
-.ax-btn.ax-primary.ax-disabled:hover,
-.ax-btn.ax-primary.ax-disabled:active {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-btn.ax-secondary.ax-disabled,
-.ax-btn.ax-secondary.ax-disabled:hover,
-.ax-btn.ax-secondary.ax-disabled:active {
-  color: #fff;
-  background-color: #475b66;
-}
-.ax-btn.ax-success.ax-disabled,
-.ax-btn.ax-success.ax-disabled:hover,
-.ax-btn.ax-success.ax-disabled:active {
-  color: #fff;
-  background-color: #41a358;
-}
-.ax-btn.ax-danger.ax-disabled,
-.ax-btn.ax-danger.ax-disabled:hover,
-.ax-btn.ax-danger.ax-disabled:active {
-  color: #fff;
-  background-color: #dc3545;
-}
-.ax-btn.ax-warning.ax-disabled,
-.ax-btn.ax-warning.ax-disabled:hover,
-.ax-btn.ax-warning.ax-disabled:active {
-  color: #333333;
-  background-color: #ffc107;
-}
-.ax-btn.ax-info.ax-disabled,
-.ax-btn.ax-info.ax-disabled:hover,
-.ax-btn.ax-info.ax-disabled:active {
-  color: #fff;
-  background-color: #14ccc9;
-}
-.ax-btn.ax-ad.ax-disabled,
-.ax-btn.ax-ad.ax-disabled:hover,
-.ax-btn.ax-ad.ax-disabled:active {
-  color: #fff;
-  background-color: #ff8400;
-}
-.ax-btn.ax-ignore.ax-disabled,
-.ax-btn.ax-ignore.ax-disabled:hover,
-.ax-btn.ax-ignore.ax-disabled:active {
-  color: rgba(102, 102, 102, 0.8);
-  background-color: #f0f0f0;
-}
-.ax-btn.ax-black.ax-disabled,
-.ax-btn.ax-black.ax-disabled:hover,
-.ax-btn.ax-black.ax-disabled:active {
-  color: #fff;
-  background-color: #333333;
-}
-.ax-btn.ax-line.ax-primary.ax-disabled,
-.ax-btn.ax-line.ax-primary.ax-disabled:hover,
-.ax-btn.ax-line.ax-primary.ax-disabled:active {
-  color: #198cff;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-primary.ax-disabled:after,
-.ax-btn.ax-line.ax-primary.ax-disabled:hover:after {
-  border-color: #198cff;
-}
-.ax-btn.ax-line.ax-secondary.ax-disabled,
-.ax-btn.ax-line.ax-secondary.ax-disabled:hover,
-.ax-btn.ax-line.ax-secondary.ax-disabled:active {
-  color: #475b66;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-secondary.ax-disabled:after,
-.ax-btn.ax-line.ax-secondary.ax-disabled:hover:after {
-  border-color: #475b66;
-}
-.ax-btn.ax-line.ax-success.ax-disabled,
-.ax-btn.ax-line.ax-success.ax-disabled:hover,
-.ax-btn.ax-line.ax-success.ax-disabled:active {
-  color: #41a358;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-success.ax-disabled:after,
-.ax-btn.ax-line.ax-success.ax-disabled:hover:after {
-  border-color: #41a358;
-}
-.ax-btn.ax-line.ax-danger.ax-disabled,
-.ax-btn.ax-line.ax-danger.ax-disabled:hover,
-.ax-btn.ax-line.ax-danger.ax-disabled:active {
-  color: #dc3545;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-danger.ax-disabled:after,
-.ax-btn.ax-line.ax-danger.ax-disabled:hover:after {
-  border-color: #dc3545;
-}
-.ax-btn.ax-line.ax-warning.ax-disabled,
-.ax-btn.ax-line.ax-warning.ax-disabled:hover,
-.ax-btn.ax-line.ax-warning.ax-disabled:active {
-  color: #ffc107;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-warning.ax-disabled:after,
-.ax-btn.ax-line.ax-warning.ax-disabled:hover:after {
-  border-color: #ffc107;
-}
-.ax-btn.ax-line.ax-info.ax-disabled,
-.ax-btn.ax-line.ax-info.ax-disabled:hover,
-.ax-btn.ax-line.ax-info.ax-disabled:active {
-  color: #14ccc9;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-info.ax-disabled:after,
-.ax-btn.ax-line.ax-info.ax-disabled:hover:after {
-  border-color: #14ccc9;
-}
-.ax-btn.ax-line.ax-ad.ax-disabled,
-.ax-btn.ax-line.ax-ad.ax-disabled:hover,
-.ax-btn.ax-line.ax-ad.ax-disabled:active {
-  color: #ff8400;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-ad.ax-disabled:after,
-.ax-btn.ax-line.ax-ad.ax-disabled:hover:after {
-  border-color: #ff8400;
-}
-.ax-btn.ax-line.ax-ignore.ax-disabled,
-.ax-btn.ax-line.ax-ignore.ax-disabled:hover,
-.ax-btn.ax-line.ax-ignore.ax-disabled:active {
-  color: rgba(102, 102, 102, 0.8);
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-ignore.ax-disabled:after,
-.ax-btn.ax-line.ax-ignore.ax-disabled:hover:after {
-  border-color: #ccc;
-}
-.ax-btn.ax-reverse.ax-line.ax-ignore.ax-disabled,
-.ax-btn.ax-reverse.ax-line.ax-ignore.ax-disabled:hover,
-.ax-btn.ax-reverse.ax-line.ax-ignore.ax-disabled:active {
-  color: rgba(255, 255, 255, 0.5);
-  background: transparent;
-}
-.ax-btn.ax-reverse.ax-line.ax-ignore.ax-disabled:after,
-.ax-btn.ax-reverse.ax-line.ax-ignore.ax-disabled:hover:after {
-  border-color: rgba(255, 255, 255, 0.5);
-}
-.ax-btn.ax-line.ax-black.ax-disabled,
-.ax-btn.ax-line.ax-black.ax-disabled:hover,
-.ax-btn.ax-line.ax-black.ax-disabled:active {
-  color: #333333;
-  background: transparent;
-  opacity: 0.3;
-}
-.ax-btn.ax-line.ax-black.ax-disabled:after,
-.ax-btn.ax-line.ax-black.ax-disabled:hover:after {
-  border-color: #333333;
-}
-.ax-btn.ax-text.ax-primary.ax-disabled,
-.ax-btn.ax-text.ax-primary.ax-disabled:hover,
-.ax-btn.ax-text.ax-primary.ax-disabled:active {
-  color: #198cff;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-secondary.ax-disabled,
-.ax-btn.ax-text.ax-secondary.ax-disabled:hover,
-.ax-btn.ax-text.ax-secondary.ax-disabled:active {
-  color: #475b66;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-success.ax-disabled,
-.ax-btn.ax-text.ax-success.ax-disabled:hover,
-.ax-btn.ax-text.ax-success.ax-disabled:active {
-  color: #41a358;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-danger.ax-disabled,
-.ax-btn.ax-text.ax-danger.ax-disabled:hover,
-.ax-btn.ax-text.ax-danger.ax-disabled:active {
-  color: #dc3545;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-warning.ax-disabled,
-.ax-btn.ax-text.ax-warning.ax-disabled:hover,
-.ax-btn.ax-text.ax-warning.ax-disabled:active {
-  color: #ffc107;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-info.ax-disabled,
-.ax-btn.ax-text.ax-info.ax-disabled:hover,
-.ax-btn.ax-text.ax-info.ax-disabled:active {
-  color: #14ccc9;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-ad.ax-disabled,
-.ax-btn.ax-text.ax-ad.ax-disabled:hover,
-.ax-btn.ax-text.ax-ad.ax-disabled:active {
-  color: #ff8400;
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-ignore.ax-disabled,
-.ax-btn.ax-text.ax-ignore.ax-disabled:hover,
-.ax-btn.ax-text.ax-ignore.ax-disabled:active {
-  color: rgba(102, 102, 102, 0.8);
-  opacity: 0.3;
-}
-.ax-btn.ax-text.ax-black.ax-disabled,
-.ax-btn.ax-text.ax-black.ax-disabled:hover,
-.ax-btn.ax-text.ax-black.ax-disabled:active {
-  color: #333333;
-  opacity: 0.3;
-}
-/*btn shadow*/
-.ax-btn.ax-text.ax-shadow {
-  box-shadow: none;
-}
-.ax-btn.ax-primary.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(25, 140, 255, 0.4);
-}
-.ax-btn.ax-secondary.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(71, 91, 102, 0.4);
-}
-.ax-btn.ax-success.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(65, 163, 88, 0.4);
-}
-.ax-btn.ax-danger.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(220, 53, 69, 0.4);
-}
-.ax-btn.ax-warning.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(255, 193, 7, 0.4);
-}
-.ax-btn.ax-ad.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(255, 132, 0, 0.4);
-}
-.ax-btn.ax-info.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0.5rem 0.5rem 2rem rgba(20, 204, 201, 0.4);
-}
-.ax-btn.ax-black.ax-shadow:not(.ax-line):not(.ax-text):not(.ax-disabled) {
-  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.12);
-  box-shadow: 0.5rem 0.5rem 2rem rgba(51, 51, 51, 0.4);
-}
-/*btn borderless*/
-.ax-btn.ax-borderless {
-  border: none;
-}
-.ax-btn.ax-borderless:after {
-  display: none;
-}
-/*btn txt*/
-.ax-txt-btn {
-  font-size: 1.4rem;
-}
-.ax-txt-btn *[class*="font"] {
-  font-size: 1.4rem;
-}
-/*btn group*/
-.ax-btn-group .ax-btn,
-.ax-btn-group .ax-btn:after {
-  border-radius: 0;
-}
-.ax-btn-group > .ax-btn:first-child,
-.ax-btn-group > .ax-btn:first-child:after {
-  border-top-left-radius: 0.3rem;
-  border-bottom-left-radius: 0.3rem;
-}
-.ax-btn-group > .ax-btn:last-child,
-.ax-btn-group > .ax-btn:last-child:after {
-  border-top-right-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-}
-.ax-btn-group > .ax-btn:not(:first-of-type) {
-  margin-left: -0.1rem;
-}
-.ax-btn-group .ax-btn:hover {
-  z-index: 2;
-}
-.ax-btn-group .ax-btn.ax-active {
-  z-index: 3;
-  background-color: #198cff;
-  color: #fff;
-}
-.ax-btn-group .ax-btn.ax-active svg {
-  fill: #fff;
-}
-/*gradient btn*/
-.ax-primary.ax-gradient-0 {
-  background: linear-gradient(0deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient,
-.ax-primary.ax-gradient-45 {
-  background: linear-gradient(45deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-90 {
-  background: linear-gradient(90deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-135 {
-  background: linear-gradient(135deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-180 {
-  background: linear-gradient(180deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-225 {
-  background: linear-gradient(225deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-270 {
-  background: linear-gradient(270deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-315 {
-  background: linear-gradient(315deg, #198cff, #6619ff);
-}
-.ax-primary.ax-gradient-360 {
-  background: linear-gradient(360deg, #198cff, #6619ff);
-}
-.ax-secondary.ax-gradient-0 {
-  background: linear-gradient(0deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient,
-.ax-secondary.ax-gradient-45 {
-  background: linear-gradient(45deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-90 {
-  background: linear-gradient(90deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-135 {
-  background: linear-gradient(135deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-180 {
-  background: linear-gradient(180deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-225 {
-  background: linear-gradient(225deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-270 {
-  background: linear-gradient(270deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-315 {
-  background: linear-gradient(315deg, #475b66, #474b66);
-}
-.ax-secondary.ax-gradient-360 {
-  background: linear-gradient(360deg, #475b66, #474b66);
-}
-.ax-success.ax-gradient-0 {
-  background: linear-gradient(0deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient,
-.ax-success.ax-gradient-45 {
-  background: linear-gradient(45deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-90 {
-  background: linear-gradient(90deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-135 {
-  background: linear-gradient(135deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-180 {
-  background: linear-gradient(180deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-225 {
-  background: linear-gradient(225deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-270 {
-  background: linear-gradient(270deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-315 {
-  background: linear-gradient(315deg, #41a358, #41a379);
-}
-.ax-success.ax-gradient-360 {
-  background: linear-gradient(360deg, #41a358, #41a379);
-}
-.ax-danger.ax-gradient-0 {
-  background: linear-gradient(0deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient,
-.ax-danger.ax-gradient-45 {
-  background: linear-gradient(45deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-90 {
-  background: linear-gradient(90deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-135 {
-  background: linear-gradient(135deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-180 {
-  background: linear-gradient(180deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-225 {
-  background: linear-gradient(225deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-270 {
-  background: linear-gradient(270deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-315 {
-  background: linear-gradient(315deg, #dc3545, #dc7935);
-}
-.ax-danger.ax-gradient-360 {
-  background: linear-gradient(360deg, #dc3545, #dc7935);
-}
-.ax-warning.ax-gradient-0 {
-  background: linear-gradient(0deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient,
-.ax-warning.ax-gradient-45 {
-  background: linear-gradient(45deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-90 {
-  background: linear-gradient(90deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-135 {
-  background: linear-gradient(135deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-180 {
-  background: linear-gradient(180deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-225 {
-  background: linear-gradient(225deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-270 {
-  background: linear-gradient(270deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-315 {
-  background: linear-gradient(315deg, #ffc107, #eaff07);
-}
-.ax-warning.ax-gradient-360 {
-  background: linear-gradient(360deg, #ffc107, #eaff07);
-}
-.ax-info.ax-gradient-0 {
-  background: linear-gradient(0deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient,
-.ax-info.ax-gradient-45 {
-  background: linear-gradient(45deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-90 {
-  background: linear-gradient(90deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-135 {
-  background: linear-gradient(135deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-180 {
-  background: linear-gradient(180deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-225 {
-  background: linear-gradient(225deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-270 {
-  background: linear-gradient(270deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-315 {
-  background: linear-gradient(315deg, #14ccc9, #1492cc);
-}
-.ax-info.ax-gradient-360 {
-  background: linear-gradient(360deg, #14ccc9, #1492cc);
-}
-.ax-ad.ax-gradient-0 {
-  background: linear-gradient(0deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient,
-.ax-ad.ax-gradient-45 {
-  background: linear-gradient(45deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-90 {
-  background: linear-gradient(90deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-135 {
-  background: linear-gradient(135deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-180 {
-  background: linear-gradient(180deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-225 {
-  background: linear-gradient(225deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-270 {
-  background: linear-gradient(270deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-315 {
-  background: linear-gradient(315deg, #ff8400, #ffd900);
-}
-.ax-ad.ax-gradient-360 {
-  background: linear-gradient(360deg, #ff8400, #ffd900);
-}
-.ax-gradient.ax-rotate {
-  animation: hue 10s infinite;
-}
-@keyframes hue {
-  0% {
-    filter: hue-rotate(0deg);
-  }
-  100% {
-    filter: hue-rotate(360deg);
-  }
-}
-/*ripple*/
-.ax-ripple {
-  position: relative;
-  overflow: hidden;
-}
-.ax-ripple > u {
-  width: 10rem;
-  height: 10rem;
-  opacity: 0;
-  border-radius: 50%;
-  background: radial-gradient(rgba(0, 0, 0, 0.7) 10%, #000000 30%, rgba(0, 0, 0, 0.7) 60%, #000000 80%, rgba(0, 0, 0, 0.7) 100%);
-  transform: translate(-50%, -50%) scale(0.2);
-  animation: ripple 0.6s ease-out;
-  pointer-events: none;
-  position: absolute;
-  z-index: 4;
-}
-@keyframes ripple {
-  0% {
-    transform: translate(-50%, -50%) scale(0.2);
-    opacity: 0.2;
-  }
-  100% {
-    transform: translate(-50%, -50%) scale(1.5);
-    opacity: 0;
-  }
-}
-/*form*/
-.ax-form-origin {
-  font-size: 1.4rem;
-  margin: 0.8rem 0;
-}
-.ax-form-origin .ax-icon {
-  color: #adc1cc;
-  font-size: 1.4rem;
-  width: 1.8rem;
-}
-.ax-form-label {
-  width: 16rem;
-  height: 3.8rem;
-  line-height: calc(3.8rem/2);
-  text-align: right;
-  margin-right: 1.4rem;
-  display: -webkit-flex;
-  display: -moz-flex;
-  display: -ms-flexbox;
-  display: flex;
-  justify-content: flex-end;
-  align-items: center;
-}
-.ax-form-label:empty {
-  height: 0rem;
-}
-.ax-form-input {
-  width: 36rem;
-  position: relative;
-}
-input[type="text"],
-input[type="search"],
-input[type="url"],
-input[type="email"],
-input[type="number"],
-input[type="password"],
-input[type="file"] {
-  background-color: #fff;
-  border: 0;
-  position: relative;
-  z-index: 1;
-}
-input[type="text"],
-input[type="search"],
-input[type="url"],
-input[type="email"],
-input[type="number"],
-input[type="password"],
-input[type="file"],
-select {
-  width: 100%;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  padding: 0 1rem;
-  border: 1px solid #e0e0e0;
-  box-sizing: border-box;
-  border-radius: 0.3rem;
-  position: relative;
-}
-input[type="range"] {
-  height: 0.3rem;
-  width: 100%;
-  background-color: #f0f0f0;
-  border-radius: 0.3rem;
-  margin: calc((3.8rem - 0.3rem)/2) 0;
-  outline: none;
-  -webkit-appearance: none;
-}
-_:-ms-lang(x),
-input[type="range"] {
-  height: 2.2rem;
-  border-radius: 0;
-  margin: calc((3.8rem - 2.2rem)/2) 0;
-  background: transparent;
-}
-input[type="range"]::-webkit-slider-thumb {
-  width: 1.6rem;
-  height: 1.6rem;
-  border: 0.2rem solid #198cff;
-  border-radius: 50%;
-  background-color: #fff;
-  cursor: pointer;
-  -webkit-appearance: none;
-  transition: all 100ms linear;
-}
-input[type="range"]::-moz-range-thumb {
-  width: 1.2rem;
-  height: 1.2rem;
-  border: 0.2rem solid #198cff;
-  border-radius: 50%;
-  background-color: #fff;
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-input[type="range"]::-moz-range-progress {
-  background-color: #198cff;
-  border-radius: 0.3rem;
-}
-input[type="range"]::-ms-thumb {
-  width: 1.2rem;
-  height: 1.2rem;
-  border: 0.2rem solid #198cff;
-  border-radius: 50%;
-  background-color: #fff;
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-input[type="range"]::-ms-track {
-  color: transparent;
-  border-color: transparent;
-  height: 1px;
-  border-radius: 0.3rem;
-  background-color: #f0f0f0;
-  transition: all 100ms linear;
-}
-input[type="range"]::-ms-fill-lower {
-  height: 0.3rem;
-  border-radius: 0.3rem;
-  background: #198cff;
-  transition: all 100ms linear;
-}
-input[type="range"]::-ms-fill-upper {
-  height: 0.3rem;
-  border-radius: 0.3rem;
-  background: transparent;
-}
-input[type="range"]:not([disabled]):hover {
-  background-color: #d7e7f5;
-}
-_:-ms-lang(x),
-input[type="range"]:not([disabled]):hover {
-  background: transparent;
-}
-_:-ms-lang(x),
-input[type="range"]::-ms-track:hover {
-  background-color: #d7e7f5;
-}
-input[type="range"]:not([disabled])::-webkit-slider-thumb:hover {
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-}
-input[type="range"]:not([disabled])::-moz-range-thumb:hover {
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-}
-_:-ms-lang(x),
-input[type="range"]:not([disabled])::-ms-thumb:hover {
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-}
-input[type="range"][disabled] {
-  opacity: 0.4;
-}
-input[type="range"]:focus {
-  outline: none;
-}
-.ax-form-group.ax-xs input[type="range"],
-input[type="range"].ax-xs {
-  margin: calc((2.2rem - 0.3rem) / 2) 0;
-}
-_:-ms-lang(x),
-.ax-form-group.ax-xs input[type="range"] {
-  margin: 0;
-}
-_:-ms-lang(x),
-input[type="range"].ax-xs {
-  margin: 0;
-}
-.ax-form-group.ax-sm input[type="range"],
-input[type="range"].ax-sm {
-  margin: calc((2.8rem - 0.3rem) / 2) 0;
-}
-_:-ms-lang(x),
-.ax-form-group.ax-sm input[type="range"] {
-  margin: calc((2.8rem - 2.2rem) / 2) 0;
-}
-_:-ms-lang(x),
-input[type="range"].ax-sm {
-  margin: calc((2.8rem - 2.2rem) / 2) 0;
-}
-.ax-form-group.ax-lg input[type="range"],
-input[type="range"].ax-lg {
-  margin: calc((3.8rem + 1rem - 0.3rem) / 2) 0;
-}
-_:-ms-lang(x),
-.ax-form-group.ax-lg input[type="range"] {
-  margin: calc((3.8rem + 1rem - 2.2rem) / 2) 0;
-}
-_:-ms-lang(x),
-input[type="range"].ax-lg {
-  margin: calc((3.8rem + 1rem - 2.2rem) / 2) 0;
-}
-select {
-  background-color: transparent;
-  z-index: 3;
-}
-textarea {
-  width: 100%;
-  height: calc(2.2rem*5 + 1.8rem);
-  line-height: 2.2rem;
-  border: 1px solid #e0e0e0;
-  box-sizing: border-box;
-  padding: 0.8rem 1rem;
-  border-radius: 0.3rem;
-  overflow: auto;
-  display: block;
-  position: relative;
-  z-index: 1;
-}
-input[type="file"]::file-selector-button {
-  height: calc(3.8rem + 0.2rem);
-  line-height: calc(3.8rem + 0.2rem);
-  border: none;
-  border-right: 1px solid #ebebeb;
-  padding: 0 1rem 0 0;
-  background: transparent;
-  pointer-events: none;
-}
-input[type="file"]::-webkit-file-upload-button {
-  height: calc(3.8rem + 0.2rem);
-  line-height: calc(3.8rem + 0.2rem);
-  border: none;
-  border-right: 1px solid #ebebeb;
-  padding: 0 1rem 0 0;
-  background: transparent;
-  pointer-events: none;
-}
-input:not([readonly]):not([disabled]):not([class*="ax-check"]):not([class*="ax-btn"]):hover,
-textarea:not([readonly]):not([disabled]):not([class*="ax-check"]):hover {
-  border-color: rgba(25, 140, 255, 0.5);
-}
-input[readonly=""]:not([class*="mbsc"]):not([id*="_dummy"]),
-textarea[readonly=""]:not([class*="mbsc"]):not([id*="_dummy"]),
-input[disabled=""]:not([class*="mbsc"]):not([id*="_dummy"]),
-textarea[disabled=""]:not([class*="mbsc"]):not([id*="_dummy"]),
-input.ax-forbid,
-textarea.ax-forbid {
-  color: #b3b3b3;
-  cursor: not-allowed;
-  background-color: #f0f0f0;
-  box-shadow: none;
-}
-input[readonly=""]:not([class*="mbsc"]):not([id*="_dummy"]):focus,
-textarea[readonly=""]:not([class*="mbsc"]):not([id*="_dummy"]):focus,
-input[type="text"].ax-forbid:focus,
-input[type="search"].ax-forbid:focus,
-input[type="url"].ax-forbid:focus,
-input[type="email"].ax-forbid:focus,
-input[type="number"].ax-forbid:focus,
-input[type="password"].ax-forbid:focus,
-input[type="file"].ax-forbid:focus,
-textarea.ax-forbid:focus {
-  color: #b3b3b3;
-  background-color: #f0f0f0;
-  border-color: #e0e0e0 !important;
-  box-shadow: none;
-}
-input[type="text"]:focus,
-input[type="text"].ax-focus,
-input[type="search"]:focus,
-input[type="search"].ax-focus,
-input[type="url"]:focus,
-input[type="url"].ax-focus,
-input[type="email"]:focus,
-input[type="email"].ax-focus,
-input[type="number"]:focus,
-input[type="number"].ax-focus,
-input[type="password"]:focus,
-input[type="password"].ax-focus,
-input[type="file"]:focus,
-input[type="file"].ax-focus,
-textarea:focus,
-textarea.ax-focus {
-  color: #198cff;
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-  border-color: rgba(25, 140, 255, 0.5) !important;
-}
-/*input size*/
-input[type="text"].ax-xs,
-input[type="search"].ax-xs,
-input[type="url"].ax-xs,
-input[type="email"].ax-xs,
-input[type="number"].ax-xs,
-input[type="password"].ax-xs,
-input[type="file"].ax-xs,
-select.ax-xs {
-  font-size: 1.2rem;
-  height: 2.2rem;
-  line-height: 2.2rem;
-  padding: 0 0.4rem;
-}
-.ax-file.ax-xs {
-  font-size: 1.2rem;
-}
-.ax-file.ax-xs input[type="file"] {
-  height: 2.2rem;
-}
-.ax-file.ax-xs:before,
-.ax-file.ax-xs:after {
-  height: 2.2rem;
-  line-height: 2.2rem;
-}
-textarea.ax-xs {
-  font-size: 1.2rem;
-  line-height: 2.2rem;
-  height: calc(2.2rem*3 + 0.2rem);
-  padding: 0rem 0.4rem;
-}
-input[type="file"].ax-xs::file-selector-button {
-  height: calc(2.2rem + 0.2rem);
-  line-height: calc(2.2rem + 0.2rem);
-  padding-right: 0.4rem;
-}
-input[type="file"].ax-xs::-webkit-file-upload-button {
-  height: calc(2.2rem + 0.2rem);
-  line-height: calc(2.2rem + 0.2rem);
-  padding-right: 0.4rem;
-}
-.ax-form-group.ax-xs {
-  font-size: 1.2rem;
-}
-.ax-form-group.ax-xs .ax-form-label {
-  height: 2.2rem;
-  line-height: 2.2rem;
-  margin-right: 0.4rem;
-}
-.ax-form-group.ax-xs .ax-form-con {
-  line-height: 2.2rem;
-}
-.ax-form-group.ax-xs .ax-form-txt {
-  line-height: 2.2rem;
-  margin-left: 0.4rem;
-}
-.ax-form-group.ax-xs .ax-pos-right {
-  line-height: 2.2rem;
-  padding-right: 0.4rem;
-}
-.ax-form-group.ax-xs .ax-pos-right [class*="font"] {
-  height: 2.2rem;
-  line-height: 2.4rem;
-  margin-left: 0.4rem;
-}
-.ax-form-group.ax-xs .ax-form-head {
-  height: 2.2rem;
-  width: 2.2rem;
-  background-size: cover, 1.4rem 1.4rem;
-  margin-left: 0.4rem;
-}
-.ax-form-group.ax-xs .ax-form-img {
-  height: 2.2rem;
-  line-height: 2.2rem;
-  margin-left: 0.4rem;
-}
-.ax-form-group.ax-xs .ax-form-img a,
-.ax-form-group.ax-xs .ax-form-img span,
-.ax-form-group.ax-xs .ax-form-img i {
-  margin: 0 0.4rem;
-}
-.ax-form-group.ax-xs .ax-file:before {
-  height: 2.2rem;
-  line-height: 2rem;
-  padding: 0 0.4rem;
-}
-.ax-form-group.ax-xs .ax-file:after {
-  height: 2.2rem;
-  line-height: 2.2rem;
-  padding: 0 0.4rem;
-}
-input[type="text"].ax-sm,
-input[type="search"].ax-sm,
-input[type="url"].ax-sm,
-input[type="email"].ax-sm,
-input[type="number"].ax-sm,
-input[type="password"].ax-sm,
-input[type="file"].ax-sm,
-select.ax-sm {
-  font-size: 1.4rem;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  padding: 0 0.6rem;
-}
-.ax-file.ax-sm input[type="file"] {
-  height: calc(3.8rem - 1rem);
-}
-.ax-file.ax-sm:before,
-.ax-file.ax-sm:after {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-textarea.ax-sm {
-  font-size: 1.4rem;
-  height: calc(2.2rem*3 + 0.8rem);
-  padding: 0.3rem 0.6rem;
-}
-input[type="file"].ax-sm::file-selector-button {
-  height: calc(3.8rem - 1rem + 0.2rem);
-  line-height: calc(3.8rem - 1rem + 0.2rem);
-  padding-right: 0.6rem;
-}
-input[type="file"].ax-sm::-webkit-file-upload-button {
-  height: calc(3.8rem - 1rem + 0.2rem);
-  line-height: calc(3.8rem - 1rem + 0.2rem);
-  padding-right: 0.6rem;
-}
-.ax-form-group.ax-sm .ax-form-label {
-  height: calc(3.8rem - 1rem);
-  line-height: calc((3.8rem - 1rem)/2);
-  margin-right: 0.8rem;
-}
-.ax-form-group.ax-sm .ax-form-txt {
-  line-height: calc(3.8rem - 1rem);
-  margin-left: 0.8rem;
-}
-.ax-form-group.ax-sm .ax-pos-right {
-  line-height: calc(3.8rem - 1rem);
-  padding-right: 0.8rem;
-}
-.ax-form-group.ax-sm .ax-pos-right [class*="font"] {
-  margin-left: 0.8rem;
-}
-.ax-form-group.ax-sm .ax-form-head {
-  height: calc(3.8rem - 1rem);
-  width: calc(3.8rem - 1rem);
-  background-size: cover, 1.8rem 1.8rem;
-  margin-left: 0.8rem;
-}
-.ax-form-group.ax-sm .ax-form-img {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  margin-left: 0.8rem;
-}
-.ax-form-group.ax-sm .ax-form-img a,
-.ax-form-group.ax-sm .ax-form-img span,
-.ax-form-group.ax-sm .ax-form-img i {
-  margin: 0 0.6rem;
-}
-.ax-form-group.ax-sm .ax-file:before {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1.2rem);
-  padding: 0 0.6rem;
-}
-.ax-form-group.ax-sm .ax-file:after {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  padding: 0 0.8rem;
-}
-input[type="text"].ax-lg,
-input[type="search"].ax-lg,
-input[type="url"].ax-lg,
-input[type="email"].ax-lg,
-input[type="number"].ax-lg,
-input[type="password"].ax-lg,
-input[type="file"].ax-lg,
-select.ax-lg {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-  padding: 0 1.4rem;
-}
-.ax-file.ax-lg input[type="file"] {
-  height: calc(3.8rem + 1rem);
-}
-.ax-file.ax-lg:before,
-.ax-file.ax-lg:after {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-}
-textarea.ax-lg {
-  height: calc(2.2rem*5 + 2.3rem);
-  padding: 0.8rem 1.4rem;
-}
-input[type="file"].ax-lg::file-selector-button {
-  height: calc(3.8rem + 1rem + 0.2rem);
-  line-height: calc(3.8rem + 1rem + 0.2rem);
-  padding-right: 1.4rem;
-}
-input[type="file"].ax-lg::-webkit-file-upload-button {
-  height: calc(3.8rem + 1rem + 0.2rem);
-  line-height: calc(3.8rem + 1rem + 0.2rem);
-  padding-right: 1.4rem;
-}
-.ax-form-group.ax-lg .ax-form-label {
-  height: calc(3.8rem + 1rem);
-  line-height: calc((3.8rem + 1rem)/2);
-}
-.ax-form-group.ax-lg .ax-form-txt {
-  line-height: calc(3.8rem + 1rem);
-}
-.ax-form-group.ax-lg .ax-pos-right {
-  line-height: calc(3.8rem + 1rem);
-}
-.ax-form-group.ax-lg .ax-form-head {
-  height: calc(3.8rem + 1rem);
-  width: calc(3.8rem + 1rem);
-  margin-left: 1.4rem;
-}
-.ax-form-group.ax-lg .ax-form-img {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-  margin-left: 1.4rem;
-}
-.ax-form-group.ax-lg .ax-form-img a,
-.ax-form-group.ax-lg .ax-form-img span,
-.ax-form-group.ax-lg .ax-form-img i {
-  margin: 0 1.8rem;
-}
-.ax-form-group.ax-lg .ax-file:before {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 0.8rem);
-  padding: 0 1.4rem;
-}
-.ax-form-group.ax-lg .ax-file:after {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-  padding: 0 1.8rem;
-}
-input[type="text"].ax-square,
-input[type="search"].ax-square,
-input[type="url"].ax-square,
-input[type="email"].ax-square,
-input[type="number"].ax-square,
-input[type="password"].ax-square,
-input[type="file"].ax-square,
-select.ax-square,
-textarea.ax-square,
-.ax-file.ax-square:after {
-  border-radius: 0;
-}
-.ax-file.ax-square:before,
-.ax-file.ax-square:after {
-  border-radius: 0;
-}
-input[type="text"].ax-round,
-input[type="search"].ax-round,
-input[type="url"].ax-round,
-input[type="email"].ax-round,
-input[type="number"].ax-round,
-input[type="password"].ax-round,
-input[type="file"].ax-round,
-select.ax-round,
-textarea.ax-round {
-  border-radius: calc(3.8rem/2);
-  padding-left: 1.6rem;
-  padding-right: 1.6rem;
-}
-.ax-file.ax-round:after {
-  border-radius: calc(3.8rem/2);
-  padding-left: 1.6rem;
-  padding-right: 1.6rem;
-}
-.ax-file.ax-round:after {
-  border-radius: 0 calc(3.8rem/2) calc(3.8rem/2) 0;
-  padding: 0 1.6rem;
-}
-input.ax-round + .ax-pos-right,
-textarea.ax-round + .ax-pos-right {
-  padding-right: 1.6rem;
-}
-input[type="text"].ax-round.ax-xs,
-input[type="search"].ax-round.ax-xs,
-input[type="url"].ax-round.ax-xs,
-input[type="email"].ax-round.ax-xs,
-input[type="number"].ax-round.ax-xs,
-input[type="password"].ax-round.ax-xs,
-input[type="file"].ax-round.ax-xs,
-select.ax-round.ax-xs,
-textarea.ax-round.ax-xs {
-  border-radius: 1.1rem;
-  padding-left: 0.8rem;
-  padding-right: 0.8rem;
-}
-.ax-file.ax-round.ax-xs:before {
-  padding: 0 0.8rem;
-}
-.ax-file.ax-round.ax-xs:after {
-  border-radius: 1.1rem;
-  padding-left: 0.8rem;
-  padding-right: 0.8rem;
-}
-.ax-file.ax-round.ax-xs:after {
-  border-radius: 0 1.1rem 1.1rem 0;
-  padding: 0 0.8rem;
-}
-input.ax-round.ax-xs + .ax-pos-right {
-  padding-right: 0.8rem;
-}
-input[type="text"].ax-round.ax-sm,
-input[type="search"].ax-round.ax-sm,
-input[type="url"].ax-round.ax-sm,
-input[type="email"].ax-round.ax-sm,
-input[type="number"].ax-round.ax-sm,
-input[type="password"].ax-round.ax-sm,
-input[type="file"].ax-round.ax-sm,
-select.ax-round.ax-sm,
-textarea.ax-round.ax-sm {
-  border-radius: calc((3.8rem - 1rem) / 2);
-  padding-left: 1rem;
-  padding-right: 1rem;
-}
-.ax-file.ax-round.ax-sm:before {
-  padding-left: 1rem;
-  padding-right: 1rem;
-}
-.ax-file.ax-round.ax-sm:after {
-  border-radius: calc((3.8rem - 1rem) / 2);
-  padding-left: 1rem;
-  padding-right: 1rem;
-}
-.ax-file.ax-round.ax-sm:after {
-  border-radius: 0 calc((3.8rem - 1rem)/2) calc((3.8rem - 1rem)/2) 0;
-  padding: 0 1rem;
-}
-input.ax-round.ax-sm + .ax-pos-right {
-  padding-right: 1rem;
-}
-input[type="text"].ax-round.ax-lg,
-input[type="search"].ax-round.ax-lg,
-input[type="url"].ax-round.ax-lg,
-input[type="email"].ax-round.ax-lg,
-input[type="number"].ax-round.ax-lg,
-input[type="password"].ax-round.ax-lg,
-input[type="file"].ax-round.ax-lg,
-select.ax-round.ax-lg,
-textarea.ax-round.ax-lg {
-  border-radius: calc((3.8rem + 1rem) / 2);
-  padding-left: 2rem;
-  padding-right: 2rem;
-}
-.ax-file.ax-round.ax-lg:before {
-  padding-left: 2rem;
-  padding-right: 2rem;
-}
-.ax-file.ax-round.ax-lg:before {
-  border-radius: calc((3.8rem + 1rem) / 2);
-  padding-left: 2rem;
-  padding-right: 2rem;
-}
-.ax-file.ax-round.ax-lg:after {
-  border-radius: 0 calc((3.8rem + 1rem) / 2) calc((3.8rem + 1rem) / 2) 0;
-  padding: 0 2rem;
-}
-input.ax-round.ax-lg + .ax-pos-right {
-  padding-right: 2rem;
-}
-/*input dodge*/
-.ax-dodge {
-  position: relative;
-}
-.ax-dodge label {
-  color: rgba(0, 0, 0, 0.3);
-  padding: 0 1rem;
-  border-radius: 0.3rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  cursor: text;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-  transition: all 100ms linear;
-}
-.ax-dodge.ax-active label {
-  font-size: 1rem;
-  line-height: 1.2rem;
-  height: 1.2rem;
-  padding: 0 0.4rem;
-  background-color: #fff;
-  transform: translate(0, -50%);
-  left: 0.6rem;
-}
-.ax-dodge.ax-active:after {
-  content: '';
-  height: 1.2rem;
-  width: 18rem;
-  background: transparent;
-  position: absolute;
-  left: 0;
-  top: -0.6rem;
-  z-index: 2;
-}
-.ax-dodge.ax-lg label {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-}
-.ax-dodge.ax-active.ax-lg label {
-  line-height: 1.2rem;
-  height: 1.2rem;
-  left: 1rem;
-}
-.ax-dodge input:-webkit-autofill,
-.ax-dodge textarea:-webkit-autofill {
-  -webkit-box-shadow: 0 0 0 100rem #fff inset;
-}
-/* mobiscroll */
-input[readonly=""][class*="mbsc"],
-textarea[readonly=""][class*="mbsc"],
-input[readonly=""][class*="mbsc"]:focus,
-textarea[readonly=""][class*="mbsc"]:focus,
-input[readonly=""][id*="_dummy"],
-textarea[readonly=""][id*="_dummy"],
-input[readonly=""][id*="_dummy"]:focus,
-textarea[readonly=""][id*="_dummy"]:focus {
-  color: #333333;
-  box-shadow: none;
-  border-color: #e0e0e0 !important;
-}
-input[readonly=""][class*="mbsc"]:hover,
-textarea[readonly=""][class*="mbsc"]:hover,
-input[readonly=""][id*="_dummy"]:hover,
-textarea[readonly=""][id*="_dummy"]:hover {
-  border-color: rgba(25, 140, 255, 0.5) !important;
-}
-input[readonly=""][class*="mbsc"].ax-focus,
-textarea[readonly=""][class*="mbsc"].ax-focus,
-input[readonly=""][id*="_dummy"].ax-focus,
-textarea[readonly=""][id*="_dummy"].ax-focus {
-  color: #198cff;
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-  border-color: rgba(25, 140, 255, 0.5) !important;
-}
-.ax-form-btn.ax-round:not(.ax-icon) {
-  padding: 0 1.6rem;
-}
-/* mobiscroll */
-input.ax-check-danger,
-textarea.ax-check-danger {
-  color: #dc3545;
-  background-color: rgba(220, 53, 69, 0.06);
-  border-color: rgba(220, 53, 69, 0.16);
-}
-input.ax-check-danger:focus,
-textarea.ax-check-danger:focus {
-  color: #dc3545;
-  box-shadow: 0 0 0 0.3rem rgba(220, 53, 69, 0.14);
-  background-color: rgba(220, 53, 69, 0.06);
-  border-color: rgba(220, 53, 69, 0.3) !important;
-}
-input.ax-check-primary,
-textarea.ax-check-primary {
-  color: #198cff;
-  background-color: rgba(25, 140, 255, 0.06);
-  border-color: rgba(25, 140, 255, 0.16);
-}
-input.ax-check-primary:focus,
-textarea.ax-check-primary:focus {
-  color: #198cff;
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.14);
-  background-color: rgba(25, 140, 255, 0.06);
-  border-color: rgba(25, 140, 255, 0.3) !important;
-}
-input.ax-check-success,
-textarea.ax-check-success {
-  color: #41a358;
-  background-color: rgba(65, 163, 88, 0.06);
-  border-color: rgba(65, 163, 88, 0.16);
-}
-input.ax-check-success:focus,
-textarea.ax-check-success:focus {
-  color: #41a358;
-  box-shadow: 0 0 0 0.3rem rgba(65, 163, 88, 0.14);
-  background-color: rgba(65, 163, 88, 0.06);
-  border-color: rgba(65, 163, 88, 0.3) !important;
-}
-input.ax-check-success,
-textarea.ax-check-success {
-  color: #41a358;
-  background-color: rgba(65, 163, 88, 0.06);
-  border-color: rgba(65, 163, 88, 0.16);
-}
-input.ax-check-success:focus,
-textarea.ax-check-success:focus {
-  color: #41a358;
-  box-shadow: 0 0 0 0.3rem rgba(65, 163, 88, 0.14);
-  background-color: rgba(65, 163, 88, 0.06);
-  border-color: rgba(65, 163, 88, 0.3) !important;
-}
-input.ax-check-warning,
-textarea.ax-check-warning {
-  color: #ffc107;
-  background-color: rgba(255, 193, 7, 0.06);
-  border-color: rgba(255, 193, 7, 0.16);
-}
-input.ax-check-warning:focus,
-textarea.ax-check-warning:focus {
-  color: #ffc107;
-  box-shadow: 0 0 0 0.3rem rgba(255, 193, 7, 0.14);
-  background-color: rgba(255, 193, 7, 0.06);
-  border-color: rgba(255, 193, 7, 0.3) !important;
-}
-input.ax-check-info,
-textarea.ax-check-info {
-  color: #14ccc9;
-  background-color: rgba(20, 204, 201, 0.06);
-  border-color: rgba(20, 204, 201, 0.16);
-}
-input.ax-check-info:focus,
-textarea.ax-check-info:focus {
-  color: #14ccc9;
-  box-shadow: 0 0 0 0.3rem rgba(20, 204, 201, 0.14);
-  background-color: rgba(20, 204, 201, 0.06);
-  border-color: rgba(20, 204, 201, 0.3) !important;
-}
-input.ax-check-ad,
-textarea.ax-check-ad {
-  color: #ff8400;
-  background-color: rgba(255, 132, 0, 0.06);
-  border-color: rgba(255, 132, 0, 0.16);
-}
-input.ax-check-ad:focus,
-textarea.ax-check-ad:focus {
-  color: #ff8400;
-  box-shadow: 0 0 0 0.3rem rgba(255, 132, 0, 0.14);
-  background-color: rgba(255, 132, 0, 0.06);
-  border-color: rgba(255, 132, 0, 0.3) !important;
-}
-.ax-file {
-  position: relative;
-}
-.ax-file:after {
-  content: attr(data-text);
-  color: #fff;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  background-color: #198cff;
-  border-radius: 0 0.3rem 0.3rem 0;
-  padding: 0 1.4rem;
-  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.12) inset;
-  cursor: pointer;
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 1;
-}
-.ax-file:before {
-  content: attr(data-placeholder);
-  color: rgba(0, 0, 0, 0.3);
-  background-color: #fff;
-  width: 100%;
-  height: 3.8rem;
-  line-height: calc(3.8rem - 0.2rem);
-  overflow: hidden;
-  white-space: nowrap;
-  padding: 0 1rem;
-  border: 1px solid #e0e0e0;
-  box-sizing: border-box;
-  border-radius: 0.3rem;
-  position: absolute;
-  top: 0;
-  left: 0;
-  transition: all 100ms linear;
-}
-.ax-file.ax-simple:after {
-  display: none;
-}
-.ax-file.ax-active:before {
-  color: #333333;
-}
-.ax-file.ax-focus:before {
-  color: #198cff;
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-  border-color: rgba(25, 140, 255, 0.5) !important;
-}
-.ax-file input[type="file"] {
-  opacity: 0;
-  cursor: pointer;
-  z-index: 2;
-}
-.ax-file:hover:before {
-  border-color: rgba(25, 140, 255, 0.5);
-}
-.ax-file.ax-square:before,
-.ax-file.ax-square:after {
-  border-radius: 0;
-}
-.ax-file.ax-round:before {
-  border-radius: calc(3.8rem/2);
-  padding-left: 1.6rem;
-  padding-right: 1.6rem;
-}
-.ax-file.ax-round:after {
-  border-top-right-radius: calc(3.8rem/2);
-  border-bottom-right-radius: calc(3.8rem/2);
-  padding: 0 1.6rem;
-}
-.ax-radio {
-  position: relative;
-}
-.ax-radio *[type="radio"] {
-  display: none;
-}
-.ax-radio span {
-  line-height: 3.8rem;
-  white-space: nowrap;
-  margin-right: 2.2rem;
-}
-.ax-radio span:before {
-  content: '';
-  width: 1.8rem;
-  height: 1.8rem;
-  margin-right: 0.4rem;
-  display: inline-block;
-  box-sizing: border-box;
-  border-radius: 100%;
-  cursor: pointer;
-  border: 1px solid #e0e0e0;
-  position: relative;
-  top: 1rem;
-  transition: all 200ms ease-out;
-  float: left;
-}
-.ax-radio span:after {
-  content: '';
-  width: 1rem;
-  height: 1rem;
-  border-radius: 100%;
-  cursor: pointer;
-  background-color: #198cff;
-  display: inline-block;
-  position: absolute;
-  top: 1.4rem;
-  left: 0.4rem;
-  transform: scale(0);
-  transition: all 200ms ease-out;
-}
-.ax-radio:hover span:before {
-  border-color: #198cff;
-}
-.ax-radio input[type="radio"]:focus {
-  box-shadow: rgba(25, 140, 255, 0.2);
-}
-.ax-radio input[type="radio"]:checked + span:before {
-  border-color: #198cff;
-  animation: check 0.4s ease-out forwards;
-}
-.ax-radio input[type="radio"]:checked + span:after {
-  border-color: #198cff;
-  transform: scale(1);
-}
-.ax-radio input[type="radio"]:focus + span:before {
-  outline: none;
-  border-color: #198cff;
-}
-.ax-radio input[type="radio"]:disabled + span {
-  color: #b3b3b3;
-}
-.ax-radio input[type="radio"]:disabled + span:before {
-  border-color: #e0e0e0;
-}
-.ax-radio input[type="radio"]:disabled:checked + span:before {
-  background-color: rgba(25, 140, 255, 0.1);
-}
-.ax-radio input[type="radio"]:disabled:checked + span:after {
-  background-color: #b3b3b3;
-  transform: scale(1);
-}
-.ax-radio input[type="radio"] + span:empty:before {
-  margin-right: 0;
-}
-.ax-radio.ax-bone {
-  height: 1.8rem;
-  width: 1.8rem;
-}
-.ax-radio.ax-bone span {
-  width: 100%;
-  height: 100%;
-  margin: 0;
-}
-.ax-radio.ax-bone span:before {
-  left: 0;
-  top: 0;
-}
-.ax-radio.ax-bone span:after {
-  top: 0.4rem;
-}
-@keyframes check {
-  0% {
-    box-shadow: 0 0 0 0 rgba(25, 140, 255, 0.2);
-  }
-  50% {
-    box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-  }
-  99% {
-    box-shadow: 0 0 0 0.6rem rgba(25, 140, 255, 0);
-  }
-  100% {
-    box-shadow: none;
-  }
-}
-/*radio size*/
-.ax-radio.ax-xs span {
-  line-height: 2.2rem;
-  margin-right: 1.4rem;
-}
-.ax-radio.ax-xs span:before {
-  top: 0.2rem;
-  margin-right: 0.4rem;
-}
-.ax-radio.ax-xs span:after {
-  top: 0.6rem;
-}
-.ax-radio.ax-sm span {
-  line-height: calc(2.8rem);
-  margin-right: 1.4rem;
-}
-.ax-radio.ax-sm span:before {
-  top: 0.5rem;
-  margin-right: 0.8rem;
-}
-.ax-radio.ax-sm span:after {
-  top: 0.9rem;
-}
-.ax-radio.ax-lg span {
-  line-height: calc(2.8rem + 2rem);
-}
-.ax-radio.ax-lg span:before {
-  top: 1.5rem;
-}
-.ax-radio.ax-lg span:after {
-  top: 1.9rem;
-}
-.ax-checkbox {
-  position: relative;
-}
-.ax-checkbox *[type="checkbox"] {
-  display: none;
-}
-.ax-checkbox span {
-  line-height: 3.8rem;
-  white-space: nowrap;
-  margin-right: 2.2rem;
-}
-.ax-checkbox span:before {
-  content: '';
-  width: 1.6rem;
-  height: 1.6rem;
-  display: inline-block;
-  box-sizing: border-box;
-  border-radius: 0.3rem;
-  margin-right: 0.4rem;
-  cursor: pointer;
-  border: 1px solid #e0e0e0;
-  position: relative;
-  top: 1.1rem;
-  transition: all 200ms ease-out;
-  float: left;
-}
-.ax-checkbox span:after {
-  content: '';
-  width: 1rem;
-  height: 0.6rem;
-  border-radius: 0 0.6rem 0 0;
-  cursor: pointer;
-  box-shadow: -0.2rem 0.2rem 0 0 #198cff;
-  display: inline-block;
-  position: absolute;
-  top: 1.2rem;
-  left: 0.3rem;
-  transform: rotate(-45deg) scale(0);
-  transition: all 200ms ease-out;
-}
-.ax-checkbox:hover span:before {
-  border-color: #198cff;
-}
-.ax-checkbox input[type="checkbox"]:focus {
-  box-shadow: rgba(25, 140, 255, 0.2);
-}
-.ax-checkbox input[type="checkbox"]:checked + span:before {
-  border-color: #198cff;
-  background-color: #198cff;
-  animation: check 0.4s ease-out forwards;
-}
-.ax-checkbox input[type="checkbox"]:checked + span:after {
-  box-shadow: -0.2rem 0.2rem 0 0 #fff;
-  transform: rotate(-45deg) scale(1);
-}
-.ax-checkbox input[type="checkbox"]:focus + span:before {
-  outline: none;
-  border-color: #198cff;
-}
-.ax-checkbox input[type="checkbox"]:focus + span:after {
-  box-shadow: -0.2rem 0.2rem 0 0 #198cff;
-}
-.ax-checkbox input[type="checkbox"]:disabled + span {
-  color: #b3b3b3;
-}
-.ax-checkbox input[type="checkbox"]:disabled + span:before {
-  border-color: #e0e0e0;
-  background-color: #f0f0f0;
-}
-.ax-checkbox input[type="checkbox"]:disabled:checked + span:before {
-  background-color: rgba(25, 140, 255, 0.1);
-}
-.ax-checkbox input[type="checkbox"]:disabled:checked + span:after {
-  box-shadow: -0.2rem 0.2rem 0 0 #b3b3b3;
-  transform: rotate(-45deg) scale(1);
-}
-.ax-checkbox input[type="checkbox"] + span:empty:before {
-  margin-right: 0;
-}
-.ax-checkbox.ax-bone {
-  height: 1.8rem;
-  width: 1.8rem;
-}
-.ax-checkbox.ax-bone span {
-  width: 100%;
-  height: 100%;
-  margin: 0;
-}
-.ax-checkbox.ax-bone span:before {
-  left: 0.1rem;
-  top: 0.1rem;
-}
-.ax-checkbox.ax-bone span:after {
-  left: 0.4rem;
-  top: 0.2rem;
-}
-/*checkbox size*/
-.ax-checkbox.ax-xs span {
-  line-height: 2.2rem;
-  margin-right: 1.4rem;
-}
-.ax-checkbox.ax-xs span:before {
-  top: 0.3rem;
-}
-.ax-checkbox.ax-xs span:after {
-  top: 0.4rem;
-}
-.ax-checkbox.ax-sm span {
-  line-height: 2.8rem;
-  margin-right: 1.4rem;
-}
-.ax-checkbox.ax-sm span:before {
-  top: 0.6rem;
-}
-.ax-checkbox.ax-sm span:after {
-  top: 0.7rem;
-}
-.ax-checkbox.ax-lg span {
-  line-height: calc(2.8rem + 2rem);
-}
-.ax-checkbox.ax-lg span:before {
-  top: 1.6rem;
-}
-.ax-checkbox.ax-lg span:after {
-  top: 1.7rem;
-}
-.ax-chera {
-  font-size: 1.4rem;
-  width: 100%;
-  display: block;
-  box-sizing: border-box;
-  cursor: pointer;
-  margin: 0.5rem auto;
-  position: relative;
-}
-.ax-chera input {
-  display: none;
-}
-.ax-chera span {
-  width: 100%;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  border-radius: 0.3rem;
-  white-space: nowrap;
-  padding: 0 1rem;
-  margin: 0.5rem auto;
-  display: block;
-  box-sizing: border-box;
-  transition: all 200ms ease-out;
-  position: relative;
-}
-.ax-chera span:before {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-chera span:after {
-  content: '';
-  width: 1rem;
-  height: 0.6rem;
-  cursor: pointer;
-  box-shadow: -0.2rem 0.2rem 0 0 #b3b3b3;
-  display: inline-block;
-  position: absolute;
-  top: 0.7rem;
-  right: 1.2rem;
-  opacity: 0.4;
-  transform: rotate(-45deg);
-  transition: all 200ms ease-out;
-}
-.ax-chera:hover span {
-  border-color: #198cff;
-}
-.ax-chera input:checked + span {
-  color: #fff;
-  border-color: #198cff;
-  background-color: #198cff;
-}
-.ax-chera input:checked + span:after {
-  opacity: 1;
-  box-shadow: -0.2rem 0.2rem 0 0 #fff;
-  transform: rotate(-45deg);
-}
-.ax-chera input:focus + span {
-  outline: none;
-  border-color: #198cff;
-}
-.ax-chera input:focus + span:after {
-  box-shadow: -0.2rem 0.2rem 0 0 #198cff;
-}
-.ax-chera input:disabled + span {
-  color: #b3b3b3;
-}
-.ax-chera input:disabled + span {
-  border-color: #e0e0e0;
-  background-color: #f0f0f0;
-}
-.ax-chera input:disabled:checked + span {
-  background-color: rgba(25, 140, 255, 0.1);
-}
-.ax-chera input:disabled:checked + span:after {
-  box-shadow: -0.2rem 0.2rem 0 0 #b3b3b3;
-}
-/*chera size*/
-.ax-chera.ax-xs {
-  font-size: 1.2rem;
-  margin: 0.1rem auto;
-}
-.ax-chera.ax-xs span {
-  height: 2rem;
-  line-height: 2rem;
-  padding-left: 0.4rem;
-  margin: 0 auto;
-}
-.ax-chera.ax-xs span:after {
-  top: 0.3rem;
-  right: 0.6rem;
-}
-.ax-chera.ax-sm {
-  margin: 0.1rem auto;
-}
-.ax-chera.ax-sm span {
-  height: calc(2.8rem - 0.2rem);
-  line-height: calc(2.8rem - 0.2rem);
-  margin: 0.1rem auto;
-}
-.ax-chera.ax-sm span:after {
-  top: 0.6rem;
-}
-.ax-chera.ax-lg span {
-  height: calc(2.8rem + 1rem);
-  line-height: calc(2.8rem + 1rem);
-}
-.ax-chera.ax-lg span:after {
-  top: 1.2rem;
-}
-.ax-switch {
-  width: 4rem;
-  box-sizing: border-box;
-}
-.ax-switch input {
-  display: none;
-}
-.ax-switch span {
-  width: 100%;
-  height: 2.2rem;
-  border: 1px solid #e0e0e0;
-  border-radius: 2.2rem;
-  margin: calc((3.8rem - 2.2rem)/2) 0;
-  display: block;
-  box-sizing: border-box;
-  transition: all 200ms linear;
-  position: relative;
-}
-.ax-switch span:before {
-  content: '';
-  width: 2rem;
-  height: 2rem;
-  border-radius: 100%;
-  background-color: #fff;
-  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.4);
-  transition: all 200ms linear;
-  position: absolute;
-  left: 0;
-}
-.ax-switch:hover span {
-  border-color: #198cff;
-}
-.ax-switch input:checked + span {
-  border-color: #198cff;
-  background-color: #198cff;
-}
-.ax-switch input:checked + span:before {
-  left: 1.8rem;
-}
-.ax-switch input:disabled + span {
-  border-color: #e0e0e0;
-  background-color: #f0f0f0;
-}
-.ax-switch input:disabled:checked + span {
-  background-color: rgba(25, 140, 255, 0.1);
-}
-.ax-switch.ax-bone span {
-  margin: 0;
-}
-/*switch size*/
-.ax-switch.ax-xs span {
-  margin: 0;
-}
-.ax-switch.ax-sm span {
-  margin: 0.3rem 0;
-}
-.ax-switch.ax-lg span {
-  margin: 1.3rem 0;
-}
-/*amount's increase & decrease*/
-.ax-amount {
-  border-radius: 0.3rem;
-  width: calc(3.8rem*4);
-  height: 3.8rem;
-  box-sizing: border-box;
-  position: relative;
-  border: 1px solid #e0e0e0;
-}
-.ax-amount:hover {
-  border-color: rgba(25, 140, 255, 0.5);
-}
-.ax-amount [decrease],
-.ax-amount [increase] {
-  background-color: #fafafa;
-  box-sizing: border-box;
-  width: 3.8rem;
-  height: 100%;
-  line-height: calc(3.8rem - 0.2rem);
-  text-align: center;
-  position: absolute;
-  top: 0;
-  z-index: 1;
-  overflow: hidden;
-  color: #666666;
-}
-.ax-amount [decrease] {
-  left: 0;
-  border-radius: 0.3rem 0 0 0.3rem;
-  border-right: 1px solid #e0e0e0;
-}
-.ax-amount [increase] {
-  right: 0;
-  border-radius: 0 0.3rem 0.3rem 0;
-  border-left: 1px solid #e0e0e0;
-}
-.ax-amount [class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-amount svg {
-  width: 1.2rem;
-  height: 100%;
-}
-.ax-amount.ax-array-left input {
-  padding-left: calc(1rem + 3.8rem);
-}
-.ax-amount.ax-array-right input {
-  padding-right: calc(1rem + 3.8rem);
-}
-.ax-amount.ax-array-left [decrease],
-.ax-amount.ax-array-left [increase],
-.ax-amount.ax-array-right [decrease],
-.ax-amount.ax-array-right [increase] {
-  height: 50%;
-}
-.ax-amount.ax-array-left [increase],
-.ax-amount.ax-array-right [increase] {
-  line-height: calc((3.8rem + 1.2rem)/2);
-}
-.ax-amount.ax-array-left svg,
-.ax-amount.ax-array-right svg {
-  height: calc((100% + 1.2rem)/2);
-}
-.ax-amount.ax-array-left [decrease],
-.ax-amount.ax-array-right [decrease] {
-  line-height: calc((3.8rem - 1.2rem)/2);
-}
-.ax-amount.ax-array-left svg,
-.ax-amount.ax-array-right svg {
-  height: calc((100% - 1.2rem)/2);
-}
-.ax-amount.ax-array-left [decrease] {
-  border-radius: 0 0 0 0.3rem;
-  top: auto;
-  bottom: 0;
-}
-.ax-amount.ax-array-left [increase] {
-  border-radius: 0.3rem 0 0 0;
-  border-right: 1px solid #e0e0e0;
-  border-left: 0;
-  top: 0;
-  right: auto;
-  left: 0;
-}
-.ax-amount.ax-array-right [decrease] {
-  border-radius: 0 0 0.3rem 0;
-  border-left: 1px solid #e0e0e0;
-  border-right: 0;
-  left: auto;
-  top: auto;
-  right: 0;
-  bottom: 0;
-}
-.ax-amount.ax-array-right [increase] {
-  border-radius: 0 0.3rem 0 0;
-  top: 0;
-}
-.ax-amount input {
-  height: 100% !important;
-  text-align: center;
-  border: 0;
-}
-.ax-amount input:not([readonly]):not([disabled]):focus {
-  box-shadow: 0 0 0 0.4rem rgba(25, 140, 255, 0.2);
-}
-.ax-amount input[readonly] ~ *,
-.ax-amount input[disabled] ~ * {
-  color: #b3b3b3;
-  cursor: not-allowed;
-  background: transparent;
-}
-.ax-amount [increase][disabled],
-.ax-amount [increase][readonly],
-.ax-amount [decrease][disabled],
-.ax-amount [decrease][readonly] {
-  color: #b3b3b3;
-  cursor: not-allowed;
-}
-.ax-amount.ax-xs {
-  width: calc(2.2rem*4);
-  height: 2.2rem;
-}
-.ax-amount.ax-xs [decrease],
-.ax-amount.ax-xs [increase] {
-  line-height: calc(2.2rem - 0.2rem);
-  width: 2.2rem;
-}
-.ax-amount.ax-xs input {
-  font-size: 1.2rem;
-  line-height: calc(2.2rem - 0.2rem);
-}
-.ax-amount.ax-xs [class*="font"] {
-  font-size: 1rem;
-}
-.ax-amount.ax-array-right.ax-xs input {
-  padding-right: calc(1rem + 2.2rem);
-}
-.ax-amount.ax-array-left.ax-xs [increase],
-.ax-amount.ax-array-right.ax-xs [increase] {
-  line-height: calc(2.2rem/2);
-}
-.ax-amount.ax-array-left.ax-xs [decrease],
-.ax-amount.ax-array-right.ax-xs [decrease] {
-  line-height: calc(2.2rem/2);
-}
-.ax-amount.ax-sm {
-  width: calc((3.8rem - 1rem)*4);
-  height: calc(3.8rem - 1rem);
-}
-.ax-amount.ax-sm input {
-  line-height: calc(3.8rem - 1.2rem);
-}
-.ax-amount.ax-array-right.ax-sm input {
-  padding-right: 3.8rem;
-}
-.ax-amount.ax-sm [decrease],
-.ax-amount.ax-sm [increase] {
-  line-height: calc(3.8rem - 1.2rem);
-  width: calc(3.8rem - 1rem);
-}
-.ax-amount.ax-array-left.ax-sm [increase],
-.ax-amount.ax-array-right.ax-sm [increase] {
-  line-height: calc((3.8rem - 1rem + 0.8rem)/2);
-}
-.ax-amount.ax-array-left.ax-sm [decrease],
-.ax-amount.ax-array-right.ax-sm [decrease] {
-  line-height: calc((3.8rem - 1rem - 0.6rem)/2);
-}
-.ax-amount.ax-lg {
-  width: calc((3.8rem + 1rem)*4);
-  height: calc(3.8rem + 1rem);
-}
-.ax-amount.ax-lg input {
-  line-height: calc(3.8rem + 0.8rem);
-}
-.ax-amount.ax-array-right.ax-lg input {
-  padding-right: calc(3.8rem + 2rem);
-}
-.ax-amount.ax-lg [decrease],
-.ax-amount.ax-lg [increase] {
-  line-height: calc(3.8rem + 0.8rem);
-  width: calc(3.8rem + 1rem);
-}
-.ax-amount.ax-array-left.ax-lg [increase],
-.ax-amount.ax-array-right.ax-lg [increase] {
-  line-height: calc((3.8rem + 1rem + 1.2rem)/2);
-}
-.ax-amount.ax-array-left.ax-lg [decrease],
-.ax-amount.ax-array-right.ax-lg [decrease] {
-  line-height: calc((3.8rem + 1rem - 1.2rem)/2);
-}
-/*password strength*/
-.ax-strength {
-  color: #b3b3b3;
-  font-size: 1.2rem;
-  text-align: center;
-  line-height: 0;
-}
-.ax-form-con + .ax-strength {
-  margin-left: 0.8rem;
-}
-.ax-form-input input + .ax-strength {
-  padding-left: 0.3rem;
-  padding-right: 0.3rem;
-  margin-top: -0.5rem;
-  margin-bottom: 0.5rem;
-  position: relative;
-  z-index: 1;
-}
-.ax-form-input input + .ax-strength .ax-bar {
-  height: 0.2rem;
-}
-.ax-strength .ax-bar {
-  width: 100%;
-  height: 0.3rem;
-  background-color: rgba(0, 0, 0, 0.08);
-}
-.ax-strength .ax-lv1 .ax-bar {
-  background-color: #dc3545;
-}
-.ax-strength .ax-lv2 .ax-bar {
-  background-color: #ff8400;
-}
-.ax-strength .ax-lv3 .ax-bar {
-  background-color: #41a358;
-}
-.ax-strength .ax-lv4 .ax-bar {
-  background-color: #14ccc9;
-}
-.ax-strength .ax-lv5 .ax-bar {
-  background-color: #198cff;
-}
-.ax-strength .ax-col:nth-of-type(1) .ax-title:before {
-  content: '寰堝急';
-}
-.ax-strength .ax-col:nth-of-type(2) .ax-title:before {
-  content: '寮�';
-}
-.ax-strength .ax-col:nth-of-type(3) .ax-title:before {
-  content: '涓�';
-}
-.ax-strength .ax-col:nth-of-type(4) .ax-title:before {
-  content: '寮�';
-}
-.ax-strength .ax-col:nth-of-type(5) .ax-title:before {
-  content: '寰堝己';
-}
-.ax-strength .ax-active.ax-lv1 {
-  color: #dc3545;
-}
-.ax-strength .ax-active.ax-lv2 {
-  color: #ff8400;
-}
-.ax-strength .ax-active.ax-lv3 {
-  color: #41a358;
-}
-.ax-strength .ax-active.ax-lv4 {
-  color: #14ccc9;
-}
-.ax-strength .ax-active.ax-lv5 {
-  color: #198cff;
-}
-.ax-strength .ax-active ~ div .ax-bar {
-  background-color: rgba(0, 0, 0, 0.08);
-}
-.ax-strength .ax-title {
-  width: 2.8rem;
-  line-height: calc(3.8rem - 0.3rem);
-}
-.ax-strength-svg {
-  height: 3.8rem;
-  width: 3.8rem;
-  text-align: center;
-  line-height: 3.8rem;
-  position: relative;
-}
-@keyframes strength-weak {
-  100% {
-    stroke-dashoffset: -76;
-  }
-}
-@keyframes strength-medium {
-  100% {
-    stroke-dashoffset: -152;
-  }
-}
-@keyframes strength-strong {
-  100% {
-    stroke-dashoffset: -228;
-  }
-}
-.ax-strength-svg:before {
-  content: '寮�';
-  color: #b3b3b3;
-}
-.ax-strength-svg svg {
-  position: absolute;
-  left: 0;
-  top: 0;
-  height: 3.8rem;
-  width: 3.8rem;
-}
-.ax-strength-svg svg path {
-  fill: none;
-  stroke-width: 3.7253;
-}
-.ax-strength-svg path.svg-bg {
-  stroke: #dc3545;
-}
-.ax-strength-svg path.svg-out {
-  stroke-dasharray: 227 229;
-  stroke: #f0f0f0;
-  stroke-width: 5.7253;
-  transition: all 0.8s ease-out;
-}
-.ax-strength-svg.ax-weak path.svg-bg {
-  stroke: #dc3545;
-}
-.ax-strength-svg.ax-weak path.svg-out {
-  stroke-dashoffset: -76;
-}
-.ax-strength-svg:before {
-  position: relative;
-  z-index: 2;
-}
-.ax-strength-svg.ax-weak:before {
-  content: '寮�';
-  color: #dc3545;
-}
-.ax-strength-svg.ax-medium path.svg-bg {
-  stroke: #ff8400;
-}
-.ax-strength-svg.ax-medium path.svg-out {
-  stroke-dashoffset: -152;
-}
-.ax-strength-svg.ax-medium:before {
-  content: '涓�';
-  color: #ff8400;
-}
-.ax-strength-svg.ax-strong path.svg-bg {
-  stroke: #41a358;
-}
-.ax-strength-svg.ax-strong path.svg-out {
-  stroke-dashoffset: -228;
-}
-.ax-strength-svg.ax-strong:before {
-  content: '寮�';
-  color: #41a358;
-}
-.ax-strength.ax-xs .ax-title {
-  line-height: 1.9rem;
-}
-.ax-strength-svg.ax-xs {
-  height: 2.2rem;
-  width: 2.2rem;
-  line-height: 2.2rem;
-}
-.ax-strength-svg.ax-xs svg {
-  height: 2.2rem;
-  width: 2.2rem;
-}
-.ax-strength.ax-sm .ax-title {
-  line-height: calc(3.8rem - 1rem - 0.3rem);
-}
-.ax-strength-svg.ax-sm {
-  height: calc(3.8rem - 1rem);
-  width: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-strength-svg.ax-sm svg {
-  height: calc(3.8rem - 1rem);
-  width: calc(3.8rem - 1rem);
-}
-/*valid*/
-.ax-valid {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  padding: calc((2.8rem - 1.8rem)/2) 0;
-}
-.ax-valid *[class*="font"] {
-  font-size: 1.4rem;
-  margin-right: 0.2rem;
-}
-.ax-form-btn {
-  margin-left: 0.8rem;
-  padding: 0 1.4rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-}
-.ax-form-txt {
-  font-size: 1.4rem;
-  line-height: 3.8rem;
-  margin-left: 0.8rem;
-  flex-shrink: 0;
-}
-.ax-form-txt.ax-disabled {
-  opacity: 0.3;
-  cursor: not-allowed;
-}
-.ax-form-head {
-  height: 3.8rem;
-  width: 3.8rem;
-  border-radius: 100%;
-  margin-left: 0.8rem;
-  display: block;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  flex-shrink: 0;
-}
-.ax-form-img {
-  font-size: 1.4rem;
-  border-radius: 0.3rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  margin-left: 0.8rem;
-  display: block;
-  position: relative;
-  flex-shrink: 0;
-}
-.ax-form-img:before {
-  border-radius: 0.3rem;
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-form-img img {
-  height: 100%;
-  border-radius: 0.3rem;
-  vertical-align: top;
-}
-.ax-form-img a,
-.ax-form-img span,
-.ax-form-img i {
-  margin: 0 1.4rem;
-}
-.ax-bunch-txt {
-  line-height: 3.8rem;
-  margin: 0 0.8rem;
-}
-.ax-pos-right {
-  font-size: 1.4rem;
-  line-height: 3.8rem;
-  padding-right: 1rem;
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-pos-right *[class*="font"],
-.ax-pos-right *[class*="iconset"] {
-  color: #ccc;
-  margin-left: 1.4rem;
-}
-.ax-pos-right .ax-val-none:hover {
-  color: #666666;
-}
-.ax-pos-left {
-  line-height: 3.8rem;
-  padding-left: 1rem;
-  overflow: hidden;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-pos-left *[class*='font'] {
-  color: #adc1cc;
-  width: 1.8rem;
-}
-.ax-pos-left svg {
-  fill: #adc1cc;
-  height: 3.8rem;
-  margin-right: 0.4rem;
-  float: left;
-}
-/*form group*/
-.ax-input-group .ax-prefix,
-.ax-input-group .ax-suffix:not(.ax-btn) {
-  color: #333333;
-  background-color: #fafafa;
-  height: 3.8rem;
-  line-height: calc(3.8rem - 2px);
-  text-align: center;
-  padding: 0 1rem;
-  border-color: #e0e0e0;
-  border-style: solid;
-  border-width: 1px 0 1px 1px;
-  box-sizing: border-box;
-}
-.ax-input-group .ax-prefix {
-  border-width: 1px 0 1px 1px;
-  border-radius: 0.3rem 0 0 0.3rem;
-}
-.ax-input-group .ax-suffix:not(.ax-btn) {
-  border-width: 1px;
-  border-radius: 0 0.3rem 0.3rem 0;
-}
-.ax-input-group input:focus {
-  border-color: #198cff !important;
-  box-shadow: 0 0 0 0.1rem #198cff inset;
-}
-.ax-input-group .ax-chera {
-  margin: 0;
-}
-.ax-input-group .ax-chera span {
-  height: 3.8rem;
-  line-height: 3.8rem;
-  margin: 0;
-}
-.ax-input-group .ax-chera span:after {
-  top: 1.3rem;
-}
-.ax-input-group .ax-suffix.ax-btn {
-  border-radius: 0 0.3rem 0.3rem 0;
-  padding: 0 1.2rem;
-}
-.ax-input-group .ax-suffix.ax-btn:after {
-  border-radius: 0 0.3rem 0.3rem 0;
-}
-.ax-input-group .ax-prefix + div input {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-input-group .ax-with-suffix input {
-  border-right-width: 0;
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-  z-index: 2;
-}
-.ax-input-group .ax-with-suffix:after {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: rgba(25, 140, 255, 0.5);
-  opacity: 0;
-  transition: all 100ms linear;
-  position: absolute;
-  right: -1px;
-  top: 0;
-  z-index: 2;
-}
-.ax-input-group .ax-with-suffix:hover:after {
-  opacity: 1;
-}
-.ax-input-group .ax-with-suffix:focus-within:after {
-  opacity: 1;
-  background-color: #198cff;
-}
-.ax-input-group .ax-prefix + div .ax-file:before {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-input-group .ax-prefix + div .ax-chera span,
-.ax-input-group .ax-prefix + div .ax-chera span:before {
-  border-radius: 0;
-  border-right-width: 0;
-}
-.ax-input-group .ax-prefix + div .ax-col:last-child .ax-chera span,
-.ax-input-group .ax-prefix + div .ax-col:last-child .ax-chera span:before {
-  border-top-right-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-  border-right-width: 1px;
-}
-.ax-input-group .ax-suffix-select .ax-select-inner {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-input-group .ax-suffix-select.ax-open .ax-select-inner {
-  border-radius: 0 0.3rem 0 0;
-}
-.ax-input-group .ax-suffix-select.ax-flipped.ax-open .ax-select-inner {
-  border-radius: 0 0 0.3rem 0;
-}
-.ax-input-group .ax-prefix-select .ax-select-inner {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-input-group .ax-prefix-select.ax-open .ax-select-inner {
-  border-radius: 0.3rem 0 0 0;
-}
-.ax-input-group .ax-prefix-select.ax-flipped.ax-open .ax-select-inner {
-  border-radius: 0 0 0 0.3rem;
-}
-.ax-input-group .ax-prefix-select + div input {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-  border-left-width: 0;
-}
-.ax-input-group .ax-prefix-select + div:before {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: rgba(25, 140, 255, 0.5);
-  opacity: 0;
-  transition: all 100ms linear;
-  position: absolute;
-  left: -1px;
-  top: 0;
-  z-index: 2;
-}
-.ax-input-group .ax-prefix-select + div:hover:before {
-  opacity: 1;
-}
-.ax-input-group .ax-prefix-select + div:focus-within:before {
-  opacity: 1;
-  background-color: #198cff;
-}
-/*list fast*/
-.ax-fast-list {
-  width: 100%;
-  max-height: 17.6rem;
-  overflow-y: auto;
-  overflow-x: hidden;
-  border: 1px solid #e0e0e0;
-  box-sizing: border-box;
-  border-radius: 0.3rem 0.3rem;
-  background-color: #fff;
-  position: absolute;
-  left: 0;
-  top: calc(100% + 0.8rem);
-  z-index: 4;
-  display: none;
-}
-/*search*/
-.ax-search {
-  box-sizing: border-box;
-  display: flex;
-  width: 100%;
-  zoom: 1;
-}
-.ax-search .ax-search-center {
-  display: block;
-  flex: auto;
-  width: 0;
-  position: relative;
-}
-.ax-search .ax-search-center input[type="text"] {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-search .ax-search-center input[type="text"]:focus {
-  border-color: #198cff !important;
-  box-shadow: 0 0 0 0.1rem #198cff inset;
-}
-.ax-search .ax-search-center:hover input[type="text"] {
-  border-color: rgba(25, 140, 255, 0.5);
-}
-.ax-search > select + span + .ax-search-center input[type="text"] {
-  border-left-color: transparent;
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-search .ax-complete {
-  display: block;
-}
-.ax-search > .ax-select .ax-select-inner {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-search > .ax-select.ax-open .ax-select-inner {
-  border-radius: 0.3rem 0 0 0;
-}
-.ax-search > .ax-select.ax-flipped.ax-open .ax-select-inner {
-  border-radius: 0 0 0 0.3rem;
-}
-.ax-search > .ax-select + div input {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-  border-left-width: 0;
-}
-.ax-search > .ax-select + div:before {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: rgba(25, 140, 255, 0.5);
-  opacity: 0;
-  transition: all 100ms linear;
-  position: absolute;
-  left: -1px;
-  top: 0;
-  z-index: 2;
-}
-.ax-search > .ax-select + div:hover:before {
-  opacity: 1;
-}
-.ax-search > .ax-select + div:focus-within:before {
-  opacity: 1;
-  background-color: #198cff;
-}
-.ax-search .ax-operate {
-  font-size: 1.4rem;
-  line-height: 2.2rem;
-  padding-right: 0.6rem;
-  text-align: center;
-  position: absolute;
-  right: 0;
-  top: calc((3.8rem - 2.2rem)/2);
-  z-index: 2;
-}
-.ax-search .ax-operate *[class*="font"] {
-  color: #ccc;
-  height: 2.2rem;
-  width: 2.2rem;
-  border-radius: 2.2rem;
-  margin-left: 0.4rem;
-}
-.ax-search .ax-operate *[class*="font"]:hover {
-  color: #198cff;
-  background-color: #f0f7ff;
-}
-.ax-search .ax-operate *[class*="reset"] {
-  display: none;
-}
-.ax-search .ax-operate *[class*="reset"]:hover {
-  color: #333333;
-  background-color: #f0f0f0;
-}
-.ax-search .ax-search-center .ax-adorn {
-  color: #ccc;
-  line-height: 3.8rem;
-  padding-left: 1rem;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-search .ax-search-center .ax-adorn + input[type="text"],
-.ax-search .ax-search-center .ax-adorn + .ax-complete > input[type="text"] {
-  padding-left: 3.4rem;
-}
-.ax-search .ax-search-start {
-  color: #b3b3b3;
-  height: 3.8rem;
-  line-height: calc(3.8rem - 0.2rem);
-  border-top: 1px solid #e0e0e0;
-  border-bottom: 1px solid #e0e0e0;
-  padding-left: 1rem;
-  box-sizing: border-box;
-}
-.ax-search .ax-search-end {
-  height: 3.8rem;
-  line-height: calc(3.8rem - 0.2rem);
-  background-color: #fafafa;
-  border: 1px solid #e0e0e0;
-  border-left-width: 0;
-  padding-left: calc(1.4rem*2);
-  padding-right: calc(1.4rem*2);
-  box-sizing: border-box;
-  border-top-right-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-.ax-search .ax-search-end:hover {
-  color: #198cff;
-  border-color: #e0e0e0 !important;
-}
-.ax-search.ax-dark .ax-search-end,
-.ax-search.ax-dark .ax-search-end:hover {
-  color: #fff;
-  background-color: #198cff;
-  border-color: #198cff !important;
-}
-.ax-search.ax-dark .ax-search-center input[type="text"] {
-  border-color: #198cff;
-  box-shadow: 0 0 0 1px #198cff inset;
-}
-.ax-search.ax-dark .ax-search-center:hover input[type="text"] {
-  border-color: #198cff;
-}
-.ax-search.ax-dark > .ax-select .ax-select-inner {
-  border-right-width: 0;
-  border-color: #198cff;
-  box-shadow: 0 0 0 1px #198cff inset;
-}
-.ax-search.ax-dark > .ax-select + .ax-search-center input[type="text"] {
-  border-left-width: 0;
-  box-shadow: -1px 0 0 1px #198cff inset;
-}
-.ax-search.ax-round .ax-search-end {
-  border-top-right-radius: calc(3.8rem/2);
-  border-bottom-right-radius: calc(3.8rem/2);
-}
-.ax-search.ax-round .ax-search-center input[type="text"],
-.ax-search.ax-round .ax-search-center .ax-complete > input[type="text"] {
-  border-top-left-radius: calc(3.8rem/2);
-  border-bottom-left-radius: calc(3.8rem/2);
-  padding-left: 1.6rem;
-}
-.ax-search.ax-round > .ax-select .ax-select-inner {
-  border-radius: calc(3.8rem/2) 0 0 calc(3.8rem/2);
-}
-.ax-search.ax-round > .ax-select.ax-open .ax-select-inner {
-  border-radius: calc(3.8rem/2) 0 0 0;
-}
-.ax-search.ax-round > .ax-select.ax-flipped.ax-open .ax-select-inner {
-  border-radius: 0 0 0 calc(3.8rem/2);
-}
-.ax-search.ax-round > .ax-select + .ax-search-center input[type="text"],
-.ax-search.ax-round > select + span + .ax-search-center .ax-complete > input[type="text"] {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-search.ax-round > .ax-select + .ax-search-center input[type="text"],
-.ax-search.ax-round > .ax-select + .ax-search-center .ax-complete > input[type="text"] {
-  padding-left: 1rem;
-}
-.ax-search.ax-round .ax-search-center .ax-adorn + input[type="text"],
-.ax-search.ax-round .ax-search-center .ax-adorn + .ax-complete > input[type="text"] {
-  padding-left: 3.4rem;
-}
-.ax-search.ax-square .ax-search-end {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-search.ax-square .ax-search-center input[type="text"],
-.ax-search.ax-square .ax-search-center .ax-complete > input[type="text"] {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-search.ax-square > .ax-select .ax-select-inner {
-  border-radius: 0;
-}
-.ax-search.ax-square > .ax-select.ax-open .ax-select-inner {
-  border-radius: 0;
-}
-.ax-search.ax-square > .ax-select.ax-flipped.ax-open .ax-select-inner {
-  border-radius: 0;
-}
-/*emulate tel*/
-.ax-emulate .ax-form-group {
-  padding: 0 1.4rem;
-}
-.ax-emulate .ax-form-con {
-  flex: auto;
-  width: 0;
-}
-.ax-emulate .ax-form-input {
-  width: 100%;
-}
-.ax-emulate textarea {
-  height: 8.8rem;
-  line-height: calc(3.8rem - 1rem);
-  padding-top: 0;
-  padding-bottom: 0;
-}
-.ax-emulate input[type="text"],
-.ax-emulate input[type="search"],
-.ax-emulate input[type="url"],
-.ax-emulate input[type="email"],
-.ax-emulate input[type="number"],
-.ax-emulate input[type="password"],
-.ax-emulate select,
-.ax-emulate textarea {
-  border: 0rem;
-}
-.ax-emulate input[type="text"],
-.ax-emulate input[type="search"],
-.ax-emulate input[type="url"],
-.ax-emulate input[type="email"],
-.ax-emulate input[type="number"],
-.ax-emulate input[type="password"],
-.ax-emulate input[type="file"],
-.ax-emulate select {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-emulate input[type="text"]:not([readonly]):not([class*='ax-check']),
-.ax-emulate input[type="text"][readonly].mbsc-comp,
-.ax-emulate input[type="search"]:not([readonly]):not([class*='ax-check']),
-.ax-emulate input[type="url"]:not([readonly]):not([class*='ax-check']),
-.ax-emulate input[type="email"]:not([readonly]):not([class*='ax-check']),
-.ax-emulate input[type="number"]:not([readonly]):not([class*='ax-check']),
-.ax-emulate input[type="password"]:not([readonly]):not([class*='ax-check']),
-.ax-emulate textarea:not([readonly]):not([class*='ax-check']) {
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-emulate input[type="text"]:focus,
-.ax-emulate input[type="search"]:focus,
-.ax-emulate input[type="url"]:focus,
-.ax-emulate input[type="email"]:focus,
-.ax-emulate input[type="number"]:focus,
-.ax-emulate input[type="password"]:focus,
-.ax-emulate select:focus,
-.ax-emulate textarea:focus {
-  border: 0rem;
-  box-shadow: none;
-}
-.ax-emulate .ax-form-btn {
-  font-size: 1.2rem;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-form-btn.ax-icon {
-  font-size: 1.2rem;
-  width: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-form-btn.ax-icon .ax-iconfont {
-  font-size: 1.2rem !important;
-}
-.ax-emulate .ax-form-btn.ax-icon svg {
-  width: 1.2rem;
-  height: 1.2rem;
-}
-.ax-emulate .ax-form-label {
-  height: calc(3.8rem - 1rem);
-  line-height: calc((3.8rem - 1rem)/2);
-  width: 7rem;
-  text-align: left;
-  margin-right: 0;
-  justify-content: flex-start;
-}
-.ax-emulate .ax-form-txt {
-  line-height: calc(3.8rem - 1rem);
-  margin-left: 0.8rem;
-}
-.ax-emulate .ax-form-group {
-  padding: 0.8rem 1.4rem;
-}
-.ax-emulate .ax-pos-right {
-  right: -1rem;
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-form-head {
-  height: calc(3.8rem - 1rem);
-  width: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-file:before {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1.2rem);
-  border: none;
-  padding-left: 0;
-}
-.ax-emulate .ax-file.ax-focus:before {
-  box-shadow: none;
-}
-.ax-emulate .ax-file:after {
-  font-size: 1.2rem;
-  border-radius: 0.3rem;
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-bunch-txt {
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-bunch-txt:last-child {
-  margin-right: 0;
-}
-.ax-emulate .ax-form-img {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-form-img:before {
-  display: none;
-}
-.ax-emulate .ax-form-img a,
-.ax-emulate .ax-form-img span,
-.ax-emulate .ax-form-img i {
-  margin: 0;
-}
-.ax-emulate .ax-pos-left {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  padding-left: 0;
-}
-.ax-emulate .ax-pos-left svg {
-  height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-select {
-  margin-top: calc((-3.8rem + 2.8rem)/2);
-  margin-bottom: calc((-3.8rem + 2.8rem)/2);
-  width: 100% !important;
-}
-.ax-emulate .ax-select:not(.ax-open) .ax-select-inner {
-  border-color: transparent;
-}
-.ax-emulate .ax-radio,
-.ax-emulate .ax-checkbox,
-.ax-emulate .ax-chera,
-.ax-emulate .ax-switch {
-  margin-top: calc((-3.8rem + 2.8rem)/2);
-  margin-bottom: calc((-3.8rem + 2.8rem)/2);
-}
-.ax-emulate .ax-chera span:before {
-  border: none !important;
-}
-.ax-emulate .ax-amount {
-  width: calc(2.8rem*4);
-  height: 2.8rem;
-  border: none;
-}
-.ax-emulate .ax-amount [decrease],
-.ax-emulate .ax-amount [increase] {
-  width: 2.8rem;
-  line-height: calc(2.8rem - 0.2rem);
-  border-radius: 2.8rem;
-  border: 1px solid #e0e0e0;
-}
-.ax-emulate .ax-amount input:not([readonly]):not([disabled]):focus {
-  box-shadow: none;
-}
-.ax-emulate .ax-input-group .ax-btn {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  font-size: 1.2rem;
-}
-.ax-emulate .ax-input-group .ax-operate,
-.ax-emulate .ax-input-group .ax-operate:after {
-  border-radius: 0.3rem;
-}
-.ax-emulate .irs--ax {
-  margin-top: calc((-3.8rem + 2.8rem)/2);
-}
-.ax-emulate .mbsc-fr-inline {
-  border-top: 1px solid #ebebeb;
-}
-.ax-emulate .ax-strength .ax-bar {
-  height: 0.2rem;
-}
-.ax-emulate .ax-strength .ax-title {
-  line-height: calc(3.8rem - 1rem - 0.2rem);
-}
-.ax-emulate .ax-strength-svg svg {
-  width: calc(3.8rem - 1rem);
-  height: calc(3.8rem - 1rem);
-}
-.ax-emulate .ax-strength-svg {
-  width: calc(3.8rem - 1rem);
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-/*table*/
-.ax-table {
-  font-size: 1.4rem;
-  width: 100%;
-  border-collapse: collapse;
-  border-radius: 0.3rem;
-  border-top: 1px solid #ebebeb;
-  background-color: #fff;
-  border-spacing: 0;
-}
-.ax-table tr {
-  border-bottom: 1px solid #ebebeb;
-  padding: 0.5rem;
-  transition: all 100ms linear;
-}
-/*list.js table sortable*/
-.ax-table [data-sort] {
-  cursor: pointer;
-}
-.ax-table [data-sort] span:after {
-  content: '\2666';
-  color: transparent;
-  font-weight: normal;
-  font-size: 1.8rem;
-  line-height: 1.4rem;
-  margin-left: 0.4rem;
-  margin-top: -0.2rem;
-  background: linear-gradient(to bottom, #ccc 54%, transparent 54%, transparent 63%, #ccc 63%, #ccc 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-  transition: all 100ms linear;
-}
-.ax-table [data-sort][class*='asc'] span:after {
-  background: linear-gradient(to bottom, #666666 54%, transparent 54%, transparent 63%, #ccc 63%, #ccc 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table [data-sort][class*='desc'] span:after {
-  background: linear-gradient(to bottom, #ccc 54%, transparent 54%, transparent 63%, #666666 63%, #666666 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table th {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  text-align: center;
-  text-transform: none;
-  padding: 1rem 0;
-}
-.ax-table td {
-  line-height: 1.8rem;
-  text-align: center;
-  padding: 1rem 0;
-}
-.ax-table td .ax-align-left,
-.ax-table th .ax-align-left {
-  margin: 0 1.4rem;
-}
-.ax-table.ax-align-left td,
-.ax-table.ax-align-left th {
-  text-align: left;
-  padding-left: 1.4rem;
-  padding-right: 1.4rem;
-}
-.ax-table .ax-avatar {
-  margin-top: calc((-2.2rem + 1.8rem)/2);
-  margin-bottom: calc((-2.2rem + 1.8rem)/2);
-}
-.ax-table.ax-stripe tbody tr:nth-child(odd),
-.ax-table.ax-stripe-odd tbody tr:nth-child(odd) {
-  background-color: #fafafa;
-}
-.ax-table.ax-stripe-even tbody tr:nth-child(even) {
-  background-color: #fafafa;
-}
-.ax-table.ax-stripe-none tbody tr {
-  background: transparent;
-}
-.ax-table.ax-hover tbody tr:not(.ax-selected):hover {
-  background-color: #f5f5f5;
-}
-.ax-table.ax-hover-none tbody tr:not(.ax-selected):hover {
-  background: transparent;
-}
-.ax-table tbody tr.ax-selected,
-.ax-table tbody td.ax-selected {
-  background-color: #f0f7ff;
-}
-.ax-table.ax-order *[class*="ax-sorting-"] {
-  background-color: rgba(0, 0, 0, 0.02);
-}
-/*datatables sort*/
-.ax-table thead *[class*='sorting'] {
-  position: relative;
-  cursor: pointer;
-}
-.ax-table thead *[class*='sorting']:after {
-  content: '\2666';
-  color: transparent;
-  font-weight: normal;
-  font-size: 1.8rem;
-  line-height: 1.4rem;
-  margin-left: 0.4rem;
-  margin-top: -0.2rem;
-  transition: all 100ms linear;
-}
-.ax-table thead .ax-sorting:after {
-  background: linear-gradient(to bottom, #ccc 54%, transparent 54%, transparent 63%, #ccc 63%, #ccc 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table thead .ax-sorting-asc:after {
-  background: linear-gradient(to bottom, #666666 54%, transparent 54%, transparent 63%, #ccc 63%, #ccc 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table thead .ax-sorting-desc:after {
-  background: linear-gradient(to bottom, #ccc 54%, transparent 54%, transparent 63%, #666666 63%, #666666 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table thead[class*='-sorting'] .ax-align-left {
-  float: left;
-  width: calc(100% - 1.4rem*4);
-}
-.ax-table thead[class*='-sorting'] .ax-align-right {
-  float: right;
-  width: calc(100% - 1.4rem*4);
-}
-.ax-table thead .ax-sorting-disabled:before,
-.ax-table thead .ax-sorting-disabled:after {
-  display: none;
-  margin: 0 !important;
-}
-.ax-table tfoot .left {
-  text-align: left;
-  margin-left: 1.4rem;
-}
-.ax-table tfoot .right {
-  text-align: right;
-  margin-right: 1.4rem;
-}
-.ax-table .ax-btn.ax-xs {
-  margin-top: calc((-2.2rem + 1.8rem)/2);
-  margin-bottom: calc((-2.2rem + 1.8rem)/2);
-}
-.ax-table .ax-btn.ax-icon.ax-xs {
-  position: relative;
-}
-.ax-table .ax-operate {
-  margin-top: calc((-2.2rem + 1.8rem)/2);
-  margin-bottom: calc((-2.2rem + 1.8rem)/2);
-}
-.ax-table .ax-operate [class*="font"] {
-  color: #b3b3b3;
-  font-size: 1.4rem;
-  height: 2.2rem;
-  line-height: 2.2rem;
-  width: 2.2rem;
-  text-align: center;
-  box-sizing: border-box;
-  position: relative;
-}
-.ax-table .ax-operate [class*="font"].ax-color-forbid {
-  color: rgba(179, 179, 179, 0.5);
-  cursor: not-allowed;
-}
-.ax-table .ax-operate [class*="font"] .ax-dot {
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-table tbody tr:hover .ax-operate [class*="font"] {
-  color: #666666;
-}
-.ax-table tbody tr:hover .ax-operate [class*="font"].ax-color-forbid {
-  color: rgba(179, 179, 179, 0.5);
-}
-.ax-table .ax-operate [class*="font"]:hover {
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  line-height: calc(2.2rem - 0.2rem);
-  border-radius: 0.3rem;
-}
-.ax-table .ax-operate [class*="font"]:hover .ax-dot {
-  right: -0.1rem;
-  top: -0.1rem;
-}
-.ax-table .ax-ell {
-  max-width: 16rem;
-}
-.ax-table .ax-form-input {
-  width: 100%;
-}
-.ax-table .ax-radio.ax-xs,
-.ax-table .ax-checkbox.ax-xs,
-.ax-table select.ax-xs,
-.ax-table .ax-form-group.ax-xs,
-.ax-table td > input.ax-xs {
-  margin-top: calc((-2.2rem + 1.8rem)/2);
-  margin-bottom: calc((-2.2rem + 1.8rem)/2);
-}
-.ax-table .ax-select.ax-xs + span {
-  margin-top: calc(((-2.2rem + 1.8rem)/2) - 0.4rem);
-  margin-bottom: calc((-2.2rem + 1.8rem)/2);
-}
-.ax-table .ax-select,
-.ax-table select {
-  width: 12rem;
-}
-.ax-table th > input[type='text'],
-.ax-table td > input[type='text'],
-.ax-table th > input[type='search'],
-.ax-table td > input[type='search'] {
-  width: 12rem;
-  max-width: 100%;
-}
-.ax-table .ax-form-group .ax-col {
-  width: auto;
-}
-.ax-table.ax-order *[class*="ax-sorting-"] {
-  background-color: rgba(0, 0, 0, 0.02);
-}
-.ax-table thead *[class*='sorting'] {
-  position: relative;
-  cursor: pointer;
-}
-.ax-table thead *[class*='sorting']:after {
-  content: '\2666';
-  color: transparent;
-  font-weight: normal;
-  font-size: 1.8rem;
-  line-height: 1.4rem;
-  margin-left: 0.4rem;
-  margin-top: -0.2rem;
-  transition: all 100ms linear;
-}
-.ax-table thead .ax-sorting:after {
-  background: linear-gradient(to bottom, #ccc 54%, transparent 54%, transparent 63%, #ccc 63%, #ccc 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table thead .ax-sorting-asc:after {
-  background: linear-gradient(to bottom, #666666 54%, transparent 54%, transparent 63%, #ccc 63%, #ccc 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table thead .ax-sorting-desc:after {
-  background: linear-gradient(to bottom, #ccc 54%, transparent 54%, transparent 63%, #666666 63%, #666666 100%);
-  background-clip: text;
-  -webkit-background-clip: text;
-}
-.ax-table thead[class*='-sorting'] .ax-align-left {
-  float: left;
-  width: calc(100% - 1.4rem*4);
-}
-.ax-table thead[class*='-sorting'] .ax-align-right {
-  float: right;
-  width: calc(100% - 1.4rem*4);
-}
-.ax-table-wrapper:after {
-  content: '.';
-  visibility: hidden;
-  clear: both;
-  display: block;
-  height: 0rem;
-}
-.ax-table-wrapper div:first-child + .ax-break {
-  height: 0;
-}
-.ax-table-wrapper .ax-table-info {
-  color: #666666;
-  margin-right: 1.4rem;
-  float: left;
-}
-.ax-table-wrapper .ax-table-info > span {
-  margin-left: 1.4rem;
-}
-.ax-table-wrapper .ax-table-processing {
-  color: #666666;
-  text-align: center;
-  margin: 1.4rem auto;
-}
-.ax-table-wrapper .ax-pagination {
-  margin-top: 0;
-  margin-bottom: 0;
-}
-.ax-table-wrapper .ax-table-length {
-  color: #666666;
-  float: left;
-}
-.ax-table-wrapper .ax-table-length .ax-col {
-  margin: 0 0.4rem;
-}
-.ax-table-wrapper .ax-table-filter {
-  float: right;
-}
-.ax-table-wrapper .ax-table-filter .ax-btn {
-  margin-left: 0.4rem;
-}
-.ax-table-wrapper *[class*='-pagination'] {
-  text-align: right;
-  float: right;
-}
-.ax-table-wrapper .ax-overlay {
-  width: 100%;
-  height: 100%;
-  background-color: rgba(255, 255, 255, 0);
-  cursor: pointer;
-  position: absolute;
-  top: 0;
-  left: 0;
-  z-index: 2;
-}
-.ax-table-wrapper .ax-table-button {
-  position: relative;
-}
-.ax-table-wrapper .ax-table-button > .ax-btn.ax-last + .ax-overlay + .ax-collection {
-  left: auto !important;
-  right: 0;
-}
-.ax-table-wrapper .ax-table-button.ax-float-left {
-  margin-right: 1.4rem;
-}
-.ax-table-wrapper .ax-table-button.ax-float-right {
-  margin-left: 1.4rem;
-}
-.ax-table-wrapper .ax-table-button .ax-collection {
-  width: 12rem;
-  text-align: center;
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  position: absolute;
-  z-index: 2;
-}
-.ax-table-wrapper .ax-table-button .ax-collection .ax-btn {
-  border-width: 0 0 0.1rem 0;
-  border-radius: 0;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  display: block;
-  width: 100%;
-}
-.ax-table-wrapper .ax-table-button .ax-collection button.ax-btn {
-  border-width: 0 0 0.1rem 0;
-}
-.ax-table-wrapper .ax-table-button .ax-collection a.ax-btn:after {
-  border-width: 0 0 0.1rem 0;
-  border-radius: 0;
-}
-.ax-table-wrapper .ax-table-button .ax-collection .ax-btn.ax-active:not(.ax-disabled) {
-  color: #198cff;
-  background-color: #f0f7ff;
-}
-.ax-table-wrapper .ax-table-button .ax-collection .ax-btn:not(.ax-disabled):hover,
-.ax-table-wrapper .ax-table-button .ax-collection .ax-btn:not(.ax-disabled):hover:after {
-  box-shadow: none;
-  border-color: #e0e0e0;
-}
-.ax-table-wrapper .ax-table-button .ax-collection-list .ax-btn:first-child,
-.ax-table-wrapper .ax-table-button .ax-collection-list .ax-btn:first-child:after {
-  border-top-left-radius: 0.3rem;
-  border-top-right-radius: 0.3rem;
-}
-.ax-table-wrapper .ax-table-button .ax-collection-list .ax-btn:last-child,
-.ax-table-wrapper .ax-table-button .ax-collection-list .ax-btn:last-child:after {
-  border-width: 0;
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-}
-.ax-table-wrapper .ax-table-button .ax-collection-title {
-  color: #666666;
-  line-height: 2.8rem;
-  border-bottom: 1px solid #e0e0e0;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-}
-.ax-table-wrapper .ax-table-button .ax-collection-title:empty {
-  display: none;
-}
-.ax-table-wrapper .ax-empty {
-  color: #b3b3b3;
-}
-.ax-table.fixedHeader-floating {
-  background-color: #fff;
-  border-top-width: 0;
-  position: fixed;
-  z-index: 4;
-}
-.ax-table.fixedHeader-locked {
-  position: absolute;
-}
-.ax-table-wrapper .DTFC_LeftHeadWrapper,
-.ax-table-wrapper .DTFC_LeftBodyWrapper,
-.ax-table-wrapper .DTFC_LeftFootWrapper {
-  border-right: 1px solid #ebebeb;
-}
-.ax-table-wrapper .DTFC_RightHeadWrapper,
-.ax-table-wrapper .DTFC_RightBodyWrapper,
-.ax-table-wrapper .DTFC_RightFootWrapper {
-  border-left: 1px solid #ebebeb;
-}
-.ax-table-wrapper .DTFC_Blocker {
-  background-color: #fff;
-}
-.ax-table.DTFC_Cloned {
-  background-color: #fafafa;
-}
-.ax-table tr[style*='height:.0rem'],
-.ax-table tr[style*='height: .0rem'] {
-  border-width: 0;
-  border-color: transparent;
-  opacity: 0;
-  transition-property: none;
-  overflow: hidden;
-}
-.ax-table tr[style*='height:.0rem'] th:after,
-.ax-table tr[style*='height: .0rem'] th:after {
-  display: none;
-}
-.DTFC_LeftBodyWrapper .ax-table,
-.DTFC_RightBodyWrapper .ax-table,
-.dataTables_scrollBody .ax-table {
-  border-width: 0;
-}
-.ax-table-wrapper .dataTables_scrollBody .ax-table + .ax-break {
-  display: none;
-}
-.ax-table-wrapper .dataTables_scroll {
-  position: relative;
-}
-.ax-table-wrapper .dataTables_scroll:after {
-  content: '';
-  height: 1px;
-  width: 100%;
-  background-color: #ebebeb;
-  position: absolute;
-  left: 0;
-  bottom: 0;
-}
-.ax-table.ax-nowrap td,
-.ax-table.ax-nowrap th {
-  white-space: nowrap;
-  padding-left: 1.4rem;
-  padding-right: 1.4rem;
-}
-.ax-table td.ax-select-checkbox,
-.ax-table th.ax-select-checkbox {
-  position: relative;
-}
-.ax-table td.ax-select-checkbox:before,
-.ax-table th.ax-select-checkbox:before {
-  content: '';
-  width: 1.6rem;
-  height: 1.6rem;
-  display: inline-block;
-  box-sizing: border-box;
-  border-radius: 0.3rem;
-  cursor: pointer;
-  border: 1px solid #e0e0e0;
-  transition: all 200ms ease-out;
-  position: relative;
-  top: 0.1rem;
-}
-.ax-table tr.ax-selected td.ax-select-checkbox:before {
-  border-color: #198cff;
-  background-color: #198cff;
-}
-.ax-table tr th.ax-select-checkbox.ax-selected:before {
-  border-color: #198cff;
-  background-color: #198cff;
-}
-.ax-table tr.ax-selected td.ax-select-checkbox:after {
-  content: '';
-  width: 1rem;
-  height: 0.6rem;
-  border-radius: 0 0.6rem 0 0;
-  cursor: pointer;
-  box-shadow: -0.2rem 0.2rem 0 0 #fff;
-  display: inline-block;
-  position: absolute;
-  top: 1.2rem;
-  left: 0.8rem;
-  transform: rotate(-45deg) scale(1);
-}
-.ax-table tr th.ax-select-checkbox.ax-selected:after {
-  content: '';
-  width: 1rem;
-  height: 0.6rem;
-  border-radius: 0 0.6rem 0 0;
-  cursor: pointer;
-  box-shadow: -0.2rem 0.2rem 0 0 #fff;
-  display: inline-block;
-  position: absolute;
-  top: 1.2rem;
-  left: 0.8rem;
-  transform: rotate(-45deg) scale(1);
-}
-.ax-table td.ax-focus {
-  box-shadow: inset 0 0 0 0.2rem #198cff;
-}
-.ax-table.ax-response td:not(.child),
-.ax-table.ax-response th:not(.child) {
-  white-space: nowrap;
-  padding-left: 1.4rem;
-  padding-right: 1.4rem;
-}
-.ax-table.ax-response tr > td.dtr-control,
-.ax-table.ax-response tr > th.dtr-control {
-  position: relative;
-}
-.ax-table.ax-response tr > td.dtr-control:before {
-  content: '';
-  width: 0.8rem;
-  height: 0.2rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: calc((3.8rem - 0.2rem)/2);
-}
-.ax-table.ax-response tr > td.dtr-control:after {
-  content: '';
-  width: 0.2rem;
-  height: 0.8rem;
-  background-color: #198cff;
-  position: absolute;
-  left: calc((0.8rem - 0.2rem)/2);
-  top: calc((3.8rem - 0.8rem)/2);
-}
-.ax-table.ax-response tr.parent > td.dtr-control:before {
-  background-color: #666666;
-}
-.ax-table.ax-response tr.parent > td.dtr-control:after {
-  display: none;
-}
-.ax-table.ax-response tr.child ul.dtr-details {
-  line-height: 2.8rem;
-  text-align: left;
-}
-.ax-table.ax-response tr.child ul.dtr-details li {
-  padding-left: 1.8rem;
-  transition: all 100ms linear;
-}
-.ax-table.ax-response tr.child ul.dtr-details li:hover {
-  background-color: #f5f5f5;
-}
-.ax-table.ax-response tr.child span.dtr-title {
-  min-width: 9.6rem;
-}
-.ax-table.ax-response tr.child span.dtr-title:after {
-  content: ':';
-}
-.ax-table .ax-parent span {
-  float: left;
-  font-weight: bold;
-}
-.ax-table .ax-parent i,
-.ax-table .ax-parent s {
-  color: #b3b3b3;
-  margin-left: 1.4rem;
-  cursor: pointer;
-  float: right;
-}
-/*  ax popup  */
-.ax-popup {
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  box-sizing: border-box;
-  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-  z-index: 710;
-  animation-duration: 100ms;
-  animation-fill-mode: both;
-  visibility: hidden;
-}
-.ax-popup.ax-show {
-  visibility: visible;
-}
-.ax-popup[data-theme="crude"] {
-  border: none;
-  box-shadow: none;
-  background: transparent;
-}
-.ax-popup[data-theme="crude"] [valid] {
-  line-height: 1.8rem;
-  padding: calc((2.8rem - 1.8rem)/2) 0;
-}
-.ax-popup[data-size="sm"] {
-  width: 20rem;
-}
-.ax-popup[data-size="md"] {
-  width: 36rem;
-}
-.ax-popup[data-size="lg"] {
-  width: 60rem;
-}
-.ax-popup[data-size="xl"] {
-  width: 80rem;
-}
-.ax-popup[data-size="xxl"] {
-  width: 100rem;
-}
-.ax-popup [arrow] {
-  width: 1rem;
-  height: 1rem;
-  box-shadow: 1px 1px 0 #ebebeb;
-}
-.ax-popup[data-placement^='top'] [arrow] {
-  bottom: -0.5rem;
-  background: linear-gradient(135deg, transparent 50%, #fff 50%, #fff 100%);
-  transform: rotate(45deg);
-}
-.ax-popup[data-placement^='bottom'] [arrow] {
-  top: -0.5rem;
-  transform: rotate(-135deg);
-  background: linear-gradient(135deg, transparent 50%, #fff 50%, #fff 100%);
-}
-.ax-popup[data-placement^='left'] [arrow] {
-  right: -0.5rem;
-  transform: rotate(-45deg);
-  background: linear-gradient(135deg, transparent 50%, #fff 50%, #fff 100%);
-}
-.ax-popup[data-placement^='right'] [arrow] {
-  left: -0.5rem;
-  transform: rotate(135deg);
-  background: linear-gradient(135deg, transparent 50%, #fff 50%, #fff 100%);
-}
-/* 
-//鍒嗘柟鍚戝畾涔夋寚绀鸿鏍�
-.ax-popup[data-placement="top"] [data-arrow]:after,
-.ax-popup[data-placement="bottom"] [data-arrow]:after{
-  left:calc(50% - 0.5rem);
-}
-.ax-popup[data-placement="top-start"] [data-arrow]:after,
-.ax-popup[data-placement="bottom-start"] [data-arrow]:after{
-  left:2.8rem;
-}
-.ax-popup[data-placement="top-end"] [data-arrow]:after,
-.ax-popup[data-placement="bottom-end"] [data-arrow]:after{
-  right:2.8rem;
-}
-.ax-popup[data-placement="left"] [data-arrow]:after,
-.ax-popup[data-placement="right"] [data-arrow]:after{
-top:calc(50% - 0.5rem);
-}
-.ax-popup[data-placement="left-start"] [data-arrow]:after,
-.ax-popup[data-placement="right-start"] [data-arrow]:after{
-  top:1.4rem;
-}
-.ax-popup[data-placement="left-end"] [data-arrow]:after,
-.ax-popup[data-placement="right-end"] [data-arrow]:after{
-    bottom:1.4rem;
-} */
-.ax-popup .ax-popup-body {
-  max-height: 600px;
-  box-sizing: border-box;
-  display: block;
-  overflow-y: auto;
-  overflow-x: hidden;
-}
-.ax-popup .ax-popup-body .ax-popup-content {
-  overflow: hidden;
-}
-.ax-popup .ax-close {
-  font-family: 'ax-iconfont';
-  font-size: 1.4rem;
-  text-align: center;
-  color: rgba(0, 0, 0, 0.2);
-  text-decoration: none;
-  width: calc(3.8rem - 2px);
-  height: calc(3.8rem - 2px);
-  line-height: calc(3.8rem - 2px);
-  transition: all 200ms linear;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-popup .ax-close:before {
-  content: "close";
-  width: calc(3.8rem - 2px);
-  height: calc(3.8rem - 2px);
-}
-.ax-popup .ax-close:hover {
-  color: rgba(0, 0, 0, 0.8);
-}
-.ax-popup-header {
-  font-size: 1.4rem;
-  font-weight: bold;
-  line-height: calc(3.8rem - 2px);
-  padding: 0 1.4rem;
-  margin: 0;
-  border-top-left-radius: 0.3rem;
-  border-top-right-radius: 0.3rem;
-}
-.ax-popup .ax-media-title {
-  font-size: 1.8rem;
-  font-weight: bold;
-  line-height: 3.8rem;
-  text-align: center;
-  margin: 1.4rem 0 0.8rem 0;
-}
-.ax-popup .ax-qrcode {
-  text-align: center;
-}
-.ax-popup .ax-qrcode .ax-qrcode-title {
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-}
-.ax-popup .ax-qrcode img {
-  margin: auto;
-}
-.ax-popup[data-type="pictrue"] .ax-dialog-content,
-.ax-popup[data-type="video"] .ax-dialog-content,
-.ax-popup[data-type="audio"] .ax-dialog-content {
-  text-align: center;
-}
-.ax-popup .ax-media-container img,
-.ax-popup .ax-media-container video,
-.ax-popup .ax-media-container audio {
-  max-width: 100%;
-}
-.ax-popup .ax-media-container video,
-.ax-popup .ax-media-container audio {
-  width: 100%;
-  display: block;
-}
-.ax-popup iframe {
-  min-height: 400px;
-}
-.ax-popup[padding="false"] .list-group-item {
-  border-right: none;
-  border-left: none;
-}
-.ax-popup[padding="false"] .list-group-item:first-child {
-  border-top: 0;
-}
-.ax-popup[padding="false"] .list-group-item:last-child {
-  border-bottom: 0;
-}
-.ax-popup[placement="center"] {
-  position: fixed;
-}
-.ax-popup > .ax-arrow,
-.ax-popup > .ax-arrow:after {
-  width: 0;
-  height: 0;
-  border-color: transparent;
-  border-style: solid;
-  position: absolute;
-  display: block;
-}
-.ax-popup > .ax-arrow {
-  border-width: 0.8rem;
-}
-.ax-popup > .ax-arrow:after {
-  content: "";
-  border-width: 0.8rem;
-}
-.ax-popup.ax-top > .ax-arrow,
-.ax-popup.ax-top-right > .ax-arrow,
-.ax-popup.ax-top-left > .ax-arrow {
-  margin-left: -0.8rem;
-  border-top-color: #ebebeb;
-  border-bottom-width: 0;
-  bottom: -0.8rem;
-  left: 50%;
-}
-.ax-popup.ax-top > .ax-arrow:after,
-.ax-popup.ax-top-right > .ax-arrow:after,
-.ax-popup.ax-top-left > .ax-arrow:after {
-  content: " ";
-  margin-left: -0.8rem;
-  border-top-color: #fff;
-  border-bottom-width: 0;
-  bottom: 1px;
-}
-.ax-popup.ax-right > .ax-arrow,
-.ax-popup.ax-right-top > .ax-arrow,
-.ax-popup.ax-right-bottom > .ax-arrow {
-  margin-top: -0.8rem;
-  border-left-width: 0;
-  border-right-color: #ebebeb;
-  top: 50%;
-  left: -0.8rem;
-}
-.ax-popup.ax-right > .ax-arrow:after,
-.ax-popup.ax-right-top > .ax-arrow:after,
-.ax-popup.ax-right-bottom > .ax-arrow:after {
-  content: " ";
-  border-left-width: 0;
-  border-right-color: #fff;
-  left: 0.1rem;
-  bottom: -0.8rem;
-}
-.ax-popup.ax-bottom > .ax-arrow,
-.ax-popup.ax-bottom-right > .ax-arrow,
-.ax-popup.ax-bottom-left > .ax-arrow {
-  margin-left: -0.8rem;
-  border-bottom-color: #ebebeb;
-  border-top-width: 0;
-  top: -0.8rem;
-  left: 50%;
-}
-.ax-popup.ax-bottom > .ax-arrow:after,
-.ax-popup.ax-bottom-right > .ax-arrow:after,
-.ax-popup.ax-bottom-left > .ax-arrow:after {
-  content: " ";
-  margin-left: -0.8rem;
-  border-bottom-color: #fff;
-  border-top-width: 0;
-  top: 0.1rem;
-}
-.ax-popup.ax-left > .ax-arrow,
-.ax-popup.ax-left-top > .ax-arrow,
-.ax-popup.ax-left-bottom > .ax-arrow {
-  margin-top: -0.8rem;
-  border-right-width: 0;
-  border-left-color: #ebebeb;
-  top: 50%;
-  right: -0.8rem;
-}
-.ax-popup.ax-left > .ax-arrow:after,
-.ax-popup.ax-left-top > .ax-arrow:after,
-.ax-popup.ax-left-bottom > .ax-arrow:after {
-  content: " ";
-  border-right-width: 0;
-  border-left-color: #fff;
-  bottom: -0.8rem;
-  right: 0.1rem;
-}
-.ax-popup-footer {
-  border-radius: 0 0 0.3rem 0.3rem;
-  overflow-y: hidden;
-}
-.ax-popup .ax-note {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  height: 3.8rem;
-  display: flex;
-  align-items: center;
-}
-.ax-popup[data-footerType="center"] .ax-note,
-.ax-popup[data-footerType="line"] .ax-note {
-  border-top: 1px solid #ebebeb;
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-  background-color: #fafafa;
-  justify-content: center;
-}
-.ax-popup[data-footerType="right"] .ax-note {
-  justify-content: flex-start;
-}
-.ax-popup-footer {
-  border-radius: 0 0 0.3rem 0.3rem;
-  overflow-y: hidden;
-}
-.ax-popup-footer .ax-btn {
-  margin: 0 0.8rem;
-}
-.ax-popup-footer .ax-btns .ax-btn {
-  margin: 0;
-}
-.ax-popup-footer > .ax-row {
-  line-height: 3.8rem;
-  text-align: center;
-}
-.ax-popup-footer > .ax-row .ax-gutter-line {
-  height: 3.8rem;
-}
-.ax-popup-footer > .ax-row a:hover {
-  background-color: #fff;
-}
-.ax-popup-footer > .ax-row .ax-gutter-line:last-child {
-  display: none;
-}
-/**/
-/*axPopover end*/
-/*grade menu*/
-.ax-grade {
-  position: relative;
-}
-.ax-grade .ax-outer {
-  box-sizing: border-box;
-  transform: translate(-50%, 0);
-  background-color: #fff;
-  display: none;
-  position: absolute;
-  top: calc(100%);
-  left: 50%;
-  z-index: 3;
-}
-.ax-grade:hover .ax-outer {
-  display: block;
-}
-.ax-grade.ax-right .ax-outer {
-  top: 0;
-  left: auto;
-  right: -14.8rem;
-  transform: none;
-}
-.ax-grade.ax-right .ax-outer:before {
-  content: '';
-  width: 1rem;
-  height: 3.8rem;
-  position: absolute;
-  left: -1rem;
-  top: 0;
-}
-.ax-grade .ax-outer,
-.ax-grade ul.ax-outer ul {
-  width: 14rem;
-  box-sizing: border-box;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-}
-.ax-grade ul.ax-outer li {
-  text-align: left;
-  line-height: 3.8rem;
-  width: 100%;
-  box-sizing: border-box;
-  position: relative;
-  border-bottom: 1px solid #ebebeb;
-}
-.ax-grade ul.ax-outer li:last-child,
-.ax-grade ul.ax-outer ul li:last-child {
-  border-width: 0;
-}
-.ax-grade ul.ax-outer li *[class*="-right"] {
-  color: #ccc;
-  position: absolute;
-  right: 0.8rem;
-  top: 0;
-}
-.ax-grade ul.ax-outer li ul {
-  box-sizing: border-box;
-  background-color: #fff;
-  -webkit-transform: translate(100%, 0%);
-  transform: translate(100%, 0%);
-  position: absolute;
-  width: 100%;
-  top: -0.1rem;
-  right: 0;
-  display: none;
-}
-.ax-grade ul.ax-outer li:hover {
-  color: #198cff;
-  background-color: #f0f7ff;
-}
-.ax-grade ul.ax-outer li:hover svg {
-  fill: #198cff;
-}
-.ax-grade ul.ax-outer li.ax-selected,
-.ax-grade ul.ax-outer li.ax-selected:hover {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-grade ul.ax-outer li.ax-selected *[class*="-right"] {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-grade ul.ax-outer li.ax-selected svg {
-  fill: rgba(255, 255, 255, 0.5);
-}
-.ax-grade ul.ax-outer a {
-  box-sizing: border-box;
-  padding: 0 0.8rem 0 0.8rem;
-  transition: all 100ms linear;
-  display: block;
-}
-.ax-grade ul.ax-outer li.ax-selected > a,
-.ax-grade ul.ax-outer li.ax-selected:hover > a {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-grade ul.ax-outer li:hover > a + ul,
-.ax-grade ul.ax-outer li:hover > *[class*="-right"] + ul {
-  display: block;
-}
-.ax-grade ul.ax-outer li a *[class*="font"] {
-  margin-right: 0.4rem;
-}
-.ax-grade ul.ax-outer li a svg {
-  margin-right: 0.4rem;
-}
-/*header*/
-.ax-space-header {
-  height: calc(4.4rem + 1rem);
-  overflow: hidden;
-}
-.ax-header.ax-inherit + .ax-space-header {
-  display: none;
-}
-.ax-header {
-  background-color: #fff;
-  box-shadow: 0 0.1rem 0 0 rgba(0, 0, 0, 0.1);
-  transition: all 100ms linear;
-  position: fixed;
-  width: 100%;
-  left: 0;
-  top: 0;
-  z-index: 610;
-}
-.ax-header.ax-inherit {
-  position: inherit;
-  left: auto;
-  top: auto;
-}
-.ax-header .ax-logo {
-  height: calc(4.4rem + 1rem);
-  transition: all 200ms linear;
-  vertical-align: middle;
-  position: relative;
-}
-.ax-header .ax-logo img,
-.ax-header .ax-logo svg {
-  height: calc(4.4rem + 1rem);
-}
-.ax-header .ax-col {
-  overflow: hidden;
-}
-.ax-header .ax-nav .ax-item {
-  margin: 0 1.6rem;
-  display: inline-block;
-  vertical-align: middle;
-  position: relative;
-}
-.ax-header .ax-nav .ax-item a {
-  transition: all 200ms linear;
-}
-.ax-header .ax-nav .ax-item a.ax-text > i {
-  font-size: 1rem;
-  line-height: 1.4rem;
-  vertical-align: middle;
-  margin-left: 0.4rem;
-}
-.ax-header .ax-nav .ax-item a.ax-text {
-  line-height: calc(4.4rem + 1rem);
-  width: 100%;
-  text-align: center;
-}
-.ax-header .ax-nav .ax-item .ax-line {
-  height: 0.2rem;
-  background-color: #198cff;
-  width: 2.8rem;
-  -webkit-transform: translate(-50%, 0) scaleX(0);
-  transform: translate(-50%, 0) scaleX(0);
-  transition: all 200ms linear;
-  position: absolute;
-  left: 50%;
-  top: calc(4.4rem + 1rem - 0.2rem);
-}
-.ax-header .ax-nav .ax-item.ax-selected > a {
-  color: #198cff;
-}
-.ax-header .ax-nav .ax-item.ax-selected .ax-line {
-  -webkit-transform: translate(-50%, 0) scaleX(1);
-  transform: translate(-50%, 0) scaleX(1);
-}
-.ax-header .ax-nav .ax-item:hover .ax-line {
-  -webkit-transform: translate(-50%, 0) scaleX(1);
-  transform: translate(-50%, 0) scaleX(1);
-}
-.ax-header .ax-back {
-  font-size: 1.8rem;
-  color: #666666;
-  width: calc(4.4rem + 1rem);
-  height: calc(4.4rem + 1rem);
-  line-height: calc(4.4rem + 1rem);
-  text-align: center;
-  position: relative;
-}
-.ax-header .ax-back:after {
-  content: '';
-  width: 1px;
-  height: 2.4rem;
-  background-color: #ebebeb;
-  position: absolute;
-  right: -0.1rem;
-  top: calc((4.4rem + 1rem - 2.4rem)/2);
-}
-.ax-header .ax-title {
-  height: calc(4.4rem + 1rem);
-  overflow: hidden;
-  display: flex;
-  align-items: center;
-  padding: 0 1.4rem;
-}
-.ax-header .ax-title .ax-outer {
-  width: 100%;
-}
-.ax-header .ax-title .ax-row01 {
-  font-size: 1.6rem;
-  width: 100%;
-  line-height: 2.2rem;
-}
-.ax-header .ax-title .ax-row02 {
-  font-size: 1.2rem;
-  color: #ccc;
-  width: 100%;
-  line-height: 1.4rem;
-}
-.ax-header .ax-search {
-  width: 20rem;
-  height: 3.4rem;
-  margin: 0 1.4rem;
-  vertical-align: middle;
-  position: relative;
-  display: inline-block;
-}
-.ax-header .ax-search input {
-  height: calc(4.4rem - 1rem);
-  line-height: calc(4.4rem - 1rem);
-  width: 100%;
-  padding-right: 4.4rem;
-  position: absolute;
-  top: 0;
-  left: 0;
-}
-.ax-header .ax-search *[class*="search"] {
-  color: #ccc;
-  text-align: center;
-  line-height: calc(4.4rem - 1rem);
-  width: calc(4.4rem - 1rem);
-  height: calc(4.4rem - 1rem);
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-header .ax-search *[class*="search"]:after {
-  content: '';
-  width: 1px;
-  height: 1.6rem;
-  background-color: #f0f0f0;
-  position: absolute;
-  left: -0.1rem;
-  top: 0.9rem;
-}
-.ax-header .ax-login {
-  margin-left: 1.4rem;
-  margin-right: 1.4rem;
-  vertical-align: middle;
-  position: relative;
-  display: inline-block;
-}
-.ax-header .ax-login a {
-  height: calc(4.4rem - 1rem);
-  line-height: calc(4.4rem - 1rem - 0.2rem);
-  box-sizing: border-box;
-  padding: 0 1.4rem;
-  text-align: center;
-  border-top: 1px solid #e0e0e0;
-  border-bottom: 1px solid #e0e0e0;
-  transition: all 100ms linear;
-  position: relative;
-}
-.ax-header .ax-login a:not(:first-child):before {
-  content: '';
-  height: 1.6rem;
-  width: 1px;
-  background-color: #f0f0f0;
-  position: absolute;
-  left: -0.1rem;
-  top: 0.9rem;
-}
-.ax-header .ax-login a:first-child {
-  border-radius: 0.3rem 0 0 0.3rem;
-  border-left: 1px solid #e0e0e0;
-}
-.ax-header .ax-login a:last-child {
-  border-radius: 0 0.3rem 0.3rem 0;
-  border-right: 1px solid #e0e0e0;
-}
-.ax-header .ax-login a:first-child:last-child {
-  border-radius: 0.3rem;
-}
-.ax-header .ax-login a:hover {
-  color: #fff;
-  border-color: #198cff;
-  background-color: #198cff;
-  z-index: 2;
-}
-.ax-header .ax-btns {
-  padding: 0 1.4rem;
-  height: calc(4.4rem + 1rem);
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-}
-.ax-header .ax-btns > * {
-  color: #475b66;
-  font-size: 1.8rem;
-  width: 2.8rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  background-position: center;
-  background-repeat: no-repeat;
-  background-size: cover;
-  border-radius: 100%;
-  text-align: center;
-  margin-left: 1rem;
-  transition: all 100ms linear;
-  position: relative;
-  z-index: 2;
-}
-.ax-header .ax-btns > * .ax-dot {
-  position: absolute;
-  top: 0rem;
-  right: 0rem;
-}
-.ax-header .ax-btns > * .ax-badge {
-  position: absolute;
-  top: -0.3rem;
-  right: -0.5rem;
-}
-.ax-header .ax-btns > *[style*="background-image"] {
-  margin-right: 1.4rem;
-}
-.ax-header .ax-btns > *[style*="background-image"]:before {
-  font-size: 1rem;
-  position: absolute;
-  right: -1.4rem;
-}
-.ax-header *[class*="-open"] {
-  color: #6619ff;
-  font-size: 1.8rem;
-  width: calc(4.4rem - 1rem);
-  line-height: 4.4rem;
-  text-align: center;
-  transition: all 100ms linear;
-  vertical-align: middle;
-  position: relative;
-  display: none;
-}
-.ax-header .ax-image {
-  display: none;
-  vertical-align: middle;
-}
-.ax-header .ax-resemble {
-  width: 20rem;
-  margin: 1rem 0.3rem;
-  height: calc(4.4rem - 1rem);
-  box-sizing: border-box;
-  position: relative;
-  display: block;
-}
-.ax-header .ax-resemble form {
-  width: 100%;
-  height: 100%;
-}
-.ax-header .ax-resemble input {
-  width: 100%;
-  height: 100%;
-  padding-right: 4.4rem;
-}
-.ax-header .ax-resemble *[class*="search"] {
-  line-height: calc(4.4rem - 1rem);
-  width: calc(4.4rem - 1rem);
-  height: calc(4.4rem - 1rem);
-  color: #ccc;
-  text-align: center;
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-header .ax-resemble *[class*="search"]:after {
-  content: '';
-  width: 1px;
-  height: 1.6rem;
-  background-color: #f0f0f0;
-  position: absolute;
-  left: -0.1rem;
-  top: 0.9rem;
-}
-.ax-header .ax-resemble .ax-mask {
-  width: 100%;
-  height: 100%;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 3;
-  display: none;
-}
-/*footer*/
-.ax-footer .ax-operate a {
-  vertical-align: top;
-}
-.ax-footer .ax-operate a {
-  margin-right: 1.4rem;
-}
-.ax-footer .ax-copyright + .ax-operate a {
-  margin-right: 0;
-  margin-left: 1.4rem;
-}
-.ax-footer .ax-operate a.ax-icon {
-  margin-right: 0.4rem;
-}
-.ax-footer .ax-copyright + .ax-operate a.ax-icon {
-  margin-right: 0;
-  margin-left: 0.4rem;
-}
-.ax-footer .ax-operate a[class*="font"] {
-  font-size: 1.8rem;
-  color: #666666;
-}
-.ax-footer .ax-copyright,
-.ax-footer .ax-copyright a {
-  color: #666666;
-}
-.ax-footer .ax-copyright a:hover {
-  color: #198cff;
-}
-.ax-footer .ax-copyright img {
-  max-height: 2.8rem;
-  width: auto !important;
-}
-/*bottom button*/
-.ax-space-btmbtn {
-  height: 4.4rem;
-  overflow: hidden;
-}
-.ax-btmbtn {
-  text-align: center;
-  height: 4.4rem;
-  line-height: 4.4rem;
-  width: 100%;
-  box-sizing: border-box;
-  background-color: #fff;
-  box-shadow: 0 -0.1rem 0 0 rgba(0, 0, 0, 0.1);
-  position: fixed;
-  left: 0;
-  bottom: 0;
-  z-index: 610;
-}
-.ax-btmbtn .ax-head {
-  width: 2.8rem;
-  height: 2.8rem;
-  margin: 0.8rem 0.8rem 0.8rem 1.4rem;
-  border-radius: 100%;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  position: relative;
-}
-.ax-btmbtn .ax-resemble {
-  font-size: 1.2rem;
-  color: #b3b3b3;
-  text-align: left;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  border-radius: 2.8rem;
-  margin: 0.8rem auto;
-  padding: 0 1.4rem;
-  box-sizing: border-box;
-  background-color: #f5f5f5;
-  display: block;
-}
-.ax-btmbtn .ax-btns {
-  padding-right: 0.8rem;
-}
-.ax-btmbtn .ax-btns > a,
-.ax-btmbtn .ax-btns > span {
-  color: #666666;
-  margin-left: 0.8rem;
-}
-.ax-btmbtn .ax-btns > a:hover,
-.ax-btmbtn .ax-btns > span:hover {
-  color: #198cff;
-}
-.ax-btmbtn .ax-btns > a:hover svg,
-.ax-btmbtn .ax-btns > span:hover svg {
-  fill: #198cff;
-}
-.ax-btmbtn *[class*="-bg-"] {
-  color: #fff;
-}
-.ax-btmbtn *[class*="-bg-"] a {
-  color: #fff;
-}
-.ax-btmbtn *[class*="-bg-"] svg {
-  fill: #fff;
-}
-.ax-btmbtn .ax-gutter-line {
-  height: calc(4.4rem - 1.6rem);
-  margin-top: 0.8rem;
-}
-/*bottom nav*/
-.ax-space-btmnav {
-  height: calc(3.8rem + 2rem);
-  overflow: hidden;
-  display: none;
-}
-.ax-btmnav {
-  text-align: center;
-  height: calc(3.8rem + 2rem);
-  width: 100%;
-  box-sizing: border-box;
-  background-color: #fff;
-  box-shadow: 0 -0.1rem 0 0 rgba(0, 0, 0, 0.1);
-  position: fixed;
-  left: 0;
-  bottom: 0;
-  z-index: 610;
-  display: none;
-}
-.ax-btmnav a {
-  color: #666666;
-  width: 100%;
-  height: calc(3.8rem + 2rem);
-  margin: auto;
-}
-.ax-btmnav a:not(.ax-single):active {
-  background-color: #f0f0f0;
-}
-.ax-btmnav a.ax-selected {
-  color: #198cff;
-}
-.ax-btmnav a svg {
-  fill: #666666;
-}
-.ax-btmnav a.ax-selected svg {
-  fill: #198cff;
-}
-.ax-btmnav .ax-figure {
-  width: 2.8rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  font-size: 2.2rem;
-  text-align: center;
-  margin: 0.8rem auto 0 auto;
-  background-repeat: no-repeat;
-  background-position: center;
-  background-size: 2.8rem;
-  position: relative;
-  display: block;
-}
-.ax-btmnav a.ax-single {
-  width: 8rem;
-}
-.ax-btmnav .ax-single *[class*="font"] {
-  font-size: 4.2rem;
-  color: #198cff;
-  width: calc(3.8rem + 2rem);
-  height: calc(3.8rem + 2rem);
-  line-height: calc(3.8rem + 2rem);
-}
-.ax-btmnav a.ax-img .ax-figure {
-  width: 2.4rem;
-  height: 2.4rem;
-  margin: 1rem auto 0.2rem auto;
-  border-radius: 100%;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  position: relative;
-}
-.ax-btmnav .ax-figure svg {
-  width: 2.2rem;
-  height: 2.8rem;
-}
-.ax-btmnav .ax-figure .ax-dot {
-  position: absolute;
-  right: -0.6rem;
-  top: 0rem;
-}
-.ax-btmnav .ax-figure .ax-badge {
-  position: absolute;
-  right: -1.4rem;
-  top: -0.4rem;
-}
-.ax-btmnav .ax-text {
-  font-size: 1rem;
-  width: 6rem;
-  line-height: 1.4rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  margin: auto;
-  display: block;
-}
-.ax-btmnav .ax-gutter-line {
-  height: calc(3.8rem + 2rem);
-}
-/*bottom nav end*/
-/*list start*/
-.ax-info-block {
-  line-height: 2.2rem;
-  padding: calc((3.8rem - 2.2rem)/2) 1.4rem;
-  display: block;
-  transition: all 100ms linear;
-  position: relative;
-}
-.ax-info-block .ax-num {
-  font-size: 1.2rem;
-  color: #666666;
-  background-color: #fff;
-  min-width: 1.8rem;
-  height: 1.8rem;
-  line-height: 1.8rem;
-  margin-right: calc((3.8rem - 2.2rem)/2);
-  margin-top: calc((2.2rem - 1.8rem)/2);
-  text-align: center;
-  border-radius: 0.3rem;
-  box-sizing: border-box;
-  position: relative;
-}
-.ax-info-block .ax-num:after {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-info-block .ax-num.ax-num-1,
-.ax-info-block .ax-num.ax-num-2,
-.ax-info-block .ax-num.ax-num-3 {
-  color: #fff;
-  background-color: #198cff;
-  border-color: #198cff;
-}
-.ax-info-block .ax-arrow {
-  color: #b3b3b3;
-  margin-left: calc((3.8rem - 2.2rem)/2);
-}
-.ax-info-block .ax-arrow[class*='font'] {
-  color: #ccc;
-}
-.ax-info-block .ax-icon {
-  margin-right: calc((3.8rem - 2.2rem)/2);
-}
-.ax-info-block .ax-icon:before {
-  top: 0.1rem;
-}
-.ax-info-block .ax-head {
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  width: 2.2rem;
-  height: 2.2rem;
-  border-radius: 100%;
-  margin-right: calc((3.8rem - 2.2rem)/2);
-}
-.ax-info-block .ax-checkbox.ax-bone,
-.ax-info-block .ax-radio.ax-bone {
-  margin-top: calc((2.2rem - 1.8rem)/2);
-  margin-left: calc((3.8rem - 2.2rem)/2);
-}
-.ax-info-block.ax-hover:hover {
-  background-color: #fafafa;
-}
-.ax-info-block.ax-hover:not(.ax-selected):not(.ax-active):not(.ax-disabled):active {
-  background-color: #f5f5f5;
-}
-.ax-info-block.ax-selected,
-.ax-info-block.ax-active,
-.ax-info-block.ax-selected:hover,
-.ax-info-block.ax-active:hover {
-  color: #198cff;
-  background-color: rgba(25, 140, 255, 0.06);
-}
-.ax-info-block.ax-selected:hover,
-.ax-info-block.ax-selected {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-info-block.ax-selected .ax-arrow,
-.ax-info-block.ax-selected .ax-icon,
-.ax-info-block.ax-selected .ax-num {
-  color: rgba(255, 255, 255, 0.5);
-  background: transparent;
-}
-.ax-info-block.ax-selected .ax-num:after {
-  border-color: rgba(255, 255, 255, 0.5);
-}
-.ax-info-block.ax-selected a,
-.ax-info-block.ax-selected a:hover {
-  color: #fff;
-}
-.ax-info-block.ax-disabled:hover,
-.ax-info-block.ax-disabled {
-  color: #b3b3b3;
-  background: transparent;
-  cursor: not-allowed;
-}
-/*select list*/
-.ax-list-select .ax-info-block .ax-mask {
-  width: 100%;
-  height: 100%;
-  background-color: transparent;
-  cursor: pointer;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-}
-/*article list*/
-.ax-item-block {
-  padding: 1.4rem;
-  box-sizing: border-box;
-  transition: all 100ms linear;
-  position: relative;
-  display: block;
-}
-.ax-item-block .ax-img {
-  height: 9.6rem;
-  width: calc(9.6rem + 2.8rem);
-  overflow: hidden;
-  border-radius: 0.3rem;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  position: relative;
-}
-.ax-item-block .ax-img:nth-child(1) {
-  margin-right: 1.4rem;
-}
-.ax-item-block .ax-img:nth-last-child(1) {
-  margin-left: 1.4rem;
-}
-.ax-item-block .ax-title {
-  font-weight: bold;
-  font-size: 1.6rem;
-  line-height: 2.2rem;
-}
-.ax-item-block .ax-des {
-  color: #666666;
-  margin-top: 0.8rem;
-}
-.ax-item-block .ax-from {
-  font-size: 1.2rem;
-  line-height: 2.2rem;
-  margin-top: 0.8rem;
-}
-.ax-item-block .ax-from *[class*='font'] {
-  font-size: 1.2rem;
-}
-.ax-item-block .ax-from svg {
-  height: 1.2rem;
-}
-.ax-item-block .ax-from *[class*='-color-'] {
-  margin-right: 1.4rem;
-}
-.ax-item-block .ax-keywords {
-  color: #666666;
-  font-size: 1.2rem;
-  line-height: 2.2rem;
-  margin-top: 0.8rem;
-}
-.ax-item-block .ax-keywords *[class*='font'] {
-  font-size: 1.2rem;
-}
-.ax-item-block .ax-keywords svg {
-  height: 1.2rem;
-}
-.ax-item-block .ax-keywords .ax-child {
-  margin-right: 1.4rem;
-}
-.ax-item-block .ax-gallery {
-  margin-top: 0.8rem;
-  position: relative;
-}
-.ax-item-block .ax-gallery > .ax-num {
-  color: #fff;
-  font-size: 1rem;
-  background-color: rgba(0, 0, 0, 0.5);
-  line-height: 1.6rem;
-  padding: 0 0.4rem;
-  border-radius: 0.3rem;
-  position: absolute;
-  left: 0.8rem;
-  bottom: 0.8rem;
-}
-.ax-item-block .ax-gallery > span,
-.ax-item-block .ax-gallery > a {
-  margin-right: 0.8rem;
-  height: 9.6rem;
-  line-height: 9.6rem;
-  width: calc(9.6rem + 2.8rem);
-  border-radius: 0.3rem;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-}
-.ax-item-block .ax-gallery > a.ax-more {
-  position: relative;
-  overflow: hidden;
-}
-.ax-item-block .ax-gallery > a.ax-more i {
-  color: #fff;
-  width: 100%;
-  height: 100%;
-  text-align: center;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-item-block .ax-gallery > a.ax-more:before {
-  content: '';
-  width: 100%;
-  height: 100%;
-  background-color: rgba(0, 0, 0, 0.5);
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-item-block.ax-ad:after {
-  color: #ccc;
-  font-size: 1.2rem;
-  margin-top: 0.8rem;
-  height: 1.4rem;
-  line-height: 1.4rem;
-  content: '骞垮憡';
-  display: block;
-  visibility: visible;
-}
-.ax-item-block .ax-gallery > span:nth-child(5) ~ span,
-.ax-item-block .ax-gallery > a:nth-child(5) ~ a:not(.ax-more) {
-  display: none;
-}
-.ax-item-block .ax-gallery > a.ax-more ~ .ax-num {
-  display: none;
-}
-/*card list*/
-.ax-card-block {
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  box-sizing: border-box;
-  display: block;
-  padding: 1.4rem;
-  position: relative;
-  transition: all 200ms linear;
-}
-.ax-card-block:hover {
-  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-}
-.ax-card-block .ax-img {
-  height: 20rem;
-  margin-bottom: 1.4rem;
-  overflow: hidden;
-  position: relative;
-  display: block;
-}
-.ax-card-block .ax-img .ax-figure {
-  width: 100%;
-  height: 100%;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  transition: all 200ms linear;
-  display: block;
-}
-.ax-card-block:hover .ax-img .ax-figure {
-  transform: scale(1.1);
-}
-.ax-card-block .ax-title {
-  font-weight: bold;
-}
-.ax-card-block .ax-des {
-  color: #666666;
-  font-size: 1.4rem;
-  margin-top: 1.4rem;
-  height: calc(1.8rem * 2);
-  max-width: 100%;
-  line-height: 1.8rem;
-  overflow: hidden;
-  text-overflow: ellipsis;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-}
-.ax-card-block .ax-from {
-  color: #ccc;
-  line-height: 2.2rem;
-  margin-top: 1.4rem;
-}
-.ax-card-block .ax-from > span,
-.ax-card-block .ax-from > a {
-  color: #ccc;
-  margin-right: 1.4rem;
-}
-.ax-card-block .ax-keywords {
-  line-height: 2.2rem;
-  color: #ccc;
-  margin-top: 1.4rem;
-}
-.ax-card-block .ax-keywords > span,
-.ax-card-block .ax-keywords > a {
-  color: #ccc;
-  margin-right: 1.4rem;
-}
-.ax-card-block .ax-operate {
-  margin-top: 1.4rem;
-  margin-bottom: -1.4rem;
-  line-height: 4.4rem;
-  text-align: center;
-  border-top: 1px solid #ebebeb;
-}
-.ax-card-block .ax-operate .ax-gutter-line {
-  height: 4.4rem;
-}
-.ax-card-block .ax-view {
-  color: #ccc;
-  line-height: 3.8rem;
-  margin-top: 1.4rem;
-}
-.ax-card-block .ax-view .ax-heads span {
-  width: 2.8rem;
-  height: 2.8rem;
-  border-radius: 100%;
-  border: 1px solid #fff;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-}
-.ax-card-block .ax-view .ax-heads span:not(:first-child) {
-  margin-left: calc(-2.8rem/2);
-}
-.ax-card-block .ax-view .ax-heads i {
-  color: #666666;
-  margin-left: 0.4rem;
-}
-.ax-card-block .ax-gallery {
-  margin-top: 1.4rem;
-  position: relative;
-}
-.ax-card-block .ax-gallery .ax-num {
-  color: #fff;
-  font-size: 1rem;
-  background-color: rgba(0, 0, 0, 0.5);
-  line-height: 1.6rem;
-  padding: 0 0.4rem;
-  border-radius: 0.3rem;
-  position: absolute;
-  left: 0.8rem;
-  bottom: 0.8rem;
-}
-.ax-card-block .ax-gallery > span,
-.ax-card-block .ax-gallery > a {
-  margin-right: 0.2rem;
-  width: calc((100% - 0.4rem)/3);
-  height: 9.6rem;
-  overflow: hidden;
-  line-height: 9.6rem;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-}
-_:-ms-lang(x),
-.ax-card-block .ax-gallery > span {
-  width: calc((100% - 0.402rem)/3);
-}
-_:-ms-lang(x),
-.ax-card-block .ax-gallery > a {
-  width: calc((100% - 0.402rem)/3);
-}
-.ax-card-block .ax-gallery > a.ax-more {
-  position: relative;
-}
-.ax-card-block .ax-gallery > a.ax-more i {
-  color: #fff;
-  width: 100%;
-  height: 100%;
-  text-align: center;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-card-block .ax-gallery > a.ax-more:before {
-  content: '';
-  width: 100%;
-  height: 100%;
-  background-color: rgba(0, 0, 0, 0.5);
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-card-block .ax-gallery > span:nth-child(3),
-.ax-card-block .ax-gallery > a:nth-child(3) {
-  margin-right: 0;
-}
-.ax-card-block .ax-gallery > span:nth-child(3) ~ span,
-.ax-card-block .ax-gallery > a:nth-child(3) ~ a:not(.ax-more) {
-  display: none;
-}
-.ax-card-block .ax-img + .ax-gallery {
-  margin-top: -1.2rem;
-  margin-bottom: 1.4rem;
-}
-/*tab*/
-.ax-tab .ax-tab-content {
-  transition: all 200ms linear;
-}
-.ax-tab .ax-tab-content > *:not(.ax-active) {
-  display: none;
-}
-.ax-tab .ax-tab-content > .ax-active {
-  display: block;
-}
-.ax-swiper-nav {
-  text-align: center;
-}
-.ax-swiper-nav .ax-slide {
-  cursor: pointer;
-  line-height: 3.8rem;
-  text-align: center;
-  box-sizing: border-box;
-}
-.ax-swiper-nav .ax-slide:after {
-  content: '';
-  height: 0.2rem;
-  width: 2.8rem;
-  background-color: #198cff;
-  -webkit-transform: translate(-50%, 0) scaleX(0);
-  transform: translate(-50%, 0) scaleX(0);
-  transition: all 200ms linear;
-  position: absolute;
-  left: 50%;
-  bottom: 0rem;
-}
-.ax-swiper-nav .active-nav {
-  color: #198cff;
-}
-.ax-swiper-nav .active-nav:after {
-  -webkit-transform: translate(-50%, 0) scaleX(1);
-  transform: translate(-50%, 0) scaleX(1);
-}
-.ax-menu-tab {
-  text-align: center;
-}
-.ax-menu-tab .ax-item {
-  cursor: pointer;
-  line-height: 3.8rem;
-  text-align: center;
-  padding: 0 1.4rem;
-  position: relative;
-}
-.ax-menu-tab .ax-item.ax-active {
-  color: #198cff;
-}
-.ax-menu-tab .ax-item:after {
-  content: '';
-  height: 0.2rem;
-  width: 2.8rem;
-  background-color: #198cff;
-  -webkit-transform: translate(-50%, 0) scaleX(0);
-  transform: translate(-50%, 0) scaleX(0);
-  transition: all 200ms linear;
-  position: absolute;
-  left: 50%;
-  bottom: 0rem;
-}
-.ax-menu-tab .ax-item.ax-active:after {
-  -webkit-transform: translate(-50%, 0) scaleX(1);
-  transform: translate(-50%, 0) scaleX(1);
-}
-.ax-menu-page {
-  display: flex;
-  justify-content: flex-start;
-  align-items: flex-end;
-  box-shadow: 0 -0.1rem 0 0 #ebebeb inset;
-}
-.ax-menu-page .ax-item {
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  text-align: center;
-  background-color: #fff;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  padding: 0 1.4rem;
-  position: relative;
-  box-sizing: border-box;
-  border-radius: 0.3rem;
-  transition: all 100ms linear;
-}
-.ax-menu-page .ax-item:after {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: #ebebeb;
-}
-.ax-menu-page .ax-item,
-.ax-menu-page .ax-item:after {
-  border-radius: 0;
-}
-.ax-menu-page .ax-item:first-child,
-.ax-menu-page .ax-item:first-child:after {
-  border-radius: 0.3rem 0 0 0;
-}
-.ax-menu-page .ax-item:last-child,
-.ax-menu-page .ax-item:last-child:after {
-  border-radius: 0 0.3rem 0 0;
-}
-.ax-menu-page .ax-item:not(:first-of-type):after {
-  border-left-width: 0;
-}
-.ax-menu-page .ax-item.ax-active {
-  color: #198cff;
-}
-.ax-menu-page .ax-item.ax-active svg {
-  fill: #198cff;
-}
-.ax-menu-page .ax-item.ax-active:after {
-  border-bottom-width: 0;
-}
-.ax-menu-page .ax-item *[class*="iconfont"],
-.ax-menu-page .ax-item *[class*="iconset"],
-.ax-menu-page .ax-item svg {
-  margin-right: 0.4rem;
-}
-.ax-tab.ax-border,
-.ax-tab.ax-shadow {
-  background-color: #fff;
-}
-.ax-tab.ax-border .ax-menu-page,
-.ax-tab.ax-shadow .ax-menu-page {
-  background-color: #fafafa;
-}
-.ax-tab.ax-border .ax-menu-page .ax-item:last-child,
-.ax-tab.ax-border .ax-menu-page .ax-item:last-child:after,
-.ax-tab.ax-shadow .ax-menu-page .ax-item:last-child,
-.ax-tab.ax-shadow .ax-menu-page .ax-item:last-child:after {
-  border-radius: 0;
-}
-.ax-tab.ax-border .ax-menu-page .ax-item:after,
-.ax-tab.ax-shadow .ax-menu-page .ax-item:after {
-  border-top-width: 0;
-  border-left-width: 0;
-}
-.ax-tab.ax-border .ax-menu-page .ax-item:first-of-type:after,
-.ax-tab.ax-shadow .ax-menu-page .ax-item:first-of-type:after {
-  border-left-width: 0;
-}
-/*container*/
-.ax-panel {
-  background-color: #fff;
-}
-.ax-panel-header {
-  position: relative;
-  padding: 0.5rem 0 0.5rem 1.4rem;
-  line-height: 2.8rem;
-}
-.ax-panel-header .ax-adorn {
-  margin-right: 0.4rem;
-  transition: all 200ms linear;
-}
-.ax-panel-header .ax-title {
-  position: relative;
-  margin-right: 0.8rem;
-}
-.ax-panel-header.ax-bar:before,
-.ax-panel-header.ax-bar-left:before {
-  content: '';
-  width: 0.2rem;
-  height: 1.4rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: calc((2.8rem + 1rem)/2 - 0.7rem);
-}
-.ax-panel-header.ax-bar-top .ax-title:before {
-  content: '';
-  width: 2.8rem;
-  height: 0.2rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: -0.5rem;
-}
-.ax-panel-header.ax-bar-bottom .ax-title:before {
-  content: '';
-  width: 2.8rem;
-  height: 0.2rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  bottom: -0.5rem;
-}
-.ax-panel-header .ax-operate {
-  margin-right: 0.8rem;
-  color: #b3b3b3;
-  line-height: 2.8rem;
-  height: 2.8rem;
-  transition: all 200ms linear;
-}
-.ax-panel-header .ax-operate:last-child {
-  margin-right: 1.4rem;
-}
-.ax-panel-header .ax-operate svg {
-  fill: #b3b3b3;
-  height: 2.8rem;
-}
-.ax-panel-header .ax-operate:hover svg {
-  fill: #198cff;
-}
-.ax-panel-header .ax-btn {
-  margin-right: 0.5rem;
-}
-.ax-panel-header .ax-btn-group .ax-btn {
-  margin-right: 0;
-}
-.ax-panel-header .ax-btn.ax-xs {
-  margin-top: calc((2.8rem - 2.2rem)/2);
-}
-.ax-panel-header .ax-btn.ax-xs:last-child {
-  margin-right: calc((3.8rem - 2.2rem)/2);
-}
-.ax-panel-header .ax-badge {
-  margin-right: 1.4rem;
-  margin-top: calc((2.8rem - 1.6rem)/2);
-}
-.ax-panel-header .ax-dot {
-  margin-right: 1.4rem;
-  margin-top: calc((2.8rem - 0.8rem)/2);
-}
-.ax-panel-header .ax-menu-tab .ax-item {
-  line-height: 2.8rem;
-  padding: 0;
-  margin-right: 0.8rem;
-}
-.ax-panel-header .ax-menu-tab .ax-item:last-child {
-  margin-right: 1.4rem;
-}
-/*box*/
-.ax-box {
-  background-color: #fff;
-}
-.ax-box-header {
-  position: relative;
-  padding: 1.4rem 0 1.4rem 2.2rem;
-}
-.ax-box-header .ax-adorn {
-  font-size: 3.6rem;
-  line-height: 4.6rem;
-  margin-right: 0.8rem;
-  transition: all 200ms linear;
-}
-.ax-box-header.ax-simple .ax-adorn {
-  font-size: 1.6rem;
-  line-height: 2.8rem;
-  margin-right: 0.4rem;
-}
-.ax-box-header .ax-title {
-  font-size: 1.6rem;
-  position: relative;
-  margin-right: 0.8rem;
-}
-.ax-box-header.ax-bar:before,
-.ax-box-header.ax-bar-left:before {
-  content: '';
-  width: 0.2rem;
-  height: 1.6rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: calc((2.8rem + 1.4rem*2)/2 - 0.7rem);
-}
-.ax-box-header.ax-bar-top .ax-title:before {
-  content: '';
-  width: 2.8rem;
-  height: 0.2rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: -1.4rem;
-}
-.ax-box-header.ax-bar-bottom .ax-title:before {
-  content: '';
-  width: 2.8rem;
-  height: 0.2rem;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  bottom: -2.8rem;
-}
-.ax-box-header.ax-simple.ax-bar-bottom .ax-title:before {
-  bottom: -1.4rem;
-}
-.ax-box-header .ax-des {
-  color: rgba(0, 0, 0, 0.4);
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-  white-space: nowrap;
-}
-.ax-box-header .ax-operate {
-  color: #b3b3b3;
-  line-height: 2.8rem;
-  height: 2.8rem;
-  text-align: center;
-  padding: 0 calc(1.4rem/2);
-  transition: all 200ms linear;
-}
-.ax-box-header .ax-operate:last-child {
-  margin-right: calc(2.2rem - 1.4rem/2);
-}
-.ax-box-header .ax-operate:hover {
-  color: #198cff;
-}
-.ax-box-header .ax-operate svg {
-  fill: #b3b3b3;
-  height: 2.8rem;
-}
-.ax-box-header .ax-operate:hover svg {
-  fill: #198cff;
-}
-.ax-box-header .ax-btn {
-  margin-right: 0.5rem;
-}
-.ax-box-header .ax-btn-group .ax-btn {
-  margin-right: 0;
-}
-.ax-box-header .ax-btn.ax-xs {
-  margin-top: 0.3rem;
-}
-.ax-box-header .ax-btn:last-child {
-  margin-right: 2.2rem;
-}
-.ax-box-header .ax-menu-tab .ax-item {
-  line-height: 2.8rem;
-  padding: 0;
-  margin-right: 0.8rem;
-}
-.ax-box-header .ax-menu-tab .ax-item:last-child {
-  margin-right: 2.2rem;
-}
-.ax-box-header .ax-swiper-outer.ax-inline {
-  padding: 0 2.2rem;
-}
-.ax-box-header .ax-badge {
-  margin-right: 2.2rem;
-  margin-top: calc((2.8rem - 1.6rem)/2);
-}
-.ax-box-header .ax-dot {
-  margin-right: 2.2rem;
-  margin-top: calc((2.8rem - 0.8rem)/2);
-}
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) {
-  color: #fff;
-}
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) .ax-box-header .ax-des {
-  color: rgba(255, 255, 255, 0.4);
-}
-.ax-box[class*='ax-bg-'] .ax-box-header .ax-operate:hover {
-  opacity: 0.5;
-}
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) .ax-box-header .ax-operate {
-  color: #fff;
-}
-.ax-box.ax-bg-warning .ax-box-header .ax-operate {
-  color: #333333;
-}
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) .ax-box-header .ax-operate svg {
-  fill: #fff;
-}
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) .ax-box-header .ax-operate:hover svg {
-  fill: #fff;
-}
-.ax-box.ax-bg-warning .ax-box-header .ax-operate svg {
-  fill: #333333;
-}
-.ax-box.ax-bg-warning .ax-box-header .ax-operate:hover svg {
-  fill: #333333;
-}
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) .ax-box-header[class*='ax-bar']:before,
-.ax-box[class*='ax-bg-']:not(.ax-bg-warning) .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #fff;
-}
-.ax-box.ax-bg-warning .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bg-warning .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #333333;
-}
-.ax-box.ax-bg-primary {
-  background-color: #198cff;
-}
-.ax-box.ax-bg-secondary {
-  background-color: #475b66;
-}
-.ax-box.ax-bg-success {
-  background-color: #41a358;
-}
-.ax-box.ax-bg-danger {
-  background-color: #dc3545;
-}
-.ax-box.ax-bg-info {
-  background-color: #14ccc9;
-}
-.ax-box.ax-bg-warning {
-  background-color: #ffc107;
-}
-.ax-box.ax-bg-ad {
-  background-color: #ff8400;
-}
-.ax-box.ax-bg-title {
-  background-color: #333333;
-}
-.ax-box.ax-bglit-primary {
-  background-color: #f0f7ff;
-}
-.ax-box.ax-bglit-primary .ax-box-header .ax-des,
-.ax-box.ax-bglit-primary .ax-box-header .ax-operate {
-  color: #6dacea;
-}
-.ax-box.ax-bglit-primary .ax-box-header .ax-operate:hover {
-  color: #0b72da;
-}
-.ax-box.ax-bglit-primary .ax-box-header .ax-operate svg {
-  fill: #6dacea;
-}
-.ax-box.ax-bglit-primary .ax-box-header .ax-operate:hover svg {
-  fill: #0b72da;
-}
-.ax-box.ax-bglit-primary .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-primary .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #198cff;
-}
-.ax-box.ax-bglit-primary.ax-border {
-  border-color: #d7e7f5;
-}
-.ax-box.ax-bglit-secondary {
-  background-color: #f5f8fa;
-}
-.ax-box.ax-bglit-secondary .ax-box-header .ax-des,
-.ax-box.ax-bglit-secondary .ax-box-header .ax-operate {
-  color: #adc1cc;
-}
-.ax-box.ax-bglit-secondary .ax-box-header .ax-operate:hover {
-  color: #383e42;
-}
-.ax-box.ax-bglit-secondary .ax-box-header .ax-operate svg {
-  fill: #adc1cc;
-}
-.ax-box.ax-bglit-secondary .ax-box-header .ax-operate:hover svg {
-  fill: #383e42;
-}
-.ax-box.ax-bglit-secondary .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-secondary .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #475b66;
-}
-.ax-box.ax-bglit-secondary.ax-border {
-  border-color: #dfe3e5;
-}
-.ax-box.ax-bglit-success {
-  background-color: #edfaf0;
-}
-.ax-box.ax-bglit-success .ax-box-header .ax-des,
-.ax-box.ax-bglit-success .ax-box-header .ax-operate {
-  color: #adccb5;
-}
-.ax-box.ax-bglit-success .ax-box-header .ax-operate:hover {
-  color: #3b7649;
-}
-.ax-box.ax-bglit-success .ax-box-header .ax-operate svg {
-  fill: #adccb5;
-}
-.ax-box.ax-bglit-success .ax-box-header .ax-operate:hover svg {
-  fill: #3b7649;
-}
-.ax-box.ax-bglit-success .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-success .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #41a358;
-}
-.ax-box.ax-bglit-success.ax-border {
-  border-color: #e1f0e5;
-}
-.ax-box.ax-bglit-danger {
-  background-color: #fff0f1;
-}
-.ax-box.ax-bglit-danger .ax-box-header .ax-des,
-.ax-box.ax-bglit-danger .ax-box-header .ax-operate {
-  color: #ccadb0;
-}
-.ax-box.ax-bglit-danger .ax-box-header .ax-operate:hover {
-  color: #b22c39;
-}
-.ax-box.ax-bglit-danger .ax-box-header .ax-operate svg {
-  fill: #ccadb0;
-}
-.ax-box.ax-bglit-danger .ax-box-header .ax-operate:hover svg {
-  fill: #b22c39;
-}
-.ax-box.ax-bglit-danger .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-danger .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #dc3545;
-}
-.ax-box.ax-bglit-danger.ax-border {
-  border-color: #f0dddf;
-}
-.ax-box.ax-bglit-info {
-  background-color: #ebfaf9;
-}
-.ax-box.ax-bglit-info .ax-box-header .ax-des,
-.ax-box.ax-bglit-info .ax-box-header .ax-operate {
-  color: #adcccb;
-}
-.ax-box.ax-bglit-info .ax-box-header .ax-operate:hover {
-  color: #189593;
-}
-.ax-box.ax-bglit-info .ax-box-header .ax-operate svg {
-  fill: #adcccb;
-}
-.ax-box.ax-bglit-info .ax-box-header .ax-operate:hover svg {
-  fill: #189593;
-}
-.ax-box.ax-bglit-info .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-info .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #14ccc9;
-}
-.ax-box.ax-bglit-info.ax-border {
-  border-color: #cef0f0;
-}
-.ax-box.ax-bglit-warning {
-  color: #c8990b;
-  background-color: #fffaeb;
-}
-.ax-box.ax-bglit-warning .ax-box-header .ax-des,
-.ax-box.ax-bglit-warning .ax-box-header .ax-operate {
-  color: #ccc4ad;
-}
-.ax-box.ax-bglit-warning .ax-box-header .ax-operate:hover {
-  color: #c8990b;
-}
-.ax-box.ax-bglit-warning .ax-box-header .ax-operate svg {
-  fill: #ccc4ad;
-}
-.ax-box.ax-bglit-warning .ax-box-header .ax-operate:hover svg {
-  fill: #c8990b;
-}
-.ax-box.ax-bglit-warning .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-warning .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #ffc107;
-}
-.ax-box.ax-bglit-warning.ax-border {
-  border-color: #f5edd7;
-}
-.ax-box.ax-bglit-ad {
-  background-color: #fff5eb;
-}
-.ax-box.ax-bglit-ad .ax-box-header .ax-des,
-.ax-box.ax-bglit-ad .ax-box-header .ax-operate {
-  color: #ccbdad;
-}
-.ax-box.ax-bglit-ad .ax-box-header .ax-operate:hover {
-  color: #c2690a;
-}
-.ax-box.ax-bglit-ad .ax-box-header .ax-operate svg {
-  fill: #ccbdad;
-}
-.ax-box.ax-bglit-ad .ax-box-header .ax-operate:hover svg {
-  fill: #c2690a;
-}
-.ax-box.ax-bglit-ad .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-ad .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #ff8400;
-}
-.ax-box.ax-bglit-ad.ax-border {
-  border-color: #f5e7d7;
-}
-.ax-box.ax-bglit-title {
-  background-color: #f5f5f5;
-}
-.ax-box.ax-bglit-title .ax-box-header .ax-des {
-  color: #cccccc;
-}
-.ax-box.ax-bglit-title .ax-box-header[class*='ax-bar']:before,
-.ax-box.ax-bglit-title .ax-box-header[class*='ax-bar'] .ax-title:before {
-  background-color: #333333;
-}
-.ax-box.ax-bglit-title.ax-border {
-  border-color: #ebebeb;
-}
-/*cube*/
-.ax-lump {
-  text-align: center;
-  padding: calc(1.4rem*2) 1.4rem;
-  box-sizing: border-box;
-}
-.ax-lump .ax-bone .ax-img {
-  width: calc(1.4rem*4);
-  height: calc(1.4rem*4);
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-}
-.ax-lump .ax-title {
-  margin-top: calc(1.4rem*2);
-  font-size: 1.6rem;
-}
-.ax-lump .ax-des {
-  color: #666666;
-  line-height: 1.8rem;
-  margin: 0 auto calc(1.4rem*2) auto;
-}
-/*accordion*/
-.ax-accordion .ax-item:not([disabled]) .ax-panel-header {
-  cursor: pointer;
-}
-.ax-accordion .ax-item[disabled] > .ax-panel-header,
-.ax-accordion .ax-item[disabled] > .ax-panel-header a,
-.ax-accordion .ax-item[disabled] > .ax-panel-header .ax-more,
-.ax-accordion .ax-item[disabled] > .ax-panel-header .ax-adorn {
-  color: #ccc;
-  cursor: text;
-}
-.ax-accordion .ax-item .ax-panel-body {
-  display: none;
-}
-.ax-accordion .ax-item.ax-show > .ax-panel-header .ax-panel-close {
-  transform: rotate(-180deg);
-}
-.ax-accordion .ax-item.ax-show > .ax-panel-header .ax-more,
-.ax-accordion .ax-item.ax-show > .ax-panel-header .ax-adorn {
-  transform: rotate(-90deg);
-}
-/*pagination*/
-.ax-pagination {
-  font-size: 1.2rem;
-  text-align: center;
-  line-height: 2.8rem;
-  margin: 1.4rem auto;
-}
-.ax-pagination.ax-align-left :first-child {
-  margin-left: 0;
-}
-.ax-pagination.ax-align-right :last-child {
-  margin-right: 0;
-}
-.ax-pagination *[class*="font"] {
-  font-size: 1rem;
-}
-.ax-pagination .ax-first i:not([class*="font"]),
-.ax-pagination .ax-prev i:not([class*="font"]) {
-  margin-right: 0.4rem;
-  margin-left: -0.4rem;
-}
-.ax-pagination .ax-last i:not([class*="font"]),
-.ax-pagination .ax-next i:not([class*="font"]) {
-  margin-left: 0.4rem;
-  margin-right: -0.4rem;
-}
-.ax-pagination a {
-  height: auto;
-  line-height: 1.4rem;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  background-image: none;
-  padding: 0.6rem 0.9rem;
-  margin: 0 0.2rem;
-  background-color: #fff;
-  transition: all 100ms linear;
-}
-.ax-pagination span.ax-active {
-  color: #fff;
-  height: auto;
-  line-height: 1.4rem;
-  padding: 0.6rem 0.9rem;
-  margin: 0 0.2rem;
-  border: 1px solid #198cff;
-  border-radius: 0.3rem;
-  background-image: none;
-  background-color: #198cff;
-}
-.ax-pagination a span[class*="font"] {
-  font-size: 1.2rem;
-  margin: 0;
-}
-.ax-pagination span {
-  margin: 0 0.2rem;
-}
-.ax-pagination input {
-  font-size: 1.2rem;
-  width: 4rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  border: 1px solid #ebebeb;
-  text-align: center;
-  margin: 0 0.2rem;
-  padding-left: 0.4rem;
-  padding-right: 0.4rem;
-  background-color: #fff;
-  position: relative;
-  top: 0;
-}
-.ax-pagination input[type='button'],
-.ax-pagination input[type='submit'],
-.ax-pagination button[type='button'] {
-  font-size: 1.2rem;
-  height: 2.8rem;
-  line-height: calc(2.8rem - 0.6rem);
-  margin: 0 0.2rem;
-  padding: 0 1rem;
-}
-.ax-pagination input[type='submit'] {
-  width: auto;
-  padding: 0 1rem;
-  text-align: center;
-  position: relative;
-  top: 0rem;
-}
-.ax-pagination select {
-  font-size: 1.2rem;
-  -webkit-appearance: menulist-button;
-  width: auto;
-  height: 2.8rem;
-  border: 1px solid #ebebeb;
-  text-align: center;
-  background-color: #fff;
-  padding: 0 0 0 1rem;
-  margin: 0 0.2rem;
-}
-.ax-pagination a:not(.ax-total):hover {
-  color: #198cff;
-  border-color: #198cff;
-  text-decoration: none;
-  background-color: rgba(25, 140, 255, 0.1);
-  z-index: 2;
-}
-.ax-pagination a:not(.ax-total)[class*='active'],
-.ax-pagination [class*='selected'] a:not(.ax-total),
-.ax-pagination [class*='active'] a:not(.ax-total) {
-  color: #fff;
-  background-color: #198cff;
-  border-color: #198cff;
-}
-.ax-pagination .ax-disabled {
-  color: #b3b3b3 !important;
-}
-.ax-pagination .ax-disabled:hover {
-  color: #b3b3b3 !important;
-  background-color: #fff !important;
-  border-color: #ebebeb !important;
-  cursor: not-allowed;
-}
-.ax-pagination .ax-group {
-  display: inline-block;
-}
-.ax-pagination .ax-group > span {
-  border: 1px solid #ebebeb;
-  background-color: #fff;
-  height: auto;
-  line-height: 1.4rem;
-  margin: 0;
-  padding: 0.6rem 0.9rem;
-}
-.ax-pagination .ax-group > * {
-  border-radius: 0;
-  margin-left: 0;
-  margin-right: 0;
-}
-.ax-pagination .ax-group > *:not(.ax-active):hover {
-  position: relative;
-  z-index: 1;
-}
-.ax-pagination .ax-group > *:not(:last-child) {
-  margin-right: -0.1rem;
-}
-.ax-pagination .ax-group :first-child {
-  border-radius: 0.3rem 0 0 0.3rem;
-}
-.ax-pagination .ax-group :last-child {
-  border-radius: 0 0.3rem 0.3rem 0;
-}
-.ax-pagination.ax-light a:not(.ax-active),
-.ax-pagination.ax-light span:not(.ax-active),
-.ax-pagination.ax-light a:not(.ax-active):hover,
-.ax-pagination.ax-light span:not(.ax-active):hover {
-  background: transparent !important;
-  border: none !important;
-}
-.ax-pagination.ax-light a:not(.ax-total).ax-selected,
-.ax-pagination.ax-light a:not(.ax-total).ax-active {
-  height: 2.8rem;
-  min-width: 2.8rem;
-  text-align: center;
-  line-height: 2.8rem;
-  border-radius: 2.8rem;
-  border-width: 0;
-  padding: 0;
-}
-.ax-pagination li {
-  display: inline-block;
-}
-.ax-pagination .pagination {
-  text-align: center;
-}
-/*statistics*/
-.ax-statistics .ax-item {
-  text-align: center;
-  margin: 1.4rem auto;
-  display: block;
-}
-.ax-statistics.ax-row .ax-item {
-  width: 12rem;
-}
-.ax-statistics .ax-item .ax-text {
-  font-size: 3rem;
-  line-height: 3.8rem;
-  position: relative;
-}
-.ax-statistics .ax-item .ax-dot {
-  position: absolute;
-  right: -0.6rem;
-  top: 0.2rem;
-}
-.ax-statistics .ax-item .ax-badge {
-  position: absolute;
-  top: 0rem;
-  right: -1.6rem;
-}
-.ax-statistics .ax-item .ax-image .ax-badge,
-.ax-statistics .ax-item .ax-icon .ax-badge,
-.ax-statistics .ax-item .ax-font01 .ax-badge {
-  right: -1.2rem;
-}
-.ax-statistics .ax-item .ax-text .ax-arrow {
-  font-size: 1.2rem;
-  color: #dc3545;
-  border: 1px solid #dc3545;
-  background-color: #fff;
-  line-height: 1.4rem;
-  padding: 0 0.2rem;
-  border-radius: 0.3rem;
-  position: absolute;
-  top: 0rem;
-  right: -4rem;
-}
-.ax-statistics .ax-item .ax-title {
-  color: #666666;
-  display: block;
-}
-.ax-statistics .ax-text em {
-  font-size: 1.2rem;
-  line-height: 1.2rem;
-  vertical-align: bottom;
-}
-/**/
-.ax-statistics .ax-item .ax-image {
-  float: left;
-  height: 5.6rem;
-  width: 5.6rem;
-  border-radius: 100%;
-  margin: 0rem 1rem;
-  background-position: center center;
-  background-repeat: no-repeat;
-  background-size: cover;
-  position: relative;
-}
-.ax-statistics .ax-item .ax-icon {
-  font-size: 2.2rem;
-  color: #198cff;
-  width: 5.6rem;
-  height: 5.6rem;
-  text-align: center;
-  line-height: 5.6rem;
-  border-radius: 100%;
-  background-color: #f0f0f0;
-  margin: 0rem 0.8rem;
-  position: relative;
-  float: left;
-}
-.ax-statistics .ax-item .ax-font01 {
-  font-size: 5.6rem;
-  line-height: 5.6rem;
-  margin: 0rem 0.8rem;
-  position: relative;
-  float: left;
-}
-.ax-statistics .ax-item .ax-font03 {
-  color: #666666;
-  text-align: left;
-  margin: 0rem 0.8rem;
-  position: relative;
-  float: left;
-}
-.ax-statistics .ax-item .ax-font02 {
-  text-align: left;
-  margin: 0rem 0.8rem;
-  position: relative;
-  line-height: 0;
-  float: left;
-}
-.ax-statistics .ax-item .ax-font02 .ax-row01 {
-  font-size: 3.8rem;
-  line-height: 3.8rem;
-}
-.ax-statistics .ax-item .ax-font02 .ax-row02 {
-  font-size: 1.2rem;
-  color: #666666;
-  line-height: 1.8rem;
-}
-/*cubes*/
-.cubes {
-  background-color: #fff;
-}
-.cubes .block {
-  float: left;
-  margin: 1.4rem 0 1.4rem 1.4rem;
-  width: calc((100% - 1.4rem*3)/2);
-  height: calc(16rem + 13.8rem);
-  position: relative;
-}
-.cubes .block .img {
-  display: block;
-  height: 16rem;
-  background-repeat: no-repeat;
-  background-position: center;
-  background-size: cover, 3.2rem 3.2rem;
-  overflow: hidden;
-  position: relative;
-}
-.cubes .block .title {
-  font-weight: bold;
-  line-height: 2.2rem;
-  margin: 0.8rem 0;
-  box-sizing: border-box;
-}
-.cubes .block .des {
-  font-size: 1.2rem;
-  line-height: 2.2rem;
-  color: #808080;
-  margin-bottom: 1.4rem;
-  box-sizing: border-box;
-}
-.cubes .block .time {
-  color: #ccc;
-  font-size: 1rem;
-  position: absolute;
-  left: 0;
-  bottom: 0;
-}
-.cubes .block .time .tmpfont {
-  font-size: 1.2rem;
-  margin-right: 0.4rem;
-}
-.fullcube .block {
-  float: none;
-  margin: calc(1.4rem*2);
-  width: calc(100% - 1.4rem*4);
-  height: auto;
-}
-.fullcube .block .img {
-  height: 12rem;
-}
-.fullcube .block .time {
-  position: inherit;
-  left: auto;
-  bottom: auto;
-}
-/*breadcrumb*/
-.ax-breadcrumb {
-  font-size: 1.4rem;
-}
-.ax-breadcrumb *[class*='font'] {
-  font-size: 1.4rem;
-}
-.ax-breadcrumb .ax-title {
-  color: #666666;
-}
-.ax-breadcrumb .ax-title[class*='font'] {
-  font-size: 1.4rem;
-  margin-right: 0.8rem;
-}
-.ax-breadcrumb a {
-  color: #666666;
-}
-.ax-breadcrumb a [class*='font'] {
-  color: #666666;
-  font-size: 1.4rem;
-  width: auto;
-  margin-right: 0.4rem;
-}
-.ax-breadcrumb a:hover,
-.ax-breadcrumb a:hover i {
-  color: #198cff;
-}
-.ax-breadcrumb a[class*='font'] {
-  font-size: 1.4rem;
-}
-.ax-breadcrumb .ax-gutter {
-  color: #ccc;
-  font-size: 1.2rem;
-  text-align: center;
-  margin: auto 0.8rem;
-  display: inline;
-}
-.ax-breadcrumb .ax-gutter[class*='font'] {
-  font-size: 1rem;
-}
-.ax-breadcrumb .ax-gutter[class*='code'] {
-  font-size: 1.8rem;
-}
-/*empty*/
-.ax-empty {
-  font-size: 1.4rem;
-  text-align: center;
-  padding: calc(1.4rem*2) 0;
-  margin: auto;
-}
-.ax-empty .ax-icon {
-  line-height: 4.4rem;
-}
-.ax-empty .ax-icon [class*='font'] {
-  font-size: 4.4rem;
-  color: #ccc;
-}
-.ax-empty .ax-icon img {
-  max-height: 5.4rem;
-}
-.ax-empty .ax-title {
-  color: #ccc;
-}
-.ax-empty .ax-operate {
-  margin-top: 1.4rem;
-}
-.ax-empty .ax-operate a {
-  color: #666666;
-  margin: 0 0.8rem;
-  text-decoration: underline;
-}
-.ax-empty .ax-operate a:hover {
-  color: #198cff;
-}
-/*scrollnav*/
-.ax-scrollnav-v {
-  font-size: 1.2rem;
-  background-color: rgba(255, 255, 255, 0.1);
-  padding: 1.4rem;
-  line-height: 2.8rem;
-  max-height: calc(100vh - 12rem);
-  overflow: inherit;
-  position: fixed;
-  top: 6rem;
-  right: 1.4rem;
-  z-index: 610;
-}
-.ax-scrollnav-v .ax-close {
-  color: #198cff;
-  width: 3.8rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  text-align: center;
-  border-radius: 3.8rem;
-  border: 1px solid #ebebeb;
-  background-color: rgba(255, 255, 255, 0.9);
-  box-sizing: border-box;
-  transition: all 200ms linear;
-  position: absolute;
-  right: 0;
-  bottom: calc(-3.8rem - 1.4rem);
-}
-.ax-scrollnav-v.ax-hide {
-  border-color: transparent;
-  background: transparent;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-scrollnav-v.ax-hide .ax-scrollnav {
-  width: 0;
-  visibility: hidden;
-}
-.ax-scrollnav-v.ax-hide .ax-close {
-  color: #fff;
-  border-width: 0;
-  background-color: #198cff;
-  transform: rotate(180deg);
-}
-.ax-scrollnav-v:not(.ax-hide) .ax-close:hover {
-  border-color: #198cff;
-  background-color: #f0f7ff;
-}
-.ax-scrollnav-v li {
-  position: relative;
-  padding-left: 1.4rem;
-  white-space: nowrap;
-  border-left: 1px solid #f0f0f0;
-}
-.ax-scrollnav-v li.ax-active > a {
-  color: #198cff;
-}
-.ax-scrollnav-v li:before {
-  content: '';
-  height: 2.8rem;
-  width: 1px;
-  position: absolute;
-  left: -0.1rem;
-  top: 0;
-}
-.ax-scrollnav-v li.ax-active:before {
-  background-color: #198cff;
-}
-.ax-scrollnav-h {
-  background-color: #fff;
-  line-height: 3.8rem;
-  text-align: center;
-  position: relative;
-  z-index: 4;
-}
-.ax-scrollnav-h li {
-  margin: 0 1.4rem;
-  white-space: nowrap;
-  display: inline-block;
-  position: relative;
-}
-.ax-scrollnav-h li.ax-active > a {
-  color: #198cff;
-}
-.ax-scrollnav-h li:before {
-  content: '';
-  height: 0.2rem;
-  width: 100%;
-  transition: all 200ms linear;
-  position: absolute;
-  bottom: 0;
-}
-.ax-scrollnav-h li.ax-active:before {
-  background-color: #198cff;
-}
-/*complete*/
-.ax-complete-tips {
-  color: #666666;
-}
-.ax-popup .ax-complete-tips {
-  font-size: 1.2rem;
-  line-height: 2.8rem;
-  padding: 0 1.4rem;
-}
-.ax-complete-list .ax-mark {
-  color: #dc3545;
-}
-/*rate*/
-.ax-rate {
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-}
-.ax-rate .ax-inner {
-  display: inline-block;
-}
-.ax-rate i {
-  font-size: 1.8rem;
-  transition: all 200ms linear;
-}
-.ax-rate .ax-break {
-  width: 0.4rem;
-}
-.ax-rate i.ax-rate-cancel {
-  color: #b3b3b3;
-  font-size: 1.4rem;
-}
-.ax-rate i.ax-rate-cancel:hover {
-  color: #dc3545;
-}
-.ax-rate .ax-on {
-  color: #ff8400;
-}
-.ax-rate .ax-off {
-  color: #f5e7d7;
-}
-.ax-rate .ax-half {
-  color: #ff8400;
-}
-.ax-rate .ax-score {
-  margin: 0 0.8rem;
-  color: #666666;
-}
-.ax-rate img {
-  height: 1.8rem;
-}
-.ax-rate.ax-md,
-.ax-form-group .ax-rate {
-  padding: calc((3.8rem - 2.8rem)/2) 0;
-}
-.ax-rate.ax-md i {
-  font-size: 2.8rem;
-}
-.ax-rate.ax-md img {
-  height: 2.8rem;
-}
-.ax-rate.ax-lg {
-  line-height: 3.8rem;
-  padding: calc(3.8rem - 2.8rem) 0;
-}
-.ax-rate.ax-lg i {
-  font-size: 3.8rem;
-}
-.ax-rate.ax-lg img {
-  height: 3.8rem;
-}
-/*step*/
-.ax-step {
-  text-align: center;
-  box-sizing: border-box;
-  display: flex;
-}
-.ax-step .ax-item {
-  flex: auto;
-  width: calc((100%/24)*2);
-  position: relative;
-}
-.ax-step .ax-item .ax-head {
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-  padding: 0.2rem 0.6rem;
-  border-radius: 0.3rem;
-  position: relative;
-  margin-bottom: 0.8rem;
-}
-.ax-step .ax-item .ax-mark {
-  width: 100%;
-  line-height: 0.6rem;
-  box-sizing: border-box;
-  display: flex;
-  zoom: 1;
-}
-.ax-step .ax-item .ax-node {
-  color: #198cff;
-  width: 0.6rem;
-  height: 0.6rem;
-  border-radius: 100%;
-  border: 0.2rem solid #198cff;
-  background-color: #fff;
-  display: inline-block;
-  position: relative;
-}
-.ax-step .ax-item .ax-mark div {
-  flex: auto;
-  width: 0;
-  height: 0.2rem;
-  background-color: #198cff;
-  margin-top: 0.4rem;
-}
-.ax-step .ax-item .ax-title {
-  color: #333333;
-  font-size: 1.6rem;
-  line-height: 1.8rem;
-  margin: 0.8rem auto;
-}
-.ax-step .ax-item .ax-des {
-  font-size: 1.2rem;
-  color: #666666;
-  line-height: 1.8rem;
-  margin: 0 1.4rem;
-}
-.ax-step .ax-item.ax-active .ax-node {
-  border-color: #198cff;
-  color: #198cff;
-}
-.ax-step .ax-item.ax-active ~ .ax-item .ax-mark div {
-  background-color: #ccc;
-}
-.ax-step .ax-item.ax-active ~ .ax-item .ax-mark .ax-node {
-  border-color: #ccc;
-  color: #ccc;
-}
-.ax-step .ax-item.ax-active ~ .ax-item .ax-title,
-.ax-step .ax-item.ax-active ~ .ax-item .ax-head,
-.ax-step .ax-item.ax-active ~ .ax-item .ax-des {
-  color: #ccc;
-}
-.ax-step .ax-item.ax-active .ax-head {
-  color: #fff;
-  background-color: #198cff;
-  align-self: baseline;
-}
-.ax-step .ax-item.ax-active .ax-head:before {
-  content: '';
-  width: 0;
-  height: 0;
-  border-right: 0.5rem solid transparent;
-  border-left: 0.5rem solid transparent;
-  border-top: 0.5rem solid #198cff;
-  margin-left: -0.5rem;
-  position: absolute;
-  left: 50%;
-  bottom: -0.4rem;
-}
-/**/
-.ax-step.ax-ends-none:not(.ax-vertical) .ax-item:first-child .ax-mark div:first-child,
-.ax-step.ax-ends-none:not(.ax-vertical) .ax-item:last-child .ax-mark div:last-child,
-.ax-step.ax-ends-none:not(.ax-vertical) .ax-item.ax-active ~ .ax-item:last-child .ax-mark div:last-child {
-  background: transparent;
-}
-.ax-step.ax-ends-none:not(.ax-vertical) .ax-item.ax-active .ax-mark div:last-child {
-  background-color: #ccc;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:first-child {
-  text-align: left;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:first-child .ax-des {
-  margin-left: 0;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:last-child {
-  text-align: right;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:last-child .ax-des {
-  margin-right: 0;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:first-child .ax-mark div:first-child,
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:last-child .ax-mark div:last-child {
-  display: none;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:first-child .ax-mark div:last-child,
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:last-child .ax-mark div:first-child {
-  width: 100%;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item.ax-active .ax-mark div:last-child {
-  background-color: #ccc;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:first-child:not(.ax-active) .ax-head {
-  padding-left: 0;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:last-child:not(.ax-active) .ax-head {
-  padding-right: 0;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:first-child.ax-active .ax-head:before {
-  left: 0.5rem;
-}
-.ax-step.ax-ends-scatter:not(.ax-vertical) .ax-item:last-child.ax-active .ax-head:before {
-  left: auto;
-  right: 0;
-}
-/**/
-.ax-step.ax-style-dot .ax-item .ax-node {
-  width: 1rem;
-  height: 1rem;
-  border-radius: 100%;
-  border: none;
-  background-color: #198cff;
-}
-.ax-step.ax-style-dot .ax-item.ax-active ~ .ax-item .ax-node {
-  background-color: #ccc;
-}
-.ax-step.ax-style-circle .ax-item .ax-node {
-  font-size: 1.2rem;
-  width: 1.8rem;
-  height: 1.8rem;
-  line-height: 1.8rem;
-  text-align: center;
-  background: transparent;
-}
-.ax-step.ax-ends-scatter.ax-style-circle .ax-item:first-child.ax-active .ax-head:before {
-  left: 1.1rem;
-}
-.ax-step.ax-ends-scatter.ax-style-circle .ax-item:last-child.ax-active .ax-head:before {
-  left: auto;
-  right: 0.6rem;
-}
-.ax-step.ax-style-circle .ax-item .ax-node *[class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-step.ax-style-circle .ax-item .ax-mark div {
-  margin-top: 1rem;
-}
-.ax-step.ax-style-img .ax-item .ax-node {
-  font-size: 2.2rem;
-  width: 4.4rem;
-  height: 4.4rem;
-  line-height: 4.4rem;
-  text-align: center;
-  border-radius: 0;
-  border: none;
-  background: transparent;
-}
-.ax-step.ax-style-img .ax-item .ax-node img {
-  max-width: 4.4rem;
-}
-.ax-step.ax-style-img .ax-item .ax-node *[class*="font"] {
-  font-size: 2.2rem;
-}
-.ax-step.ax-ends-scatter.ax-style-img .ax-item:first-child.ax-active .ax-head:before {
-  left: 2.2rem;
-}
-.ax-step.ax-ends-scatter.ax-style-img .ax-item:last-child.ax-active .ax-head:before {
-  left: auto;
-  right: 1.7rem;
-}
-.ax-step.ax-style-img .ax-item .ax-mark div {
-  margin-top: 2.1rem;
-}
-/**/
-.ax-step.ax-vertical {
-  display: block;
-}
-.ax-step.ax-vertical .ax-item {
-  width: 100%;
-  flex: none;
-  display: flex;
-}
-.ax-step.ax-vertical .ax-item .ax-mark {
-  height: 100%;
-  width: 1rem;
-  display: flex;
-  flex-direction: column;
-  box-sizing: border-box;
-}
-.ax-step.ax-vertical .ax-item .ax-mark div {
-  width: 0.2rem;
-  height: 6rem;
-  margin-top: 0;
-  margin-left: 0.4rem;
-  flex: auto;
-}
-.ax-step.ax-vertical .ax-item .ax-mark div:first-child {
-  height: 0.7rem;
-}
-.ax-step.ax-vertical .ax-item:first-child .ax-mark div:first-child {
-  background: transparent;
-}
-.ax-step.ax-vertical .ax-item:last-child .ax-mark div:last-child {
-  display: none;
-}
-.ax-step.ax-vertical .ax-item.ax-active .ax-mark div:last-child {
-  background-color: #ccc;
-}
-.ax-step.ax-vertical .ax-text {
-  text-align: left;
-  margin-left: 1.4rem;
-  flex: auto;
-  width: 0;
-}
-.ax-step.ax-vertical .ax-text .ax-title {
-  line-height: 2.2rem;
-  margin: 0;
-}
-.ax-step.ax-vertical .ax-text .ax-des {
-  margin: 0.4rem 0 0 0;
-}
-.ax-step.ax-vertical .ax-head {
-  width: 6rem;
-  margin-bottom: 0;
-  margin-right: 0.8rem;
-  padding: 0.2rem;
-  color: #666666;
-  vertical-align: top;
-}
-.ax-step.ax-vertical .ax-item.ax-active .ax-head:before {
-  width: 0;
-  height: 0;
-  margin-left: 0;
-  bordr-right: 0;
-  border-top: 0.5rem solid transparent;
-  border-bottom: 0.5rem solid transparent;
-  border-left: 0.5rem solid #198cff;
-  left: auto;
-  bottom: auto;
-  top: 0.6rem;
-  right: -0.9rem;
-}
-.ax-step.ax-vertical.ax-style-circle .ax-item .ax-mark {
-  width: 2.2rem;
-}
-.ax-step.ax-vertical.ax-style-circle .ax-item .ax-mark div {
-  margin-left: 1rem;
-}
-.ax-step.ax-vertical.ax-style-circle .ax-item .ax-mark div:first-child {
-  display: none;
-}
-.ax-step.ax-vertical.ax-style-img .ax-item .ax-mark {
-  width: 4.4rem;
-}
-.ax-step.ax-vertical.ax-style-img .ax-item .ax-mark div {
-  margin-left: 2.1rem;
-}
-.ax-step.ax-vertical.ax-style-img .ax-item .ax-head,
-.ax-step.ax-vertical.ax-style-img .ax-item .ax-title {
-  margin-top: 1rem;
-}
-.ax-step.ax-vertical.ax-style-img .ax-item .ax-mark div:first-child {
-  display: none;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active ~ .ax-item .ax-head,
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active ~ .ax-item .ax-des,
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active .ax-des {
-  color: #333333;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item .ax-mark div {
-  background-color: #ccc;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item .ax-title,
-.ax-step.ax-vertical.ax-reverse .ax-item:not(.ax-active) .ax-head,
-.ax-step.ax-vertical.ax-reverse .ax-item .ax-des {
-  color: #ccc;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active .ax-title,
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active ~ .ax-item .ax-title {
-  color: #333333;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item:not(.ax-active) .ax-node {
-  color: #ccc;
-  border-color: #ccc;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active ~ .ax-item .ax-node {
-  color: #198cff;
-  border-color: #198cff;
-}
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active .ax-mark div:last-child,
-.ax-step.ax-vertical.ax-reverse .ax-item.ax-active ~ .ax-item .ax-mark div {
-  background-color: #198cff;
-}
-.ax-step.ax-vertical.ax-reverse.ax-style-dot .ax-item:not(.ax-active) .ax-node {
-  background-color: #ccc;
-}
-.ax-step.ax-vertical.ax-reverse.ax-style-dot .ax-item.ax-active ~ .ax-item .ax-node {
-  background-color: #198cff;
-}
-/*backtop*/
-.ax-backtop {
-  display: inline-block;
-  position: fixed;
-  right: 1.4rem;
-  bottom: 1.4rem;
-  z-index: 610;
-}
-.ax-space-backtop {
-  height: 5.4rem;
-}
-.ax-backtop .ax-item {
-  margin-top: 1rem;
-  position: relative;
-}
-.ax-backtop .ax-item > a {
-  font-size: 1.8rem;
-  color: rgba(0, 0, 0, 0.2);
-  border-radius: 0.3rem;
-  box-sizing: border-box;
-  width: 3.8rem;
-  height: 3.8rem;
-  box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.12) inset;
-  background-color: rgba(255, 255, 255, 0.2);
-  transition: all 200ms linear;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-}
-.ax-backtop .ax-item > a:hover,
-.ax-backtop .ax-item.ax-active > a {
-  color: #198cff;
-  box-shadow: 0 0 0 0.1rem #198cff inset;
-}
-.ax-backtop .ax-text {
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-  width: 12rem;
-  padding: 0.9rem;
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-  position: absolute;
-  right: 4.6rem;
-  bottom: 0;
-  z-index: 5;
-  display: none;
-}
-.ax-backtop .ax-text img {
-  width: 100%;
-}
-.ax-backtop .ax-text:before {
-  content: "";
-  width: 1rem;
-  height: 1rem;
-  background-color: #fff;
-  box-shadow: 1px 0.1rem 0 0 #ebebeb;
-  transform: rotate(-45deg);
-  position: absolute;
-  right: -0.4rem;
-  bottom: 1.5rem;
-}
-.ax-backtop .ax-text:after {
-  content: '';
-  width: 0.8rem;
-  height: 100%;
-  background: transparent;
-  position: absolute;
-  right: -0.9rem;
-  top: 0;
-}
-.ax-backtop .ax-item .ax-dot {
-  position: absolute;
-  top: -0.2rem;
-  right: -0.2rem;
-  z-index: 2;
-}
-.ax-backtop .ax-item .ax-badge {
-  position: absolute;
-  top: -0.4rem;
-  right: -0.4rem;
-  z-index: 2;
-}
-.ax-backtop .ax-item.ax-social .ax-text {
-  text-align: center;
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-backtop .ax-item.ax-social .ax-text a {
-  font-size: 1.8rem;
-  color: #666666;
-  text-align: center;
-  width: 1.8rem;
-  margin: 0 0.4rem;
-}
-.ax-backtop .ax-item.ax-image > a {
-  background-position: center center;
-  background-size: cover;
-  background-repeat: no-repeat;
-  position: relative;
-}
-.ax-backtop .ax-item.ax-load > a {
-  background-position: center;
-  background-size: 1.8rem;
-  background-repeat: no-repeat;
-  background-image: var(--load-svg);
-}
-.ax-backtop .ax-item.ax-totop {
-  overflow: hidden;
-}
-.ax-backtop .ax-item.ax-totop > a {
-  margin-bottom: -8rem;
-}
-.ax-backtop .ax-item.ax-totop .ax-show {
-  margin-bottom: 0;
-}
-.ax-backtop .ax-item.ax-focus > a {
-  box-shadow: 0 0 0 0.1rem #198cff inset;
-}
-.ax-backtop .ax-item.ax-focus:before {
-  content: '';
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  background-color: rgba(25, 140, 255, 0.2);
-  transform: scale(1.3);
-  position: absolute;
-}
-.ax-backtop.ax-lg .ax-item > a {
-  font-size: 2.8rem;
-  width: calc(2.8rem*2);
-  height: calc(2.8rem*2);
-}
-.ax-backtop.ax-radius .ax-item a,
-.ax-backtop.ax-radius .ax-item.ax-online:before {
-  border-radius: 0.3rem;
-}
-.ax-backtop.ax-square .ax-item a,
-.ax-backtop.ax-square .ax-item.ax-focus:before {
-  border-radius: 0;
-}
-.ax-backtop.ax-round .ax-item a,
-.ax-backtop.ax-round .ax-item.ax-focus:before {
-  border-radius: 100%;
-}
-.ax-backtop.ax-round .ax-item .ax-dot {
-  top: 0;
-  right: 0;
-}
-.ax-backtop.ax-lg .ax-text {
-  line-height: 2.8rem;
-  padding: 1.4rem;
-  right: 6.4rem;
-  width: 18rem;
-}
-.ax-backtop.ax-lg .ax-text:before {
-  bottom: 2.3rem;
-}
-.ax-backtop.ax-lg .ax-item.ax-social .ax-text a {
-  font-size: 2.2rem;
-  width: 2.8rem;
-}
-/*progress*/
-.ax-progress {
-  width: 100%;
-  box-sizing: border-box;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  zoom: 1;
-}
-.ax-progress .ax-progress-body {
-  height: 0.6rem;
-  border-radius: 0.6rem;
-  flex: auto;
-  background-color: #f0f0f0;
-  position: relative;
-  display: block;
-}
-.ax-progress .ax-progress-bar {
-  color: #fff;
-  height: 100%;
-  width: 100%;
-  background-color: #198cff;
-  border-radius: 0.8rem;
-  text-align: right;
-}
-.ax-progress .ax-progress-percent {
-  color: #666666;
-  font-size: 1.2rem;
-  width: 4rem;
-  text-align: right;
-}
-.ax-progress .ax-progress-result {
-  color: #b3b3b3;
-  margin-left: 0.8rem;
-}
-.ax-progress.ax-progress-primary .ax-progress-bar {
-  background-color: #198cff;
-}
-.ax-progress.ax-progress-secondary .ax-progress-bar {
-  background-color: #475b66;
-}
-.ax-progress.ax-progress-danger .ax-progress-bar {
-  background-color: #dc3545;
-}
-.ax-progress.ax-progress-success .ax-progress-bar {
-  background-color: #41a358;
-}
-.ax-progress.ax-progress-warning .ax-progress-bar {
-  background-color: #ffc107;
-}
-.ax-progress.ax-progress-info .ax-progress-bar {
-  background-color: #14ccc9;
-}
-.ax-progress.ax-progress-ad .ax-progress-bar {
-  background-color: #ff8400;
-}
-.ax-progress.ax-progress-primary .ax-progress-result {
-  color: #198cff;
-}
-.ax-progress.ax-progress-secondary .ax-progress-result {
-  color: #475b66;
-}
-.ax-progress.ax-progress-danger .ax-progress-result {
-  color: #dc3545;
-}
-.ax-progress.ax-progress-success .ax-progress-result {
-  color: #41a358;
-}
-.ax-progress.ax-progress-warning .ax-progress-result {
-  color: #ffc107;
-}
-.ax-progress.ax-progress-info .ax-progress-result {
-  color: #14ccc9;
-}
-.ax-progress.ax-progress-ad .ax-progress-result {
-  color: #ff8400;
-}
-.ax-progress.ax-lg .ax-progress-body {
-  height: 2.8rem;
-  border-radius: 2.8rem;
-  margin-top: 0;
-}
-.ax-progress.ax-lg .ax-progress-bar {
-  border-radius: 2.8rem;
-}
-.ax-progress.ax-lg .ax-progress-bar i {
-  padding: 0 1.4rem;
-}
-.ax-progress.ax-sm .ax-progress-body {
-  height: 0.2rem;
-  border-radius: 0.2rem;
-  margin-top: calc((2.8rem - 0.2rem)/2);
-}
-.ax-progress.ax-sm .ax-progress-bar {
-  border-radius: 0.2rem;
-}
-.ax-progress-circle {
-  width: 12rem;
-  text-align: center;
-  margin: auto;
-}
-.ax-form-con + .ax-progress-circle {
-  width: 3.8rem;
-  height: 3.8rem;
-  margin-left: 0.8rem;
-  margin-top: 0;
-}
-.ax-form-con + .ax-progress-circle .ax-progress-text {
-  color: #b3b3b3;
-}
-.ax-progress-circle.ax-half {
-  width: 16rem;
-}
-.ax-progress-line {
-  text-align: center;
-  margin: auto;
-}
-.ax-progress-circle > svg {
-  height: 100%;
-  display: block;
-  transition: all 200ms linear;
-}
-.ax-progress-line > svg {
-  height: 0.6rem;
-  border-radius: 0.6rem;
-  margin-top: calc((2.8rem - 0.6rem)/2);
-}
-.ax-progress-circle .ax-progress-text,
-.ax-progress-line .ax-progress-text {
-  color: #666666;
-  transition: all 200ms linear;
-}
-.ax-progress-line .ax-progress-text {
-  font-size: 1.2rem;
-  text-align: right;
-  width: 4rem;
-  display: inline-block;
-}
-.ax-progress-circle .ax-progress-text .ax-row01,
-.ax-progress-line .ax-progress-text .ax-row01 {
-  color: #b3b3b3;
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-  transition: all 200ms linear;
-}
-.ax-progress-circle .ax-progress-text .ax-row02,
-.ax-progress-line .ax-progress-text .ax-row02 {
-  font-size: 1.8rem;
-}
-.ax-progress-circle .ax-progress-text svg {
-  width: 2.8rem;
-  height: 2.8rem;
-  transition: all 200ms linear;
-}
-.ax-progress-line .ax-progress-text svg {
-  height: 2.8rem;
-  transition: all 200ms linear;
-}
-.ax-progress-circle.ax-success .ax-progress-text,
-.ax-progress-circle.ax-success .ax-progress-text .ax-row02,
-.ax-progress-line.ax-success .ax-progress-text,
-.ax-progress-line.ax-success .ax-progress-text .ax-row02 {
-  color: #198cff;
-}
-.ax-progress-circle.ax-success .ax-progress-text svg,
-.ax-progress-line.ax-success .ax-progress-text svg {
-  fill: #198cff;
-}
-.ax-progress-circle.ax-danger .ax-progress-text,
-.ax-progress-circle.ax-danger .ax-progress-text .ax-row02,
-.ax-progress-line.ax-danger .ax-progress-text,
-.ax-progress-line.ax-danger .ax-progress-text .ax-row02 {
-  color: #dc3545;
-}
-.ax-progress-circle.ax-danger .ax-progress-text svg,
-.ax-progress-line.ax-danger .ax-progress-text svg {
-  fill: #dc3545;
-}
-/*filter*/
-.ax-filter {
-  font-size: 1.4rem;
-  background-color: #fff;
-  box-sizing: border-box;
-  position: relative;
-  z-index: 3;
-}
-.ax-filter .ax-toggle {
-  color: #ccc;
-}
-.ax-filter .ax-other {
-  display: none;
-}
-.ax-filter .ax-item {
-  position: relative;
-  padding: 0.6rem 1.4rem;
-  box-sizing: border-box;
-}
-.ax-filter.ax-padding .ax-item {
-  padding-left: 0;
-  padding-right: 0;
-}
-.ax-filter .ax-item .ax-head {
-  color: #b3b3b3;
-  margin-right: 1rem;
-  padding-right: 1rem;
-  position: relative;
-}
-.ax-filter .ax-item .ax-head:before {
-  content: '';
-  width: 1px;
-  height: 1.2rem;
-  background-color: #f0f0f0;
-  position: absolute;
-  right: 0rem;
-  top: 0.8rem;
-}
-.ax-filter .ax-item .ax-text a {
-  padding: 0 1rem;
-  border-radius: 1.4rem;
-}
-.ax-filter .ax-item .ax-text a:hover {
-  background-color: #f0f0f0;
-}
-.ax-filter .ax-item .ax-text a.ax-active {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-filter .ax-search-box .ax-head {
-  line-height: 3.8rem;
-}
-.ax-filter .ax-search-box .ax-head:before {
-  top: 1.3rem;
-}
-.ax-filter .ax-search {
-  width: 30rem;
-  height: 3.8rem;
-  margin-right: 2.4rem;
-  position: relative;
-  float: left;
-}
-.ax-filter .ax-search input {
-  font-size: 1.4rem;
-  width: 100%;
-  position: absolute;
-  top: 0;
-  left: 0;
-}
-.ax-filter .ax-flex-block .ax-search a {
-  color: #b3b3b3;
-  width: 4.4rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  text-align: center;
-  padding: 0;
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 1;
-}
-.ax-filter .ax-flex-block .ax-search a:hover {
-  background: transparent;
-  color: #198cff;
-}
-.ax-filter .ax-search a:after {
-  content: '';
-  width: 1px;
-  height: 1.6rem;
-  background-color: #f0f0f0;
-  position: absolute;
-  left: 0;
-  top: 1.1rem;
-}
-.ax-filter .ax-hot {
-  font-size: 1.2rem;
-  color: #666666;
-  margin-top: 0.5rem;
-}
-.ax-filter .ax-toggle *[class*='font'] {
-  transition: transform 200ms linear, box-shadow 200ms linear;
-  -webkit-transition: transform 200ms linear, box-shadow 200ms linear;
-}
-.ax-filter .ax-ad {
-  width: 100%;
-}
-.ax-filter .ax-ad a {
-  display: block;
-}
-.ax-filter .ax-ad img {
-  display: block;
-  width: 100%;
-}
-/*btn deform*/
-.ax-deform {
-  width: 3.8rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  text-align: center;
-  border-radius: 0.3rem;
-  transition: all 200ms linear;
-  position: relative;
-}
-.ax-deform:before {
-  border-radius: 0.3rem;
-}
-.ax-deform i {
-  height: 0.2rem;
-  width: 1.6rem;
-  background-color: #666666;
-  border-radius: 0.2rem;
-  transition: all 200ms linear;
-  position: absolute;
-  left: calc((100% - 1.6rem)/2);
-  top: calc(50% - 0.1rem);
-}
-.ax-deform.ax-i .ax-1 {
-  width: 0.2rem;
-  top: calc((100% - 1.6rem)/2);
-  left: calc(50% - 0.1rem);
-}
-.ax-deform.ax-i .ax-2 {
-  width: 1.4rem;
-  transform: rotate(90deg);
-  top: calc(50% + 0.2rem);
-  left: calc((100% - 1.4rem)/2);
-}
-.ax-deform.ax-e .ax-1 {
-  top: calc(50% - 0.6rem);
-}
-.ax-deform.ax-e .ax-3 {
-  top: calc(50% + 0.4rem);
-}
-.ax-deform.ax-t .ax-2 {
-  transform: rotate(90deg);
-}
-.ax-deform.ax-x .ax-1 {
-  transform: rotate(-45deg);
-}
-.ax-deform.ax-x .ax-2 {
-  transform: rotate(45deg);
-}
-.ax-deform.ax-x .ax-3 {
-  opacity: 0;
-}
-.ax-deform.ax-border {
-  border: none;
-}
-.ax-deform.ax-border:before {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-color: rgba(0, 0, 0, 0.12);
-}
-.ax-deform.ax-square {
-  border-radius: 0;
-}
-.ax-deform.ax-square:before {
-  border-radius: 0;
-}
-.ax-deform.ax-radius {
-  border-radius: 0.3rem;
-}
-.ax-deform.ax-radius:before {
-  border-radius: 0.3rem;
-}
-.ax-deform.ax-circle {
-  border-radius: 100%;
-}
-.ax-deform.ax-circle:before {
-  border-radius: 100%;
-}
-.ax-deform.ax-disabled i {
-  background-color: #ccc;
-}
-.ax-deform.ax-lg {
-  width: calc(4.4rem + 1rem);
-  height: calc(4.4rem + 1rem);
-}
-.ax-deform.ax-lg i {
-  width: 2.4rem;
-  left: calc((100% - 2.4rem)/2);
-}
-.ax-deform.ax-lg.ax-i .ax-1 {
-  top: calc((100% - 2.4rem)/2);
-}
-.ax-deform.ax-lg.ax-i .ax-2 {
-  width: 2rem;
-  left: calc((100% - 2rem)/2);
-  transform: rotate(90deg);
-}
-.ax-deform.ax-lg.ax-e .ax-1 {
-  top: calc(50% - 0.8rem);
-}
-.ax-deform.ax-lg.ax-e .ax-3 {
-  top: calc(50% + 0.6rem);
-}
-.ax-deform.ax-md {
-  width: 3.8rem;
-  height: 3.8rem;
-}
-.ax-deform.ax-sm {
-  width: 2.8rem;
-  height: 2.8rem;
-}
-.ax-deform.ax-sm i {
-  width: 1.2rem;
-  left: calc((100% - 1.2rem)/2);
-}
-.ax-deform.ax-sm.ax-i .ax-1 {
-  top: calc((100% - 1.2rem)/2);
-}
-.ax-deform.ax-sm.ax-i .ax-2 {
-  width: 0.8rem;
-  transform: rotate(90deg);
-  left: calc((100% - 0.8rem)/2);
-}
-.ax-deform.ax-e.ax-sm .ax-1 {
-  top: calc(50% - 0.5rem);
-}
-.ax-deform.ax-e.ax-sm .ax-3 {
-  top: calc(50% + 0.3rem);
-}
-.ax-deform.ax-primary i {
-  background-color: #198cff;
-}
-.ax-deform.ax-primary:before {
-  border-color: #198cff;
-}
-.ax-deform.ax-secondary i {
-  background-color: #475b66;
-}
-.ax-deform.ax-secondary:before {
-  border-color: #475b66;
-}
-.ax-deform.ax-success i {
-  background-color: #41a358;
-}
-.ax-deform.ax-success:before {
-  border-color: #41a358;
-}
-.ax-deform.ax-danger i {
-  background-color: #dc3545;
-}
-.ax-deform.ax-danger:before {
-  border-color: #dc3545;
-}
-.ax-deform.ax-warning i {
-  background-color: #ffc107;
-}
-.ax-deform.ax-warning:before {
-  border-color: #ffc107;
-}
-.ax-deform.ax-info i {
-  background-color: #14ccc9;
-}
-.ax-deform.ax-info:before {
-  border-color: #14ccc9;
-}
-.ax-deform.ax-ad i {
-  background-color: #ff8400;
-}
-.ax-deform.ax-ad:before {
-  border-color: #ff8400;
-}
-.ax-deform.ax-ignore i {
-  background-color: #b3b3b3;
-}
-.ax-deform.ax-ignore:before {
-  border-color: #b3b3b3;
-}
-.ax-deform.ax-reverse {
-  background-color: #333333;
-}
-.ax-deform.ax-reverse:before {
-  display: none;
-}
-.ax-deform.ax-reverse i {
-  background-color: #fff;
-}
-.ax-deform.ax-reverse.ax-primary {
-  background-color: #198cff;
-}
-.ax-deform.ax-reverse.ax-secondary {
-  background-color: #475b66;
-}
-.ax-deform.ax-reverse.ax-success {
-  background-color: #41a358;
-}
-.ax-deform.ax-reverse.ax-danger {
-  background-color: #dc3545;
-}
-.ax-deform.ax-reverse.ax-warning {
-  background-color: #ffc107;
-}
-.ax-deform.ax-reverse.ax-info {
-  background-color: #14ccc9;
-}
-.ax-deform.ax-reverse.ax-ad {
-  background-color: #ff8400;
-}
-.ax-deform.ax-reverse.ax-ignore {
-  background-color: #f0f0f0;
-}
-.ax-deform.ax-reverse.ax-ignore i {
-  background-color: #b3b3b3;
-}
-.ax-deform.ax-disabled {
-  cursor: not-allowed;
-}
-.ax-deform.ax-disabled:not(.ax-reverse) i {
-  background-color: #ccc !important;
-}
-.ax-deform.ax-disabled:not(.ax-reverse):before {
-  border-color: #ebebeb !important;
-}
-.ax-deform.ax-reverse.ax-disabled {
-  opacity: 0.3;
-}
-/*dialog*/
-.ax-dialog {
-  height: 100vh;
-  width: 100%;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  position: fixed;
-  left: -1000rem;
-  top: 0;
-  z-index: 810;
-}
-.ax-dialog .ax-dialog-overlay {
-  width: 100%;
-  height: 100%;
-  background-color: transparent;
-  opacity: 0;
-  transition: all 200ms linear;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 4;
-}
-.ax-dialog[data-overlay="true"] .ax-dialog-overlay {
-  background-color: rgba(0, 0, 0, 0.4);
-}
-.ax-dialog[data-overlay="false"] .ax-dialog-overlay {
-  display: none;
-}
-.ax-dialog .ax-dialog-wrapper {
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-  opacity: 1;
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  position: relative;
-  z-index: 9;
-}
-.ax-dialog[data-size="sm"] .ax-dialog-wrapper {
-  width: calc(50rem/2);
-}
-.ax-dialog[data-size="md"] .ax-dialog-wrapper {
-  width: 50rem;
-}
-.ax-dialog[data-size="lg"] .ax-dialog-wrapper {
-  width: calc(100% - 1.4rem*2);
-}
-.ax-dialog[data-size="full"] .ax-dialog-wrapper {
-  width: calc(100% - 1.4rem*2);
-  height: calc(100% - 1.4rem*2);
-}
-.ax-dialog[data-size="full"] .ax-flex-block {
-  overflow: hidden;
-}
-.ax-dialog[data-size="full"] .ax-dialog-body {
-  max-height: calc(100% - 6.6rem);
-}
-.ax-dialog[data-overlay="true"] .ax-dialog-wrapper {
-  border: none;
-  box-shadow: none;
-}
-.ax-dialog.ax-dialog-show {
-  left: 0;
-  top: 0;
-}
-.ax-dialog.ax-dialog-show .ax-dialog-overlay {
-  opacity: 1;
-}
-.ax-dialog.ax-dialog-hide .ax-dialog-overlay {
-  opacity: 0;
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-wrapper > .ax-dialog-close {
-  right: calc(-3.8rem);
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-overlay ~ .ax-dialog-wrapper > .ax-dialog-close [class*='font'] {
-  color: #fff;
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-overlay ~ .ax-dialog-wrapper > .ax-dialog-close svg {
-  fill: #fff;
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-overlay ~ .ax-dialog-wrapper > .ax-dialog-close:hover [class*='font'] {
-  color: #dc3545;
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-overlay ~ .ax-dialog-wrapper > .ax-dialog-close:hover svg {
-  fill: #dc3545;
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-wrapper > .ax-dialog-close [class*='font'] {
-  color: rgba(0, 0, 0, 0.3);
-}
-.ax-dialog[data-closeplace="outside"] .ax-dialog-wrapper > .ax-dialog-close svg {
-  fill: rgba(0, 0, 0, 0.3);
-}
-.ax-dialog[data-closeplace="bottom"] .ax-dialog-wrapper > .ax-dialog-close {
-  margin-right: calc(-3.8rem/2);
-  border-radius: 3.8rem;
-  background-color: #fff;
-  top: auto;
-  bottom: calc(-3.8rem*2);
-  right: 50%;
-}
-.ax-dialog[data-closeplace="bottom"][data-overlay="false"] .ax-dialog-wrapper > .ax-dialog-close {
-  border: 1px solid #ebebeb;
-  bottom: calc(-3.8rem*2);
-}
-.ax-dialog-header {
-  text-align: left;
-  line-height: 3.8rem;
-  border-radius: 0.3rem 0.3rem 0 0;
-  box-sizing: border-box;
-  padding-left: 1.4rem;
-  background-color: #fff;
-  position: relative;
-}
-.ax-dialog .ax-dialog-wrapper > .ax-dialog-close {
-  width: 3.8rem;
-  height: 3.8rem;
-  text-align: center;
-  line-height: 3.8rem;
-  transition: all 200ms linear;
-  color: #b3b3b3;
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 1;
-}
-.ax-dialog .ax-dialog-wrapper > .ax-dialog-close [class*='font'],
-.ax-dialog .ax-dialog-wrapper > .ax-dialog-close svg {
-  color: #b3b3b3;
-  fill: #b3b3b3;
-  transition: all 200ms linear;
-}
-.ax-dialog .ax-dialog-wrapper > .ax-dialog-close:hover [class*='font'],
-.ax-dialog .ax-dialog-wrapper > .ax-dialog-close:hover svg {
-  color: #dc3545;
-  fill: #dc3545;
-}
-.ax-dialog-body {
-  position: relative;
-  max-height: 600px;
-  overflow-x: hidden;
-  overflow-y: auto;
-}
-.ax-dialog .ax-dialog-body .ax-dialog-content {
-  overflow: hidden;
-}
-.ax-dialog .ax-media-container img,
-.ax-dialog .ax-media-container video,
-.ax-dialog .ax-media-container audio {
-  max-width: 100%;
-}
-.ax-dialog .ax-media-container video,
-.ax-dialog .ax-media-container audio {
-  width: 100%;
-  display: block;
-}
-.ax-dialog .ax-media-title {
-  font-size: 1.8rem;
-  font-weight: bold;
-  line-height: 3.8rem;
-  text-align: center;
-  margin: 1.4rem 0 0.8rem 0;
-}
-.ax-dialog[data-type="pictrue"] .ax-dialog-content,
-.ax-dialog[data-type="video"] .ax-dialog-content,
-.ax-dialog[data-type="audio"] .ax-dialog-content {
-  text-align: center;
-}
-.ax-dialog .ax-note {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  height: 3.8rem;
-  display: flex;
-  align-items: center;
-}
-.ax-dialog[data-footerType="center"] .ax-note,
-.ax-dialog[data-footerType="line"] .ax-note {
-  border-top: 1px solid #ebebeb;
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-  background-color: #fafafa;
-  justify-content: center;
-}
-.ax-dailog[data-footerType="right"] .ax-note {
-  justify-content: flex-start;
-}
-.ax-dialog-footer {
-  border-radius: 0 0 0.3rem 0.3rem;
-  overflow-y: hidden;
-}
-.ax-dialog-footer .ax-btn {
-  margin: 0 0.8rem;
-}
-.ax-dialog-footer .ax-btns .ax-btn {
-  margin: 0;
-}
-.ax-dialog-footer > .ax-row {
-  line-height: 4.4rem;
-  text-align: center;
-}
-.ax-dialog-footer > .ax-row .ax-gutter-line {
-  height: 4.4rem;
-}
-.ax-dialog-footer > .ax-row a:hover {
-  background-color: #fff;
-}
-.ax-dialog-footer > .ax-row .ax-gutter-line:last-child {
-  display: none;
-}
-.ax-dialog-alert {
-  text-align: center;
-  padding: calc(1.4rem*3) 1.4rem;
-}
-.ax-dialog-alert .ax-tips-icon {
-  width: 100%;
-}
-.ax-dialog-alert .ax-tips-title {
-  font-size: 1.8rem;
-  line-height: 3.8rem;
-}
-.ax-dialog-alert .ax-tips-des {
-  font-size: 1.4rem;
-  color: #666666;
-}
-.ax-dialog-alert .ax-tips-btn {
-  margin-top: calc(1.4rem*2);
-}
-.ax-dialog video {
-  width: 100%;
-  height: auto;
-  display: block;
-}
-/*drawer*/
-.ax-drawer {
-  height: 100vh;
-  width: 100%;
-  position: fixed;
-  left: -1000rem;
-  top: 0;
-  z-index: 810;
-}
-.ax-drawer .ax-drawer-overlay {
-  width: 100%;
-  height: 100%;
-  background-color: rgba(0, 0, 0, 0.4);
-  opacity: 0;
-  transition: all 200ms linear;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 4;
-}
-.ax-drawer.ax-drawer-show {
-  left: 0;
-  top: 0;
-}
-.ax-drawer.ax-drawer-show .ax-drawer-overlay {
-  opacity: 1;
-}
-.ax-drawer .ax-drawer-wrapper {
-  width: 40rem;
-  background-color: #fff;
-  opacity: 1;
-  transition: all 200ms linear;
-  box-sizing: border-box;
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  position: absolute;
-  right: -40rem;
-  top: 0;
-  z-index: 9;
-}
-.ax-drawer[data-size="sm"] .ax-drawer-wrapper {
-  right: -40rem;
-  width: 40rem;
-}
-.ax-drawer[data-size="md"] .ax-drawer-wrapper {
-  right: -60rem;
-  width: 60rem;
-}
-.ax-drawer[data-size="lg"] .ax-drawer-wrapper {
-  right: -70%;
-  width: 70%;
-}
-.ax-drawer.ax-drawer-show .ax-drawer-wrapper {
-  right: 0;
-}
-.ax-drawer[data-placement="right"] .ax-drawer-wrapper,
-.ax-drawer[data-placement="left"] .ax-drawer-wrapper {
-  height: 100%;
-  display: flex;
-  flex-wrap: nowrap;
-  flex-direction: column;
-}
-.ax-drawer[data-placement="right"] .ax-drawer-wrapper {
-  right: -40rem;
-}
-.ax-drawer[data-placement="right"][data-size="sm"] .ax-drawer-wrapper {
-  right: -40rem;
-}
-.ax-drawer[data-placement="right"][data-size="md"] .ax-drawer-wrapper {
-  right: -60rem;
-}
-.ax-drawer[data-placement="right"][data-size="lg"] .ax-drawer-wrapper {
-  right: -70%;
-}
-.ax-drawer[data-placement="right"].ax-drawer-show .ax-drawer-wrapper {
-  right: 0;
-}
-.ax-drawer[data-placement="left"] .ax-drawer-wrapper {
-  left: -40rem;
-}
-.ax-drawer[data-placement="left"][data-size="sm"] .ax-drawer-wrapper {
-  left: -40rem;
-}
-.ax-drawer[data-placement="left"][data-size="md"] .ax-drawer-wrapper {
-  left: -60rem;
-}
-.ax-drawer[data-placement="left"][data-size="lg"] .ax-drawer-wrapper {
-  left: -70%;
-}
-.ax-drawer[data-placement="left"].ax-drawer-show .ax-drawer-wrapper {
-  left: 0;
-}
-.ax-drawer[data-placement="top"] .ax-drawer-wrapper {
-  width: 100%;
-  left: auto;
-  right: auto;
-  bottom: auto;
-  transform: translateY(-100%);
-}
-.ax-drawer[data-placement="top"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 20rem;
-}
-.ax-drawer[data-placement="top"][data-size="sm"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 20rem;
-}
-.ax-drawer[data-placement="top"][data-size="md"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 40rem;
-}
-.ax-drawer[data-placement="top"][data-size="lg"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 70%;
-}
-.ax-drawer[data-placement="top"].ax-drawer-show .ax-drawer-wrapper {
-  transform: translateY(0);
-}
-.ax-drawer[data-placement="bottom"] .ax-drawer-wrapper {
-  width: 100%;
-  left: auto;
-  right: auto;
-  top: auto;
-  bottom: 0;
-  transform: translateY(100%);
-}
-.ax-drawer[data-placement="bottom"][data-size="sm"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 20rem;
-}
-.ax-drawer[data-placement="bottom"][data-size="md"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 40rem;
-}
-.ax-drawer[data-placement="bottom"][data-size="lg"] .ax-drawer-wrapper .ax-drawer-body {
-  max-height: 70%;
-}
-.ax-drawer[data-placement="bottom"].ax-drawer-show .ax-drawer-wrapper {
-  transform: translateY(0);
-}
-.ax-drawer .ax-drawer-header {
-  line-height: 3.8rem;
-  box-sizing: border-box;
-  padding: 0 1.4rem;
-  display: flex;
-  flex-wrap: nowrap;
-  zoom: 1;
-  position: relative;
-}
-.ax-drawer .ax-drawer-wrapper > .ax-drawer-close {
-  color: #fff;
-  width: 3.8rem;
-  height: 3.8rem;
-  text-align: center;
-  line-height: 3.8rem;
-  transition: all 200ms linear;
-  opacity: 0;
-  position: absolute;
-  left: calc(-3.8rem);
-  top: 0;
-  z-index: 1;
-}
-.ax-drawer[data-placement="right"] .ax-drawer-wrapper > .ax-drawer-close {
-  left: calc(-3.8rem);
-}
-.ax-drawer[data-placement="left"] .ax-drawer-wrapper > .ax-drawer-close {
-  left: auto;
-  right: calc(-3.8rem);
-}
-.ax-drawer[data-placement="top"] .ax-drawer-wrapper > .ax-drawer-close {
-  left: auto;
-  right: 0;
-  top: auto;
-  bottom: calc(-3.8rem);
-}
-.ax-drawer[data-placement="bottom"] .ax-drawer-wrapper > .ax-drawer-close {
-  left: auto;
-  right: 0;
-  top: calc(-3.8rem);
-}
-.ax-drawer.ax-drawer-show .ax-drawer-wrapper > .ax-drawer-close {
-  opacity: 1;
-}
-.ax-drawer .ax-drawer-wrapper > .ax-drawer-close [class*='font'],
-.ax-drawer .ax-drawer-wrapper > .ax-drawer-close svg {
-  color: #fff;
-  fill: #fff;
-  transition: all 200ms linear;
-}
-.ax-drawer .ax-drawer-wrapper > .ax-drawer-close:hover [class*='font'],
-.ax-drawer .ax-drawer-wrapper > .ax-drawer-close:hover svg {
-  color: #fff;
-  fill: #fff;
-}
-.ax-drawer .ax-drawer-body {
-  max-height: 100%;
-  overflow-x: hidden;
-  overflow-y: auto;
-  position: relative;
-}
-.ax-drawer[data-placement="right"] .ax-drawer-body,
-.ax-drawer[data-placement="left"] .ax-drawer-body {
-  flex: auto;
-  height: 0;
-}
-.ax-drawer .ax-drawer-body .ax-drawer-content {
-  overflow: hidden;
-}
-.ax-drawer .ax-note {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  height: 3.8rem;
-  display: flex;
-  align-items: center;
-}
-.ax-drawer[data-footerType="center"] .ax-note,
-.ax-drawer[data-footerType="line"] .ax-note {
-  border-top: 1px solid #ebebeb;
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-  background-color: #fafafa;
-  justify-content: center;
-}
-.ax-dailog[data-footerType="right"] .ax-note {
-  justify-content: flex-start;
-}
-.ax-drawer-footer {
-  border-radius: 0 0 0.3rem 0.3rem;
-  overflow-y: hidden;
-}
-.ax-drawer-footer .ax-btn {
-  margin: 0 0.8rem;
-}
-.ax-drawer-footer .ax-btns .ax-btn {
-  margin: 0;
-}
-.ax-drawer-footer > .ax-row {
-  line-height: 4.4rem;
-  text-align: center;
-}
-.ax-drawer-footer > .ax-row .ax-gutter-line {
-  height: 4.4rem;
-}
-.ax-drawer-footer > .ax-row a:hover {
-  background-color: #fff;
-}
-.ax-drawer-footer > .ax-row .ax-gutter-line:last-child {
-  display: none;
-}
-.ax-drawer video,
-.ax-drawer audio {
-  width: 100%;
-  max-width: 100%;
-  height: auto;
-  display: block;
-}
-.ax-drawer[data-placement="left"][data-size="md"] video,
-.ax-drawer[data-placement="left"][data-size="lg"] video,
-.ax-drawer[data-placement="right"][data-size="md"] video,
-.ax-drawer[data-placement="right"][data-size="lg"] video,
-.ax-drawer[data-placement="left"][data-size="md"] audio,
-.ax-drawer[data-placement="left"][data-size="lg"] audio,
-.ax-drawer[data-placement="right"][data-size="md"] audio,
-.ax-drawer[data-placement="right"][data-size="lg"] audio,
-.ax-drawer[data-placement="top"] audio,
-.ax-drawer[data-placement="bottom"] audio {
-  width: auto;
-}
-.ax-drawer .ax-menu {
-  width: 100%;
-}
-/*message*/
-.ax-message {
-  width: 600px;
-  position: fixed;
-  left: 50%;
-  top: 0;
-  z-index: 910;
-  transform: translate(-50%, 0);
-}
-.ax-message section {
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  box-sizing: border-box;
-  box-shadow: 1px 1px 0.5rem rgba(0, 0, 0, 0.06);
-  margin: 1.4rem 1.4rem 0 1.4rem;
-  border-radius: 0.3rem;
-  position: relative;
-  display: none;
-}
-.ax-message .ax-close {
-  font-family: 'ax-iconfont';
-  font-size: 1.4rem;
-  text-align: center;
-  color: rgba(0, 0, 0, 0.2);
-  text-decoration: none;
-  width: calc(3.8rem - 2px);
-  height: calc(3.8rem - 2px);
-  line-height: calc(3.8rem - 2px);
-  transition: all 200ms linear;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-message .ax-close:before {
-  content: "close";
-  width: calc(3.8rem - 2px);
-  height: calc(3.8rem - 2px);
-}
-.ax-message .ax-close:hover {
-  color: rgba(0, 0, 0, 0.8);
-}
-.ax-message[data-placement="left-top"] {
-  width: 400px;
-  left: 0;
-  transform: none;
-}
-.ax-message[data-placement="right-top"] {
-  width: 400px;
-  left: auto;
-  right: 0;
-  transform: none;
-}
-.ax-message[data-placement="left-center"] {
-  width: 400px;
-  left: 0;
-  top: 50%;
-  transform: translate(0, -50%);
-}
-.ax-message[data-placement="center-center"] {
-  top: 50%;
-  transform: translate(-50%, -50%);
-}
-.ax-message[data-placement="right-center"] {
-  width: 400px;
-  left: auto;
-  right: 0;
-  top: 50%;
-  transform: translate(0, -50%);
-}
-.ax-message[data-placement="left-bottom"] {
-  width: 400px;
-  left: 0;
-  top: auto;
-  bottom: 0;
-  transform: none;
-}
-.ax-message[data-placement="center-bottom"] {
-  top: auto;
-  bottom: 0;
-}
-.ax-message[data-placement="right-bottom"] {
-  width: 400px;
-  left: auto;
-  right: 0;
-  top: auto;
-  bottom: 0;
-  transform: none;
-}
-.ax-message[data-placement*="-center"] section {
-  margin-top: calc(1.4rem/2);
-  margin-bottom: calc(1.4rem/2);
-}
-.ax-message[data-placement*="-bottom"] section {
-  margin-top: 0;
-  margin-bottom: 1.4rem;
-}
-.ax-message section[data-style="simple"] .ax-message-content {
-  font-size: 1.4rem;
-  line-height: 1.8rem;
-  padding: 0.8rem 1.4rem;
-  display: flex;
-  flex-wrap: nowrap;
-}
-.ax-message section[data-style="simple"][data-result="success"] {
-  color: #0b72da;
-  background-color: #f0f7ff;
-  border-color: #d7e7f5;
-}
-.ax-message section[data-style="simple"][data-result="error"] {
-  color: #b22c39;
-  background-color: #fff0f1;
-  border-color: #f0dddf;
-}
-.ax-message section[data-style="simple"][data-result="question"] {
-  color: #c2690a;
-  background-color: #fff5eb;
-  border-color: #f5e7d7;
-}
-.ax-message section[data-style="simple"][data-result="info"] {
-  color: #189593;
-  background-color: #ebfaf9;
-  border-color: #cef0f0;
-}
-.ax-message section[data-style="simple"][data-result="warning"] {
-  color: #c8990b;
-  background-color: #fffaeb;
-  border-color: #f5edd7;
-}
-.ax-message section[data-style="simple"][data-close] .ax-message-content {
-  padding-right: 3.4rem;
-}
-.ax-message section[data-style="simple"] .ax-message-icon {
-  margin-right: 0.8rem;
-}
-.ax-message section[data-style="simple"] .ax-message-body {
-  flex: auto;
-  position: relative;
-}
-.ax-message section[data-style="complex"] {
-  padding: 1.4rem;
-}
-.ax-message section[data-style="complex"] .ax-message-header {
-  line-height: 2.8rem;
-  margin-bottom: 0.8rem;
-}
-.ax-message section[data-style="complex"] .ax-message-icon {
-  width: 2.8rem;
-  height: 2.8rem;
-  min-width: 2.8rem;
-  min-height: 2.8rem;
-  margin-right: 0.8rem;
-}
-.ax-message section[data-style="complex"] .ax-message-title {
-  font-size: 1.8rem;
-}
-.ax-message section[data-style="complex"] .ax-message-body {
-  color: #666666;
-  line-height: 1.8rem;
-}
-.ax-message-progress {
-  height: 2px;
-  width: 100%;
-  background-color: #ebebeb;
-  transition-property: width;
-  transition-timing-function: linear;
-  position: absolute;
-  left: 0;
-  bottom: 0;
-}
-/**/
-.ax-glitter {
-  width: 1.4rem;
-  height: 1.4rem;
-  border-radius: 100%;
-  background-color: #dc3545;
-  display: inline-flex;
-  justify-content: center;
-  align-items: center;
-  position: relative;
-}
-.ax-glitter * {
-  color: #fff;
-  position: relative;
-  z-index: 2;
-}
-.ax-glitter:before,
-.ax-glitter:after {
-  content: '';
-  width: 100%;
-  height: 100%;
-  border-radius: 100%;
-  background-color: #dc3545;
-  transform: scale(3);
-  opacity: 0.5;
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-glitter:before {
-  animation: ax-wave-3 1s infinite;
-}
-.ax-glitter:after {
-  animation: ax-wave-5 1s infinite;
-}
-.ax-glitter.ax-sm:before {
-  animation-name: ax-wave-2;
-}
-.ax-glitter.ax-sm:after {
-  animation-name: ax-wave-3;
-}
-.ax-glitter.ax-md:before {
-  animation-name: ax-wave-3;
-}
-.ax-glitter.ax-md:after {
-  animation-name: ax-wave-5;
-}
-.ax-glitter.ax-lg:before {
-  animation-name: ax-wave-4;
-}
-.ax-glitter.ax-lg:after {
-  animation-name: ax-wave-7;
-}
-@keyframes ax-wave-2 {
-  0% {
-    transform: scale(1);
-    opacity: 0.9;
-  }
-  100% {
-    transform: scale(2);
-    opacity: 0;
-  }
-}
-@keyframes ax-wave-3 {
-  0% {
-    transform: scale(1);
-    opacity: 0.9;
-  }
-  100% {
-    transform: scale(3);
-    opacity: 0;
-  }
-}
-@keyframes ax-wave-4 {
-  0% {
-    transform: scale(1);
-    opacity: 0.9;
-  }
-  100% {
-    transform: scale(4);
-    opacity: 0;
-  }
-}
-@keyframes ax-wave-5 {
-  0% {
-    transform: scale(1);
-    opacity: 0.9;
-  }
-  100% {
-    transform: scale(5);
-    opacity: 0;
-  }
-}
-@keyframes ax-wave-6 {
-  0% {
-    transform: scale(1);
-    opacity: 0.9;
-  }
-  100% {
-    transform: scale(6);
-    opacity: 0;
-  }
-}
-@keyframes ax-wave-7 {
-  0% {
-    transform: scale(1);
-    opacity: 0.9;
-  }
-  100% {
-    transform: scale(7);
-    opacity: 0;
-  }
-}
-.ax-glitter.ax-primary,
-.ax-glitter.ax-primary:before,
-.ax-glitter.ax-primary:after {
-  background-color: #198cff;
-}
-.ax-glitter.ax-danger,
-.ax-glitter.ax-danger:before,
-.ax-glitter.ax-danger:after {
-  background-color: #dc3545;
-}
-.ax-glitter.ax-success,
-.ax-glitter.ax-success:before,
-.ax-glitter.ax-success:after {
-  background-color: #41a358;
-}
-.ax-glitter.ax-secondary,
-.ax-glitter.ax-secondary:before,
-.ax-glitter.ax-secondary:after {
-  background-color: #475b66;
-}
-.ax-glitter.ax-warning,
-.ax-glitter.ax-warning:before,
-.ax-glitter.ax-warning:after {
-  background-color: #ffc107;
-}
-.ax-glitter.ax-info,
-.ax-glitter.ax-info:before,
-.ax-glitter.ax-info:after {
-  background-color: #14ccc9;
-}
-.ax-glitter.ax-ad,
-.ax-glitter.ax-ad:before,
-.ax-glitter.ax-ad:after {
-  background-color: #ff8400;
-}
-/*lazyshow*/
-.ax-lazy {
-  transition: all 200ms linear;
-}
-.ax-lazy.ax-hide {
-  opacity: 0;
-}
-.ax-lazy.ax-show {
-  opacity: 1;
-}
-.ax-lazy.ax-hide.ax-scale {
-  transform: scale(0);
-}
-.ax-lazy.ax-show.ax-scale {
-  transform: scale(1);
-}
-.ax-lazy.ax-hide.ax-fly {
-  transform: translate(0, 50%);
-}
-.ax-lazy.ax-show.ax-fly {
-  transform: translate(0, 0);
-}
-/*plugins start*/
-.ax-videojs .video-js {
-  max-width: 100%;
-}
-.ax-videojs.ax-playlist-side {
-  background: #1a1a1a;
-}
-.ax-videojs.ax-playlist-bottom {
-  background: #1a1a1a;
-}
-.ax-videojs.ax-playlist-pages {
-  background: #1a1a1a;
-}
-.ax-videojs.ax-playlist-pages .video-js {
-  width: 100% !important;
-  height: 40rem;
-}
-.ax-videojs.ax-playlist-side .video-js {
-  width: 100% !important;
-  height: 40rem;
-}
-.ax-videojs.ax-playlist-side .ax-swiper {
-  width: 20rem;
-  height: 40rem;
-  box-sizing: border-box;
-  overflow: hidden;
-}
-.ax-videojs.ax-playlist-bottom .video-js {
-  width: 100% !important;
-  height: 40rem;
-}
-.ax-videojs.ax-playlist-bottom .ax-swiper {
-  height: 14rem;
-  box-sizing: border-box;
-  overflow: hidden;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-swiper {
-  margin: 1.4rem;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide {
-  overflow: hidden;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide figure {
-  color: #fff;
-  height: 100%;
-  box-sizing: border-box;
-  padding: 0.8rem;
-  cursor: pointer;
-  overflow: hidden;
-  background-repeat: no-repeat;
-  background-position: center center;
-  background-size: cover, 2rem 2rem;
-  background-color: #f5f5f5;
-  position: relative;
-  display: block;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide-active:before {
-  content: '';
-  width: 100%;
-  height: 100%;
-  border: 0.2rem solid #198cff;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 2;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide i {
-  display: none;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide-active i {
-  color: #fff;
-  font-size: 1.4rem;
-  line-height: 2.8rem;
-  padding: 0 0.8rem;
-  background-color: #198cff;
-  border-radius: 0 0 0.6rem 0;
-  position: absolute;
-  top: 0;
-  left: 0;
-  z-index: 2;
-  display: block;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide em {
-  color: #fff;
-  font-size: 1.2rem;
-  line-height: 2.8rem;
-  padding: 0 0.8rem;
-  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
-  position: absolute;
-  top: 0;
-  right: 0;
-  z-index: 2;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide figcaption {
-  font-size: 1.4rem;
-  font-style: normal;
-  overflow: hidden;
-  max-height: 3.6rem;
-  line-height: 1.8rem;
-  text-overflow: ellipsis;
-  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
-  display: block;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-  margin-right: 0.8rem;
-  position: absolute;
-  bottom: 0.8rem;
-  left: 0.8rem;
-  z-index: 2;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide .ax-mask {
-  width: 100%;
-  height: 100%;
-  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0));
-  opacity: 0;
-  transition: all 200ms ease;
-  -webkit-transition: all 200ms ease;
-  position: absolute;
-  left: 0;
-  top: 100%;
-}
-.ax-videojs[class*='ax-playlist-'] .ax-slide:hover .ax-mask {
-  opacity: 1;
-  top: 0;
-}
-/*plugins aplayer*/
-.ax-aplayer {
-  background: #fff;
-  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.12);
-  box-shadow: 0.5rem 0.5rem 2rem rgba(51, 51, 51, 0.4);
-  border-radius: 0.3rem;
-  -webkit-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  line-height: normal;
-  position: relative;
-}
-.ax-aplayer:not(.aplayer-bottom) {
-  overflow: hidden;
-}
-.ax-aplayer * {
-  box-sizing: content-box;
-}
-.ax-aplayer svg {
-  fill: #666666;
-  width: 100%;
-  height: 100%;
-  transition: all 100ms linear;
-}
-.ax-aplayer.aplayer-withlist .aplayer-list {
-  border-top: 1px solid #ebebeb;
-  display: block;
-}
-.ax-aplayer.aplayer-withlist .aplayer-icon-order,
-.ax-aplayer.aplayer-withlist .aplayer-time .aplayer-icon.aplayer-icon-menu {
-  display: inline;
-}
-.ax-aplayer.aplayer-withlrc .aplayer-pic {
-  height: 9.6rem;
-  width: 9.6rem;
-}
-.ax-aplayer.aplayer-withlrc .aplayer-info {
-  height: 9.6rem;
-  padding: 1rem 0.7rem 0;
-}
-.ax-aplayer.aplayer-withlrc .aplayer-lrc {
-  display: block;
-}
-.ax-aplayer.aplayer-narrow {
-  width: 6.6rem;
-}
-.ax-aplayer.aplayer-narrow .aplayer-info,
-.ax-aplayer.aplayer-narrow .aplayer-list {
-  display: none !important;
-}
-.ax-aplayer.aplayer-narrow .aplayer-body,
-.ax-aplayer.aplayer-narrow .aplayer-pic {
-  height: 6.6rem;
-  width: 6.6rem;
-}
-.ax-aplayer.aplayer-fixed {
-  margin: 0;
-  overflow: visible;
-  max-width: 50rem;
-  box-shadow: none;
-  position: fixed;
-  bottom: calc(50vh - 3.3rem);
-  left: 0;
-  right: 0;
-  z-index: 610;
-}
-.ax-aplayer.aplayer-fixed .aplayer-list {
-  border: 1px solid #eee;
-  border-bottom: none;
-  margin-bottom: 6.5rem;
-}
-.ax-aplayer.aplayer-fixed .aplayer-body {
-  margin: 0;
-  background: #fff;
-  transition: all 300ms ease;
-  max-width: 50rem;
-  position: absolute;
-  bottom: 0;
-  left: 0;
-  right: 0;
-  z-index: 99;
-}
-.ax-aplayer.aplayer-fixed .aplayer-lrc {
-  width: 50rem;
-  text-align: left;
-  margin: 0;
-  padding: 1.4rem;
-  pointer-events: none;
-  text-shadow: -0.1rem -0.1rem 0 #fff;
-  position: absolute;
-  left: 0;
-  right: 0;
-  z-index: 98;
-  display: block;
-}
-.ax-aplayer.aplayer-fixed .aplayer-lrc:after,
-.ax-aplayer.aplayer-fixed .aplayer-lrc:before {
-  display: none;
-}
-.ax-aplayer.aplayer-fixed .aplayer-info {
-  -webkit-transform: scaleX(1);
-  transform: scaleX(1);
-  -webkit-transform-origin: 0 0;
-  transform-origin: 0 0;
-  transition: all 300ms ease;
-  border-top: 1px solid #ebebeb;
-  border-bottom: 1px solid #ebebeb;
-}
-.ax-aplayer.aplayer-fixed .aplayer-info .aplayer-music {
-  width: calc(100% - 10.5rem);
-}
-.ax-aplayer.aplayer-fixed .aplayer-miniswitcher {
-  display: block;
-}
-.ax-aplayer.aplayer-fixed.aplayer-narrow .aplayer-info {
-  display: block;
-  -webkit-transform: scaleX(0);
-  transform: scaleX(0);
-}
-.ax-aplayer.aplayer-fixed.aplayer-narrow .aplayer-body {
-  width: 6.6rem !important;
-}
-.ax-aplayer.aplayer-fixed.aplayer-narrow .aplayer-miniswitcher .aplayer-icon {
-  -webkit-transform: rotateY(0);
-  transform: rotateY(0);
-}
-.ax-aplayer.aplayer-fixed .aplayer-icon-back,
-.ax-aplayer.aplayer-fixed .aplayer-icon-forward,
-.ax-aplayer.aplayer-fixed .aplayer-icon-lrc,
-.ax-aplayer.aplayer-fixed .aplayer-icon-play {
-  display: inline-block;
-}
-.ax-aplayer.aplayer-fixed .aplayer-icon-back,
-.ax-aplayer.aplayer-fixed .aplayer-icon-forward,
-.ax-aplayer.aplayer-fixed .aplayer-icon-menu,
-.ax-aplayer.aplayer-fixed .aplayer-icon-play {
-  position: absolute;
-  bottom: 2.6rem;
-  width: 2.2rem;
-  height: 2.2rem;
-}
-.ax-aplayer.aplayer-fixed .aplayer-icon-back {
-  right: 7.5rem;
-}
-.ax-aplayer.aplayer-fixed .aplayer-icon-play {
-  right: 5rem;
-}
-.ax-aplayer.aplayer-fixed .aplayer-icon-forward {
-  right: 2.5rem;
-}
-.ax-aplayer.aplayer-fixed .aplayer-icon-menu {
-  right: 0;
-}
-.ax-aplayer.aplayer-bottom {
-  width: 100%;
-  border-radius: 0;
-  border-top: 1px solid #ebebeb;
-  box-sizing: border-box;
-  position: fixed;
-  left: 0;
-  bottom: 0;
-  z-index: 99;
-}
-.ax-aplayer.aplayer-bottom .aplayer-body {
-  width: 100rem;
-  margin: auto;
-}
-.ax-aplayer.aplayer-bottom .aplayer-list {
-  width: 50rem;
-  border-left: 1px solid #ebebeb;
-  border-right: 1px solid #ebebeb;
-  position: fixed;
-  left: auto;
-  bottom: 4.9rem;
-  right: calc((100% - 100rem)/2);
-}
-.ax-aplayer.aplayer-bottom .aplayer-lrc {
-  width: 100%;
-  position: fixed;
-  left: 0;
-  bottom: 4.9rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-lrc:after,
-.ax-aplayer.aplayer-bottom .aplayer-lrc:before {
-  display: none;
-}
-.ax-aplayer.aplayer-bottom .aplayer-info {
-  height: 4.8rem;
-  padding: 0.8rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-info .aplayer-music {
-  line-height: 1.8rem;
-  height: 1.8rem;
-  margin-bottom: 0;
-}
-.ax-aplayer.aplayer-bottom .aplayer-pic {
-  width: 3.2rem;
-  height: 3.2rem;
-  margin: 0.8rem 0;
-  border-radius: 0.3rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-pic a {
-  border-radius: 0.3rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-pic .aplayer-button {
-  display: none;
-}
-.ax-aplayer.aplayer-bottom.aplayer-withlist .aplayer-list {
-  border-top: none;
-}
-.ax-aplayer.aplayer-bottom .aplayer-list ol li:first-child {
-  border-top: 1px solid #ebebeb;
-}
-.ax-aplayer.aplayer-bottom .aplayer-operate {
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-  margin-right: 1.4rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-icon-back,
-.ax-aplayer.aplayer-bottom .aplayer-icon-forward,
-.ax-aplayer.aplayer-bottom .aplayer-icon-lrc,
-.ax-aplayer.aplayer-bottom .aplayer-icon-play {
-  display: inline-block;
-}
-.ax-aplayer.aplayer-bottom .aplayer-icon-back,
-.ax-aplayer.aplayer-bottom .aplayer-icon-forward {
-  width: 2.2rem;
-  height: 2.2rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-icon-play {
-  width: 2.6rem;
-  height: 2.6rem;
-  border: 0.2rem solid #666666;
-  position: relative;
-  border-radius: 100%;
-  margin: 0 0.8rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-icon-play svg {
-  height: 2rem;
-  width: 2rem;
-  transform: translate(-50%, -50%);
-  position: absolute;
-  top: 50%;
-  left: 50%;
-}
-.ax-aplayer.aplayer-bottom .aplayer-icon-back:hover,
-.ax-aplayer.aplayer-bottom .aplayer-icon-forward:hover,
-.ax-aplayer.aplayer-bottom .aplayer-icon-play:hover {
-  border-color: #198cff;
-}
-.ax-aplayer.aplayer-bottom .aplayer-icon-back:hover svg,
-.ax-aplayer.aplayer-bottom .aplayer-icon-forward:hover svg,
-.ax-aplayer.aplayer-bottom .aplayer-icon-play:hover svg {
-  fill: #198cff;
-}
-.ax-aplayer.aplayer-bottom .aplayer-time {
-  height: auto;
-  margin: 0;
-  display: flex;
-  justify-content: flex-end;
-  align-items: center;
-}
-.ax-aplayer.aplayer-bottom .aplayer-volume-wrap .aplayer-volume-bar-wrap {
-  bottom: 2.2rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-time button {
-  width: 2.2rem;
-  height: 2.2rem;
-}
-.ax-aplayer.aplayer-bottom .aplayer-time-inner {
-  color: #666666;
-  font-size: 1.2rem;
-}
-.ax-aplayer.aplayer-arrow .aplayer-icon-loop,
-.ax-aplayer.aplayer-arrow .aplayer-icon-order,
-.ax-aplayer.aplayer-mobile .aplayer-icon-volume-down {
-  display: none;
-}
-.ax-aplayer.aplayer-loading .aplayer-info .aplayer-loading-icon {
-  display: block;
-}
-.ax-aplayer.aplayer-loading .aplayer-info .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
-  -webkit-transform: scale(1);
-  transform: scale(1);
-}
-.ax-aplayer .aplayer-body {
-  width: 100%;
-  box-sizing: border-box;
-  display: flex;
-  flex-wrap: nowrap;
-  zoom: 1;
-  position: relative;
-}
-.ax-aplayer .aplayer-icon {
-  font-size: 1.8rem;
-  width: 1.8rem;
-  height: 1.8rem;
-  vertical-align: middle;
-  background-color: transparent;
-  border: none;
-  outline: none;
-  cursor: pointer;
-  padding: 0;
-  margin: 0;
-  display: inline-block;
-}
-.ax-aplayer .aplayer-icon svg {
-  float: left;
-  transition: all 100ms linear;
-}
-.ax-aplayer .aplayer-icon-back,
-.ax-aplayer .aplayer-icon-forward,
-.ax-aplayer .aplayer-icon-lrc,
-.ax-aplayer .aplayer-icon-order,
-.ax-aplayer .aplayer-icon-play {
-  display: none;
-}
-.ax-aplayer .aplayer-icon-lrc-inactivity svg {
-  opacity: 0.4;
-}
-.ax-aplayer .aplayer-icon-forward {
-  -webkit-transform: rotate(180deg);
-  transform: rotate(180deg);
-}
-.ax-aplayer .aplayer-lrc-content {
-  display: none;
-}
-.ax-aplayer .aplayer-pic {
-  float: left;
-  height: 6.6rem;
-  width: 6.6rem;
-  position: relative;
-  z-index: 2;
-}
-.ax-aplayer .aplayer-pic a {
-  width: 100%;
-  height: 100%;
-  background-size: cover;
-  background-position: 50%;
-  transition: all 300ms ease;
-}
-.ax-aplayer .aplayer-pic:hover .aplayer-button {
-  opacity: 1;
-}
-.ax-aplayer .aplayer-pic .aplayer-button {
-  border-radius: 50%;
-  opacity: 0.8;
-  text-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.2);
-  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.2);
-  background: rgba(0, 0, 0, 0.2);
-  transition: all 100ms ease;
-  cursor: pointer;
-  position: absolute;
-}
-.ax-aplayer .aplayer-pic .aplayer-button path {
-  fill: #fff;
-}
-.ax-aplayer .aplayer-pic .aplayer-hide {
-  display: none;
-}
-.ax-aplayer .aplayer-pic .aplayer-play {
-  width: 2.6rem;
-  height: 2.6rem;
-  border: 0.2rem solid #fff;
-  margin: 0 -1.5rem -1.5rem 0;
-  bottom: 50%;
-  right: 50%;
-}
-.ax-aplayer .aplayer-pic .aplayer-play svg {
-  height: 2rem;
-  width: 2rem;
-  position: absolute;
-  top: 0.3rem;
-  left: 0.4rem;
-}
-.ax-aplayer .aplayer-pic .aplayer-pause {
-  width: 1.6rem;
-  height: 1.6rem;
-  border: 0.2rem solid #fff;
-  bottom: 0.4rem;
-  right: 0.4rem;
-}
-.ax-aplayer .aplayer-pic .aplayer-pause svg {
-  height: 1.2rem;
-  width: 1.2rem;
-  position: absolute;
-  top: 0.2rem;
-  left: 0.2rem;
-}
-.ax-aplayer .aplayer-info {
-  padding: 0.8rem;
-  height: 6.6rem;
-  box-sizing: border-box;
-  display: block;
-  flex: auto;
-  position: relative;
-}
-.ax-aplayer .aplayer-info .aplayer-music {
-  width: 100%;
-  box-sizing: border-box;
-  display: flex;
-  flex-wrap: nowrap;
-  zoom: 1;
-}
-.ax-aplayer .aplayer-info .aplayer-text {
-  display: block;
-  line-height: 2.2rem;
-  height: 2.2rem;
-  overflow: hidden;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  flex: auto;
-  margin: 0 0 0.8rem 0.5rem;
-  -webkit-user-select: text;
-  -moz-user-select: text;
-  -ms-user-select: text;
-  user-select: text;
-  cursor: default;
-}
-.ax-aplayer .aplayer-info .aplayer-music .aplayer-title {
-  font-size: 1.4rem;
-  font-weight: bold;
-}
-.ax-aplayer .aplayer-info .aplayer-music .aplayer-author {
-  color: #b3b3b3;
-}
-.ax-aplayer .aplayer-info .aplayer-music .ax-aplayer.author {
-  font-size: 1.2rem;
-  color: #b3b3b3;
-}
-.ax-aplayer .aplayer-info .aplayer-controller {
-  position: relative;
-  display: flex;
-}
-.ax-aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap {
-  margin: 0 0 0 0.5rem;
-  padding-top: 0.8rem;
-  cursor: pointer !important;
-  flex: 1;
-}
-.ax-aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap:hover .aplayer-bar .aplayer-played .aplayer-thumb {
-  -webkit-transform: scale(1);
-  transform: scale(1);
-}
-.ax-aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar {
-  height: 0.4rem;
-  width: 100%;
-  border-radius: 0.4rem;
-  background: #f0f0f0;
-  position: relative;
-}
-.ax-aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-loaded {
-  height: 0.4rem;
-  background: #ccc;
-  border-radius: 0.4rem;
-  transition: all 100ms linear;
-  position: absolute;
-  left: 0;
-  top: 0;
-  bottom: 0;
-}
-.ax-aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played {
-  height: 0.4rem;
-  border-radius: 0.4rem;
-  position: absolute;
-  left: 0;
-  top: 0;
-  bottom: 0;
-}
-.ax-aplayer .aplayer-info .aplayer-controller .aplayer-bar-wrap .aplayer-bar .aplayer-played .aplayer-thumb {
-  height: 1rem;
-  width: 1rem;
-  border-radius: 50%;
-  cursor: pointer;
-  margin-top: -0.4rem;
-  margin-right: -1rem;
-  transition: all 100ms linear;
-  -webkit-transform: scale(0);
-  transform: scale(0);
-  position: absolute;
-  top: 0;
-  right: 0.5rem;
-}
-.ax-aplayer .aplayer-time {
-  color: #666666;
-  font-size: 1.2rem;
-  height: 1.8rem;
-  padding-left: 0.8rem;
-  position: relative;
-}
-.ax-aplayer .aplayer-time .aplayer-time-inner {
-  vertical-align: middle;
-}
-.ax-aplayer .aplayer-time .aplayer-icon {
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-.ax-aplayer .aplayer-time .aplayer-icon svg {
-  fill: #666666;
-}
-.ax-aplayer .aplayer-time .aplayer-icon.aplayer-icon-loop {
-  margin-right: 0.2rem;
-}
-.ax-aplayer .aplayer-time .aplayer-icon:hover svg {
-  fill: #198cff;
-}
-.ax-aplayer .aplayer-time .aplayer-icon.aplayer-icon-menu,
-.ax-aplayer .aplayer-time.aplayer-time-narrow .aplayer-icon-menu,
-.ax-aplayer .aplayer-time.aplayer-time-narrow .aplayer-icon-mode {
-  display: none;
-}
-.ax-aplayer .aplayer-volume-wrap {
-  display: inline-block;
-  margin-left: 0.3rem;
-  cursor: pointer !important;
-  position: relative;
-}
-.ax-aplayer .aplayer-volume-wrap:hover .aplayer-volume-bar-wrap {
-  height: 4rem;
-}
-.ax-aplayer .aplayer-volume-wrap .aplayer-volume-bar-wrap {
-  width: 2.5rem;
-  height: 0;
-  overflow: hidden;
-  transition: all 200ms ease-in-out;
-  position: absolute;
-  bottom: 1.5rem;
-  right: -0.3rem;
-  z-index: 99;
-}
-.ax-aplayer .aplayer-volume-wrap .aplayer-volume-bar-wrap.aplayer-volume-bar-wrap-active {
-  height: 4rem;
-}
-.ax-aplayer .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar {
-  width: 0.5rem;
-  height: 3.5rem;
-  background: #aaa;
-  border-radius: 2.5rem;
-  overflow: hidden;
-  position: absolute;
-  bottom: 0;
-  right: 1rem;
-}
-.ax-aplayer .aplayer-volume-wrap .aplayer-volume-bar-wrap .aplayer-volume-bar .aplayer-volume {
-  width: 0.5rem;
-  transition: all 100ms ease;
-  position: absolute;
-  bottom: 0;
-  right: 0;
-}
-.ax-aplayer .aplayer-info .aplayer-loading-icon {
-  display: none;
-}
-.ax-aplayer .aplayer-info .aplayer-loading-icon svg {
-  position: absolute;
-  -webkit-animation: rotate 1s linear infinite;
-  animation: rotate 1s linear infinite;
-}
-.ax-aplayer .aplayer-lrc {
-  height: 3rem;
-  text-align: center;
-  overflow: hidden;
-  margin: -1rem 0 0.7rem;
-  display: none;
-  position: relative;
-}
-.ax-aplayer .aplayer-lrc:before {
-  top: 0;
-  height: 10%;
-  background: linear-gradient(180deg, #fff 0, hsla(0, 0%, 100%, 0));
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff", endColorstr="#00ffffff", GradientType=0);
-}
-.ax-aplayer .aplayer-lrc:after,
-.ax-aplayer .aplayer-lrc:before {
-  content: '';
-  display: block;
-  overflow: hidden;
-  width: 100%;
-  position: absolute;
-  z-index: 1;
-}
-.ax-aplayer .aplayer-lrc:after {
-  bottom: 0;
-  height: 33%;
-  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0.8));
-  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ccffffff", GradientType=0);
-}
-.ax-aplayer .aplayer-lrc p {
-  font-size: 1.2rem;
-  color: #666;
-  line-height: 1.6rem !important;
-  height: 1.6rem !important;
-  padding: 0 !important;
-  margin: 0 !important;
-  transition: all 0.5s ease-out;
-  opacity: 0.4;
-  overflow: hidden;
-}
-.ax-aplayer .aplayer-lrc p.aplayer-lrc-current {
-  opacity: 1;
-  overflow: visible;
-  height: auto !important;
-  min-height: 1.6rem;
-}
-.ax-aplayer .aplayer-lrc.aplayer-lrc-hide {
-  display: none;
-}
-.ax-aplayer .aplayer-lrc .aplayer-lrc-contents {
-  width: 100%;
-  transition: all 0.5s ease-out;
-  -webkit-user-select: text;
-  -moz-user-select: text;
-  -ms-user-select: text;
-  user-select: text;
-  cursor: default;
-}
-.ax-aplayer .aplayer-list {
-  background-color: #fff;
-  transition: all 0.5s ease;
-  will-change: height;
-  display: none;
-  overflow: hidden;
-}
-.ax-aplayer .aplayer-list.aplayer-list-hide {
-  max-height: 0 !important;
-}
-.ax-aplayer .aplayer-list ol {
-  list-style-type: none;
-  margin: 0;
-  padding: 0;
-  overflow-y: auto;
-}
-.ax-aplayer .aplayer-list ol::-webkit-scrollbar {
-  width: 0.5rem;
-}
-.ax-aplayer .aplayer-list ol::-webkit-scrollbar-thumb {
-  border-radius: 0.3rem;
-  background-color: #eee;
-}
-.ax-aplayer .aplayer-list ol::-webkit-scrollbar-thumb:hover {
-  background-color: #ccc;
-}
-.ax-aplayer .aplayer-list ol::-webkit-scrollbar-corner {
-  background-color: #eee;
-}
-.ax-aplayer .aplayer-list ol li {
-  font-size: 1.4rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  border-top: 1px solid #ebebeb;
-  cursor: pointer;
-  transition: all 100ms linear;
-  overflow: hidden;
-  padding: 0 1.4rem;
-  margin: 0;
-  justify-content: flex-start;
-  align-items: center;
-  position: relative;
-}
-.ax-aplayer .aplayer-list ol li:first-child {
-  border-top: none;
-}
-.ax-aplayer .aplayer-list ol li:hover {
-  background-color: #f5f5f5;
-}
-.ax-aplayer .aplayer-list ol li.aplayer-list-light {
-  background-color: #f0f7ff;
-}
-.ax-aplayer .aplayer-list ol li.aplayer-list-light .aplayer-list-title {
-  color: #198cff;
-}
-.ax-aplayer .aplayer-list ol li.aplayer-list-light .aplayer-list-cur {
-  display: inline-block;
-}
-.ax-aplayer .aplayer-list ol li .aplayer-list-cur {
-  display: none;
-  width: 0.6rem;
-  height: 0.6rem;
-  border-radius: 100%;
-  cursor: pointer;
-  position: absolute;
-  left: 0.5rem;
-  top: calc(50% - 0.2rem);
-}
-.ax-aplayer .aplayer-list ol li .aplayer-list-index {
-  color: #b3b3b3;
-  margin-right: 1.4rem;
-  cursor: pointer;
-}
-.ax-aplayer .aplayer-list ol li .aplayer-list-author {
-  color: #b3b3b3;
-  float: right;
-  cursor: pointer;
-}
-.ax-aplayer .aplayer-notice {
-  font-size: 1.2rem;
-  color: #666666;
-  -webkit-transform: translate(-50%, -50%);
-  transform: translate(-50%, -50%);
-  border-radius: 0.4rem;
-  padding: 0.5rem 1rem;
-  transition: all 100ms linear;
-  overflow: hidden;
-  pointer-events: none;
-  background-color: #f0f0f0;
-  opacity: 0;
-  position: absolute;
-  top: 50%;
-  left: 50%;
-}
-.ax-aplayer .aplayer-miniswitcher {
-  display: none;
-  height: 100%;
-  width: 1.8rem;
-  background: #f0f0f0;
-  border-radius: 0 0.3rem 0.3rem 0;
-  position: absolute;
-  top: 0;
-  right: -1.8rem;
-  bottom: 0;
-}
-.ax-aplayer .aplayer-miniswitcher .aplayer-icon {
-  height: 100%;
-  width: 100%;
-  -webkit-transform: rotateY(180deg);
-  transform: rotateY(180deg);
-  transition: all 100ms linear;
-}
-.ax-aplayer .aplayer-miniswitcher .aplayer-icon svg {
-  fill: #666666;
-}
-.ax-aplayer .aplayer-miniswitcher .aplayer-icon:hover svg {
-  fill: #198cff;
-}
-@-webkit-keyframes aplayer-roll {
-  0% {
-    left: 0;
-  }
-  to {
-    left: -100%;
-  }
-}
-@keyframes aplayer-roll {
-  0% {
-    left: 0;
-  }
-  to {
-    left: -100%;
-  }
-}
-@-webkit-keyframes rotate {
-  0% {
-    -webkit-transform: rotate(0);
-    transform: rotate(0);
-  }
-  to {
-    -webkit-transform: rotate(1turn);
-    transform: rotate(1turn);
-  }
-}
-@keyframes rotate {
-  0% {
-    -webkit-transform: rotate(0);
-    transform: rotate(0);
-  }
-  to {
-    -webkit-transform: rotate(1turn);
-    transform: rotate(1turn);
-  }
-}
-/*plugins swiper*/
-/*閫氱敤鎸夐挳璁惧畾*/
-*[class*="ax-swiper"] .ax-prev,
-*[class*="ax-swiper"] .ax-next {
-  font-family: 'ax-iconfont';
-  font-size: 28px;
-  color: rgba(25, 140, 255, 0.8);
-  width: 54px;
-  height: 54px;
-  box-sizing: border-box;
-  line-height: 54px;
-  text-align: center;
-  margin-top: -27px;
-  cursor: pointer;
-  transition: color 100ms linear, background-color 100ms linear;
-  display: flex;
-  align-items: center;
-  justify-content: center;
-  position: absolute;
-  top: 50%;
-  z-index: 10;
-}
-*[class*="ax-swiper"] .ax-prev {
-  left: 0;
-}
-*[class*="ax-swiper"] .ax-prev:before {
-  content: 'left';
-}
-*[class*="ax-swiper"] .ax-next {
-  right: 0;
-  left: auto;
-}
-*[class*="ax-swiper"] .ax-next:before {
-  content: 'right';
-}
-*[class*="ax-swiper"] .ax-sm.ax-prev,
-*[class*="ax-swiper"] .ax-sm.ax-next {
-  font-size: 24px;
-  width: 28px;
-  height: 28px;
-  line-height: 28px;
-  margin-top: -14px;
-}
-*[class*="ax-swiper"] .ax-sm.ax-square.ax-next,
-*[class*="ax-swiper"] .ax-sm.ax-square.ax-prev {
-  font-size: 14px;
-  width: 28px;
-  height: 28px;
-  line-height: 28px;
-}
-*[class*="ax-swiper"] .ax-sm.ax-round.ax-next,
-*[class*="ax-swiper"] .ax-sm.ax-round.ax-prev {
-  font-size: 14px;
-  width: 28px;
-  height: 28px;
-  line-height: 28px;
-}
-*[class*="ax-swiper"] .ax-round.ax-prev,
-*[class*="ax-swiper"] .ax-square.ax-prev,
-*[class*="ax-swiper"] .ax-round.ax-next,
-*[class*="ax-swiper"] .ax-square.ax-next {
-  border: 2px solid rgba(25, 140, 255, 0.8);
-  font-size: 18px;
-  height: 50px;
-  width: 50px;
-  line-height: 50px;
-}
-*[class*="ax-swiper"] .ax-round {
-  border-radius: 100%;
-}
-*[class*="ax-swiper"] .ax-round.ax-prev {
-  left: 14px;
-}
-*[class*="ax-swiper"] .ax-round.ax-next {
-  right: 14px;
-}
-*[class*="ax-swiper"] .ax-fill {
-  color: rgba(255, 255, 255, 0.5);
-  background-color: rgba(25, 140, 255, 0.8);
-  border: none;
-}
-*[class*="ax-swiper"] .ax-fill.ax-next,
-*[class*="ax-swiper"] .ax-fill.ax-prev {
-  border: none;
-}
-*[class*="ax-swiper"] .ax-disabled.ax-prev,
-*[class*="ax-swiper"] .ax-disabled.ax-next {
-  color: rgba(0, 0, 0, 0.4);
-  opacity: 0.35;
-  cursor: auto;
-  pointer-events: none;
-}
-*[class*="ax-swiper"] .ax-disabled.ax-prev.ax-square,
-*[class*="ax-swiper"] .ax-disabled.ax-next.ax-square,
-*[class*="ax-swiper"] .ax-disabled.ax-prev.ax-round,
-*[class*="ax-swiper"] .ax-disabled.ax-next.ax-round {
-  border-color: rgba(0, 0, 0, 0.4);
-}
-*[class*="ax-swiper"] .ax-disabled.ax-fill {
-  color: rgba(255, 255, 255, 0.5);
-  background-color: rgba(0, 0, 0, 0.5);
-}
-*[class*="ax-swiper"] .ax-disabled.ax-fill.ax-prev,
-*[class*="ax-swiper"] .ax-disabled.ax-fill.ax-next {
-  color: rgba(255, 255, 255, 0.5);
-}
-*[class*="ax-swiper"] .ax-light {
-  color: rgba(255, 255, 255, 0.8);
-  border-color: rgba(255, 255, 255, 0.8);
-}
-*[class*="ax-swiper"] .ax-light.ax-prev,
-*[class*="ax-swiper"] .ax-light.ax-next {
-  color: rgba(255, 255, 255, 0.8);
-  border-color: rgba(255, 255, 255, 0.8);
-}
-*[class*="ax-swiper"] .ax-light.ax-fill {
-  color: #333333;
-  background-color: rgba(255, 255, 255, 0.8);
-}
-*[class*="ax-swiper"] .ax-light.ax-fill.ax-prev,
-*[class*="ax-swiper"] .ax-light.ax-fill.ax-next,
-*[class*="ax-swiper"] .ax-light.ax-fill.ax-prev.ax-disabled,
-*[class*="ax-swiper"] .ax-light.ax-fill.ax-next.ax-disabled {
-  color: #333333;
-}
-*[class*="ax-swiper"] .ax-light.ax-disabled {
-  color: rgba(255, 255, 255, 0.4);
-  border-color: rgba(255, 255, 255, 0.4);
-}
-*[class*="ax-swiper"] .ax-light.ax-disabled.ax-prev,
-*[class*="ax-swiper"] .ax-light.ax-disabled.ax-next {
-  color: rgba(255, 255, 255, 0.4);
-  border-color: rgba(255, 255, 255, 0.4);
-}
-*[class*="ax-swiper"] .ax-grey {
-  color: rgba(0, 0, 0, 0.4);
-  border-color: rgba(0, 0, 0, 0.4);
-}
-*[class*="ax-swiper"] .ax-grey.ax-prev,
-*[class*="ax-swiper"] .ax-grey.ax-next {
-  color: rgba(0, 0, 0, 0.4);
-  border-color: rgba(0, 0, 0, 0.4);
-}
-*[class*="ax-swiper"] .ax-grey.ax-fill {
-  color: #333333;
-  background-color: rgba(0, 0, 0, 0.1);
-}
-*[class*="ax-swiper"] .ax-grey.ax-fill.ax-prev.ax-disabled,
-*[class*="ax-swiper"] .ax-grey.ax-fill.ax-next.ax-disabled {
-  color: rgba(0, 0, 0, 0.8);
-}
-*[class*="ax-swiper"] .ax-grey.ax-disabled {
-  color: rgba(0, 0, 0, 0.4);
-  border-color: rgba(0, 0, 0, 0.4);
-}
-*[class*="ax-swiper"] .ax-dark.ax-fill {
-  color: #fff;
-  background-color: rgba(25, 140, 255, 0.8);
-}
-*[class*="ax-swiper"] .ax-dark.ax-disabled {
-  color: rgba(25, 140, 255, 0.8);
-  border-color: rgba(25, 140, 255, 0.8);
-}
-*[class*="ax-swiper"] .ax-dark.ax-disabled.ax-prev,
-*[class*="ax-swiper"] .ax-dark.ax-disabled.ax-next {
-  color: rgba(25, 140, 255, 0.8);
-  border-color: rgba(25, 140, 255, 0.8);
-}
-/*閫氱敤鍒嗛〉璁惧畾*/
-*[class*="ax-swiper"] .ax-pages {
-  line-height: 1rem;
-  position: absolute;
-  text-align: center;
-  transition: 300ms opacity;
-  transform: translate3d(0, 0, 0);
-  z-index: 10;
-}
-*[class*="ax-swiper"] .ax-pages.ax-pages-hidden {
-  opacity: 0;
-}
-*[class*="ax-swiper"] .ax-pages {
-  text-align: center;
-  transition: 300ms opacity;
-  position: absolute;
-  z-index: 10;
-}
-*[class*="ax-swiper"] .ax-pages .ax-pages-bullet {
-  width: 1rem;
-  height: 1rem;
-  margin: 0 0.4rem;
-  display: inline-block;
-  border-radius: 100%;
-  background: rgba(0, 0, 0, 0.5);
-  opacity: 0.2;
-  transition: all 100ms linear;
-}
-*[class*="ax-swiper"] .ax-pages .ax-pages-bullet-active {
-  opacity: 1;
-  background: #198cff;
-}
-*[class*="ax-swiper"] .ax-pages .ax-pages-bullet:not(.ax-pages-bullet-active):hover {
-  opacity: 0.4;
-}
-*[class*="ax-swiper"] .ax-pages.ax-pages-clickable .ax-pages-bullet {
-  cursor: pointer;
-}
-*[class*="ax-swiper"] .ax-pages .ax-pages-bullet:only-child {
-  display: none !important;
-}
-*[class*="ax-swiper"] .ax-pages.ax-line {
-  line-height: 1.4rem;
-}
-*[class*="ax-swiper"] .ax-pages.ax-line .ax-pages-bullet {
-  width: 1rem;
-  height: 1rem;
-  border: 0.2rem solid rgba(0, 0, 0, 0.5);
-  background: transparent;
-}
-*[class*="ax-swiper"] .ax-pages.ax-line .ax-pages-bullet-active {
-  border-color: #198cff;
-}
-*[class*="ax-swiper"] .ax-pages.ax-light .ax-pages-bullet {
-  background: #fff;
-}
-*[class*="ax-swiper"] .ax-pages.ax-light.ax-line .ax-pages-bullet {
-  border-color: #fff;
-  background: transparent;
-}
-*[class*="ax-swiper"] .ax-pages.ax-grey .ax-pages-bullet {
-  background: rgba(0, 0, 0, 0.6);
-}
-*[class*="ax-swiper"] .ax-pages.ax-grey.ax-line .ax-pages-bullet {
-  border-color: rgba(0, 0, 0, 0.6);
-  background: transparent;
-}
-/*swipe涓�鑸瀹�*/
-.ax-swiper {
-  margin-left: auto;
-  margin-right: auto;
-  position: relative;
-  overflow: hidden;
-  list-style: none;
-  padding: 0;
-  z-index: 2;
-}
-.ax-swiper.ax-vertical > .ax-wrapper {
-  flex-direction: column;
-}
-.ax-swiper .ax-wrapper {
-  position: relative;
-  width: 100%;
-  height: 100%;
-  z-index: 2;
-  display: flex;
-  transition-property: transform;
-  box-sizing: content-box;
-}
-.ax-swiper.ax-android .ax-slide,
-.ax-swiper .ax-wrapper {
-  transform: translate3d(0px, 0, 0);
-}
-.ax-swiper.ax-pointer-events {
-  touch-action: pan-y;
-}
-.ax-swiper.ax-pointer-events.ax-vertical {
-  touch-action: pan-x;
-}
-.ax-swiper .ax-slide {
-  flex-shrink: 0;
-  width: 100%;
-  height: 100%;
-  position: relative;
-  transition-property: transform;
-}
-.ax-swiper .ax-slide-invisible-blank {
-  visibility: hidden;
-}
-.ax-swiper.ax-autoheight,
-.ax-swiper.ax-autoheight .ax-slide {
-  height: auto;
-}
-.ax-swiper.ax-autoheight .ax-wrapper {
-  align-items: flex-start;
-  transition-property: transform, height;
-}
-.ax-swiper.ax-backface-hidden .ax-slide {
-  transform: translateZ(0);
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-}
-.ax-swiper.ax-3d,
-.ax-swiper.ax-3d.ax-css-mode .ax-wrapper {
-  perspective: 1200px;
-}
-.ax-swiper.ax-3d .ax-wrapper,
-.ax-swiper.ax-3d .ax-slide,
-.ax-swiper.ax-3d .ax-slide-shadow,
-.ax-swiper.ax-3d .ax-slide-shadow-left,
-.ax-swiper.ax-3d .ax-slide-shadow-right,
-.ax-swiper.ax-3d .ax-slide-shadow-top,
-.ax-swiper.ax-3d .ax-slide-shadow-bottom,
-.ax-swiper.ax-3d .ax-cube-shadow {
-  transform-style: preserve-3d;
-}
-.ax-swiper.ax-3d .ax-slide-shadow,
-.ax-swiper.ax-3d .ax-slide-shadow-left,
-.ax-swiper.ax-3d .ax-slide-shadow-right,
-.ax-swiper.ax-3d .ax-slide-shadow-top,
-.ax-swiper.ax-3d .ax-slide-shadow-bottom {
-  position: absolute;
-  left: 0;
-  top: 0;
-  width: 100%;
-  height: 100%;
-  pointer-events: none;
-  z-index: 10;
-}
-.ax-swiper.ax-3d .ax-slide-shadow {
-  background: rgba(0, 0, 0, 0.15);
-}
-.ax-swiper.ax-3d .ax-slide-shadow-left {
-  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
-}
-.ax-swiper.ax-3d .ax-slide-shadow-right {
-  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
-}
-.ax-swiper.ax-3d .ax-slide-shadow-top {
-  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
-}
-.ax-swiper.ax-3d .ax-slide-shadow-bottom {
-  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
-}
-.ax-swiper.ax-css-mode > .ax-wrapper {
-  overflow: auto;
-  scrollbar-width: none;
-  -ms-overflow-style: none;
-}
-.ax-swiper.ax-css-mode > .ax-wrapper::-webkit-scrollbar {
-  display: none;
-}
-.ax-swiper.ax-css-mode > .ax-wrapper > .ax-slide {
-  scroll-snap-align: start start;
-}
-.ax-swiper.ax-horizontal.ax-css-mode > .ax-wrapper {
-  scroll-snap-type: x mandatory;
-}
-.ax-swiper.ax-vertical.ax-css-mode > .ax-wrapper {
-  scroll-snap-type: y mandatory;
-}
-.ax-swiper.ax-centered > .ax-wrapper::before {
-  content: '';
-  flex-shrink: 0;
-  order: 9999;
-}
-.ax-swiper.ax-centered.ax-horizontal > .ax-wrapper > .ax-slide:first-child {
-  margin-inline-start: var(--swiper-centered-offset-before);
-}
-.ax-swiper.ax-centered.ax-horizontal > .ax-wrapper::before {
-  height: 100%;
-  min-height: 1px;
-  width: var(--swiper-centered-offset-after);
-}
-.ax-swiper.ax-centered.ax-vertical > .ax-wrapper > .ax-slide:first-child {
-  margin-block-start: var(--swiper-centered-offset-before);
-}
-.ax-swiper.ax-centered.ax-vertical > .ax-wrapper::before {
-  width: 100%;
-  min-width: 1px;
-  height: var(--swiper-centered-offset-after);
-}
-.ax-swiper.ax-centered > .ax-wrapper > .ax-slide {
-  scroll-snap-align: center center;
-}
-.ax-swiper.ax-virtual .ax-slide {
-  -webkit-backface-visibility: hidden;
-  transform: translateZ(0);
-}
-.ax-swiper.ax-virtual.ax-css-mode .ax-wrapper::after {
-  content: '';
-  position: absolute;
-  left: 0;
-  top: 0;
-  pointer-events: none;
-}
-.ax-swiper.ax-virtual.ax-css-mode.ax-horizontal .ax-wrapper::after {
-  height: 1px;
-  width: var(--swiper-virtual-size);
-}
-.ax-swiper.ax-virtual.ax-css-mode.ax-vertical .ax-wrapper::after {
-  width: 1px;
-  height: var(--swiper-virtual-size);
-}
-.ax-swiper.ax-rtl .ax-next {
-  transform: rotateY(180deg);
-  left: 0;
-  right: auto;
-}
-.ax-swiper.ax-rtl .ax-prev {
-  transform: rotateY(180deg);
-  left: auto;
-}
-.ax-swiper.ax-rtl:not(.ax-vertical) .ax-prev {
-  right: 0;
-}
-.ax-swiper .ax-lock {
-  display: none;
-}
-.ax-swiper.ax-rtl .ax-round.ax-prev {
-  right: 14px;
-  left: auto;
-}
-.ax-swiper.ax-rtl .ax-round.ax-next {
-  left: 1.4rem;
-  right: auto;
-}
-.ax-swiper.ax-vertical .ax-prev,
-.ax-swiper.ax-vertical .ax-next {
-  transform: rotate(90deg);
-  left: 50%;
-  margin-top: 0;
-  margin-left: -27px;
-}
-.ax-swiper.ax-vertical .ax-prev {
-  top: 0;
-}
-.ax-swiper.ax-vertical .ax-next {
-  top: auto;
-  right: auto;
-  bottom: 0;
-}
-.ax-swiper.ax-horizontal > .ax-pages.ax-pages-bullets {
-  bottom: 2rem;
-}
-.ax-swiper .ax-pages-fraction,
-.ax-swiper .ax-pages-custom,
-.ax-swiper .ax-horizontal > .ax-pages-bullets,
-.ax-swiper .ax-pages-bullets.ax-pages-horizontal {
-  bottom: 2rem;
-  left: 0;
-  width: 100%;
-}
-.ax-swiper .ax-pages-bullets-dynamic {
-  overflow: hidden;
-  font-size: 0;
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet {
-  transform: scale(0.33);
-  position: relative;
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet-active {
-  transform: scale(1);
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet-active-main {
-  transform: scale(1);
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet-active-prev {
-  transform: scale(0.66);
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet-active-prev-prev {
-  transform: scale(0.33);
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet-active-next {
-  transform: scale(0.66);
-}
-.ax-swiper .ax-pages-bullets-dynamic .ax-pages-bullet-active-next-next {
-  transform: scale(0.33);
-}
-.ax-swiper.ax-vertical > .ax-pages-bullets,
-.ax-swiper .ax-pages-vertical.ax-pages-bullets {
-  right: 2rem;
-  top: 50%;
-  transform: translate3d(0px, -50%, 0);
-}
-.ax-swiper.ax-vertical > .ax-pages-bullets .ax-pages-bullet,
-.ax-swiper .ax-pages-vertical.ax-pages-bullets .ax-pages-bullet {
-  margin: 0.4rem 0;
-  display: block;
-}
-.ax-swiper.ax-vertical > .ax-pages-bullets.ax-pages-bullets-dynamic,
-.ax-swiper .ax-pages-vertical.ax-pages-bullets.ax-pages-bullets-dynamic {
-  top: 50%;
-  transform: translateY(-50%);
-  width: 8px;
-}
-.ax-swiper.ax-vertical > .ax-pages-bullets.ax-pages-bullets-dynamic .ax-pages-bullet,
-.ax-swiper .ax-pages-vertical.ax-pages-bullets.ax-pages-bullets-dynamic .ax-pages-bullet {
-  display: inline-block;
-  transition: 200ms transform, 200ms top;
-}
-.ax-swiper.ax-horizontal > .ax-pages-bullets .ax-pages-bullet,
-.ax-swiper .ax-pages-horizontal.ax-pages-bullets .ax-pages-bullet {
-  margin: 0 0.4rem;
-}
-.ax-swiper.ax-horizontal > .ax-pages-bullets.ax-pages-bullets-dynamic,
-.ax-swiper .ax-pages-horizontal.ax-pages-bullets.ax-pages-bullets-dynamic {
-  left: 50%;
-  transform: translateX(-50%);
-  white-space: nowrap;
-}
-.ax-swiper.ax-horizontal > .ax-pages-bullets.ax-pages-bullets-dynamic .ax-pages-bullet,
-.ax-swiper .ax-pages-horizontal.ax-pages-bullets.ax-pages-bullets-dynamic .ax-pages-bullet {
-  transition: 200ms transform, 200ms left;
-}
-.ax-swiper.ax-horizontal.ax-rtl > .ax-pages-bullets-dynamic .ax-pages-bullet {
-  transition: 200ms transform, 200ms right;
-}
-.ax-swiper .ax-pages-progressbar {
-  background: rgba(0, 0, 0, 0.1);
-  position: absolute;
-}
-.ax-swiper .ax-pages-progressbar .ax-pages-progressbar-fill {
-  background: #198cff;
-  position: absolute;
-  left: 0;
-  top: 0;
-  width: 100%;
-  height: 100%;
-  transform: scale(0);
-  transform-origin: left top;
-}
-.ax-swiper.ax-rtl .ax-pages-progressbar .ax-pages-progressbar-fill {
-  transform-origin: right top;
-}
-.ax-swiper.ax-horizontal > .ax-pages-progressbar,
-.ax-swiper .ax-pages-progressbar.ax-pages-horizontal,
-.ax-swiper.ax-vertical > .ax-pages-progressbar.ax-pages-progressbar-opposite,
-.ax-swiper .ax-pages-progressbar.ax-pages-vertical.ax-pages-progressbar-opposite {
-  width: 100%;
-  height: 4px;
-  left: 0;
-  top: 0;
-}
-.ax-swiper.ax-vertical > .ax-pages-progressbar,
-.ax-swiper .ax-pages-progressbar.ax-pages-vertical,
-.ax-swiper.ax-horizontal > .ax-pages-progressbar.ax-pages-progressbar-opposite,
-.ax-swiper .ax-pages-progressbar.ax-pages-horizontal.ax-pages-progressbar-opposite {
-  width: 4px;
-  height: 100%;
-  left: 0;
-  top: 0;
-}
-.ax-swiper .ax-pages-lock {
-  display: none;
-}
-.ax-swiper .ax-scrollbar {
-  position: relative;
-  -ms-touch-action: none;
-  background-color: rgba(0, 0, 0, 0.04);
-}
-.ax-swiper.ax-horizontal > .ax-scrollbar {
-  position: absolute;
-  left: 0;
-  bottom: 0;
-  z-index: 50;
-  height: 4px;
-  width: 100%;
-}
-.ax-swiper.ax-vertical > .ax-scrollbar {
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 50;
-  width: 4px;
-  height: 100%;
-}
-.ax-swiper .ax-scrollbar-drag {
-  height: 100%;
-  width: 100%;
-  position: relative;
-  background-color: rgba(0, 0, 0, 0.4);
-  left: 0;
-  top: 0;
-}
-.ax-swiper .ax-scrollbar-cursor-drag {
-  cursor: move;
-}
-.ax-swiper .ax-scrollbar-lock {
-  display: none;
-}
-.ax-swiper .ax-zoom {
-  width: 100%;
-  height: 100%;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  text-align: center;
-}
-.ax-swiper .ax-zoom > img,
-.ax-swiper .ax-zoom > svg,
-.ax-swiper .ax-zoom > canvas {
-  max-width: 100%;
-  max-height: 100%;
-  object-fit: contain;
-}
-.ax-swiper .ax-loading {
-  transform: translate(-50%, -50%);
-  position: absolute;
-  left: 50%;
-  top: 50%;
-  z-index: 10;
-}
-.ax-swiper .ax-notification {
-  position: absolute;
-  left: 0;
-  top: 0;
-  pointer-events: none;
-  opacity: 0;
-  z-index: -1000;
-}
-.ax-swiper.ax-free-mode > .ax-wrapper {
-  transition-timing-function: ease-out;
-  margin: 0 auto;
-}
-.ax-swiper.ax-grid > .ax-wrapper {
-  flex-wrap: wrap;
-}
-.ax-swiper.ax-grid-column > .ax-wrapper {
-  flex-wrap: wrap;
-  flex-direction: column;
-}
-.ax-swiper.ax-fade.ax-free-mode .ax-slide {
-  transition-timing-function: ease-out;
-}
-.ax-swiper.ax-fade .ax-slide {
-  pointer-events: none;
-  transition-property: opacity;
-}
-.ax-swiper.ax-fade .ax-slide .ax-slide {
-  pointer-events: none;
-}
-.ax-swiper.ax-fade .ax-slide-active,
-.ax-swiper.ax-fade .ax-slide-active .ax-slide-active {
-  pointer-events: auto;
-}
-.ax-swiper.ax-cube {
-  overflow: visible;
-}
-.ax-swiper.ax-cube .ax-slide {
-  pointer-events: none;
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-  z-index: 1;
-  visibility: hidden;
-  transform-origin: 0 0;
-  width: 100%;
-  height: 100%;
-}
-.ax-swiper.ax-cube .ax-slide .ax-slide {
-  pointer-events: none;
-}
-.ax-swiper.ax-cube.ax-rtl .ax-slide {
-  transform-origin: 100% 0;
-}
-.ax-swiper.ax-cube .ax-slide-active,
-.ax-swiper.ax-cube .ax-slide-active .ax-slide-active {
-  pointer-events: auto;
-}
-.ax-swiper.ax-cube .ax-slide-active,
-.ax-swiper.ax-cube .ax-slide-next,
-.ax-swiper.ax-cube .ax-slide-prev,
-.ax-swiper.ax-cube .ax-slide-next + .ax-slide {
-  pointer-events: auto;
-  visibility: visible;
-}
-.ax-swiper.ax-cube .ax-slide-shadow-top,
-.ax-swiper.ax-cube .ax-slide-shadow-bottom,
-.ax-swiper.ax-cube .ax-slide-shadow-left,
-.ax-swiper.ax-cube .ax-slide-shadow-right {
-  z-index: 0;
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-}
-.ax-swiper.ax-cube .ax-cube-shadow {
-  position: absolute;
-  left: 0;
-  bottom: 0px;
-  width: 100%;
-  height: 100%;
-  opacity: 0.6;
-  z-index: 0;
-}
-.ax-swiper.ax-cube .ax-cube-shadow:before {
-  content: '';
-  background: #000;
-  position: absolute;
-  left: 0;
-  top: 0;
-  bottom: 0;
-  right: 0;
-  filter: blur(50px);
-}
-.ax-swiper.ax-flip {
-  overflow: visible;
-}
-.ax-swiper.ax-flip .ax-slide {
-  pointer-events: none;
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-  z-index: 1;
-}
-.ax-swiper.ax-flip .ax-slide .ax-slide {
-  pointer-events: none;
-}
-.ax-swiper.ax-flip .ax-slide-active,
-.ax-swiper.ax-flip .ax-slide-active .ax-slide-active {
-  pointer-events: auto;
-}
-.ax-swiper.ax-flip .ax-slide-shadow-top,
-.ax-swiper.ax-flip .ax-slide-shadow-bottom,
-.ax-swiper.ax-flip .ax-slide-shadow-left,
-.ax-swiper.ax-flip .ax-slide-shadow-right {
-  z-index: 0;
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-}
-.ax-swiper.ax-creative .ax-slide {
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-  overflow: hidden;
-  transition-property: transform, opacity, height;
-}
-.ax-swiper.ax-cards {
-  overflow: visible;
-}
-.ax-swiper.ax-cards .ax-slide {
-  transform-origin: center bottom;
-  -webkit-backface-visibility: hidden;
-  backface-visibility: hidden;
-  overflow: hidden;
-}
-/*澶栭儴鐨勫墠鍚庢寜閽拰鍒嗛〉*/
-.ax-swiper-outer {
-  position: relative;
-}
-.ax-swiper-outer .ax-prev {
-  left: -50px;
-}
-.ax-swiper-outer .ax-next {
-  right: -50px;
-  left: auto;
-}
-.ax-swiper-outer .ax-prev.ax-sm {
-  left: -28px;
-}
-.ax-swiper-outer .ax-next.ax-sm {
-  right: -28px;
-}
-.ax-swiper-outer .ax-prev.ax-round {
-  left: -64px;
-}
-.ax-swiper-outer .ax-next.ax-round {
-  right: -64px;
-  left: auto;
-}
-.ax-swiper-outer .ax-pages {
-  width: 100%;
-  position: inherit;
-  padding: 1.4rem 0;
-  text-align: center;
-}
-.ax-swiper-outer .ax-pages.ax-line {
-  line-height: 1rem;
-}
-.ax-swiper-outer .ax-pages.ax-line .ax-pages-bullet {
-  margin: 0 0.2rem;
-  box-sizing: border-box;
-}
-.ax-swiper-outer.ax-inline {
-  line-height: 2.8rem;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  padding: 0 1.4rem;
-}
-.ax-swiper-outer.ax-inline .ax-pages {
-  padding: 0.9rem 0;
-  display: inline-block;
-  width: auto;
-}
-.ax-swiper-outer.ax-inline .ax-pages .ax-pages-bullet {
-  margin: 0 0.2rem;
-  width: 0.8rem;
-  height: 0.8rem;
-  box-sizing: border-box;
-}
-.ax-swiper-outer.ax-inline .ax-prev,
-.ax-swiper-outer.ax-inline .ax-next {
-  font-size: 1.2rem;
-  width: 1.4rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  position: inherit;
-  left: auto;
-  right: auto;
-  top: auto;
-  margin-top: 0;
-}
-/*plugins lightbox*/
-.ax-lightbox {
-  height: 100vh;
-  width: 100%;
-  display: flex;
-  flex-wrap: nowrap;
-  flex-direction: column;
-  box-sizing: border-box;
-  opacity: 0;
-  transition: opacity 300ms linear;
-  visibility: hidden;
-  position: fixed;
-  left: 0;
-  top: 0;
-  z-index: 810;
-}
-.ax-lightbox .ax-overlay {
-  width: 100%;
-  height: 100%;
-  background-color: rgba(0, 0, 0, 0.8);
-  opacity: 0;
-  transition: all 300ms linear;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 4;
-}
-.ax-lightbox .ax-media {
-  height: 0;
-  transition: all 300ms ease;
-  transform: scale(0.2);
-  opacity: 0;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  flex: auto;
-  position: relative;
-}
-.ax-lightbox.ax-show {
-  opacity: 1;
-}
-.ax-lightbox.ax-show .ax-overlay {
-  opacity: 1;
-}
-.ax-lightbox.ax-show .ax-media {
-  transform: scale(1);
-  opacity: 1;
-}
-.ax-lightbox .ax-tools {
-  color: rgba(255, 255, 255, 0.8);
-  line-height: 3.8rem;
-  width: 100%;
-  box-sizing: border-box;
-  display: flex;
-  flex-wrap: nowrap;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 9;
-}
-.ax-lightbox .ax-tools .ax-pages {
-  padding: 0 1.4rem;
-  flex: auto;
-}
-.ax-lightbox .ax-tools .ax-operate i,
-.ax-lightbox .ax-tools .ax-operate a {
-  color: rgba(255, 255, 255, 0.8);
-  cursor: pointer;
-  width: 3.8rem;
-  height: 3.8rem;
-  text-align: center;
-  transition: all 100ms linear;
-}
-.ax-lightbox .ax-tools .ax-operate i:hover,
-.ax-lightbox .ax-tools .ax-operate a:hover {
-  color: #fff;
-}
-.ax-lightbox .ax-tools .ax-operate i.ax-disabled,
-.ax-lightbox .ax-tools .ax-operate a.ax-disabled {
-  opacity: 0.5;
-  cursor: not-allowed;
-}
-.ax-lightbox .ax-stage {
-  width: 100%;
-  flex: auto;
-  display: flex;
-  flex-wrap: nowrap;
-  box-sizing: border-box;
-  flex-direction: row;
-  overflow: hidden;
-  position: relative;
-  z-index: 8;
-  /*.ax-zoom img{
-      cursor: zoom-out;
-    } */
-}
-.ax-lightbox .ax-stage .ax-swiper {
-  margin: auto;
-  width: 100%;
-  height: 100%;
-}
-.ax-lightbox .ax-stage .ax-slide {
-  text-align: center;
-  width: auto;
-  display: flex;
-  flex-wrap: nowrap;
-  box-sizing: border-box;
-  flex-direction: column;
-  height: 100%;
-}
-.ax-lightbox .ax-stage .ax-caption {
-  color: #fff;
-  text-align: center;
-  width: 100%;
-  padding: 0 1.4rem 1.4rem 1.4rem;
-  box-sizing: border-box;
-  line-height: 1.8rem;
-}
-.ax-lightbox .ax-stage .ax-slide img {
-  max-width: calc(100% - 3.8rem*2);
-  max-height: calc(100% - 3.8rem*2);
-  object-fit: contain;
-  cursor: -webkit-grab;
-  cursor: grab;
-}
-.ax-lightbox .ax-stage .ax-grabbing .ax-slide-active img {
-  cursor: -webkit-grabbing;
-  cursor: grabbing;
-}
-.ax-lightbox .ax-stage .ax-slide iframe {
-  background-color: #fff;
-  max-width: calc(100% - 3.8rem*2);
-  max-height: calc(100% - 3.8rem*2);
-}
-.ax-lightbox .ax-stage .ax-slide .ax-text {
-  text-align: left;
-  background-color: #fff;
-  border-radius: 0.3rem;
-  width: 60rem;
-  max-width: calc(100% - 3.8rem*2);
-  max-height: calc(100% - 3.8rem*2);
-  display: inline-block;
-  position: relative;
-}
-.ax-lightbox .ax-stage .ax-slide video {
-  max-width: calc(100% - 3.8rem*2);
-  max-height: calc(100% - 3.8rem*2);
-  display: inline-block;
-}
-.ax-lightbox .ax-thumb {
-  padding: 4px;
-  box-sizing: border-box;
-  position: relative;
-  z-index: 8;
-}
-.ax-lightbox .ax-thumb .ax-slide {
-  width: 100px;
-  height: 70px;
-  overflow: hidden;
-  box-sizing: border-box;
-  cursor: pointer;
-  position: relative;
-}
-.ax-lightbox .ax-thumb .ax-slide img {
-  width: 100%;
-  height: 100%;
-  object-fit: cover;
-}
-.ax-lightbox .ax-thumb .ax-slide:before {
-  content: '';
-  box-sizing: border-box;
-  border: 0.4rem solid transparent;
-  transition: all 100ms linear;
-  width: 100%;
-  height: 100%;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-lightbox .ax-thumb .ax-slide.ax-slide-thumb-active:before {
-  border-color: #198cff;
-}
-.ax-lightbox.ax-thumb-hide .ax-thumb {
-  position: fixed;
-  left: -10000rem;
-}
-/*plugins range*/
-.ax-range {
-  -webkit-touch-callout: none;
-  -webkit-user-select: none;
-  -khtml-user-select: none;
-  -moz-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-  font-size: 1.2rem;
-  height: 3.8rem;
-  position: relative;
-  display: block;
-}
-.ax-range-line {
-  background-color: #f0f0f0;
-  transition: background-color 100ms ease-out;
-  border-radius: 0.3rem;
-  height: 0.3rem;
-  overflow: hidden;
-  outline: none !important;
-  position: relative;
-  top: 1.8rem;
-  display: block;
-}
-.ax-range:not(.ax-disabled):hover .ax-range-line {
-  background-color: #d7e7f5;
-}
-.ax-range-bar {
-  width: 0;
-  height: 0.3rem;
-  transition: background-color 100ms ease-out;
-  background-color: #198cff;
-  position: absolute;
-  left: 0;
-  top: 1.8rem;
-  display: block;
-}
-.ax-range-bar-single {
-  border-radius: 0.3rem 0 0 0.3rem;
-}
-.ax-range-shadow {
-  width: 0;
-  height: 0.2rem;
-  background-color: #dedede;
-  position: absolute;
-  left: 0;
-  bottom: auto;
-  top: 2.4rem;
-  display: none;
-}
-.ax-range-handle {
-  width: 1.6rem;
-  height: 1.6rem;
-  border: 0.2rem solid #198cff;
-  background-color: #fff;
-  border-radius: 1.6rem;
-  box-shadow: none;
-  transition: box-shadow 100ms linear, background-color 100ms linear, border-color 100ms linear;
-  cursor: pointer;
-  box-sizing: border-box;
-  position: absolute;
-  top: 1.1rem;
-  z-index: 1;
-  display: block;
-}
-.ax-range-handle.ax-hover,
-.ax-range-handle:hover {
-  background-color: #fff;
-  box-shadow: 0 0 0 0.3rem rgba(25, 140, 255, 0.2);
-}
-.ax-range-handle.ax-last {
-  z-index: 2;
-}
-.ax-range-min,
-.ax-range-max {
-  color: #666666;
-  font-size: 1.2rem;
-  line-height: 1.2rem;
-  padding: 0.3rem 0.5rem;
-  background-color: #f0f0f0;
-  border-radius: 0.3rem;
-  cursor: default;
-  position: absolute;
-  top: -1.3rem;
-  display: block;
-}
-.ax-range-min {
-  left: 0;
-}
-.ax-range-max {
-  right: 0;
-}
-.ax-range-from,
-.ax-range-to,
-.ax-range-single {
-  font-size: 1.2rem;
-  color: #fff;
-  line-height: 1.2rem;
-  text-shadow: none;
-  padding: 0.3rem 0.5rem;
-  background-color: #198cff;
-  border-radius: 0.3rem;
-  cursor: default;
-  white-space: nowrap;
-  position: absolute;
-  left: 0;
-  top: -1.3rem;
-  display: block;
-}
-.ax-range-from:before,
-.ax-range-to:before,
-.ax-range-single:before {
-  content: "";
-  display: block;
-  width: 0;
-  height: 0;
-  margin-left: -0.3rem;
-  overflow: hidden;
-  border: 0.3rem solid transparent;
-  border-top-color: #198cff;
-  position: absolute;
-  bottom: -0.6rem;
-  left: 50%;
-}
-.ax-range-grid {
-  width: 100%;
-  height: 2.2rem;
-  bottom: auto;
-  top: 2.1rem;
-  position: absolute;
-  bottom: 0;
-  left: 0;
-  display: none;
-}
-.ax-range.ax-with-grid .ax-range-grid {
-  display: block;
-}
-.ax-range-grid-pol {
-  background-color: #dedede;
-  width: 1px;
-  height: 0.8rem;
-  position: absolute;
-  top: 0;
-  left: 0;
-}
-.ax-range-grid-pol.ax-small {
-  height: 0.4rem;
-}
-.ax-range-grid-text {
-  color: #b3b3b3;
-  font-size: 1.2rem;
-  line-height: 0.9rem;
-  white-space: nowrap;
-  text-align: center;
-  padding: 0 0.3rem;
-  position: absolute;
-  bottom: 0;
-  left: 0;
-}
-.ax-range .ax-disabled-mask {
-  width: 102%;
-  height: 100%;
-  cursor: default;
-  background: rgba(0, 0, 0, 0);
-  position: absolute;
-  top: 0;
-  left: -1%;
-  z-index: 2;
-  display: block;
-}
-.ax-range.ax-disabled {
-  opacity: 0.4;
-}
-.ax-range-input {
-  display: none;
-}
-/*plugins infinite scroll*/
-.ax-infinite-status {
-  text-align: center;
-}
-.ax-infinite-status .infinite-scroll-last,
-.ax-infinite-status .infinite-scroll-error {
-  color: #b3b3b3;
-}
-.ax-infinite-status > * {
-  display: none;
-}
-/*鎻掍欢锛氫笅鎷夎彍鍗曞崟閫夊拰澶氶��*/
-.ax-select {
-  position: relative;
-}
-.ax-select.ax-disabled .ax-select-inner,
-.ax-select.ax-disabled .ax-select-input {
-  cursor: not-allowed;
-  user-select: none;
-}
-.ax-select [hidden] {
-  display: none !important;
-}
-.ax-select .ax-close {
-  color: rgba(0, 0, 0, 0.2);
-  margin-left: 0.4rem;
-  margin-right: -0.4rem;
-  padding: 0 0.4rem;
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-.ax-select .ax-close:before {
-  content: "\00D7";
-}
-.ax-select .ax-close:hover,
-.ax-select .ax-close:focus {
-  color: rgba(0, 0, 0, 0.8);
-}
-.ax-select[data-type*='multiple'] .ax-select-inner,
-.ax-select[data-type*='text'] .ax-select-inner {
-  cursor: text;
-}
-.ax-select .ax-select-inner {
-  background-color: #fff;
-  border: 1px solid #e0e0e0;
-  border-radius: 0.3rem;
-  cursor: text;
-  box-sizing: border-box;
-  display: flex;
-  flex-wrap: nowrap;
-  display: box;
-  width: 100%;
-  zoom: 1;
-}
-.ax-select.ax-focuse .ax-select-inner,
-.ax-select.ax-open .ax-select-inner {
-  border-color: #198cff;
-}
-.ax-select.ax-open .ax-select-inner {
-  border-radius: 0.3rem 0.3rem 0 0;
-}
-.ax-select.ax-flipped.ax-open .ax-select-inner {
-  border-radius: 0 0 0.3rem 0.3rem;
-}
-.ax-select.ax-disabled .ax-select-inner {
-  background-color: #f0f0f0;
-}
-.ax-select .ax-select-inner .ax-label-single {
-  cursor: pointer;
-  display: block;
-  width: 100%;
-  height: calc(3.8rem - 2px);
-  box-sizing: border-box;
-}
-.ax-select .ax-select-inner .ax-label-single .ax-item {
-  display: block;
-  padding: 0 1rem;
-  margin: 0;
-  line-height: calc(3.8rem - 2px);
-}
-.ax-select .ax-select-inner .ax-label-single .ax-close {
-  padding: 0;
-  margin: 0;
-  width: 1.4rem;
-  height: calc(3.8rem);
-  line-height: calc(3.8rem);
-  text-align: center;
-  position: absolute;
-  right: 2.8rem;
-  top: 0;
-}
-.ax-select .ax-select-inner .ax-label-single .ax-item[data-value=''] .ax-close {
-  display: none;
-}
-.ax-select .ax-select-inner .ax-label-single:after {
-  content: '';
-  height: 0;
-  width: 0;
-  margin: auto 0;
-  border-color: #ccc transparent transparent transparent;
-  border-style: solid;
-  border-width: 0.4rem 0.4rem 0 0.4rem;
-  transition: all 200ms linear;
-  position: absolute;
-  top: 0;
-  bottom: 0;
-  right: 0.9rem;
-  pointer-events: none;
-}
-.ax-select.ax-open .ax-select-inner .ax-label-single:after {
-  border-color: #198cff transparent transparent transparent;
-  transform: rotate(180deg);
-}
-.ax-select .ax-label-multiple .ax-item {
-  font-size: 1.2rem;
-  line-height: calc(3.8rem - 4px - 0.4rem*2);
-  height: calc(3.8rem - 4px - 0.4rem*2);
-  background-color: #f0f0f0;
-  border: 1px solid #e0e0e0;
-  margin-left: 0.4rem;
-  margin-right: 0;
-  margin-top: 0.4rem;
-  padding: 0 0.4rem;
-}
-.ax-select .ax-label-multiple .ax-item.ax-highlight {
-  color: #fff;
-  background-color: #198cff;
-  border-color: #0b72da;
-}
-.ax-select.ax-disabled .ax-label-multiple .ax-item {
-  color: rgba(102, 102, 102, 0.8);
-}
-.ax-select .ax-select-dropdown {
-  width: calc(100% - 2px);
-  background-color: #ffffff;
-  margin-top: -1px;
-  border: 1px solid #ebebeb;
-  border-bottom-left-radius: 0.3rem;
-  border-bottom-right-radius: 0.3rem;
-  overflow: hidden;
-  word-break: break-all;
-  display: none;
-  position: absolute;
-  top: 100%;
-  z-index: 4;
-}
-.ax-select .ax-select-dropdown.ax-active {
-  display: block;
-}
-.ax-select.ax-open .ax-select-dropdown {
-  border-color: #198cff;
-}
-.ax-select.ax-flipped .ax-select-dropdown {
-  top: auto;
-  bottom: 100%;
-  margin-top: 0;
-  margin-bottom: -1px;
-  border-radius: 0.3rem 0.3rem 0 0;
-}
-.ax-select .ax-select-dropdown .ax-item-list {
-  max-height: calc((3.8rem + 1px)*5 - 1px);
-  overflow: auto;
-  -webkit-overflow-scrolling: touch;
-  will-change: scroll-position;
-  position: relative;
-}
-.ax-select .ax-select-dropdown .ax-item-group {
-  font-weight: bold;
-  padding: 0 1rem;
-  margin: 0;
-  line-height: 3.8rem;
-  border-bottom: 1px solid #ebebeb;
-}
-.ax-select .ax-select-dropdown .ax-item {
-  padding: 0 1rem;
-  margin: 0;
-  line-height: 3.8rem;
-  cursor: pointer;
-  border-bottom: 1px solid #ebebeb;
-  transition: all 100ms linear;
-  position: relative;
-}
-.ax-select .ax-select-dropdown .ax-item:last-child {
-  border: none;
-}
-.ax-select .ax-select-dropdown .ax-item.ax-item-selectable:hover {
-  cursor: pointer;
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-select.ax-disabled .ax-item {
-  cursor: not-allowed;
-}
-.ax-select .ax-item.ax-item-disabled {
-  color: #b3b3b3;
-  cursor: not-allowed;
-  -webkit-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-.ax-select .ax-select-dropdown .ax-item:not(.ax-item-selectable) {
-  color: #b3b3b3;
-}
-.ax-select .ax-item.ax-selected {
-  color: #198cff;
-  background-color: #f0f7ff;
-}
-.ax-select .ax-item.ax-selected:after {
-  content: '\e616';
-  font-family: "ax-iconfont" !important;
-  color: #198cff;
-  width: 3.8rem;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  text-align: center;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-select .ax-select-dropdown .ax-item-selectable.ax-highlight {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-select .ax-select-dropdown .ax-item-selectable.ax-highlight:after {
-  color: #fff;
-}
-.ax-select .ax-select-dropdown > .ax-item,
-.ax-select .ax-select-dropdown .ax-item-list .ax-no-select {
-  cursor: text;
-}
-.ax-select .ax-select-placeholder {
-  opacity: 0.5;
-}
-.ax-select .ax-select-input {
-  border: none;
-  background: transparent !important;
-  outline: 0;
-  box-shadow: none;
-  -webkit-appearance: textfield;
-}
-.ax-select .ax-select-input:focus {
-  outline: 0;
-  box-shadow: none;
-}
-.ax-select .ax-select-inner > .ax-select-input {
-  width: 1.4rem;
-  height: calc(3.8rem - 2px - 0.4rem*2);
-  line-height: calc(3.8rem - 2px - 0.4rem*2);
-  margin: 0.4rem;
-  padding: 0;
-}
-.ax-select .ax-select-dropdown > .ax-select-input[type="text"] {
-  border-bottom: 1px solid #ebebeb;
-  border-radius: 0;
-}
-.ax-select .ax-select-dropdown > .ax-select-input[type="text"]:focus {
-  border-color: #198cff !important;
-}
-.ax-select[data-size='xs'] {
-  font-size: 1.2rem;
-}
-.ax-select[data-size='xs'] .ax-select-inner {
-  line-height: calc(2.2rem - 2px);
-}
-.ax-select[data-size='xs'] .ax-select-input {
-  font-size: 1.2rem;
-  padding-left: 0.4rem;
-  padding-right: 0.4rem;
-}
-.ax-select[data-size='xs'] .ax-label-multiple .ax-item {
-  line-height: calc(2.2rem - 4px - 0.2rem*2);
-  height: calc(2.2rem - 4px - 0.2rem*2);
-  margin-left: 0.2rem;
-  margin-top: 0.2rem;
-  padding: 0 0.2rem;
-}
-.ax-select[data-size='xs'] .ax-select-inner .ax-label-single {
-  height: calc(2.2rem - 2px);
-}
-.ax-select[data-size='xs'] .ax-select-inner .ax-label-single .ax-item {
-  padding: 0 0.4rem;
-  line-height: calc(2.2rem - 2px);
-}
-.ax-select[data-size='xs'] .ax-select-inner .ax-label-single .ax-close {
-  height: calc(2.2rem);
-  line-height: calc(2.2rem);
-  right: 2.2rem;
-}
-.ax-select[data-size='xs'] .ax-select-dropdown .ax-item-list {
-  max-height: calc((2.2rem + 1px)*5 - 1px);
-}
-.ax-select[data-size='xs'] .ax-select-dropdown .ax-item-group {
-  line-height: 2.2rem;
-  padding: 0 0.4rem;
-}
-.ax-select[data-size='xs'] .ax-select-dropdown .ax-item {
-  line-height: 2.2rem;
-  padding: 0 0.4rem;
-}
-.ax-select[data-size='xs'] .ax-item.ax-selected:after {
-  width: 2.2rem;
-  height: 2.2rem;
-  line-height: 2.2rem;
-}
-.ax-select[data-size='xs'] .ax-select-inner > .ax-select-input[type="text"] {
-  height: calc(2.2rem - 2px - 0.2rem*2);
-  line-height: calc(2.2rem - 2px - 0.2rem*2);
-  margin: 0.2rem;
-}
-.ax-select[data-size='xs'] .ax-select-dropdown > .ax-select-input[type="text"] {
-  height: 2.2rem;
-  line-height: 2.2rem;
-}
-.ax-select[data-size='sm'] {
-  font-size: 1.2rem;
-}
-.ax-select[data-size='sm'] .ax-select-inner {
-  line-height: calc(3.8rem - 1rem - 2px);
-}
-.ax-select[data-size='sm'] .ax-select-input {
-  font-size: 1.2rem;
-  padding-left: 0.8rem;
-  padding-right: 0.8rem;
-}
-.ax-select[data-size='sm'] .ax-label-multiple .ax-item {
-  line-height: calc(3.8rem - 1rem - 4px - 0.2rem*2);
-  height: calc(3.8rem - 1rem - 4px - 0.2rem*2);
-  margin-left: 0.2rem;
-  margin-top: 0.2rem;
-  padding: 0 0.4rem;
-}
-.ax-select[data-size='sm'] .ax-select-inner .ax-label-single {
-  height: calc(3.8rem - 1rem - 2px);
-}
-.ax-select[data-size='sm'] .ax-select-inner .ax-label-single .ax-item {
-  padding: 0 0.8rem;
-  line-height: calc(3.8rem - 1rem - 2px);
-}
-.ax-select[data-size='sm'] .ax-select-inner .ax-label-single .ax-close {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-  right: 2.2rem;
-}
-.ax-select[data-size='sm'] .ax-select-dropdown .ax-item-list {
-  max-height: calc((3.8rem - 1rem + 1px)*5 - 1px);
-}
-.ax-select[data-size='sm'] .ax-select-dropdown .ax-item-group {
-  line-height: calc(3.8rem - 1rem);
-  padding: 0 0.8rem;
-}
-.ax-select[data-size='sm'] .ax-select-dropdown .ax-item {
-  line-height: calc(3.8rem - 1rem);
-  padding: 0 0.8rem;
-}
-.ax-select[data-size='sm'] .ax-item.ax-selected:after {
-  width: calc(3.8rem - 1rem);
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-select[data-size='sm'] .ax-select-inner > .ax-select-input[type="text"] {
-  height: calc(3.8rem - 1rem - 2px - 0.2rem*2);
-  line-height: calc(3.8rem - 1rem - 2px - 0.2rem*2);
-  margin: 0.2rem;
-  padding-left: 0.4rem;
-}
-.ax-select[data-size='sm'] .ax-select-dropdown > .ax-select-input[type="text"] {
-  height: calc(3.8rem - 1rem);
-  line-height: calc(3.8rem - 1rem);
-}
-.ax-select[data-size='lg'] .ax-select-inner {
-  line-height: calc(3.8rem + 1rem - 2px);
-}
-.ax-select[data-size='lg'] .ax-select-input {
-  padding-left: 1.4rem;
-  padding-right: 1.4rem;
-}
-.ax-select[data-size='lg'] .ax-label-multiple .ax-item {
-  line-height: calc(3.8rem + 1rem - 4px - 0.4rem*2);
-  height: calc(3.8rem + 1rem - 4px - 0.4rem*2);
-  margin-left: 0.4rem;
-  margin-top: 0.4rem;
-  padding: 0 0.8rem;
-}
-.ax-select[data-size='lg'] .ax-select-inner .ax-label-single {
-  height: calc(3.8rem + 1rem - 2px);
-}
-.ax-select[data-size='lg'] .ax-select-inner .ax-label-single:after {
-  right: 1.4rem;
-}
-.ax-select[data-size='lg'] .ax-select-inner .ax-label-single .ax-item {
-  padding: 0 1.4rem;
-  line-height: calc(3.8rem + 1rem - 2px);
-}
-.ax-select[data-size='lg'] .ax-select-inner .ax-label-single .ax-close {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-  right: 3.6rem;
-}
-.ax-select[data-size='lg'] .ax-select-dropdown .ax-item-list {
-  max-height: calc((3.8rem + 1rem + 1px)*5 - 1px);
-}
-.ax-select[data-size='lg'] .ax-select-dropdown .ax-item-group {
-  line-height: calc(3.8rem + 1rem);
-  padding: 0 1.4rem;
-}
-.ax-select[data-size='lg'] .ax-select-dropdown .ax-item {
-  line-height: calc(3.8rem + 1rem);
-  padding: 0 1.4rem;
-}
-.ax-select[data-size='lg'] .ax-item.ax-selected:after {
-  width: calc(3.8rem + 1rem);
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-}
-.ax-select[data-size='lg'] .ax-select-inner > .ax-select-input[type="text"] {
-  height: calc(3.8rem + 1rem - 2px - 0.4rem*2);
-  line-height: calc(3.8rem + 1rem - 2px - 0.4rem*2);
-  margin: 0.4rem;
-  padding-left: 0.4rem;
-}
-.ax-select[data-size='lg'] .ax-select-dropdown > .ax-select-input[type="text"] {
-  height: calc(3.8rem + 1rem);
-  line-height: calc(3.8rem + 1rem);
-}
-/*scrollselect鎻掍欢*/
-.ax-scrollSelect[data-type='actionbar'] {
-  height: 100vh;
-  width: 100%;
-  position: absolute;
-  left: 0;
-  top: 0;
-  z-index: 810;
-  visibility: hidden;
-}
-.ax-scrollSelect[data-type='actionbar'] .ax-scrollSelect-overlay {
-  width: 100%;
-  height: 100%;
-  background-color: rgba(0, 0, 0, 0.4);
-  opacity: 0;
-  transition: all 200ms linear;
-  position: fixed;
-  left: 0;
-  top: 0;
-  z-index: 4;
-}
-.ax-scrollSelect[data-type='actionbar'] .ax-scrollSelect-wrapper {
-  width: 100%;
-  background-color: #fff;
-  opacity: 1;
-  transform: translateY(100%);
-  transition: all 200ms linear;
-  animation-duration: 300ms;
-  animation-fill-mode: both;
-  position: fixed;
-  left: 0;
-  bottom: 0;
-  z-index: 9;
-}
-.ax-scrollSelect[data-type='actionbar'].ax-show {
-  visibility: visible;
-}
-.ax-scrollSelect[data-type='actionbar'].ax-show .ax-scrollSelect-overlay {
-  opacity: 1;
-}
-.ax-scrollSelect[data-type='actionbar'].ax-show .ax-scrollSelect-wrapper {
-  transform: translateY(0);
-}
-.ax-scrollSelect[data-type='inline'] {
-  min-width: 200px;
-  width: 36rem;
-  box-sizing: border-box;
-  border: 1px solid #e0e0e0;
-  border-top: none;
-  border-bottom-right-radius: 0.3rem;
-  border-bottom-left-radius: 0.3rem;
-}
-input[axScrollSelect][data-type='inline'] {
-  border-bottom-right-radius: 0 !important;
-  border-bottom-left-radius: 0 !important;
-}
-.ax-scrollSelect .ax-inner {
-  position: relative;
-}
-.ax-scrollSelect .ax-inner:after {
-  content: ".";
-  display: block;
-  height: 0;
-  clear: both;
-  visibility: hidden;
-}
-.ax-scrollSelect .ax-scrollSelect-header {
-  line-height: 3.8rem;
-  height: 3.8rem;
-  text-align: center;
-  border-bottom: 1px solid #ebebeb;
-  position: relative;
-}
-.ax-scrollSelect .ax-scrollSelect-header .ax-cancel,
-.ax-scrollSelect .ax-scrollSelect-header .ax-confirm {
-  padding: 0 1.6rem;
-  position: absolute;
-  top: 0;
-}
-.ax-scrollSelect .ax-scrollSelect-header .ax-cancel {
-  left: 0;
-  color: #b3b3b3;
-}
-.ax-scrollSelect .ax-scrollSelect-header .ax-confirm {
-  right: 0;
-}
-.ax-scrollSelect.ax-scrollSelect-header .ax-title {
-  max-width: 80%;
-  margin: 0 auto;
-  overflow: hidden;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-}
-.ax-scrollSelect .ax-scrollSelect-body:after {
-  content: ".";
-  display: block;
-  height: 0;
-  clear: both;
-  visibility: hidden;
-}
-.ax-scrollSelect .ax-group {
-  box-sizing: border-box;
-  display: flex;
-  width: 100%;
-  zoom: 1;
-}
-.ax-scrollSelect .ax-group li {
-  width: 100%;
-  text-align: center;
-  line-height: 3.8rem;
-  display: block;
-  flex: auto;
-  width: 0;
-  position: relative;
-}
-.ax-scrollSelect .ax-wheels {
-  width: 100%;
-  height: calc(3.8rem*5);
-  overflow: hidden;
-}
-.ax-scrollSelect .ax-wheel {
-  width: 50%;
-  height: calc(3.8rem*5);
-  overflow: hidden;
-  transition: all 200ms linear;
-  float: left;
-  position: relative;
-  z-index: 0;
-}
-.ax-scrollSelect .ax-wheel .ax-item-list {
-  display: block;
-  text-align: center;
-  transition: all 200ms linear;
-}
-.ax-scrollSelect .ax-wheel .ax-item-list li {
-  display: block;
-  height: 3.8rem;
-  line-height: 3.8rem;
-  cursor: pointer;
-  overflow: hidden;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -webkit-user-select: none;
-  -ms-user-select: none;
-  user-select: none;
-}
-.ax-scrollSelect .ax-wheel .ax-item-list li.ax-active {
-  color: #198cff;
-}
-.ax-scrollSelect .ax-line {
-  height: 3.8rem;
-  width: 100%;
-  pointer-events: none;
-  box-sizing: border-box;
-  border-top: 1px solid #ebebeb;
-  border-bottom: 1px solid #ebebeb;
-  position: absolute;
-  top: calc(3.8rem*2);
-}
-.ax-scrollSelect .ax-mask {
-  position: absolute;
-  top: 0;
-  width: 100%;
-  height: calc(3.8rem*5);
-  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(rgba(255, 255, 255, 0)), to(#ffffff));
-  background: -webkit-linear-gradient(top, #ffffff, rgba(255, 255, 255, 0), #ffffff);
-  background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0), #ffffff);
-  opacity: 0.9;
-  pointer-events: none;
-}
-/*plugins dropzone*/
-.ax-dropzone-outer {
-  border: 0.2rem dashed #ebebeb;
-  border-radius: 0.3rem;
-  background-color: #fff;
-  box-sizing: border-box;
-  padding: 1.4rem;
-}
-.ax-dropzone {
-  cursor: pointer;
-}
-.ax-dropzone .ax-preview {
-  position: relative;
-}
-.ax-dropzone .ax-ready {
-  text-align: center;
-  padding: 2.2rem 0;
-}
-.ax-dropzone .ax-ready .ax-icon [class*="font"] {
-  color: #b3b3b3;
-  font-size: 4.4rem;
-  line-height: 6.4rem;
-}
-.ax-dropzone .ax-ready .ax-text {
-  color: #b3b3b3;
-}
-.ax-dropzone .ax-image {
-  width: 100%;
-  height: 16rem;
-  overflow: hidden;
-  border-radius: 0.3rem;
-  background-position: center;
-  background-repeat: no-repeat;
-  background-size: cover;
-  position: relative;
-}
-.ax-dropzone .ax-image:before {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-radius: 0.3rem;
-  border-color: rgba(0, 0, 0, 0.12);
-  z-index: 2;
-}
-.ax-dropzone .ax-image img {
-  width: 100%;
-  border-radius: 0.3rem;
-}
-.ax-dropzone .ax-item {
-  position: relative;
-}
-.ax-dropzone .ax-operate {
-  text-align: right;
-  position: absolute;
-  right: 0.8rem;
-  top: 0.8rem;
-  z-index: 4;
-}
-.ax-dropzone .ax-operate a {
-  color: #fff;
-  text-align: center;
-  width: 2.4rem;
-  height: 2.4rem;
-  line-height: 2.4rem;
-  overflow: hidden;
-  background-color: rgba(0, 0, 0, 0.5);
-  border-radius: 100%;
-  margin-left: 0.8rem;
-  transition: all 100ms linear;
-}
-.ax-dropzone .ax-operate a [class*="font"] {
-  font-size: 1.2rem;
-}
-.ax-dropzone .ax-operate a svg {
-  width: 1.2rem;
-  height: 2.4rem;
-}
-.ax-dropzone .ax-operate a:hover {
-  transform: scale(1.2);
-}
-.ax-dropzone .ax-progress {
-  width: 100%;
-  height: 100%;
-  overflow: hidden;
-  background-color: rgba(0, 0, 0, 0.5);
-  border-radius: 0.3rem;
-  transition: all 200ms linear;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-dropzone .ax-percent {
-  color: rgba(255, 255, 255, 0.8);
-  text-align: center;
-  line-height: 16rem;
-  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
-  width: 100%;
-  height: 100%;
-  overflow: hidden;
-  transition: all 200ms linear;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-dropzone .ax-percent i {
-  font-size: 2.2rem;
-}
-.ax-dropzone .ax-details {
-  font-size: 1.2rem;
-  line-height: 1.8rem;
-}
-.ax-dropzone .ax-size,
-.ax-dropzone .ax-filename {
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  -o-text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-dropzone .ax-success-mark {
-  color: #198cff;
-  width: 100%;
-  height: 100%;
-  opacity: 0;
-  transition-property: all;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-dropzone .ax-success-mark [class*="font"] {
-  font-size: 2.8rem;
-}
-.ax-dropzone .ax-error-mark {
-  color: #dc3545;
-  width: 100%;
-  height: 100%;
-  opacity: 0;
-  transition-property: all;
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  position: absolute;
-  left: 0;
-  top: 0;
-}
-.ax-dropzone .ax-error-mark [class*="font"] {
-  font-size: 2.8rem;
-}
-.ax-dropzone .ax-error-message {
-  color: #fff;
-  font-size: 1.2rem;
-  text-align: center;
-  text-overflow: ellipsis;
-  width: 100%;
-  max-height: calc(2.8rem * 2);
-  max-width: 100%;
-  line-height: 2.8rem;
-  overflow: hidden;
-  background-color: #dc3545;
-  border-radius: 0 0 0.3rem 0.3rem;
-  transition: all 200ms linear;
-  display: -webkit-box;
-  -webkit-line-clamp: 2;
-  -webkit-box-orient: vertical;
-  position: absolute;
-  left: 0;
-  bottom: calc(-2.8rem*2);
-}
-.ax-dropzone.ax-started .ax-ready .ax-icon {
-  display: none;
-}
-.ax-dropzone.ax-started .ax-ready {
-  padding: 0;
-}
-.ax-dropzone.ax-started .ax-ready .ax-text {
-  margin-bottom: 0.8rem;
-}
-.ax-dropzone .ax-success .ax-success-mark {
-  animation-duration: 1s;
-  animation-fill-mode: both;
-  animation-name: bounceIn;
-}
-.ax-dropzone .ax-error .ax-error-mark {
-  animation-duration: 1s;
-  animation-fill-mode: both;
-  animation-name: bounceIn;
-}
-.ax-dropzone .ax-error:hover .ax-error-message {
-  bottom: 0;
-}
-.ax-dropzone .ax-final .ax-percent {
-  opacity: 0;
-}
-/*plugins infoBox*/
-.ax-infoBox .ax-panel {
-  position: relative;
-}
-.ax-infoBox .ax-panel:before,
-.ax-infoBox .ax-tab:before {
-  content: '';
-  width: 0;
-  height: 0;
-  border-width: 0.8rem;
-  border-style: solid;
-  border-color: #fff transparent transparent transparent;
-  position: absolute;
-  bottom: -1.6rem;
-  left: calc(50% - 0.8rem);
-}
-.ax-infoBox .ax-tab .ax-grid {
-  margin: 0 auto;
-}
-.ax-infoBox .ax-menu-tab .ax-item {
-  padding-top: 0.5rem;
-  padding-bottom: 0.5rem;
-}
-.ax-infoBox .ax-close {
-  font-family: arial;
-  font-size: 2.2rem;
-  color: #ccc;
-  line-height: 3.8rem;
-  width: 3.8rem;
-  text-align: center;
-  text-shadow: 0 0.1rem 0 #fff;
-  text-decoration: none;
-  cursor: pointer;
-  position: absolute;
-  right: 0;
-  top: 0;
-  z-index: 2;
-}
-/*plugins ztree*/
-.ax-tree {
-  margin: 0;
-  padding: 0;
-  font-size: 1.4rem;
-  line-height: 2.8rem;
-}
-.ax-tree li {
-  white-space: nowrap;
-  outline: 0;
-}
-.ax-tree li ul {
-  padding-left: 2.2rem;
-}
-.ax-tree li .ax-badge,
-.ax-tree li .ax-dot {
-  vertical-align: middle;
-  position: relative;
-  top: -0.2rem;
-}
-.ax-tree li a {
-  color: #333333;
-  white-space: nowrap;
-  cursor: pointer;
-  position: relative;
-}
-.ax-tree li a:hover {
-  color: #333333;
-  text-decoration: none;
-}
-.ax-tree li a.ax-color-primary {
-  color: #198cff;
-}
-.ax-tree li a.ax-color-ignore {
-  color: #b3b3b3;
-}
-.ax-tree li a:not(.curSelectedNode):hover .node_name {
-  color: #198cff;
-  text-decoration: underline;
-  transition: all 200ms linear;
-}
-.ax-tree li a .node_name {
-  padding: 0 0.4rem;
-  margin-right: 0.4rem;
-  position: relative;
-}
-.ax-tree li a.curSelectedNode .node_name {
-  color: #fff;
-  border-radius: 0.3rem;
-  background: #198cff;
-}
-.ax-tree li a.curSelectedNode_Edit .node_name {
-  background: transparent;
-  padding: 0;
-}
-.ax-tree li a input[type*='text'] {
-  width: 9.2rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  padding: 0 0.4rem;
-}
-.ax-tree li select {
-  width: 9.2rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-  padding: 0 0 0 0.4rem;
-}
-.ax-tree li span {
-  background-color: transparent;
-}
-.ax-tree li span.button {
-  vertical-align: top;
-  border-radius: 0.3rem;
-  color: #666666;
-  width: 2.2rem;
-  text-align: center;
-  cursor: pointer;
-}
-.ax-tree li span.button:not([class*='bottom_docu']):not([class*='center_docu']) {
-  transition: all 200ms linear;
-}
-.ax-tree li span.button:before {
-  display: inline-block;
-  transition: all 200ms linear;
-}
-.ax-tree li span.button:hover {
-  color: #198cff;
-}
-.ax-tree li span.button.switch {
-  width: 2.2rem;
-  height: 2.8rem;
-  line-height: 2.8rem;
-}
-.ax-tree li span.button.noline_open,
-.ax-tree li span.button.noline_open:hover,
-.ax-tree li span.button.roots_open,
-.ax-tree li span.button.center_open,
-.ax-tree li span.button.bottom_open,
-.ax-tree li span.button.roots_open:hover,
-.ax-tree li span.button.center_open:hover,
-.ax-tree li span.button.bottom_open:hover,
-.ax-tree li span.button.checkbox_true_full,
-.ax-tree li span.button.checkbox_true_full:hover,
-.ax-tree li span.button.checkbox_true_full_focus,
-.ax-tree li span.button.radio_true_full,
-.ax-tree li span.button.radio_true_full:hover,
-.ax-tree li span.button.radio_true_full_focus {
-  color: #198cff;
-}
-.ax-tree li span.button.checkbox_true_part,
-.ax-tree li span.button.checkbox_true_part:hover,
-.ax-tree li span.button.checkbox_true_part_focus,
-.ax-tree li span.button.radio_true_part,
-.ax-tree li span.button.radio_true_part:hover,
-.ax-tree li span.button.radio_true_part_focus,
-.ax-tree li span.button.radio_false_part,
-.ax-tree li span.button.radio_false_part:hover {
-  color: #198cff;
-  opacity: 0.5;
-}
-.ax-tree li span.button.checkbox_true_disable,
-.ax-tree li span.button.checkbox_true_disable:hover,
-.ax-tree li span.button.checkbox_false_disable,
-.ax-tree li span.button.checkbox_false_disable:hover,
-.ax-tree li span.button.radio_true_disable,
-.ax-tree li span.button.radio_true_disable:hover,
-.ax-tree li span.button.radio_false_disable,
-.ax-tree li span.button.radio_false_disable:hover {
-  color: #ccc;
-}
-.ax-tree li .node_name ~ span.button {
-  color: #666666;
-  font-size: 1.4rem;
-  width: 2.2rem;
-  text-align: center;
-}
-.ax-tree li .node_name ~ span.button:hover {
-  color: #198cff;
-}
-.ax-tree li span.button:before {
-  font-size: 1.4rem;
-  font-family: ax-iconfont;
-}
-.ax-tree li span.button.chk.checkbox_false_full:before {
-  content: "\e705";
-}
-.ax-tree li span.button.chk.checkbox_false_full_focus:before {
-  content: "\e705";
-}
-.ax-tree li span.button.chk.checkbox_false_part:before {
-  content: "\e705";
-}
-.ax-tree li span.button.chk.checkbox_false_part_focus:before {
-  content: "\e705";
-}
-.ax-tree li span.button.chk.checkbox_false_disable:before {
-  content: "\e705";
-}
-.ax-tree li span.button.chk.checkbox_true_full:before {
-  content: "\e704";
-}
-.ax-tree li span.button.chk.checkbox_true_full_focus:before {
-  content: "\e704";
-}
-.ax-tree li span.button.chk.checkbox_true_part:before {
-  content: "\e617";
-}
-.ax-tree li span.button.chk.checkbox_true_part_focus:before {
-  content: "\e617";
-}
-.ax-tree li span.button.chk.checkbox_true_full_focus:before {
-  content: "\e704";
-}
-.ax-tree li span.button.chk.checkbox_true_part:before {
-  content: "\e617";
-}
-.ax-tree li span.button.chk.checkbox_true_part_focus:before {
-  content: "\e617";
-}
-.ax-tree li span.button.chk.checkbox_true_disable:before {
-  content: "\e704";
-}
-.ax-tree li span.button.chk.radio_false_full:before {
-  content: "\e61c";
-}
-.ax-tree li span.button.chk.radio_false_full_focus:before {
-  content: "\e61c";
-}
-.ax-tree li span.button.chk.radio_false_part:before {
-  content: "\e6b2";
-}
-.ax-tree li span.button.chk.radio_false_part_focus:before {
-  content: "\e6b2";
-}
-.ax-tree li span.button.chk.radio_false_disable:before {
-  content: "\e61c";
-}
-.ax-tree li span.button.chk.radio_true_full:before {
-  content: "\e6b3";
-}
-.ax-tree li span.button.chk.radio_true_full_focus:before {
-  content: "\e6b3";
-}
-.ax-tree li span.button.chk.radio_true_part:before {
-  content: "\e6b2";
-}
-.ax-tree li span.button.chk.radio_true_part_focus:before {
-  content: "\e6b2";
-}
-.ax-tree li span.button.chk.radio_true_disable:before {
-  content: "\e6b3";
-}
-.ax-tree li span.button.root_open:before {
-  transform: rotate(90deg);
-  content: "\e60f";
-}
-.ax-tree li span.button.root_close:before {
-  content: "\e60f";
-}
-.ax-tree li span.button.roots_open:before,
-.ax-tree li span.button.noline_open:before {
-  transform: rotate(90deg);
-  content: "\e60f";
-}
-.ax-tree li span.button.roots_close:before,
-.ax-tree li span.button.noline_close:before {
-  content: "\e60f";
-}
-.ax-tree li span.button.center_open:before {
-  transform: rotate(90deg);
-  content: "\e60f";
-}
-.ax-tree li span.button.center_close:before {
-  content: "\e60f";
-}
-.ax-tree li span.button.bottom_open:before {
-  transform: rotate(90deg);
-  content: "\e60f";
-}
-.ax-tree li span.button.bottom_close:before {
-  content: "\e60f";
-}
-.ax-tree li span.button.root_docu {
-  background: none;
-}
-.ax-tree li span.button.roots_docu:before {
-  content: "\f022";
-}
-.ax-tree li span.button.noline_docu {
-  background: none;
-}
-.ax-tree li span.button.ico_open:before {
-  content: "\e778";
-}
-.ax-tree li span.button.ico_close:before {
-  content: "\e64f";
-}
-.ax-tree li span.button.ico_docu:before {
-  content: "\e647";
-}
-.ax-tree li span.button.edit:before {
-  content: "\e682";
-}
-.ax-tree li span.button.remove:before {
-  content: "\e68d";
-}
-.ax-tree li span.button.add:before {
-  content: "\e627";
-}
-.ax-tree li span.button.ico_loading {
-  background-image: var(--load-svg);
-  background-repeat: no-repeat;
-  background-position: center;
-  background-size: 1.4rem;
-}
-.ax-tree-menu {
-  display: none;
-  text-align: left;
-  background-color: #fff;
-  border: 1px solid #ebebeb;
-  border-radius: 0.3rem;
-  min-width: 10rem;
-  padding: 0;
-  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
-  position: fixed;
-  top: 0;
-  left: 0;
-  z-index: 9999;
-}
-.ax-tree-menu a {
-  display: block;
-  line-height: 2.8rem;
-  padding: 0 0.8rem;
-  transition: all 100ms linear;
-  border-bottom: 1px solid #ebebeb;
-  position: relative;
-}
-.ax-tree-menu a:last-child {
-  border: none;
-}
-ul.tmpTargetzTree {
-  opacity: 0.8;
-  color: red;
-}
-.ax-tree li a.tmpTargetNode_inner .node_name {
-  background-color: #f0f7ff;
-  border-radius: 0.3rem;
-}
-.ax-tree li a.tmpTargetNode_inner .node_name:hover {
-  text-decoration: none;
-}
-.ax-tree li a.tmpTargetNode_inner .node_name:after {
-  content: "";
-  pointer-events: none;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  top: 0;
-  transform-origin: 0 0;
-  -webkit-transform-origin: 0 0;
-  border-width: 1px;
-  border-style: solid;
-  width: 100%;
-  height: 100%;
-  border-color: #d7e7f5;
-  border-radius: 0.3rem;
-}
-span.tmpzTreeMove_arrow {
-  color: #198cff;
-  width: 2.2rem;
-  height: 2.8rem;
-  border: 0 none;
-  background-color: transparent;
-  position: absolute;
-  z-index: 4;
-}
-span.tmpzTreeMove_arrow:before {
-  content: "\e60a";
-  font-family: ax-iconfont;
-}
-.ax-tree.zTreeDragUL {
-  padding-left: 0.4rem;
-  padding-right: 0.4rem;
-  border: 1px #198cff dotted;
-  background-color: #f0f7ff;
-  border-radius: 0.3rem;
-  opacity: 0.8;
-  position: absolute;
-  z-index: 4;
-}
-.ax-tree.zTreeDragUL li a {
-  color: #198cff;
-}
-.ax-tree.zTreeDragUL .button {
-  display: none;
-}
-.ax-treeMask {
-  opacity: 0;
-  position: absolute;
-  z-index: 10000;
-}
-.ax-tree li ul.line {
-  background-image: url(../plugins/ztree/images/tree-line.png);
-  background-position: -2.2rem top;
-  background-repeat: repeat-y;
-}
-.ax-tree li span.button.roots_docu {
-  background-image: url(../plugins/ztree/images/tree-line.png);
-  background-position: left top;
-  background-repeat: no-repeat;
-}
-.ax-tree li span.button.center_docu {
-  background-image: url(../plugins/ztree/images/tree-line.png);
-  background-position: left -2.8rem;
-  background-repeat: no-repeat;
-}
-.ax-tree li span.button.bottom_docu {
-  background-image: url(../plugins/ztree/images/tree-line.png);
-  background-position: left bottom;
-  background-repeat: no-repeat;
-}
-.ax-tree li span.button.noline_docu {
-  background: none;
-}
-.ax-tree.ax-tree-collapse .indent {
-  height: 2.8rem;
-  float: left;
-}
-.ax-tree.ax-tree-collapse li ul {
-  padding: 0;
-}
-.ax-tree.ax-tree-collapse li {
-  padding: 0;
-}
-.ax-tree.ax-tree-collapse li a {
-  display: block;
-}
-.ax-tree.ax-tree-collapse li a:hover {
-  background-color: #f0f0f0;
-}
-.ax-tree.ax-tree-collapse li a.curSelectedNode {
-  background-color: #198cff;
-}
-.ax-tree.ax-tree-collapse li a.curSelectedNode .node_name {
-  background: transparent;
-}
-.ax-tree.ax-tree-collapse li a .node_name {
-  padding: 0;
-}
-.ax-tree.ax-tree-collapse li a.curSelectedNode span.button {
-  color: #fff;
-}
-.ax-tree.ax-tree-table {
-  border-top: 1px solid #ebebeb;
-  line-height: 3.8rem;
-}
-.ax-tree.ax-tree-table .tree-head {
-  font-weight: bold;
-}
-.ax-tree.ax-tree-table li ul {
-  padding-left: 0;
-}
-.ax-tree.ax-tree-table li a {
-  justify-content: flex-start;
-  align-items: center;
-  border-bottom: 1px solid #ebebeb;
-  box-sizing: border-box;
-  display: flex;
-  flex-wrap: nowrap;
-  width: 100%;
-  zoom: 1;
-}
-.ax-tree.ax-tree-table li:not(.tree-head) a:hover {
-  background-color: #f0f0f0;
-}
-.ax-tree.ax-tree-table li:not(.tree-head) a.curSelectedNode {
-  background-color: #f0f7ff;
-}
-.ax-tree.ax-tree-table li a.curSelectedNode .node_name {
-  background: transparent;
-  color: #198cff;
-}
-.ax-tree.ax-tree-table li a .node_name {
-  padding: 0;
-}
-.ax-tree.ax-tree-table .tree-switch {
-  display: flex;
-  justify-content: flex-start;
-  align-items: center;
-  flex: auto;
-  position: relative;
-}
-.ax-tree.ax-tree-table .tree-head .tree-switch {
-  padding-left: 2.2rem;
-}
-.ax-tree.ax-tree-table .tree-td {
-  width: 16rem;
-  text-align: center;
-  position: relative;
-}
-.ax-tree.ax-tree-table .tree-opt {
-  position: relative;
-  width: 12rem;
-  text-align: center;
-}
-.ax-tree.ax-tree-grid {
-  border-left: 1px solid #ebebeb;
-}
-.ax-tree.ax-tree-grid .tree-switch:after,
-.ax-tree.ax-tree-grid .tree-td:after,
-.ax-tree.ax-tree-grid .tree-opt:after {
-  content: '';
-  width: 1px;
-  height: 100%;
-  background-color: #ebebeb;
-  position: absolute;
-  right: 0;
-  top: 0;
-}
-.ax-tree.ax-reverse li a {
-  color: #fff;
-}
-.ax-tree.ax-reverse li a:hover {
-  color: #fff;
-}
-.ax-tree.ax-reverse li span.button:not([class*='_open']) {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-tree.ax-reverse li span.button:hover {
-  color: #fff;
-}
-.ax-tree.ax-reverse li .node_name ~ span.button {
-  color: rgba(255, 255, 255, 0.5);
-}
-.ax-tree.ax-reverse li .node_name ~ span.button:hover {
-  color: #198cff;
-}
-.ax-tree.ax-reverse li a input.rename {
-  color: #fff;
-  border: none;
-  box-shadow: none;
-  background-color: rgba(255, 255, 255, 0.1);
-}
-.ax-tree.ax-reverse li a input.rename:focus {
-  color: #fff;
-}
-.ax-tree.ax-reverse li a.tmpTargetNode_inner .node_name {
-  background: transparent;
-}
-.ax-tree.ax-reverse li a.tmpTargetNode_inner .node_name:after {
-  border-color: #198cff;
-}
-.ax-tree.ax-reverse.zTreeDragUL {
-  border-color: #fff;
-  background-color: rgba(0, 0, 0, 0.8);
-}
-.ax-tree.ax-reverse.zTreeDragUL li a {
-  color: #fff;
-}
-/*plugins datepicker*/
-.ax-date {
-  height: auto;
-  position: relative;
-  border-radius: 0.3rem;
-  display: inline-block;
-  box-shadow: 1px 0 0 #ebebeb, -1px 0 0 #ebebeb, 0 1px 0 #ebebeb, 0 -1px 0 #ebebeb, 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);
-  background-color: #fff;
-}
-.ax-date .ax-date-wrapper {
-  display: flex;
-  flex-wrap: nowrap;
-  width: 100%;
-  box-sizing: border-box;
-}
-.ax-date .ax-date-menu,
-.ax-date .ax-date-main {
-  flex: auto;
-  position: relative;
-}
-.ax-date .ax-date-menu {
-  line-height: 3.8rem;
-  border-right: 1px solid #ebebeb;
-  width: 9rem;
-  padding: 0.8rem;
-}
-.ax-date .ax-date-menu a {
-  display: block;
-}
-.ax-date .ax-date-menu a:hover {
-  color: #198cff;
-}
-.ax-date .ax-date-menu a.ax-selected {
-  color: #198cff;
-}
-.ax-date .ax-date-footer {
-  border-top: 1px solid #ebebeb;
-}
-.ax-date .ax-date-footer .ax-footer-left a {
-  padding: 0;
-  margin-right: 2rem;
-}
-.ax-date .ax-date-footer .ax-footer-right {
-  text-align: right;
-}
-.ax-date .ax-date-footer {
-  display: flex;
-  width: 100%;
-  box-sizing: border-box;
-}
-.ax-date .ax-date-footer:not([line]) {
-  padding: 0.8rem;
-  justify-content: space-between;
-}
-.ax-date .ax-date-footer[line] a {
-  border-radius: 0;
-  width: calc((100%/24)*12);
-  padding: 0;
-  flex: auto;
-  position: relative;
-}
-.ax-date .ax-date-footer[line] a:focus {
-  box-shadow: none;
-}
-.ax-date .ax-date-footer[line] a:not(:last-child) {
-  border-right: 1px solid #ebebeb !important;
-}
-.ax-date .ax-date-header {
-  line-height: 3.8rem;
-  text-align: center;
-  box-sizing: border-box;
-  position: relative;
-}
-.ax-date .ax-date-header .ax-iconfont {
-  width: 3.8rem;
-  text-align: center;
-  position: absolute;
-  top: 0;
-}
-.ax-date .ax-date-header .ax-yprev {
-  left: 0.8rem;
-}
-.ax-date .ax-date-header .ax-ynext {
-  right: 0.8rem;
-}
-.ax-date .ax-date-header .ax-mprev {
-  text-align: left;
-  left: calc(3.8rem + 0.8rem);
-}
-.ax-date .ax-date-header .ax-mnext {
-  text-align: right;
-  right: calc(3.8rem + 0.8rem);
-}
-.ax-date .ax-date-header .ax-ym {
-  margin: 0 0.4rem;
-}
-.ax-date .ax-date-body {
-  min-width: calc(36rem - 2px);
-  min-height: 28.1rem;
-  overflow: hidden;
-  box-sizing: border-box;
-  padding: 0 0.8rem 0.8rem 0.8rem;
-}
-.ax-date .ax-date-body table {
-  width: 100%;
-  text-align: center;
-  vertical-align: middle;
-  border-collapse: collapse;
-}
-.ax-date .ax-date-body table thead i {
-  font-size: 1.2rem;
-  font-weight: normal;
-  display: block;
-  border-bottom: 1px solid #ebebeb;
-  padding-bottom: 0.8rem;
-  margin-bottom: 0.8rem;
-}
-.ax-date .ax-date-body table tbody span {
-  width: calc(3.8rem - 0.4rem);
-  height: calc(3.8rem - 0.4rem);
-  line-height: calc(3.8rem - 0.4rem);
-  border-radius: calc(3.8rem - 0.4rem);
-  margin: 0.2rem;
-}
-.ax-date .ax-date-body table tbody td:not(.ax-disabled) span {
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-.ax-date .ax-date-body table tbody td:not(.ax-disabled):not(.ax-selected):hover span {
-  background-color: #f0f0f0;
-}
-.ax-date .ax-date-body table tbody .ax-other span {
-  color: #b3b3b3;
-}
-.ax-date .ax-date-body table tbody .ax-disabled span {
-  color: #f0f0f0;
-}
-.ax-date .ax-date-body table tbody .ax-selected span {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-date .ax-date-body table tbody .ax-start span {
-  width: 100% !important;
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-  margin-left: 0 !important;
-  margin-right: 0 !important;
-}
-.ax-date .ax-date-body table tbody .ax-end span {
-  width: 100% !important;
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-  margin-left: 0 !important;
-  margin-right: 0 !important;
-}
-.ax-date .ax-date-body table tbody .ax-contain span {
-  width: 100% !important;
-  border-radius: 0;
-  margin-left: 0 !important;
-  margin-right: 0 !important;
-  background-color: #f0f0f0;
-}
-.ax-date .ax-date-body table.ax-ytable tbody .ax-start span,
-.ax-date .ax-date-body table.ax-ytable tbody .ax-end span,
-.ax-date .ax-date-body table.ax-ytable tbody .ax-contain span,
-.ax-date .ax-date-body table.ax-mtable tbody .ax-start span,
-.ax-date .ax-date-body table.ax-ymtable tbody .ax-end span,
-.ax-date .ax-date-body table.ax-mtable tbody .ax-contain span {
-  width: calc((36rem - 2px - 0.8rem - 0.8rem)/3) !important;
-}
-.ax-date .ax-date-body table tbody .ax-with-lunar {
-  width: calc(1.2rem*4);
-  height: calc(1.2rem*4);
-  line-height: 2.2rem;
-  padding: calc((1.2rem*4 - 2.2rem*2)/2) 0;
-  box-sizing: border-box;
-  border-radius: 0.3rem;
-  margin: 0.2rem 0;
-}
-.ax-date .ax-date-body table tbody .ax-lunar {
-  font-size: 1.2rem;
-  white-space: nowrap;
-  text-overflow: ellipsis;
-  overflow: hidden;
-  max-width: 100%;
-}
-.ax-date .ax-date-body table tbody td:not(.ax-disabled) .ax-with-lunar {
-  cursor: pointer;
-  transition: all 100ms linear;
-}
-.ax-date .ax-date-body table tbody td:not(.ax-disabled):not(.ax-selected):hover .ax-with-lunar {
-  background-color: #f0f0f0;
-}
-.ax-date .ax-date-body table tbody .ax-other .ax-with-lunar {
-  color: #b3b3b3;
-}
-.ax-date .ax-date-body table tbody .ax-disabled .ax-with-lunar {
-  color: #b3b3b3;
-}
-.ax-date .ax-date-body table tbody .ax-selected .ax-with-lunar {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-date .ax-date-body table tbody .ax-start .ax-with-lunar {
-  border-top-right-radius: 0;
-  border-bottom-right-radius: 0;
-}
-.ax-date .ax-date-body table tbody .ax-end .ax-with-lunar {
-  border-top-left-radius: 0;
-  border-bottom-left-radius: 0;
-}
-.ax-date .ax-date-body table tbody .ax-contain .ax-with-lunar {
-  border-radius: 0;
-  background-color: #f0f0f0;
-}
-.ax-date .ax-date-body table.ax-ytable tbody td,
-.ax-date .ax-date-body table.ax-mtable tbody td {
-  height: calc(27.3rem/4);
-}
-.ax-date .ax-date-body table.ax-ytable tbody span,
-.ax-date .ax-date-body table.ax-mtable tbody span {
-  width: calc(26.6rem / 3);
-  margin: 0 calc(((36rem - 2px - 0.8rem - 0.8rem)/3 - 26.6rem/3)/2);
-}
-.ax-date.ax-with-calendar .ax-date-body table.ax-ytable tbody td,
-.ax-date.ax-with-calendar .ax-date-body table.ax-mtable tbody td {
-  height: calc(35.7rem/4);
-}
-.ax-date.ax-with-calendar .ax-date-body table.ax-ytable tbody span,
-.ax-date.ax-with-calendar .ax-date-body table.ax-mtable tbody span {
-  width: calc(33.6rem / 3);
-  margin: 0;
-}
-.ax-date .ax-date-ymd {
-  display: flex;
-}
-.ax-date .ax-date-ymd .ax-date-panel:last-child {
-  border-left: 1px solid #ebebeb;
-}
-.ax-date .ax-date-ymd .ax-date-panel:first-child {
-  border: 0;
-}
-.ax-date .ax-date-time {
-  text-align: center;
-  display: flex;
-  overflow: hidden;
-  background-color: #fff;
-  position: absolute;
-  top: 0;
-  right: 0;
-  z-index: 150;
-}
-.ax-date .ax-date-time .ax-date-panel:last-child {
-  border-left: 1px solid #ebebeb;
-}
-.ax-date .ax-date-time .ax-date-panel:first-child {
-  border: 0;
-}
-.ax-date .ax-time-title {
-  display: flex;
-  font-size: 1.2rem;
-  border-bottom: 1px solid #ebebeb;
-  padding-bottom: 0.8rem;
-  margin-bottom: 0.8rem;
-}
-.ax-date .ax-time-list {
-  display: flex;
-}
-.ax-date .ax-date-time .ax-time-item {
-  width: calc((100%/24)*12);
-  flex: auto;
-  position: relative;
-}
-.ax-date .ax-date-time .ax-time-item ul {
-  height: calc(3.8rem*6);
-  overflow-y: auto;
-  overflow-x: hidden;
-}
-.ax-date .ax-date-time .ax-time-item ul li {
-  padding-left: 4px;
-}
-.ax-date .ax-date-time .ax-time-item ul li span {
-  width: 2.8rem;
-  border-radius: 2.8rem;
-  cursor: pointer;
-}
-.ax-date .ax-date-time .ax-time-item ul::-webkit-scrollbar {
-  width: 4px;
-}
-.ax-date .ax-date-time .ax-time-item ul::-webkit-scrollbar-track {
-  display: none;
-}
-.ax-date .ax-date-time .ax-time-item ul::-webkit-scrollbar-thumb {
-  display: none;
-}
-.ax-date .ax-date-time .ax-time-item:hover ul::-webkit-scrollbar-track {
-  display: block;
-}
-.ax-date .ax-date-time .ax-time-item:hover ul::-webkit-scrollbar-thumb {
-  display: block;
-}
-.ax-date .ax-date-time .ax-time-item ul li.ax-selected span {
-  color: #fff;
-  background-color: #198cff;
-}
-.ax-date .ax-date-time .ax-time-item ul li.ax-disabled span {
-  color: #b3b3b3;
-}
-.ax-popup .ax-date,
-.ax-dialog .ax-date {
-  border-radius: 0;
-  background: transparent;
-  box-shadow: none;
-}
-.ax-dialog .ax-date {
-  display: block;
-}
-.ax-date[data-mode='inline'] {
-  margin-top: 1rem;
-}
-.ax-date .ax-footer-right a:last-child {
-  margin-left: 1.4rem;
-}
-/*plugins end*/
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/css/main.css b/fzzy-igdss-web/src/main/resources/static/axui/css/main.css
deleted file mode 100644
index d1289df..0000000
--- a/fzzy-igdss-web/src/main/resources/static/axui/css/main.css
+++ /dev/null
@@ -1,68 +0,0 @@
-@charset "utf-8";
-/*
- *Last modified: 2022-06-25 18:38:36
- *Url: https://www.axui.cn
-*/
-html,
-body {
-  height: 100%;
-  width: 100%;
-}
-body {
-  background-image: url(../images/login-bg.jpg);
-  background-repeat: no-repeat;
-  background-size: cover;
-}
-.login {
-  width: 1000px;
-  background-color: #fff;
-}
-.login .cover {
-  background-image: url(../images/login-left.jpg);
-  background-repeat: no-repeat;
-  background-size: cover;
-}
-.login .core {
-  padding-left: 28px;
-}
-.footer {
-  color: rgba(255, 255, 255, 0.5);
-  width: 100%;
-  text-align: center;
-  padding: 1.4rem 0;
-  box-sizing: border-box;
-  position: absolute;
-  left: 0;
-  bottom: 0;
-}
-.footer a {
-  color: rgba(255, 255, 255, 0.5);
-}
-@media screen and (max-width: 900px) {
-  body.ax-align-origin {
-    background-image: none;
-    display: block;
-  }
-  .login {
-    width: 100%;
-    box-shadow: none;
-    border-radius: 0;
-  }
-  .login .cover {
-    height: 20rem;
-    border-radius: 0;
-  }
-  .login .core {
-    padding-left: 0;
-  }
-  .login form {
-    margin: 0;
-  }
-  .footer {
-    position: inherit;
-    color: #666666;
-  }
-  .footer a {
-    color: #666666;
-  }
-}
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/images/login-bg.jpg b/fzzy-igdss-web/src/main/resources/static/axui/images/login-bg.jpg
deleted file mode 100644
index e3e7f0d..0000000
--- a/fzzy-igdss-web/src/main/resources/static/axui/images/login-bg.jpg
+++ /dev/null
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/js/ax.min.js b/fzzy-igdss-web/src/main/resources/static/axui/js/ax.min.js
deleted file mode 100644
index 49112ec..0000000
--- a/fzzy-igdss-web/src/main/resources/static/axui/js/ax.min.js
+++ /dev/null
@@ -1,114 +0,0 @@
-/*!
- *Last modified: 2022-06-19 00:22:31
- *Filename: ax.js
- *Description: Global JS
- *Version: v2.0.0Beta
- *Website:www.axui.cn or ax.hobly.cn
- *Contact:3217728223@qq.com
- *Author:Michael
- */
-/*!
- * Cookie v3.0.1 from https://github.com/js-cookie | AXUI鏈仛浠讳綍淇敼
- */
-!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self,function(){var i=e.Cookies,s=e.Cookies=t();s.noConflict=function(){return e.Cookies=i,s}}())}(this,(function(){"use strict";function e(e){for(var t=1;t<arguments.length;t++){var i=arguments[t];for(var s in i)e[s]=i[s]}return e}return function t(i,s){function n(t,n,a){if("undefined"!=typeof document){"number"==typeof(a=e({},s,a)).expires&&(a.expires=new Date(Date.now()+864e5*a.expires)),a.expires&&(a.expires=a.expires.toUTCString()),t=encodeURIComponent(t).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var o="";for(var r in a)a[r]&&(o+="; "+r,!0!==a[r]&&(o+="="+a[r].split(";")[0]));return document.cookie=t+"="+i.write(n,t)+o}}return Object.create({set:n,get:function(e){if("undefined"!=typeof document&&(!arguments.length||e)){for(var t=document.cookie?document.cookie.split("; "):[],s={},n=0;n<t.length;n++){var a=t[n].split("="),o=a.slice(1).join("=");try{var r=decodeURIComponent(a[0]);if(s[r]=i.read(o,r),e===r)break}catch(e){}}return e?s[e]:s}},remove:function(t,i){n(t,"",e({},i,{expires:-1}))},withAttributes:function(i){return t(this.converter,e({},this.attributes,i))},withConverter:function(i){return t(e({},this.converter,i),this.attributes)}},{attributes:{value:Object.freeze(s)},converter:{value:Object.freeze(i)}})}({read:function(e){return'"'===e[0]&&(e=e.slice(1,-1)),e.replace(/(%[\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}},{path:"/"})})),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=window||e||self).Fuse=t()}(this,(function(){"use strict";function e(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,s)}return i}function t(t){for(var i=1;i<arguments.length;i++){var s=null!=arguments[i]?arguments[i]:{};i%2?e(Object(s),!0).forEach((function(e){o(t,e,s[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(s)):e(Object(s)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(s,e))}))}return t}function i(e){return(i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){for(var i=0;i<t.length;i++){var s=t[i];s.enumerable=s.enumerable||!1,s.configurable=!0,"value"in s&&(s.writable=!0),Object.defineProperty(e,s.key,s)}}function a(e,t,i){return t&&n(e.prototype,t),i&&n(e,i),Object.defineProperty(e,"prototype",{writable:!1}),e}function o(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function r(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");var i,s;Object.defineProperty(e,"prototype",{value:Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),writable:!1}),t&&(i=e,s=t,(Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(i,s))}function l(e){return(l=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function c(e,t){if(t&&("object"==typeof t||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}function d(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var i,s=l(e);if(t){var n=l(this).constructor;i=Reflect.construct(s,arguments,n)}else i=s.apply(this,arguments);return c(this,i)}}function h(e){return function(e){if(Array.isArray(e))return u(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||function(e,t){if(e){if("string"==typeof e)return u(e,t);var i=Object.prototype.toString.call(e).slice(8,-1);return"Object"===i&&e.constructor&&(i=e.constructor.name),"Map"===i||"Set"===i?Array.from(e):"Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i)?u(e,t):void 0}}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,s=new Array(t);i<t;i++)s[i]=e[i];return s}function p(e){return Array.isArray?Array.isArray(e):"[object Array]"===b(e)}function m(e){return"string"==typeof e}function f(e){return"number"==typeof e}function g(e){return!0===e||!1===e||function(e){return v(e)&&null!==e}(e)&&"[object Boolean]"==b(e)}function v(e){return"object"===i(e)}function x(e){return null!=e}function y(e){return!e.trim().length}function b(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":Object.prototype.toString.call(e)}var w=function(e){return"Invalid value for key ".concat(e)},M=function(e){return"Pattern length exceeds max of ".concat(e,".")},E=Object.prototype.hasOwnProperty,S=function(){function e(t){var i=this;s(this,e),this._keys=[],this._keyMap={};var n=0;t.forEach((function(e){var t=D(e);n+=t.weight,i._keys.push(t),i._keyMap[t.id]=t,n+=t.weight})),this._keys.forEach((function(e){e.weight/=n}))}return a(e,[{key:"get",value:function(e){return this._keyMap[e]}},{key:"keys",value:function(){return this._keys}},{key:"toJSON",value:function(){return JSON.stringify(this._keys)}}]),e}();function D(e){var t=null,i=null,s=null,n=1;if(m(e)||p(e))s=e,t=T(e),i=C(e);else{if(!E.call(e,"name"))throw new Error(function(e){return"Missing ".concat(e," property in key")}("name"));var a=e.name;if(s=a,E.call(e,"weight")&&(n=e.weight)<=0)throw new Error(function(e){return"Property 'weight' in key '".concat(e,"' must be a positive integer")}(a));t=T(a),i=C(a)}return{path:t,id:i,weight:n,src:s}}function T(e){return p(e)?e:e.split(".")}function C(e){return p(e)?e.join("."):e}var L={useExtendedSearch:!1,getFn:function(e,t){var i=[],s=!1;return function e(t,n,a){if(x(t))if(n[a]){var o=t[n[a]];if(!x(o))return;if(a===n.length-1&&(m(o)||f(o)||g(o)))i.push(function(e){return null==e?"":function(e){if("string"==typeof e)return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(e)}(o));else if(p(o)){s=!0;for(var r=0,l=o.length;r<l;r+=1)e(o[r],n,a+1)}else n.length&&e(o,n,a+1)}else i.push(t)}(e,m(t)?t.split("."):t,0),s?i:i[0]},ignoreLocation:!1,ignoreFieldNorm:!1,fieldNormWeight:1},A=t(t(t(t({},{isCaseSensitive:!1,includeScore:!1,keys:[],shouldSort:!0,sortFn:function(e,t){return e.score===t.score?e.idx<t.idx?-1:1:e.score<t.score?-1:1}}),{includeMatches:!1,findAllMatches:!1,minMatchCharLength:1}),{location:0,threshold:.6,distance:100}),L),_=/[^ ]+/g;function I(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,i=new Map,s=Math.pow(10,t);return{get:function(t){var n=t.match(_).length;if(i.has(n))return i.get(n);var a=1/Math.pow(n,.5*e),o=parseFloat(Math.round(a*s)/s);return i.set(n,o),o},clear:function(){i.clear()}}}var k=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},i=t.getFn,n=void 0===i?A.getFn:i,a=t.fieldNormWeight,o=void 0===a?A.fieldNormWeight:a;s(this,e),this.norm=I(o,3),this.getFn=n,this.isCreated=!1,this.setIndexRecords()}return a(e,[{key:"setSources",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.docs=e}},{key:"setIndexRecords",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.records=e}},{key:"setKeys",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];this.keys=t,this._keysMap={},t.forEach((function(t,i){e._keysMap[t.id]=i}))}},{key:"create",value:function(){var e=this;!this.isCreated&&this.docs.length&&(this.isCreated=!0,m(this.docs[0])?this.docs.forEach((function(t,i){e._addString(t,i)})):this.docs.forEach((function(t,i){e._addObject(t,i)})),this.norm.clear())}},{key:"add",value:function(e){var t=this.size();m(e)?this._addString(e,t):this._addObject(e,t)}},{key:"removeAt",value:function(e){this.records.splice(e,1);for(var t=e,i=this.size();t<i;t+=1)this.records[t].i-=1}},{key:"getValueForItemAtKeyId",value:function(e,t){return e[this._keysMap[t]]}},{key:"size",value:function(){return this.records.length}},{key:"_addString",value:function(e,t){if(x(e)&&!y(e)){var i={v:e,i:t,n:this.norm.get(e)};this.records.push(i)}}},{key:"_addObject",value:function(e,t){var i=this,s={i:t,$:{}};this.keys.forEach((function(t,n){var a=i.getFn(e,t.path);if(x(a))if(p(a))!function(){for(var e=[],t=[{nestedArrIndex:-1,value:a}];t.length;){var o=t.pop(),r=o.nestedArrIndex,l=o.value;if(x(l))if(m(l)&&!y(l)){var c={v:l,i:r,n:i.norm.get(l)};e.push(c)}else p(l)&&l.forEach((function(e,i){t.push({nestedArrIndex:i,value:e})}))}s.$[n]=e}();else if(!y(a)){var o={v:a,n:i.norm.get(a)};s.$[n]=o}})),this.records.push(s)}},{key:"toJSON",value:function(){return{keys:this.keys,records:this.records}}}]),e}();function N(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},s=i.getFn,n=void 0===s?A.getFn:s,a=i.fieldNormWeight,o=void 0===a?A.fieldNormWeight:a,r=new k({getFn:n,fieldNormWeight:o});return r.setKeys(e.map(D)),r.setSources(t),r.create(),r}function O(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.errors,s=void 0===i?0:i,n=t.currentLocation,a=void 0===n?0:n,o=t.expectedLocation,r=void 0===o?0:o,l=t.distance,c=void 0===l?A.distance:l,d=t.ignoreLocation,h=void 0===d?A.ignoreLocation:d,u=s/e.length;if(h)return u;var p=Math.abs(r-a);return c?u+p/c:p?1:u}function j(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:A.minMatchCharLength,i=[],s=-1,n=-1,a=0,o=e.length;a<o;a+=1){var r=e[a];r&&-1===s?s=a:r||-1===s||((n=a-1)-s+1>=t&&i.push([s,n]),s=-1)}return e[a-1]&&a-s>=t&&i.push([s,a-1]),i}function $(e){for(var t={},i=0,s=e.length;i<s;i+=1){var n=e.charAt(i);t[n]=(t[n]||0)|1<<s-i-1}return t}var P=function(){function e(t){var i=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=n.location,o=void 0===a?A.location:a,r=n.threshold,l=void 0===r?A.threshold:r,c=n.distance,d=void 0===c?A.distance:c,h=n.includeMatches,u=void 0===h?A.includeMatches:h,p=n.findAllMatches,m=void 0===p?A.findAllMatches:p,f=n.minMatchCharLength,g=void 0===f?A.minMatchCharLength:f,v=n.isCaseSensitive,x=void 0===v?A.isCaseSensitive:v,y=n.ignoreLocation,b=void 0===y?A.ignoreLocation:y;if(s(this,e),this.options={location:o,threshold:l,distance:d,includeMatches:u,findAllMatches:m,minMatchCharLength:g,isCaseSensitive:x,ignoreLocation:b},this.pattern=x?t:t.toLowerCase(),this.chunks=[],this.pattern.length){var w=function(e,t){i.chunks.push({pattern:e,alphabet:$(e),startIndex:t})},M=this.pattern.length;if(M>32){for(var E=0,S=M%32,D=M-S;E<D;)w(this.pattern.substr(E,32),E),E+=32;if(S){var T=M-32;w(this.pattern.substr(T),T)}}else w(this.pattern,0)}}return a(e,[{key:"searchIn",value:function(e){var t=this.options,i=t.isCaseSensitive,s=t.includeMatches;if(i||(e=e.toLowerCase()),this.pattern===e){var n={isMatch:!0,score:0};return s&&(n.indices=[[0,e.length-1]]),n}var a=this.options,o=a.location,r=a.distance,l=a.threshold,c=a.findAllMatches,d=a.minMatchCharLength,u=a.ignoreLocation,p=[],m=0,f=!1;this.chunks.forEach((function(t){var i=t.pattern,n=t.alphabet,a=t.startIndex,g=function(e,t,i){var s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},n=s.location,a=void 0===n?A.location:n,o=s.distance,r=void 0===o?A.distance:o,l=s.threshold,c=void 0===l?A.threshold:l,d=s.findAllMatches,h=void 0===d?A.findAllMatches:d,u=s.minMatchCharLength,p=void 0===u?A.minMatchCharLength:u,m=s.includeMatches,f=void 0===m?A.includeMatches:m,g=s.ignoreLocation,v=void 0===g?A.ignoreLocation:g;if(t.length>32)throw new Error(M(32));for(var x,y=t.length,b=e.length,w=Math.max(0,Math.min(a,b)),E=c,S=w,D=p>1||f,T=D?Array(b):[];(x=e.indexOf(t,S))>-1;){var C=O(t,{currentLocation:x,expectedLocation:w,distance:r,ignoreLocation:v});if(E=Math.min(C,E),S=x+y,D)for(var L=0;L<y;)T[x+L]=1,L+=1}S=-1;for(var _=[],I=1,k=y+b,N=1<<y-1,$=0;$<y;$+=1){for(var P=0,z=k;P<z;){var Y=O(t,{errors:$,currentLocation:w+z,expectedLocation:w,distance:r,ignoreLocation:v});Y<=E?P=z:k=z,z=Math.floor((k-P)/2+P)}k=z;var q=Math.max(1,w-z+1),B=h?b:Math.min(w+z,b)+y,H=Array(B+2);H[B+1]=(1<<$)-1;for(var F=B;F>=q;F-=1){var R=F-1,V=i[e.charAt(R)];if(D&&(T[R]=+!!V),H[F]=(H[F+1]<<1|1)&V,$&&(H[F]|=(_[F+1]|_[F])<<1|1|_[F+1]),H[F]&N&&(I=O(t,{errors:$,currentLocation:R,expectedLocation:w,distance:r,ignoreLocation:v}))<=E){if(E=I,(S=R)<=w)break;q=Math.max(1,2*w-S)}}var G=O(t,{errors:$+1,currentLocation:w,expectedLocation:w,distance:r,ignoreLocation:v});if(G>E)break;_=H}var U={isMatch:S>=0,score:Math.max(.001,I)};if(D){var W=j(T,p);W.length?f&&(U.indices=W):U.isMatch=!1}return U}(e,i,n,{location:o+a,distance:r,threshold:l,findAllMatches:c,minMatchCharLength:d,includeMatches:s,ignoreLocation:u}),v=g.isMatch,x=g.score,y=g.indices;v&&(f=!0),m+=x,v&&y&&(p=[].concat(h(p),h(y)))}));var g={isMatch:f,score:f?m/this.chunks.length:1};return f&&s&&(g.indices=p),g}}]),e}(),z=function(){function e(t){s(this,e),this.pattern=t}return a(e,[{key:"search",value:function(){}}],[{key:"isMultiMatch",value:function(e){return Y(e,this.multiRegex)}},{key:"isSingleMatch",value:function(e){return Y(e,this.singleRegex)}}]),e}();function Y(e,t){var i=e.match(t);return i?i[1]:null}var q=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){var t=e===this.pattern;return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"exact"}},{key:"multiRegex",get:function(){return/^="(.*)"$/}},{key:"singleRegex",get:function(){return/^=(.*)$/}}]),i}(z),B=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){var t=-1===e.indexOf(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"$/}},{key:"singleRegex",get:function(){return/^!(.*)$/}}]),i}(z),H=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){var t=e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,this.pattern.length-1]}}}],[{key:"type",get:function(){return"prefix-exact"}},{key:"multiRegex",get:function(){return/^\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^\^(.*)$/}}]),i}(z),F=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){var t=!e.startsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-prefix-exact"}},{key:"multiRegex",get:function(){return/^!\^"(.*)"$/}},{key:"singleRegex",get:function(){return/^!\^(.*)$/}}]),i}(z),R=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){var t=e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[e.length-this.pattern.length,e.length-1]}}}],[{key:"type",get:function(){return"suffix-exact"}},{key:"multiRegex",get:function(){return/^"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^(.*)\$$/}}]),i}(z),V=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){var t=!e.endsWith(this.pattern);return{isMatch:t,score:t?0:1,indices:[0,e.length-1]}}}],[{key:"type",get:function(){return"inverse-suffix-exact"}},{key:"multiRegex",get:function(){return/^!"(.*)"\$$/}},{key:"singleRegex",get:function(){return/^!(.*)\$$/}}]),i}(z),G=function(e){r(i,e);var t=d(i);function i(e){var n,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=a.location,r=void 0===o?A.location:o,l=a.threshold,c=void 0===l?A.threshold:l,d=a.distance,h=void 0===d?A.distance:d,u=a.includeMatches,p=void 0===u?A.includeMatches:u,m=a.findAllMatches,f=void 0===m?A.findAllMatches:m,g=a.minMatchCharLength,v=void 0===g?A.minMatchCharLength:g,x=a.isCaseSensitive,y=void 0===x?A.isCaseSensitive:x,b=a.ignoreLocation,w=void 0===b?A.ignoreLocation:b;return s(this,i),(n=t.call(this,e))._bitapSearch=new P(e,{location:r,threshold:c,distance:h,includeMatches:p,findAllMatches:f,minMatchCharLength:v,isCaseSensitive:y,ignoreLocation:w}),n}return a(i,[{key:"search",value:function(e){return this._bitapSearch.searchIn(e)}}],[{key:"type",get:function(){return"fuzzy"}},{key:"multiRegex",get:function(){return/^"(.*)"$/}},{key:"singleRegex",get:function(){return/^(.*)$/}}]),i}(z),U=function(e){r(i,e);var t=d(i);function i(e){return s(this,i),t.call(this,e)}return a(i,[{key:"search",value:function(e){for(var t,i=0,s=[],n=this.pattern.length;(t=e.indexOf(this.pattern,i))>-1;)i=t+n,s.push([t,i-1]);var a=!!s.length;return{isMatch:a,score:a?0:1,indices:s}}}],[{key:"type",get:function(){return"include"}},{key:"multiRegex",get:function(){return/^'"(.*)"$/}},{key:"singleRegex",get:function(){return/^'(.*)$/}}]),i}(z),W=[q,U,H,F,V,R,B,G],X=W.length,Q=/ +(?=([^\"]*\"[^\"]*\")*[^\"]*$)/;function K(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return e.split("|").map((function(e){for(var i=e.trim().split(Q).filter((function(e){return e&&!!e.trim()})),s=[],n=0,a=i.length;n<a;n+=1){for(var o=i[n],r=!1,l=-1;!r&&++l<X;){var c=W[l],d=c.isMultiMatch(o);d&&(s.push(new c(d,t)),r=!0)}if(!r)for(l=-1;++l<X;){var h=W[l],u=h.isSingleMatch(o);if(u){s.push(new h(u,t));break}}}return s}))}var J=new Set([G.type,U.type]),Z=function(){function e(t){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=i.isCaseSensitive,a=void 0===n?A.isCaseSensitive:n,o=i.includeMatches,r=void 0===o?A.includeMatches:o,l=i.minMatchCharLength,c=void 0===l?A.minMatchCharLength:l,d=i.ignoreLocation,h=void 0===d?A.ignoreLocation:d,u=i.findAllMatches,p=void 0===u?A.findAllMatches:u,m=i.location,f=void 0===m?A.location:m,g=i.threshold,v=void 0===g?A.threshold:g,x=i.distance,y=void 0===x?A.distance:x;s(this,e),this.query=null,this.options={isCaseSensitive:a,includeMatches:r,minMatchCharLength:c,findAllMatches:p,ignoreLocation:h,location:f,threshold:v,distance:y},this.pattern=a?t:t.toLowerCase(),this.query=K(this.pattern,this.options)}return a(e,[{key:"searchIn",value:function(e){var t=this.query;if(!t)return{isMatch:!1,score:1};var i=this.options,s=i.includeMatches;e=i.isCaseSensitive?e:e.toLowerCase();for(var n=0,a=[],o=0,r=0,l=t.length;r<l;r+=1){var c=t[r];a.length=0,n=0;for(var d=0,u=c.length;d<u;d+=1){var p=c[d],m=p.search(e),f=m.isMatch,g=m.indices,v=m.score;if(!f){o=0,n=0,a.length=0;break}if(n+=1,o+=v,s){var x=p.constructor.type;J.has(x)?a=[].concat(h(a),h(g)):a.push(g)}}if(n){var y={isMatch:!0,score:o/n};return s&&(y.indices=a),y}}return{isMatch:!1,score:1}}}],[{key:"condition",value:function(e,t){return t.useExtendedSearch}}]),e}(),ee=[];function te(e,t){for(var i=0,s=ee.length;i<s;i+=1){var n=ee[i];if(n.condition(e,t))return new n(e,t)}return new P(e,t)}var ie=function(e){return!(!e.$and&&!e.$or)},se=function(e){return!!e.$path},ne=function(e){return!p(e)&&v(e)&&!ie(e)},ae=function(e){return o({},"$and",Object.keys(e).map((function(t){return o({},t,e[t])})))};function oe(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},s=i.auto,n=void 0===s||s,a=function e(i){var s=Object.keys(i),a=se(i);if(!a&&s.length>1&&!ie(i))return e(ae(i));if(ne(i)){var o=a?i.$path:s[0],r=a?i.$val:i[o];if(!m(r))throw new Error(w(o));var l={keyId:C(o),pattern:r};return n&&(l.searcher=te(r,t)),l}var c={children:[],operator:s[0]};return s.forEach((function(t){var s=i[t];p(s)&&s.forEach((function(t){c.children.push(e(t))}))})),c};return ie(e)||(e=ae(e)),a(e)}function re(e,t){var i=t.ignoreFieldNorm,s=void 0===i?A.ignoreFieldNorm:i;e.forEach((function(e){var t=1;e.matches.forEach((function(e){var i=e.key,n=e.norm,a=e.score,o=i?i.weight:null;t*=Math.pow(0===a&&o?Number.EPSILON:a,(o||1)*(s?1:n))})),e.score=t}))}function le(e,t){var i=e.matches;t.matches=[],x(i)&&i.forEach((function(e){if(x(e.indices)&&e.indices.length){var i={indices:e.indices,value:e.value};e.key&&(i.key=e.key.src),e.idx>-1&&(i.refIndex=e.idx),t.matches.push(i)}}))}function ce(e,t){t.score=e.score}function de(e,t){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},s=i.includeMatches,n=void 0===s?A.includeMatches:s,a=i.includeScore,o=void 0===a?A.includeScore:a,r=[];return n&&r.push(le),o&&r.push(ce),e.map((function(e){var i=e.idx,s={item:t[i],refIndex:i};return r.length&&r.forEach((function(t){t(e,s)})),s}))}var he=function(){function e(i){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=arguments.length>2?arguments[2]:void 0;s(this,e),this.options=t(t({},A),n),this.options.useExtendedSearch,this._keyStore=new S(this.options.keys),this.setCollection(i,a)}return a(e,[{key:"setCollection",value:function(e,t){if(this._docs=e,t&&!(t instanceof k))throw new Error("Incorrect 'index' type");this._myIndex=t||N(this.options.keys,this._docs,{getFn:this.options.getFn,fieldNormWeight:this.options.fieldNormWeight})}},{key:"add",value:function(e){x(e)&&(this._docs.push(e),this._myIndex.add(e))}},{key:"remove",value:function(){for(var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:function(){return!1},t=[],i=0,s=this._docs.length;i<s;i+=1){var n=this._docs[i];e(n,i)&&(this.removeAt(i),i-=1,s-=1,t.push(n))}return t}},{key:"removeAt",value:function(e){this._docs.splice(e,1),this._myIndex.removeAt(e)}},{key:"getIndex",value:function(){return this._myIndex}},{key:"search",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.limit,s=void 0===i?-1:i,n=this.options,a=n.includeMatches,o=n.includeScore,r=n.shouldSort,l=n.sortFn,c=n.ignoreFieldNorm,d=m(e)?m(this._docs[0])?this._searchStringList(e):this._searchObjectList(e):this._searchLogical(e);return re(d,{ignoreFieldNorm:c}),r&&d.sort(l),f(s)&&s>-1&&(d=d.slice(0,s)),de(d,this._docs,{includeMatches:a,includeScore:o})}},{key:"_searchStringList",value:function(e){var t=te(e,this.options),i=this._myIndex.records,s=[];return i.forEach((function(e){var i=e.v,n=e.i,a=e.n;if(x(i)){var o=t.searchIn(i),r=o.isMatch,l=o.score,c=o.indices;r&&s.push({item:i,idx:n,matches:[{score:l,value:i,norm:a,indices:c}]})}})),s}},{key:"_searchLogical",value:function(e){var t=this,i=oe(e,this.options),s=this._myIndex.records,n={},a=[];return s.forEach((function(e){var s=e.$,o=e.i;if(x(s)){var r=function e(i,s,n){if(!i.children){var a=i.keyId,o=i.searcher,r=t._findMatches({key:t._keyStore.get(a),value:t._myIndex.getValueForItemAtKeyId(s,a),searcher:o});return r&&r.length?[{idx:n,item:s,matches:r}]:[]}for(var l=[],c=0,d=i.children.length;c<d;c+=1){var u=e(i.children[c],s,n);if(u.length)l.push.apply(l,h(u));else if("$and"===i.operator)return[]}return l}(i,s,o);r.length&&(n[o]||(n[o]={idx:o,item:s,matches:[]},a.push(n[o])),r.forEach((function(e){var t,i=e.matches;(t=n[o].matches).push.apply(t,h(i))})))}})),a}},{key:"_searchObjectList",value:function(e){var t=this,i=te(e,this.options),s=this._myIndex,n=s.keys,a=s.records,o=[];return a.forEach((function(e){var s=e.$,a=e.i;if(x(s)){var r=[];n.forEach((function(e,n){r.push.apply(r,h(t._findMatches({key:e,value:s[n],searcher:i})))})),r.length&&o.push({idx:a,item:s,matches:r})}})),o}},{key:"_findMatches",value:function(e){var t=e.key,i=e.value,s=e.searcher;if(!x(i))return[];var n=[];if(p(i))i.forEach((function(e){var i=e.v,a=e.i,o=e.n;if(x(i)){var r=s.searchIn(i),l=r.isMatch,c=r.score,d=r.indices;l&&n.push({score:c,key:t,value:i,idx:a,norm:o,indices:d})}}));else{var a=i.v,o=i.n,r=s.searchIn(a),l=r.isMatch,c=r.score,d=r.indices;l&&n.push({score:c,key:t,value:a,norm:o,indices:d})}return n}}]),e}();return he.version="6.5.3",he.createIndex=N,he.parseIndex=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=t.getFn,s=void 0===i?A.getFn:i,n=t.fieldNormWeight,a=void 0===n?A.fieldNormWeight:n,o=e.keys,r=e.records,l=new k({getFn:s,fieldNormWeight:a});return l.setKeys(o),l.setIndexRecords(r),l},he.config=A,he.parseQuery=oe,function(){ee.push.apply(ee,arguments)}(Z),he})),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof globalThis?globalThis:e||self).Popper={})}(this,(function(e){"use strict";function t(e,t){var i=e.getBoundingClientRect();return{width:i.width/1,height:i.height/1,top:i.top/1,right:i.right/1,bottom:i.bottom/1,left:i.left/1,x:i.left/1,y:i.top/1}}function i(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function s(e){var t=i(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function n(e){return e instanceof i(e).Element||e instanceof Element}function a(e){return e instanceof i(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof i(e).ShadowRoot||e instanceof ShadowRoot)}function r(e){return e?(e.nodeName||"").toLowerCase():null}function l(e){return((n(e)?e.ownerDocument:e.document)||window.document).documentElement}function c(e){return t(l(e)).left+s(e).scrollLeft}function d(e){return i(e).getComputedStyle(e)}function h(e){var t=d(e),i=t.overflow,s=t.overflowX,n=t.overflowY;return/auto|scroll|overlay|hidden/.test(i+n+s)}function u(e,n,o){void 0===o&&(o=!1);var d=a(n);a(n)&&function(e){var t=e.getBoundingClientRect(),i=t.width/e.offsetWidth||1,s=t.height/e.offsetHeight||1}(n);var u,p,m=l(n),f=t(e),g={scrollLeft:0,scrollTop:0},v={x:0,y:0};return(d||!d&&!o)&&(("body"!==r(n)||h(m))&&(g=(u=n)!==i(u)&&a(u)?{scrollLeft:(p=u).scrollLeft,scrollTop:p.scrollTop}:s(u)),a(n)?((v=t(n)).x+=n.clientLeft,v.y+=n.clientTop):m&&(v.x=c(m))),{x:f.left+g.scrollLeft-v.x,y:f.top+g.scrollTop-v.y,width:f.width,height:f.height}}function p(e){var i=t(e),s=e.offsetWidth,n=e.offsetHeight;return Math.abs(i.width-s)<=1&&(s=i.width),Math.abs(i.height-n)<=1&&(n=i.height),{x:e.offsetLeft,y:e.offsetTop,width:s,height:n}}function m(e){return"html"===r(e)?e:e.assignedSlot||e.parentNode||(o(e)?e.host:null)||l(e)}function f(e,t){var s;void 0===t&&(t=[]);var n=function e(t){return["html","body","#document"].indexOf(r(t))>=0?t.ownerDocument.body:a(t)&&h(t)?t:e(m(t))}(e),o=n===(null==(s=e.ownerDocument)?void 0:s.body),l=i(n),c=o?[l].concat(l.visualViewport||[],h(n)?n:[]):n,d=t.concat(c);return o?d:d.concat(f(m(c)))}function g(e){return["table","td","th"].indexOf(r(e))>=0}function v(e){return a(e)&&"fixed"!==d(e).position?e.offsetParent:null}function x(e){for(var t=i(e),s=v(e);s&&g(s)&&"static"===d(s).position;)s=v(s);return s&&("html"===r(s)||"body"===r(s)&&"static"===d(s).position)?t:s||function(e){var t=-1!==navigator.userAgent.toLowerCase().indexOf("firefox");if(-1!==navigator.userAgent.indexOf("Trident")&&a(e)&&"fixed"===d(e).position)return null;for(var i=m(e);a(i)&&["html","body"].indexOf(r(i))<0;){var s=d(i);if("none"!==s.transform||"none"!==s.perspective||"paint"===s.contain||-1!==["transform","perspective"].indexOf(s.willChange)||t&&"filter"===s.willChange||t&&s.filter&&"none"!==s.filter)return i;i=i.parentNode}return null}(e)||t}var y="top",b="bottom",w="right",M="left",E=[y,b,w,M],S=E.reduce((function(e,t){return e.concat([t+"-start",t+"-end"])}),[]),D=[].concat(E,["auto"]).reduce((function(e,t){return e.concat([t,t+"-start",t+"-end"])}),[]),T=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function C(e){var t=new Map,i=new Set,s=[];return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){i.has(e.name)||function e(n){i.add(n.name),[].concat(n.requires||[],n.requiresIfExists||[]).forEach((function(s){if(!i.has(s)){var n=t.get(s);n&&e(n)}})),s.push(n)}(e)})),s}function L(e){for(var t=arguments.length,i=new Array(t>1?t-1:0),s=1;s<t;s++)i[s-1]=arguments[s];return[].concat(i).reduce((function(e,t){return e.replace(/%s/,t)}),e)}var A='Popper: modifier "%s" provided an invalid %s property, expected %s but got %s',_=["name","enabled","phase","fn","effect","requires","options"];function I(e){return e.split("-")[0]}var k=Math.max,N=Math.min,O=Math.round;function j(e,t){var i=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(i&&o(i)){var s=t;do{if(s&&e.isSameNode(s))return!0;s=s.parentNode||s.host}while(s)}return!1}function $(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function P(e,n){return"viewport"===n?$(function(e){var t=i(e),s=l(e),n=t.visualViewport,a=s.clientWidth,o=s.clientHeight,r=0,d=0;return n&&(a=n.width,o=n.height,/^((?!chrome|android).)*safari/i.test(navigator.userAgent)||(r=n.offsetLeft,d=n.offsetTop)),{width:a,height:o,x:r+c(e),y:d}}(e)):a(n)?function(e){var i=t(e);return i.top=i.top+e.clientTop,i.left=i.left+e.clientLeft,i.bottom=i.top+e.clientHeight,i.right=i.left+e.clientWidth,i.width=e.clientWidth,i.height=e.clientHeight,i.x=i.left,i.y=i.top,i}(n):$(function(e){var t,i=l(e),n=s(e),a=null==(t=e.ownerDocument)?void 0:t.body,o=k(i.scrollWidth,i.clientWidth,a?a.scrollWidth:0,a?a.clientWidth:0),r=k(i.scrollHeight,i.clientHeight,a?a.scrollHeight:0,a?a.clientHeight:0),h=-n.scrollLeft+c(e),u=-n.scrollTop;return"rtl"===d(a||i).direction&&(h+=k(i.clientWidth,a?a.clientWidth:0)-o),{width:o,height:r,x:h,y:u}}(l(e)))}function z(e,t,i){var s="clippingParents"===t?function(e){var t=f(m(e)),i=["absolute","fixed"].indexOf(d(e).position)>=0&&a(e)?x(e):e;return n(i)?t.filter((function(e){return n(e)&&j(e,i)&&"body"!==r(e)})):[]}(e):[].concat(t),o=[].concat(s,[i]),l=o[0],c=o.reduce((function(t,i){var s=P(e,i);return t.top=k(s.top,t.top),t.right=N(s.right,t.right),t.bottom=N(s.bottom,t.bottom),t.left=k(s.left,t.left),t}),P(e,l));return c.width=c.right-c.left,c.height=c.bottom-c.top,c.x=c.left,c.y=c.top,c}function Y(e){return e.split("-")[1]}function q(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function B(e){var t,i=e.reference,s=e.element,n=e.placement,a=n?I(n):null,o=n?Y(n):null,r=i.x+i.width/2-s.width/2,l=i.y+i.height/2-s.height/2;switch(a){case y:t={x:r,y:i.y-s.height};break;case b:t={x:r,y:i.y+i.height};break;case w:t={x:i.x+i.width,y:l};break;case M:t={x:i.x-s.width,y:l};break;default:t={x:i.x,y:i.y}}var c=a?q(a):null;if(null!=c){var d="y"===c?"height":"width";switch(o){case"start":t[c]=t[c]-(i[d]/2-s[d]/2);break;case"end":t[c]=t[c]+(i[d]/2-s[d]/2)}}return t}function H(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function F(e,t){return t.reduce((function(t,i){return t[i]=e,t}),{})}function R(e,i){void 0===i&&(i={});var s=i,a=s.placement,o=void 0===a?e.placement:a,r=s.boundary,c=void 0===r?"clippingParents":r,d=s.rootBoundary,h=void 0===d?"viewport":d,u=s.elementContext,p=void 0===u?"popper":u,m=s.altBoundary,f=void 0!==m&&m,g=s.padding,v=void 0===g?0:g,x=H("number"!=typeof v?v:F(v,E)),M="popper"===p?"reference":"popper",S=e.rects.popper,D=e.elements[f?M:p],T=z(n(D)?D:D.contextElement||l(e.elements.popper),c,h),C=t(e.elements.reference),L=B({reference:C,element:S,strategy:"absolute",placement:o}),A=$(Object.assign({},S,L)),_="popper"===p?A:C,I={top:T.top-_.top+x.top,bottom:_.bottom-T.bottom+x.bottom,left:T.left-_.left+x.left,right:_.right-T.right+x.right},k=e.modifiersData.offset;if("popper"===p&&k){var N=k[o];Object.keys(I).forEach((function(e){var t=[w,b].indexOf(e)>=0?1:-1,i=[y,b].indexOf(e)>=0?"y":"x";I[e]+=N[i]*t}))}return I}var V="Popper: Invalid reference or popper argument provided. They must be either a DOM element or virtual element.",G={placement:"bottom",modifiers:[],strategy:"absolute",fixDistance:24};function U(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];return!t.some((function(e){return!(e&&"function"==typeof e.getBoundingClientRect)}))}function W(e){void 0===e&&(e={});var t=e,i=t.defaultModifiers,s=void 0===i?[]:i,a=t.defaultOptions,o=void 0===a?G:a;return function(e,t,i){void 0===i&&(i=o);var a,r,l={placement:"bottom",orderedModifiers:[],options:Object.assign({},G,o),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},c=[],h=!1,m={state:l,setOptions:function(i){var a="function"==typeof i?i(l.options):i;g(),l.options=Object.assign({},o,l.options,a),l.scrollParents={reference:n(e)?f(e):e.contextElement?f(e.contextElement):[],popper:f(t)};var r,h,u,p=function(e){var t=C(e);return T.reduce((function(e,i){return e.concat(t.filter((function(e){return e.phase===i})))}),[])}(function(e){var t=e.reduce((function(e,t){var i=e[t.name];return e[t.name]=i?Object.assign({},i,t,{options:Object.assign({},i.options,t.options),data:Object.assign({},i.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}([].concat(s,l.options.modifiers)));l.orderedModifiers=p.filter((function(e){return e.enabled})),function(e){e.forEach((function(t){[].concat(Object.keys(t),_).filter((function(e,t,i){return i.indexOf(e)===t})).forEach((function(i){switch(i){case"name":"string"!=typeof t.name&&console.error(L(A,String(t.name),'"name"','"string"','"'+String(t.name)+'"'));break;case"enabled":"boolean"!=typeof t.enabled&&console.error(L(A,t.name,'"enabled"','"boolean"','"'+String(t.enabled)+'"'));break;case"phase":T.indexOf(t.phase)<0&&console.error(L(A,t.name,'"phase"',"either "+T.join(", "),'"'+String(t.phase)+'"'));break;case"fn":"function"!=typeof t.fn&&console.error(L(A,t.name,'"fn"','"function"','"'+String(t.fn)+'"'));break;case"effect":null!=t.effect&&"function"!=typeof t.effect&&console.error(L(A,t.name,'"effect"','"function"','"'+String(t.fn)+'"'));break;case"requires":null==t.requires||Array.isArray(t.requires)||console.error(L(A,t.name,'"requires"','"array"','"'+String(t.requires)+'"'));break;case"requiresIfExists":Array.isArray(t.requiresIfExists)||console.error(L(A,t.name,'"requiresIfExists"','"array"','"'+String(t.requiresIfExists)+'"'));break;case"options":case"data":break;default:console.error('PopperJS: an invalid property has been provided to the "'+t.name+'" modifier, valid properties are '+_.map((function(e){return'"'+e+'"'})).join(", ")+'; but "'+i+'" was provided.')}t.requires&&t.requires.forEach((function(i){null==e.find((function(e){return e.name===i}))&&console.error(L('Popper: modifier "%s" requires "%s", but "%s" modifier is not available',String(t.name),i,i))}))}))}))}((r=[].concat(p,l.options.modifiers),h=function(e){return e.name},u=new Set,r.filter((function(e){var t=h(e);if(!u.has(t))return u.add(t),!0})))),"auto"===I(l.options.placement)&&(l.orderedModifiers.find((function(e){return"flip"===e.name}))||console.error(['Popper: "auto" placements require the "flip" modifier be',"present and enabled to work."].join(" ")));var v=d(t);return[v.marginTop,v.marginRight,v.marginBottom,v.marginLeft].some((function(e){return parseFloat(e)}))&&console.warn(['Popper: CSS "margin" styles cannot be used to apply padding',"between the popper and its reference element or boundary.","To replicate margin, use the `offset` modifier, as well as","the `padding` option in the `preventOverflow` and `flip`","modifiers."].join(" ")),l.orderedModifiers.forEach((function(e){var t=e.name,i=e.options,s=void 0===i?{}:i,n=e.effect;if("function"==typeof n){var a=n({state:l,name:t,instance:m,options:s});c.push(a||function(){})}})),m.update()},forceUpdate:function(){if(!h){var e=l.elements,t=e.reference,i=e.popper;if(U(t,i)){l.rects={reference:u(t,x(i),"fixed"===l.options.strategy),popper:p(i)},l.reset=!1,l.placement=l.options.placement,l.orderedModifiers.forEach((function(e){return l.modifiersData[e.name]=Object.assign({},e.data)}));for(var s=0,n=0;n<l.orderedModifiers.length;n++){if((s+=1)>100){console.error("Popper: An infinite loop in the modifiers cycle has been detected! The cycle has been interrupted to prevent a browser crash.");break}if(!0!==l.reset){var a=l.orderedModifiers[n],o=a.fn,r=a.options,c=void 0===r?{}:r,d=a.name;"function"==typeof o&&(l=o({state:l,options:c,name:d,instance:m})||l)}else l.reset=!1,n=-1}}else console.error(V)}},update:(a=function(){return new Promise((function(e){m.forceUpdate(),e(l)}))},function(){return r||(r=new Promise((function(e){Promise.resolve().then((function(){r=void 0,e(a())}))}))),r}),destroy:function(){g(),h=!0}};if(!U(e,t))return console.error(V),m;function g(){c.forEach((function(e){return e()})),c=[]}return m.setOptions(i).then((function(e){!h&&i.onFirstUpdate&&i.onFirstUpdate(e)})),m}}var X={passive:!0};var Q={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,s=e.instance,n=e.options,a=n.scroll,o=void 0===a||a,r=n.resize,l=void 0===r||r,c=i(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&d.forEach((function(e){e.addEventListener("scroll",s.update,X)})),l&&c.addEventListener("resize",s.update,X),function(){o&&d.forEach((function(e){e.removeEventListener("scroll",s.update,X)})),l&&c.removeEventListener("resize",s.update,X)}},data:{}};var K={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,i=e.name;t.modifiersData[i]=B({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},J={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Z(e){var t,s=e.popper,n=e.popperRect,a=e.placement,o=e.variation,r=e.offsets,c=e.position,h=e.gpuAcceleration,u=e.adaptive,p=e.roundOffsets,m=!0===p?function(e){var t=e.x,i=e.y,s=window.devicePixelRatio||1;return{x:O(O(t*s)/s)||0,y:O(O(i*s)/s)||0}}(r):"function"==typeof p?p(r):r,f=m.x,g=void 0===f?0:f,v=m.y,E=void 0===v?0:v,S=r.hasOwnProperty("x"),D=r.hasOwnProperty("y"),T=M,C=y,L=window;if(u){var A=x(s),_="clientHeight",I="clientWidth";A===i(s)&&"static"!==d(A=l(s)).position&&"absolute"===c&&(_="scrollHeight",I="scrollWidth"),A=A,a!==y&&(a!==M&&a!==w||"end"!==o)||(C=b,E-=A[_]-n.height,E*=h?1:-1),a!==M&&(a!==y&&a!==b||"end"!==o)||(T=w,g-=A[I]-n.width,g*=h?1:-1)}var k,N=Object.assign({position:c},u&&J);return h?Object.assign({},N,((k={})[C]=D?"0":"",k[T]=S?"0":"",k.transform=(L.devicePixelRatio||1)<=1?"translate("+g+"px, "+E+"px)":"translate3d("+g+"px, "+E+"px, 0)",k)):Object.assign({},N,((t={})[C]=D?E+"px":"",t[T]=S?g+"px":"",t.transform="",t))}var ee={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,i=e.options,s=i.gpuAcceleration,n=void 0===s||s,a=i.adaptive,o=void 0===a||a,r=i.roundOffsets,l=void 0===r||r,c=d(t.elements.popper).transitionProperty||"";o&&["transform","top","right","bottom","left"].some((function(e){return c.indexOf(e)>=0}))&&console.warn(["Popper: Detected CSS transitions on at least one of the following",'CSS properties: "transform", "top", "right", "bottom", "left".',"\n\n",'Disable the "computeStyles" modifier\'s `adaptive` option to allow',"for smooth transitions, or remove these properties from the CSS","transition declaration on the popper element if only transitioning","opacity or background-color for example.","\n\n","We recommend using the popper element as a wrapper around an inner","element that can have any CSS property transitioned for animations."].join(" "));var h={placement:I(t.placement),variation:Y(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:n};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,Z(Object.assign({},h,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:o,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,Z(Object.assign({},h,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-placement":t.placement})},data:{}};var te={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var i=t.styles[e]||{},s=t.attributes[e]||{},n=t.elements[e];a(n)&&r(n)&&(Object.assign(n.style,i),Object.keys(s).forEach((function(e){var t=s[e];!1===t?n.removeAttribute(e):n.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,i={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,i.popper),t.styles=i,t.elements.arrow&&Object.assign(t.elements.arrow.style,i.arrow),function(){Object.keys(t.elements).forEach((function(e){var s=t.elements[e],n=t.attributes[e]||{},o=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:i[e]).reduce((function(e,t){return e[t]="",e}),{});a(s)&&r(s)&&(Object.assign(s.style,o),Object.keys(n).forEach((function(e){s.removeAttribute(e)})))}))}},requires:["computeStyles"]};var ie={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,i=e.options,s=e.name,n=i.offset,a=void 0===n?[0,0]:n,o=D.reduce((function(e,i){return e[i]=function(e,t,i){var s=I(e),n=[M,y].indexOf(s)>=0?-1:1,a="function"==typeof i?i(Object.assign({},t,{placement:e})):i,o=a[0],r=a[1];return o=o||0,r=(r||0)*n,[M,w].indexOf(s)>=0?{x:r,y:o}:{x:o,y:r}}(i,t.rects,a),e}),{}),r=o[t.placement],l=r.x,c=r.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=c),t.modifiersData[s]=o}},se={left:"right",right:"left",bottom:"top",top:"bottom"};function ne(e){return e.replace(/left|right|bottom|top/g,(function(e){return se[e]}))}var ae={start:"end",end:"start"};function oe(e){return e.replace(/start|end/g,(function(e){return ae[e]}))}function re(e,t){void 0===t&&(t={});var i=t,s=i.placement,n=i.boundary,a=i.rootBoundary,o=i.padding,r=i.flipVariations,l=i.allowedAutoPlacements,c=void 0===l?D:l,d=Y(s),h=d?r?S:S.filter((function(e){return Y(e)===d})):E,u=h.filter((function(e){return c.indexOf(e)>=0}));0===u.length&&(u=h,console.error(["Popper: The `allowedAutoPlacements` option did not allow any","placements. Ensure the `placement` option matches the variation","of the allowed placements.",'For example, "auto" cannot be used to allow "bottom-start".','Use "auto-start" instead.'].join(" ")));var p=u.reduce((function(t,i){return t[i]=R(e,{placement:i,boundary:n,rootBoundary:a,padding:o})[I(i)],t}),{});return Object.keys(p).sort((function(e,t){return p[e]-p[t]}))}var le={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,i=e.options,s=e.name;if(!t.modifiersData[s]._skip){for(var n=i.mainAxis,a=void 0===n||n,o=i.altAxis,r=void 0===o||o,l=i.fallbackPlacements,c=i.padding,d=i.boundary,h=i.rootBoundary,u=i.altBoundary,p=i.flipVariations,m=void 0===p||p,f=i.allowedAutoPlacements,g=t.options.placement,v=I(g),x=l||(v!==g&&m?function(e){if("auto"===I(e))return[];var t=ne(e);return[oe(e),t,oe(t)]}(g):[ne(g)]),E=[g].concat(x).reduce((function(e,i){return e.concat("auto"===I(i)?re(t,{placement:i,boundary:d,rootBoundary:h,padding:c,flipVariations:m,allowedAutoPlacements:f}):i)}),[]),S=t.rects.reference,D=t.rects.popper,T=new Map,C=!0,L=E[0],A=0;A<E.length;A++){var _=E[A],k=I(_),N="start"===Y(_),O=[y,b].indexOf(k)>=0,j=O?"width":"height",$=R(t,{placement:_,boundary:d,rootBoundary:h,altBoundary:u,padding:c}),P=O?N?w:M:N?b:y;S[j]>D[j]&&(P=ne(P));var z=ne(P),q=[];if(a&&q.push($[k]<=0),r&&q.push($[P]<=0,$[z]<=0),q.every((function(e){return e}))){L=_,C=!1;break}T.set(_,q)}if(C)for(var B=function(e){var t=E.find((function(t){var i=T.get(t);if(i)return i.slice(0,e).every((function(e){return e}))}));if(t)return L=t,"break"},H=m?3:1;H>0;H--){if("break"===B(H))break}t.placement!==L&&(t.modifiersData[s]._skip=!0,t.placement=L,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function ce(e,t,i){return k(e,N(t,i))}var de={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,i=e.options,s=e.name,n=i.mainAxis,a=void 0===n||n,o=i.altAxis,r=void 0!==o&&o,l=i.boundary,c=i.rootBoundary,d=i.altBoundary,h=i.padding,u=i.tether,m=void 0===u||u,f=i.tetherOffset,g=void 0===f?0:f,v=R(t,{boundary:l,rootBoundary:c,padding:h,altBoundary:d}),E=I(t.placement),S=Y(t.placement),D=!S,T=q(E),C="x"===T?"y":"x",L=t.modifiersData.popperOffsets,A=t.rects.reference,_=t.rects.popper,O="function"==typeof g?g(Object.assign({},t.rects,{placement:t.placement})):g,j={x:0,y:0};if(L){if(a||r){var $="y"===T?y:M,P="y"===T?b:w,z="y"===T?"height":"width",B=L[T],H=L[T]+v[$],F=L[T]-v[P],V=m?-_[z]/2:0,G="start"===S?A[z]:_[z],U="start"===S?-_[z]:-A[z],W=t.elements.arrow,X=m&&W?p(W):{width:0,height:0},Q=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},K=Q[$],J=Q[P],Z=ce(0,A[z],X[z]),ee=D?A[z]/2-V-Z-K-O:G-Z-K-O,te=D?-A[z]/2+V+Z+J+O:U+Z+J+O,ie=t.elements.arrow&&x(t.elements.arrow),se=ie?"y"===T?ie.clientTop||0:ie.clientLeft||0:0,ne=t.modifiersData.offset?t.modifiersData.offset[t.placement][T]:0,ae=L[T]+ee-ne-se,oe=L[T]+te-ne;if(a){var re=ce(m?N(H,ae):H,B,m?k(F,oe):F);L[T]=re,j[T]=re-B}if(r){var le="x"===T?y:M,de="x"===T?b:w,he=L[C],ue=he+v[le],pe=he-v[de],me=ce(m?N(ue,ae):ue,he,m?k(pe,oe):pe);L[C]=me,j[C]=me-he}}t.modifiersData[s]=j}},requiresIfExists:["offset"]};var he={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,i=e.state,s=e.name,n=e.options,a=i.elements.arrow,o=i.modifiersData.popperOffsets,r=I(i.placement),l=q(r),c=[M,w].indexOf(r)>=0?"height":"width";if(a&&o){var d,h=function(e,t){return H("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:F(e,E))}(n.padding,i),u=p(a),m="y"===l?y:M,f="y"===l?b:w,g=i.rects.reference[c]+i.rects.reference[l]-o[l]-i.rects.popper[c],v=o[l]-i.rects.reference[l],S=x(a),D=S?"y"===l?S.clientHeight||0:S.clientWidth||0:0,T=g/2-v/2,C=h[m],L=D-u[c]-h[f],A=i.rects.popper.width<i.rects.reference.width,_=i.rects.popper.height<i.rects.reference.height,k="top-start"==i.options.placement||"bottom-start"==i.options.placement,N="top-end"==i.options.placement||"bottom-end"==i.options.placement,O="left-start"==i.options.placement||"right-start"==i.options.placement,j="left-end"==i.options.placement||"right-end"==i.options.placement,$=ce(C,d=A&&k?i.options.fixDistance:A&&N?L-i.options.fixDistance:_&&O?i.options.fixDistance:_&&j?L-i.options.fixDistance:D/2-u[c]/2+T,L),P=l;i.modifiersData[s]=((t={})[P]=$,t.centerOffset=$-d,t)}},effect:function(e){var t=e.state,i=e.options.element,s=void 0===i?"[arrow]":i;null!=s&&("string"!=typeof s||(s=t.elements.popper.querySelector(s)))&&(a(s)||console.error(['Popper: "arrow" element must be an HTMLElement (not an SVGElement).',"To use an SVG arrow, wrap it in an HTMLElement that will be used as","the arrow."].join(" ")),j(t.elements.popper,s)?t.elements.arrow=s:console.error(['Popper: "arrow" modifier\'s `element` must be a child of the popper',"element."].join(" ")))},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function ue(e,t,i){return void 0===i&&(i={x:0,y:0}),{top:e.top-t.height-i.y,right:e.right-t.width+i.x,bottom:e.bottom-t.height+i.y,left:e.left-t.width-i.x}}function pe(e){return[y,w,b,M].some((function(t){return e[t]>=0}))}var me={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,i=e.name,s=t.rects.reference,n=t.rects.popper,a=t.modifiersData.preventOverflow,o=R(t,{elementContext:"reference"}),r=R(t,{altBoundary:!0}),l=ue(o,s),c=ue(r,n,a),d=pe(l),h=pe(c);t.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:d,hasPopperEscaped:h},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-reference-hidden":d,"data-escaped":h})}},fe=W({defaultModifiers:[Q,K,ee,te]}),ge=[Q,K,ee,te,ie,le,de,he,me],ve=W({defaultModifiers:ge});e.applyStyles=te,e.arrow=he,e.computeStyles=ee,e.createPopper=ve,e.createPopperLite=fe,e.defaultModifiers=ge,e.detectOverflow=R,e.eventListeners=Q,e.flip=le,e.hide=me,e.offset=ie,e.popperGenerator=W,e.popperOffsets=K,e.preventOverflow=de,Object.defineProperty(e,"__esModule",{value:!0})})),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t((e=window||e||self).Redux={})}(this,(function(e){"use strict";var t="function"==typeof Symbol&&Symbol.observable||"@@observable",i=function(){return Math.random().toString(36).substring(7).split("").join(".")},s={INIT:"@@redux/INIT"+i(),REPLACE:"@@redux/REPLACE"+i(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+i()}};function n(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}function a(e){return function(e){if(void 0===e)return"undefined";if(null===e)return"null";var t=typeof e;switch(t){case"boolean":case"string":case"number":case"symbol":case"function":return t}if(Array.isArray(e))return"array";if(function(e){return e instanceof Date||"function"==typeof e.toDateString&&"function"==typeof e.getDate&&"function"==typeof e.setDate}(e))return"date";if(function(e){return e instanceof Error||"string"==typeof e.message&&e.constructor&&"number"==typeof e.constructor.stackTraceLimit}(e))return"error";var i=function(e){return"function"==typeof e.constructor?e.constructor.name:null}(e);switch(i){case"Symbol":case"Promise":case"WeakMap":case"WeakSet":case"Map":case"Set":return i}return t.slice(8,-1).toLowerCase().replace(/\s/g,"")}(e)}function o(e){"undefined"!=typeof console&&"function"==typeof console.error&&console.error(e);try{throw new Error(e)}catch(e){}}function r(e,t){return function(){return t(e.apply(this,arguments))}}function l(e,t,i){return t in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function c(e,t){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);t&&(s=s.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),i.push.apply(i,s)}return i}function d(e){for(var t=1;t<arguments.length;t++){var i=null!=arguments[t]?arguments[t]:{};t%2?c(Object(i),!0).forEach((function(t){l(e,t,i[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):c(Object(i)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(i,t))}))}return e}function h(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce((function(e,t){return function(){return e(t.apply(void 0,arguments))}}))}function u(){}"string"==typeof u.name&&u.name,e.__DO_NOT_USE__ActionTypes=s,e.applyMiddleware=function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];return function(e){return function(){var i=e.apply(void 0,arguments),s=function(){throw new Error("Dispatching while constructing your middleware is not allowed. Other middleware would not be applied to this dispatch.")},n={getState:i.getState,dispatch:function(){return s.apply(void 0,arguments)}},a=t.map((function(e){return e(n)}));return s=h.apply(void 0,a)(i.dispatch),d(d({},i),{},{dispatch:s})}}},e.bindActionCreators=function(e,t){if("function"==typeof e)return r(e,t);if("object"!=typeof e||null===e)throw new Error("bindActionCreators expected an object or a function, but instead received: '"+a(e)+'\'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?');var i={};for(var s in e){var n=e[s];"function"==typeof n&&(i[s]=r(n,t))}return i},e.combineReducers=function(e){for(var t=Object.keys(e),i={},r=0;r<t.length;r++){var l=t[r];void 0===e[l]&&o('No reducer provided for key "'+l+'"'),"function"==typeof e[l]&&(i[l]=e[l])}var c,d,h=Object.keys(i);c={};try{!function(e){Object.keys(e).forEach((function(t){var i=e[t];if(void 0===i(void 0,{type:s.INIT}))throw new Error('The slice reducer for key "'+t+"\" returned undefined during initialization. If the state passed to the reducer is undefined, you must explicitly return the initial state. The initial state may not be undefined. If you don't want to set a value for this reducer, you can use null instead of undefined.");if(void 0===i(void 0,{type:s.PROBE_UNKNOWN_ACTION()}))throw new Error('The slice reducer for key "'+t+"\" returned undefined when probed with a random type. Don't try to handle '"+s.INIT+'\' or other actions in "redux/*" namespace. They are considered private. Instead, you must return the current state for any unknown actions, unless it is undefined, in which case you must return the initial state, regardless of the action type. The initial state may not be undefined, but can be null.')}))}(i)}catch(e){d=e}return function(e,t){if(void 0===e&&(e={}),d)throw d;var r=function(e,t,i,o){var r=Object.keys(t),l=i&&i.type===s.INIT?"preloadedState argument passed to createStore":"previous state received by the reducer";if(0===r.length)return"Store does not have a valid reducer. Make sure the argument passed to combineReducers is an object whose values are reducers.";if(!n(e))return"The "+l+' has unexpected type of "'+a(e)+'". Expected argument to be an object with the following keys: "'+r.join('", "')+'"';var c=Object.keys(e).filter((function(e){return!t.hasOwnProperty(e)&&!o[e]}));return c.forEach((function(e){o[e]=!0})),i&&i.type===s.REPLACE?void 0:c.length>0?"Unexpected "+(c.length>1?"keys":"key")+' "'+c.join('", "')+'" found in '+l+'. Expected to find one of the known reducer keys instead: "'+r.join('", "')+'". Unexpected keys will be ignored.':void 0}(e,i,t,c);r&&o(r);for(var l=!1,u={},p=0;p<h.length;p++){var m=h[p],f=i[m],g=e[m],v=f(g,t);if(void 0===v){var x=t&&t.type;throw new Error("When called with an action of type "+(x?'"'+String(x)+'"':"(unknown type)")+', the slice reducer for key "'+m+'" returned undefined. To ignore an action, you must explicitly return the previous state. If you want this reducer to hold no value, you can return null instead of undefined.')}u[m]=v,l=l||v!==g}return(l=l||h.length!==Object.keys(e).length)?u:e}},e.compose=h,e.createStore=function e(i,o,r){var l;if("function"==typeof o&&"function"==typeof r||"function"==typeof r&&"function"==typeof arguments[3])throw new Error("It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function. See https://redux.js.org/tutorials/fundamentals/part-4-store#creating-a-store-with-enhancers for an example.");if("function"==typeof o&&void 0===r&&(r=o,o=void 0),void 0!==r){if("function"!=typeof r)throw new Error("Expected the enhancer to be a function. Instead, received: '"+a(r)+"'");return r(e)(i,o)}if("function"!=typeof i)throw new Error("Expected the root reducer to be a function. Instead, received: '"+a(i)+"'");var c=i,d=o,h=[],u=h,p=!1;function m(){u===h&&(u=h.slice())}function f(){if(p)throw new Error("You may not call store.getState() while the reducer is executing. The reducer has already received the state as an argument. Pass it down from the top reducer instead of reading it from the store.");return d}function g(e){if("function"!=typeof e)throw new Error("Expected the listener to be a function. Instead, received: '"+a(e)+"'");if(p)throw new Error("You may not call store.subscribe() while the reducer is executing. If you would like to be notified after the store has been updated, subscribe from a component and invoke store.getState() in the callback to access the latest state. See https://redux.js.org/api/store#subscribelistener for more details.");var t=!0;return m(),u.push(e),function(){if(t){if(p)throw new Error("You may not unsubscribe from a store listener while the reducer is executing. See https://redux.js.org/api/store#subscribelistener for more details.");t=!1,m();var i=u.indexOf(e);u.splice(i,1),h=null}}}function v(e){if(!n(e))throw new Error("Actions must be plain objects. Instead, the actual type was: '"+a(e)+"'. You may need to add middleware to your store setup to handle dispatching other values, such as 'redux-thunk' to handle dispatching functions. See https://redux.js.org/tutorials/fundamentals/part-4-store#middleware and https://redux.js.org/tutorials/fundamentals/part-6-async-logic#using-the-redux-thunk-middleware for examples.");if(void 0===e.type)throw new Error('Actions may not have an undefined "type" property. You may have misspelled an action type string constant.');if(p)throw new Error("Reducers may not dispatch actions.");try{p=!0,d=c(d,e)}finally{p=!1}for(var t=h=u,i=0;i<t.length;i++)(0,t[i])();return e}function x(e){if("function"!=typeof e)throw new Error("Expected the nextReducer to be a function. Instead, received: '"+a(e));c=e,v({type:s.REPLACE})}function y(){var e,i=g;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new Error("Expected the observer to be an object. Instead, received: '"+a(e)+"'");function t(){e.next&&e.next(f())}return t(),{unsubscribe:i(t)}}})[t]=function(){return this},e}return v({type:s.INIT}),(l={dispatch:v,subscribe:g,getState:f,replaceReducer:x})[t]=y,l},Object.defineProperty(e,"__esModule",{value:!0})})),function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=window||e||self).deepmerge=t()}(this,(function(){"use strict";var e=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var i=Object.prototype.toString.call(e);return"[object RegExp]"===i||"[object Date]"===i||function(e){return e.$$typeof===t}(e)}(e)};var t="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function i(e,t){return!1!==t.clone&&t.isMergeableObject(e)?r((i=e,Array.isArray(i)?[]:{}),e,t):e;var i}function s(e,t,s){return e.concat(t).map((function(e){return i(e,s)}))}function n(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return e.propertyIsEnumerable(t)})):[]}(e))}function a(e,t){try{return t in e}catch(e){return!1}}function o(e,t,s){var o={};return s.isMergeableObject(e)&&n(e).forEach((function(t){o[t]=i(e[t],s)})),n(t).forEach((function(n){(function(e,t){return a(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,n)||(a(e,n)&&s.isMergeableObject(t[n])?o[n]=function(e,t){if(!t.customMerge)return r;var i=t.customMerge(e);return"function"==typeof i?i:r}(n,s)(e[n],t[n],s):o[n]=i(t[n],s))})),o}function r(t,n,a){(a=a||{}).arrayMerge=a.arrayMerge||s,a.isMergeableObject=a.isMergeableObject||e,a.cloneUnlessOtherwiseSpecified=i;var r=Array.isArray(n);return r===Array.isArray(t)?r?a.arrayMerge(t,n,a):o(t,n,a):i(n,a)}return r.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,i){return r(e,i,t)}),{})},r})),
-/*!
- * validate.js 0.13.1 from http://validatejs.org/ | AXUI淇敼浜嗛儴鍒嗕唬鐮�
- */
-function(e,t,i){"use strict";var s=function(e,t,i){i=n.extend({},n.options,i);var a=n.runValidations(e,t,i);if(a.some((function(e){return n.isPromise(e.error)})))throw new Error("Use validate.async if you want support for promises");return s.processValidationResults(a,i)},n=s;n.extend=function(e){return[].slice.call(arguments,1).forEach((function(t){for(var i in t)e[i]=t[i]})),e},n.extend(s,{version:{major:0,minor:13,patch:1,metadata:"development",toString:function(){var e=n.format("%{major}.%{minor}.%{patch}",n.version);return n.isEmpty(n.version.metadata)||(e+="+"+n.version.metadata),e}},Promise:"undefined"!=typeof Promise?Promise:null,EMPTY_STRING_REGEXP:/^\s*$/,runValidations:function(e,t,i){var s,a,o,r,l,c,d,h=[];for(s in(n.isDomElement(e)||n.isJqueryElement(e))&&(e=n.collectFormValues(e)),t)for(a in o=n.getDeepObjectValue(e,s),r=n.result(t[s],o,e,s,i,t)){if(!(l=n.validators[a]))throw d=n.format("Unknown validator %{name}",{name:a}),new Error(d);c=r[a],(c=n.result(c,o,e,s,i,t))&&h.push({attribute:s,value:o,validator:a,globalOptions:i,attributes:e,options:c,error:l.call(l,o,c,s,e,i)})}return h},processValidationResults:function(e,t){e=n.pruneEmptyErrors(e,t),e=n.expandMultipleErrors(e,t),e=n.convertErrorMessages(e,t);var i=t.format||"grouped";if("function"!=typeof n.formatters[i])throw new Error(n.format("Unknown format %{format}",t));return e=n.formatters[i](e),n.isEmpty(e)?void 0:e},async:function(e,t,i){var s=(i=n.extend({},n.async.options,i)).wrapErrors||function(e){return e};!1!==i.cleanAttributes&&(e=n.cleanAttributes(e,t));var a=n.runValidations(e,t,i);return new n.Promise((function(o,r){n.waitForResults(a).then((function(){var l=n.processValidationResults(a,i);l?r(new s(l,i,e,t)):o(e)}),(function(e){r(e)}))}))},single:function(e,t,i){return i=n.extend({},n.single.options,i,{format:"flat",fullMessages:!1}),n({single:e},{single:t},i)},waitForResults:function(e){return e.reduce((function(e,t){return n.isPromise(t.error)?e.then((function(){return t.error.then((function(e){t.error=e||null}))})):e}),new n.Promise((function(e){e()})))},result:function(e){var t=[].slice.call(arguments,1);return"function"==typeof e&&(e=e.apply(null,t)),e},isNumber:function(e){return"number"==typeof e&&!isNaN(e)},isFunction:function(e){return"function"==typeof e},isInteger:function(e){return n.isNumber(e)&&e%1==0},isBoolean:function(e){return"boolean"==typeof e},isObject:function(e){return e===Object(e)},isDate:function(e){return e instanceof Date},isDefined:function(e){return null!=e},isPromise:function(e){return!!e&&n.isFunction(e.then)},isJqueryElement:function(e){return e&&n.isString(e.jquery)},isDomElement:function(e){return!!e&&!(!e.querySelectorAll||!e.querySelector)&&(!(!n.isObject(document)||e!==document)||("object"==typeof HTMLElement?e instanceof HTMLElement:e&&"object"==typeof e&&null!==e&&1===e.nodeType&&"string"==typeof e.nodeName))},isEmpty:function(e){var t;if(!n.isDefined(e))return!0;if(n.isFunction(e))return!1;if(n.isString(e))return n.EMPTY_STRING_REGEXP.test(e);if(n.isArray(e))return 0===e.length;if(n.isDate(e))return!1;if(n.isObject(e)){for(t in e)return!1;return!0}return!1},format:n.extend((function(e,t){return n.isString(e)?e.replace(n.format.FORMAT_REGEXP,(function(e,i,s){return"%"===i?"%{"+s+"}":String(t[s])})):e}),{FORMAT_REGEXP:/(%?)%\{([^\}]+)\}/g}),prettify:function(e){return n.isNumber(e)?100*e%1==0?""+e:parseFloat(Math.round(100*e)/100).toFixed(2):n.isArray(e)?e.map((function(e){return n.prettify(e)})).join(", "):n.isObject(e)?n.isDefined(e.toString)?e.toString():JSON.stringify(e):(e=""+e).replace(/([^\s])\.([^\s])/g,"$1 $2").replace(/\\+/g,"").replace(/[_-]/g," ").replace(/([a-z])([A-Z])/g,(function(e,t,i){return t+" "+i.toLowerCase()})).toLowerCase()},stringifyValue:function(e,t){return(t&&t.prettify||n.prettify)(e)},isString:function(e){return"string"==typeof e},isArray:function(e){return"[object Array]"==={}.toString.call(e)},isHash:function(e){return n.isObject(e)&&!n.isArray(e)&&!n.isFunction(e)},contains:function(e,t){return!!n.isDefined(e)&&(n.isArray(e)?-1!==e.indexOf(t):t in e)},unique:function(e){return n.isArray(e)?e.filter((function(e,t,i){return i.indexOf(e)==t})):e},forEachKeyInKeypath:function(e,t,i){if(n.isString(t)){var s,a="",o=!1;for(s=0;s<t.length;++s)switch(t[s]){case".":o?(o=!1,a+="."):(e=i(e,a,!1),a="");break;case"\\":o?(o=!1,a+="\\"):o=!0;break;default:o=!1,a+=t[s]}return i(e,a,!0)}},getDeepObjectValue:function(e,t){if(n.isObject(e))return n.forEachKeyInKeypath(e,t,(function(e,t){if(n.isObject(e))return e[t]}))},collectFormValues:function(e,t){var i,s,a,o,r,l,c={};if(n.isJqueryElement(e)&&(e=e[0]),!e)return c;for(t=t||{},o=e.querySelectorAll("input[name], textarea[name]"),i=0;i<o.length;++i)if(a=o.item(i),!n.isDefined(a.getAttribute("data-ignored"))){var d=a.name.replace(/\./g,"\\\\.");l=n.sanitizeFormValue(a.value,t),"number"===a.type?l=l?+l:null:"checkbox"===a.type?a.attributes.value?a.checked||(l=c[d]||null):l=a.checked:"radio"===a.type&&(a.checked||(l=c[d]||null)),c[d]=l}for(o=e.querySelectorAll("select[name]"),i=0;i<o.length;++i)if(a=o.item(i),!n.isDefined(a.getAttribute("data-ignored"))){if(a.multiple)for(s in l=[],a.options)(r=a.options[s])&&r.selected&&l.push(n.sanitizeFormValue(r.value,t));else{var h=void 0!==a.options[a.selectedIndex]?a.options[a.selectedIndex].value:"";l=n.sanitizeFormValue(h,t)}c[a.name]=l}return c},sanitizeFormValue:function(e,t){return t.trim&&n.isString(e)&&(e=e.trim()),!1!==t.nullify&&""===e?null:e},capitalize:function(e){return n.isString(e)?e[0].toUpperCase()+e.slice(1):e},pruneEmptyErrors:function(e){return e.filter((function(e){return!n.isEmpty(e.error)}))},expandMultipleErrors:function(e){var t=[];return e.forEach((function(e){n.isArray(e.error)?e.error.forEach((function(i){t.push(n.extend({},e,{error:i}))})):t.push(e)})),t},convertErrorMessages:function(e,t){var i=[],s=(t=t||{}).prettify||n.prettify;return e.forEach((function(e){var a=n.result(e.error,e.value,e.attribute,e.options,e.attributes,e.globalOptions);n.isString(a)?("^"===a[0]?a=a.slice(1):!1!==t.fullMessages&&(a=n.capitalize(s(e.attribute))+" "+a),a=a.replace(/\\\^/g,"^"),a=n.format(a,{value:n.stringifyValue(e.value,t)}),i.push(n.extend({},e,{error:a}))):i.push(e)})),i},groupErrorsByAttribute:function(e){var t={};return e.forEach((function(e){var i=t[e.attribute];i?i.push(e):t[e.attribute]=[e]})),t},flattenErrorsToArray:function(e){return e.map((function(e){return e.error})).filter((function(e,t,i){return i.indexOf(e)===t}))},cleanAttributes:function(e,t){function i(e,t,i){return n.isObject(e[t])?e[t]:e[t]=!!i||{}}return n.isObject(t)&&n.isObject(e)?function e(t,i){if(!n.isObject(t))return t;var s,a,o=n.extend({},t);for(a in t)s=i[a],n.isObject(s)?o[a]=e(o[a],s):s||delete o[a];return o}(e,t=function(e){var t,s={};for(t in e)e[t]&&n.forEachKeyInKeypath(s,t,i);return s}(t)):{}},exposeModule:function(e,t,i,s,n){i?(s&&s.exports&&(i=s.exports=e),i.validate=e):(window.validate=e,e.isFunction(n)&&n.amd&&n([],(function(){return e})))},warn:function(e){"undefined"!=typeof console&&console.warn&&console.warn("[validate.js] "+e)},error:function(e){"undefined"!=typeof console&&console.error&&console.error("[validate.js] "+e)}}),s.validators={presence:function(e,t){if(!1!==(t=n.extend({},this.options,t)).allowEmpty?!n.isDefined(e):n.isEmpty(e))return t.message||this.message||"can't be blank"},length:function(e,t,i){if(n.isDefined(e)){var s,a=(t=n.extend({},this.options,t)).is,o=t.maximum,r=t.minimum,l=[],c=(e=(t.tokenizer||function(e){return e})(e)).length;return n.isNumber(c)?(n.isNumber(a)&&c!==a&&(s=t.wrongLength||this.wrongLength||"is the wrong length (should be %{count} characters)",l.push(n.format(s,{count:a}))),n.isNumber(r)&&c<r&&(s=t.tooShort||this.tooShort||"is too short (minimum is %{count} characters)",l.push(n.format(s,{count:r}))),n.isNumber(o)&&c>o&&(s=t.tooLong||this.tooLong||"is too long (maximum is %{count} characters)",l.push(n.format(s,{count:o}))),l.length>0?t.message||l:void 0):t.message||this.notValid||"has an incorrect length"}},numericality:function(e,t,i,s,a){if(n.isDefined(e)){var o,r,l=[],c={greaterThan:function(e,t){return e>t},greaterThanOrEqualTo:function(e,t){return e>=t},equalTo:function(e,t){return e===t},lessThan:function(e,t){return e<t},lessThanOrEqualTo:function(e,t){return e<=t},divisibleBy:function(e,t){return e%t==0}},d=(t=n.extend({},this.options,t)).prettify||a&&a.prettify||n.prettify;if(n.isString(e)&&t.strict){var h="^-?(0|[1-9]\\d*)";if(t.onlyInteger||(h+="(\\.\\d+)?"),h+="$",!new RegExp(h).test(e))return t.message||t.notValid||this.notValid||this.message||"must be a valid number"}if(!0!==t.noStrings&&n.isString(e)&&!n.isEmpty(e)&&(e=+e),!n.isNumber(e))return t.message||t.notValid||this.notValid||this.message||"is not a number";if(t.onlyInteger&&!n.isInteger(e))return t.message||t.notInteger||this.notInteger||this.message||"must be an integer";for(o in c)if(r=t[o],n.isNumber(r)&&!c[o](e,r)){var u="not"+n.capitalize(o),p=t[u]||this[u]||this.message||"must be %{type} %{count}";l.push(n.format(p,{count:r,type:d(o)}))}return t.odd&&e%2!=1&&l.push(t.notOdd||this.notOdd||this.message||"must be odd"),t.even&&e%2!=0&&l.push(t.notEven||this.notEven||this.message||"must be even"),l.length?t.message||l:void 0}},datetime:n.extend((function(e,t){if(!n.isFunction(this.parse)||!n.isFunction(this.format))throw new Error("Both the parse and format functions needs to be set to use the datetime/date validator");if(n.isDefined(e)){var i,s=[],a=(t=n.extend({},this.options,t)).earliest?this.parse(t.earliest,t):NaN,o=t.latest?this.parse(t.latest,t):NaN;return e=this.parse(e,t),isNaN(e)||t.dateOnly&&(e-6e4*new Date(e).getTimezoneOffset())%864e5!=0?(i=t.notValid||t.message||this.notValid||"must be a valid date",n.format(i,{value:arguments[0]})):(!isNaN(a)&&e<a&&(i=t.tooEarly||t.message||this.tooEarly||"must be no earlier than %{date}",i=n.format(i,{value:this.format(e,t),date:this.format(a,t)}),s.push(i)),!isNaN(o)&&e>o&&(i=t.tooLate||t.message||this.tooLate||"must be no later than %{date}",i=n.format(i,{date:this.format(o,t),value:this.format(e,t)}),s.push(i)),s.length?n.unique(s):void 0)}}),{parse:null,format:null}),date:function(e,t){return t=n.extend({},t,{dateOnly:!0}),n.validators.datetime.call(n.validators.datetime,e,t)},format:function(e,t){(n.isString(t)||t instanceof RegExp)&&(t={pattern:t});var i,s=(t=n.extend({},this.options,t)).message||this.message||"is invalid",a=t.pattern;if(n.isDefined(e))return n.isString(e)?(n.isString(a)&&(a=new RegExp(t.pattern,t.flags)),(i=a.exec(e))&&i[0].length==e.length?void 0:s):s},inclusion:function(e,t){if(n.isDefined(e)&&(n.isArray(t)&&(t={within:t}),t=n.extend({},this.options,t),!n.contains(t.within,e))){var i=t.message||this.message||"^%{value} is not included in the list";return n.format(i,{value:e})}},exclusion:function(e,t){if(n.isDefined(e)&&(n.isArray(t)&&(t={within:t}),t=n.extend({},this.options,t),n.contains(t.within,e))){var i=t.message||this.message||"^%{value} is restricted";return n.isString(t.within[e])&&(e=t.within[e]),n.format(i,{value:e})}},email:n.extend((function(e,t){var i=(t=n.extend({},this.options,t)).message||this.message||"is not a valid email";if(n.isDefined(e))return n.isString(e)&&this.PATTERN.exec(e)?void 0:i}),{PATTERN:/^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])$/i}),equality:function(e,t,i,s,a){if(n.isDefined(e)){n.isString(t)&&(t={attribute:t});var o=(t=n.extend({},this.options,t)).message||this.message||"is not equal to %{attribute}";if(n.isEmpty(t.attribute)||!n.isString(t.attribute))throw new Error("The attribute must be a non empty string");var r=n.getDeepObjectValue(s,t.attribute),l=t.comparator||function(e,t){return e===t},c=t.prettify||a&&a.prettify||n.prettify;return l(e,r,t,i,s)?void 0:n.format(o,{attribute:c(t.attribute)})}},url:function(e,t){if(n.isDefined(e)){var i=(t=n.extend({},this.options,t)).message||this.message||"涓嶆槸涓�涓湁鏁堢殑缃戝潃",s=t.schemes||this.schemes||["http","https"],a=t.allowLocal||this.allowLocal||!1,o=t.allowDataUrl||this.allowDataUrl||!1;if(!n.isString(e))return i;var r="^(?:(?:"+s.join("|")+")://)(?:\\S+(?::\\S*)?@)?(?:",l="(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))";return a?l+="?":r+="(?!(?:10|127)(?:\\.\\d{1,3}){3})(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})",r+="(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]-*)*[a-z\\u00a1-\\uffff0-9]+)*"+l+")(?::\\d{2,5})?(?:[/?#]\\S*)?$",o&&(r="(?:"+r+")|(?:^data:(?:\\w+\\/[-+.\\w]+(?:;[\\w=]+)*)?(?:;base64)?,[A-Za-z0-9-_.!~\\*'();\\/?:@&=+$,%]*$)"),new RegExp(r,"i").exec(e)?void 0:i}},type:n.extend((function(e,t,i,s,a){if(n.isString(t)&&(t={type:t}),n.isDefined(e)){var o,r=n.extend({},this.options,t),l=r.type;if(!n.isDefined(l))throw new Error("No type was specified");if(o=n.isFunction(l)?l:this.types[l],!n.isFunction(o))throw new Error("validate.validators.type.types."+l+" must be a function.");if(!o(e,r,i,s,a)){var c=t.message||this.messages[l]||this.message||r.message||(n.isFunction(l)?"must be of the correct type":"must be of type %{type}");return n.isFunction(c)&&(c=c(e,t,i,s,a)),n.format(c,{attribute:n.prettify(i),type:l})}}}),{types:{object:function(e){return n.isObject(e)&&!n.isArray(e)},array:n.isArray,integer:n.isInteger,number:n.isNumber,string:n.isString,date:n.isDate,boolean:n.isBoolean},messages:{}})},s.formatters={detailed:function(e){return e},flat:n.flattenErrorsToArray,grouped:function(e){var t;for(t in e=n.groupErrorsByAttribute(e))e[t]=n.flattenErrorsToArray(e[t]);return e},constraint:function(e){var t;for(t in e=n.groupErrorsByAttribute(e))e[t]=e[t].map((function(e){return e.validator})).sort();return e}},s.exposeModule(s,this,e,t,i)}.call(this,"undefined"!=typeof exports?exports:null,"undefined"!=typeof module?module:null,"undefined"!=typeof define?define:null);
-/*!
- * 鍏ㄥ眬鍙橀噺锛岃嚦浜巃x.js澶撮儴锛屽彲鍏ㄧ珯浣跨敤
- */
-const axIsMobi=()=>{let e=navigator.userAgent,t=["Android","iPhone","SymbianOS","Windows Phone","iPad","iPod"];for(let i=0;i<t.length;i++)return e.indexOf(t[i])>0},axClient=()=>{let e=window.screen.width;return e<500?"phone":e>500&&e<900?"pad":e>900&&e<1200?"padflip":e>1200&&e<1500?"padpro":"pc"},axIsEmpty=e=>"function"==typeof e?"{}"==e.toString().replace(/\s+/g,"").match(/{.*}/g)[0]:!e||(e instanceof Array?""==e.join(""):"object"==typeof e&&0===Object.keys(e).length),axPreventDefault=e=>{e.preventDefault?e.preventDefault():e.returnValue=!1},axStrToDom=e=>{let t=document.createElement("div");return"string"==typeof e&&(t.innerHTML=e.trim()),t.firstElementChild},axFalseReturn=(e,t)=>{if(!e)return t?console.error(t):console.error("The program cannot be executed because the object does not exist!"),!1},axIdToDom=e=>e?"string"==typeof e?document.querySelector(e):e:void console.error("No selector or No HTML DOM!"),axArrToDom=(e,t)=>{let i=e.split(","),s=[],n=/^[0-9]*$/,a="";return a="string"==typeof t?document.querySelector(t):t,i.forEach(e=>{if(!n.test(e.substr(0,1)))if(-1!=e.indexOf("."))s=a?s.concat([...a.querySelectorAll(e)]):s.concat([...document.querySelectorAll(e)]);else if(-1!=e.indexOf("#"))s.push(document.querySelector(e));else{if(!e)return s;document.querySelectorAll(e)&&(s=a?s.concat([...a.querySelectorAll(e)]):s.concat([...document.querySelectorAll(e)]))}}),s},axIsVisible=e=>{let t=axIdToDom(e),i=!0,s="none"!=getComputedStyle(t).display&&"hidden"!=getComputedStyle(t).visibility;for(;i&&s;)t=t.parentNode,t&&t!=document.body?s="none"!=getComputedStyle(t).display&&"hidden"!=getComputedStyle(t).visibility:i=!1;return s},axPreventScroll=(e,t)=>{let i=e?axIdToDom(e):null,s=t?axIdToDom(t):null;return navigator.userAgent.indexOf("Firefox")>0?(i.addEventListener("DOMMouseScroll",e=>{e.preventDefault()},!1),s?s&&s.scrollHeight>s.clientHeight&&s.addEventListener("DOMMouseScroll",e=>{s.scrollTop+=e.detail>0?60:-60},!1):e&&e.scrollHeight>e.clientHeight&&e.addEventListener("DOMMouseScroll",t=>{e.scrollTop+=t.detail>0?60:-60},!1)):(i.addEventListener("mousewheel",e=>{(e=e||window.event).returnValue=!1},!1),s?s&&s.scrollHeight>s.clientHeight&&s.addEventListener("mousewheel",e=>{s.scrollTop+=e.wheelDelta>0?-60:60},!1):e&&e.scrollHeight>e.clientHeight&&e.addEventListener("mousewheel",t=>{e.scrollTop+=t.wheelDelta>0?-60:60},!1)),this},axCreateId=(e,t,i)=>{let s=i?axIdToDom(i):null,n=(new Date).getTime(),a=i?s.id.replace(/(:|\.|\[|\]|,)/g,""):null;return t?isNaN(t)?a&&"id"==t?e+"-"+a:e+"-"+n:e+"-"+(e=>{e=e||32;let t="ABCDEFGHJKMNPQRSTWXYZabcdefhijkmnprstwxyz2345678",i=t.length,s="";for(let n=0;n<e;n++)s+=t.charAt(Math.floor(Math.random()*i));return s})(t):e+"-"+n},axTypeIs=(e,t)=>null!=t&&Object.prototype.toString.call(t).slice(8,-1)===e,axType=e=>Object.prototype.toString.call(e).slice(8,-1),axUlToArr=e=>{axFalseReturn(e);let t=axIdToDom(e),i=(e,t)=>{let s="",n={},a=e.firstElementChild.textContent.trim();return e.firstElementChild.getAttribute("value")?(s=e.firstElementChild.getAttribute("value").trim(),n={id:t,name:a,value:s}):n={id:t,value:a},e.querySelector("ul")&&[...e.querySelector("ul").children].forEach((e,t)=>{n.children||(n.children=[]),n.children.push(i(e,t))}),n};return(()=>{let e=[];return axChildren(t,"li").forEach((t,s)=>{e.push(i(t,s))}),e})()},axSelectToArr=e=>{axFalseReturn(e);let t=axIdToDom(e),i=(e,t)=>{let s="",n="",a={};return"OPTGROUP"==e.nodeName?(n=e.getAttribute("label").trim(),s=n):(n=e.textContent.trim(),e.getAttribute("value")&&(s=e.getAttribute("value").trim())),a={id:t,name:n,value:s},e.querySelector("option")&&[...e.children].forEach((e,t)=>{a.children||(a.children=[]),a.children.push(i(e,t))}),a};return(()=>{let e=[];return[...t.children].forEach((t,s)=>{e.push(i(t,s))}),e})()},axListToArr=e=>{axFalseReturn(e);let t=axIdToDom(e),i=(e,t)=>{let i="",s="",n={};return s=e.textContent.trim(),e.getAttribute("value")&&(i=e.getAttribute("value").trim()),n={name:s,value:i},axIsEmpty(e.dataset)||Object.assign(n,e.dataset),n};return(()=>{let e=[];return[...t.children].forEach((t,s)=>{e.push(i(t,s))}),e})()},axIsOutside=(e,t,i,s)=>{if(!t)return!0;let n=axIdToDom(t);if(!n)return!0;let a,o,r,l,c=e.clientX,d=e.clientY;return a=i||n.getBoundingClientRect().left,o=s||n.getBoundingClientRect().top,r=a+n.offsetWidth,l=o+n.offsetHeight,c<a||c>r||d<o||d>l},axStyle=(e,t)=>{axFalseReturn(e);let i=axIdToDom(e);return document.defaultView.getComputedStyle(i,t)},axInstance=(e,t)=>(axIsEmpty(e)&&console.error("Instance is destroyed!"),e.filter(e=>e.name==t)[0].instance),axTplEngine=(e,t)=>{axFalseReturn(e,"No html!");let i,s=/<%([^%>]+)?%>/g,n=/(^( )?(if|for|else|switch|case|break|{|}))(.*)?/g,a="let r=[];\n",o=0,r=(e,t)=>(a+=t?e.match(n)?e+"\n":"r.push("+e+");\n":""!=e?'r.push("'+e.replace(/"/g,'\\"')+'");\n':"",r);for(;i=s.exec(e);)r(e.slice(o,i.index))(i[1],!0),o=i.index+i[0].length;return r(e.substr(o,e.length-o)),a+='return r.join("");',new Function(a.replace(/[\r\t\n]/g,"")).apply(t)},axClone=e=>{if(null===e)return null;if("object"!=typeof e)return e;if(e.constructor===Date)return new Date(e);{let t={};for(let i in e)if(null==e[i])t[i]=null;else if("object"!=typeof e[i]||e[i].nodeType)t[i]=e[i];else if(t[i]=axClone(e[i]),e[i]instanceof Array){let s=[];for(let t of e[i])s.push(axClone(t));t[i]=s}return t}},axMerge=(e,t)=>{if("object"!=typeof e||"object"!=typeof t)return t;if(!t)return e;for(let i in t)t.hasOwnProperty(i)&&e.hasOwnProperty(i)&&"Array"!=axType(t[i])?e[i]=axMerge(e[i],t[i]):e[i]=t[i];return e},axStrToArr=(e,t,i)=>{let s=[],n={};return axIsEmpty(t)||t.forEach((e,t)=>{n[e]=axIsEmpty(i)?"":i[t]}),"["==e.substr(0,1)&&"]"==e.substr(-1)?s=JSON.parse(e):-1!=e.replace(/\s*/g,"").indexOf("},{")?s=JSON.parse("["+e+"]"):"{"==e.replace(/\s*/g,"").substr(0,1)&&"}"==e.replace(/\s*/g,"").substr(-1)?s=JSON.parse("["+e+"]"):(s=e.split(","),s.forEach((e,i)=>{if("string"==typeof e&&!axIsEmpty(t)){let n={};t.forEach((t,i)=>{n[t]=0==i?e:""}),s.splice(i,1,n)}})),s.forEach(e=>{if(!axIsEmpty(n))for(let t in n)e.hasOwnProperty(t)?e.hasOwnProperty(t)&&!e[t]&&(e[t]=n[t]):e[t]=n[t]?n[t]:""}),s},axTplToArr=(e,t,i,s,n)=>{let a=axIdToDom(e),o=[];if(s){a.querySelectorAll(s).forEach(e=>{let s={};t.forEach((t,a)=>{let o=e.querySelector("["+t+"]");s[i[a]]=o?o.getAttribute(t)?o.getAttribute(t).trim():o.innerHTML.trim():n[a]||""}),o.push(s)})}else{let e={};t.forEach((t,s)=>{let o=a.querySelector("["+t+"]");e[i[s]]=o?o.getAttribute(t)?o.getAttribute(t).trim():o.innerHTML.trim():n[s]||""}),o.push(e)}return o},axDataset=(e,t)=>{let i=e?axIdToDom(e):null,s=/^\d+(\.\d+)?$/,n=/^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$/;if(i){let e=[...i.attributes].filter(e=>0==e.name.indexOf("data-"));if(!axIsEmpty(e)){let i=axClone(t),a=e=>{for(let t in e){let i=t.toLowerCase();e[i]=e[t],axTypeIs("Object",e[t])&&a(e[t]),i!=t&&delete e[t]}};a(i);for(let t=0;t<e.length;t++){let a=e[t].value.trim(),o=e[t].name;"true"==a?a=JSON.parse("true"):"false"==a?a=JSON.parse("false"):"null"==a?a=null:"["==a.substr(0,1)&&"]"==a.substr(-1)?a=JSON.parse(a):-1!=a.replace(/\s*/g,"").indexOf("},{")&&(a=JSON.parse("["+a+"]")),(s.test(a)||n.test(a))&&(a=Number(a));let r=o.split("-");r.length-1==1?i[r[1]]=a:r.length-1==2?i[r[1]][r[2]]=a:r.length-1==3?i[r[1]][r[2]][r[3]]=a:console.error("Three levels are supported!")}let o=(e,t)=>{for(let i in e){let s=i.toLowerCase();axTypeIs("Object",e[i])?o(e[i],t[s]):e[i]=t[s]}};o(t,i)}}return t},axExtend=(e,t,i)=>{axFalseReturn(e);let s=i?axIdToDom(i):null;return axMerge(e,t),axDataset(s,e),e},axAddPlan=(e,t,i)=>{e in i.handlers||(i.handlers[e]=[]);let s=t.toString().replace(/\s/g,"").replace(/\;/g,"").match(/{(\S*)}/)[1];!(i.handlers[e].toString().replace(/\s/g,"").replace(/\;/g,"").indexOf(s)>-1)&&i.handlers[e].push(t)},axExePlan=(e,t,...i)=>{if(!(e in t.handlers))return console.error("The event is not registered!");t.handlers[e].forEach(e=>{e.call(t,...i)})},axDelPlan=(e,t,i)=>{if(!(e in i.handlers))return console.error("Invalid event!");if(t){let s=i.handlers[e].findIndex(e=>e===t);if(void 0===s)return console.error("This event is not bound!");i.handlers[e].splice(s,1),0===i.handlers[e].length&&delete i.handlers[e]}else delete i.handlers[e]},axAddElem=(e,t,i)=>{e.toLowerCase();let s=document.createElement(e);if(t)for(k in t)s.setAttribute(k,t[k]);return i&&(s.innerHTML=i),s},axAddWrap=(e,t,i,s,n)=>{axFalseReturn(e);let a=axIdToDom(e),o="";return t?o=axIdToDom(t):!o&&i&&(o=axAddElem(i,s,n)),a.nextSibling?a.parentNode!==o&&a.parentNode.insertBefore(o,a.nextSibling):a.parentNode!==o&&a.parentNode.appendChild(o),o.appendChild(a)},axRangeReplace=(e,t,i,s,n)=>{"string"!=typeof e&&(e=JSON.stringify(e)),"string"!=typeof t&&(e=JSON.stringify(t));let a="";return a=i||s?s?i?e.substring(0,i)+t+e.substring(s):n?e.substring(s-n)+t+e.substring(0,i):t+e.substring(s):n?e.substring(0,i)+t+e.substring(i+n):e.substring(0,i)+t:t,a},axArrange=(e,t,i=0,s=[],n=[])=>{let a=e.length;if(!(i+t>a)){for(let o=i;o<a;o++){if(1===t){n.push([...s,e[o]]),o+1<a&&axArrange(e,t,o+1,s,n);break}axArrange(e,t-1,o+1,[...s,e[o]],n)}return n}},axCleanString=e=>"string"!=typeof e?e:e.replace(/&/g,"&amp;").replace(/>/g,"&rt;").replace(/</g,"&lt;").replace(/"/g,"&quot;").replace(/'/g,"&#39;"),axHideSize=(e,t,i)=>{let s=axIdToDom(e),n=i?axIdToDom(i):null,a={};if(n){let t=[];axParents2(i,e,!0,!0).forEach(e=>{let i=window.getComputedStyle(e).display,s=e.style.cssText;"none"==i&&(e.style.cssText="display:block;visibility:hidden;position:fixed"),t.push(s)}),a={height:n.offsetHeight,width:n.offsetWidth,offsetLeft:n.offsetLeft,offsetTop:n.offsetTop},axParents2(i,e,!0,!0).forEach((e,i)=>{t[i]?e.style.cssText=t[i]:e.removeAttribute("style")})}else{let e=window.getComputedStyle(s).display,t=s.style.cssText;"none"==e&&(s.style.cssText="display:block;visibility:hidden;position:fixed"),a={height:s.offsetHeight,width:s.offsetWidth,offsetLeft:s.offsetLeft,offsetTop:s.offsetTop},t?s.style.cssText=t:s.removeAttribute("style")}return a[t]},axAjax=(e,t)=>{axFalseReturn(e,"No options");let i=axAddElem("SPAN",{"aria-label":"loading"}),s=t?axIdToDom(t):null;s&&s.appendChild(i);let n={url:"",selector:"",type:"get",async:!0,before:e=>{s&&(i.innerHTML=e,s.setAttribute("aria-ajax","before"))},success:(e,t)=>{s&&(s.innerHTML=e&&s.setAttribute("aria-ajax","success"))},error:(e,t)=>{s?(i.innerHTML=`<i class="ax-alert ax-danger">鍙戠敓浜嗕竴涓敊璇紒锛�${t}</i>`,s.setAttribute("aria-ajax","error")):console.error(`鍙戠敓浜嗕竴涓敊璇紒锛�${t}`)},data:{},delay:6e4,timeout:()=>{s?(i.innerHTML='<i class="ax-alert ax-danger">璇锋眰瓒呮椂浜嗭紒</i>',s.setAttribute("aria-ajax","timeout")):console.error("璇锋眰瓒呮椂浜嗭紒")},loading:'<span class="ax-loading"><i></i></span>'};for(k in e)n[k]=e[k];let a="";for(k in n.data)a+="&"+k+"="+n.data[k];let o="";o=window.XMLHttpRequest?new XMLHttpRequest:new ActiveXObject("Microsoft.XMLHTTP");let r=setTimeout((function(){o.abort(),n.timeout.call(this)}),n.delay);o.onreadystatechange=function(){if(o.readyState<4)n.before.call(this,n.loading,o.readyState,s);else if(clearTimeout(r),o.status>=200&&o.status<300||304==o.status){let e=document.createElement("div"),t="";e.innerHTML=o.responseText,n.selector&&e.querySelector(n.selector)?t=e.querySelector(n.selector).innerHTML:n.selector&&!e.querySelector(n.selector)?(console.error(`The node of "${n.selector}" is not exist!`),t=o.responseText):t="{"==o.responseText.trim().substr(0,1)||"["==o.responseText.trim().substr(0,1)?JSON.parse(o.responseText.trim()):o.responseText,n.success.call(this,t,o.readyState,s)}else n.error.call(this,o.responseText,o.readyState,s)};let l=n.url+"?now="+(new Date).getTime();"get"==n.type.toLowerCase()?(l+=a,o.open("get",l+"?"+a,!0),o.send()):"post"==n.type.toLowerCase()&&(o.open("post",l,!0),o.setRequestHeader("Content-Type","application/x-www-form-urlencoded"),o.send(a))},axOffset=e=>{axFalseReturn(e);let t,i,s=axIdToDom(e);return t=s.getBoundingClientRect().left+document.documentElement.scrollLeft,i=s.getBoundingClientRect().top+document.documentElement.scrollTop,{left:t,top:i}},axWidth=(e,t)=>{axFalseReturn(e);let i=axIdToDom(e),{width:s,paddingLeft:n,paddingRight:a,marginLeft:o,marginRight:r,borderLeftWidth:l,borderRightWidth:c}=getComputedStyle(i);return s=parseInt(s,10),n=parseInt(n,10),a=parseInt(a,10),o=parseInt(o,10),r=parseInt(r,10),borderLeft=parseInt(l,10),borderRight=parseInt(c,10),"inner"==t?s+n+a:"outer"==t?s+n+a+o+r+borderLeft+borderRight:s},axHeight=(e,t)=>{axFalseReturn(e);let i=axIdToDom(e),{height:s,paddingTop:n,paddingBottom:a,marginTop:o,marginBottom:r,borderTopWidth:l,borderBottomWidth:c}=getComputedStyle(i);return s=parseInt(s,10),n=parseInt(n,10),a=parseInt(a,10),o=parseInt(o,10),r=parseInt(r,10),borderTop=parseInt(l,10),borderBottom=parseInt(c,10),"inner"==t?s+n+a:"outer"==t?s+n+a+o+r+borderTop+borderBottom:s},axArrHeight=e=>{axFalseReturn(e);let t=axIdToDom(e),{height:i,paddingTop:s,paddingBottom:n,marginTop:a,marginBottom:o,borderTopWidth:r,borderBottomWidth:l}=getComputedStyle(t);return i=parseInt(i,10),s=parseInt(s,10),n=parseInt(n,10),a=parseInt(a,10),o=parseInt(o,10),borderTop=parseInt(r,10),borderBottom=parseInt(l,10),{height:i,paddingTop:s,paddingBottom:n,marginTop:a,marginBottom:o,borderTop:borderTop,borderBottom:borderBottom}},axSelector=(e,t)=>{axFalseReturn(e);let i=axIdToDom(e),s=!0;if(t){t=String(t).replace(/\s+/g,""),t=String(t).split(",");for(let e=0;e<t.length;e++){if(!t[e]){s=!0;break}if(-1!=t[e].indexOf(".")){let n=t[e].replace(".","");if(i.classList.contains(n)){s=!0;break}s=!1}else if(-1!=t[e].indexOf("#")){let n=t[e].replace("#","");if(i.getAttribute("id")==n){s=!0;break}s=!1}else{let n=t[e].toUpperCase();if(i.nodeName==n){s=!0;break}s=!1}}}else s=!0;return s},axNot=(e,t)=>{axFalseReturn(e);let i=axIdToDom(e),s=!0;if(t){t=String(t).replace(/\s+/g,""),t=String(t).split(",");for(let e=0;e<t.length;e++)if(-1!=t[e].indexOf(".")){let n=t[e].replace(".","");if(i.classList.contains(n)){s=!0;break}s=!1}else if(-1!=t[e].indexOf("#")){let n=t[e].replace("#","");if(i.getAttribute("id")==n){s=!0;break}s=!1}else if(t){let n=t[e].toUpperCase();if(i.nodeName==n){s=!0;break}s=!1}else s=!1}else s=!1;return s},axSiblings=(e,t,i,s)=>{axFalseReturn(e);let n=axIdToDom(e);return[...n.parentNode.children].filter(e=>t?axSelector(e,i)&&!axNot(e,s):e!==n&&axSelector(e,i)&&!axNot(e,s))},axChildren=(e,t,i)=>(axFalseReturn(e),[...axIdToDom(e).children].filter(e=>axSelector(e,t)&&!axNot(e,i))),axParents=(e,t,i,s,n=[])=>{axFalseReturn(e,"No node to start!");let a=axIdToDom(e),o=t?axIdToDom(t):null;return"BODY"!==a.parentElement.nodeName?(i&&n.indexOf(a)<0&&n.push(a),o?(s&&n.indexOf(o)<0&&n.push(o),a.parentElement!==o?(n.push(a.parentElement),axParents(a.parentElement,o,i,s,n)):n):(n.push(a.parentElement),axParents(a.parentElement,o,i,s,n))):n},axCurves={linear:e=>e,easeIn:e=>e*e*e,easeOut:e=>(e-1)*(e-1)*(e-1)+1,easeInOut:e=>e<.5?2*e*e:-2(e-1)*(e-1)+1,easeOutIn:e=>e<.5?Math.sqrt(.5*e):1-Math.sqrt(.5*(1-e))},axSlideDown=(e,t,i,s="easeOut")=>{axFalseReturn(e);let n=axIdToDom(e);if("none"===window.getComputedStyle(n).display){n.setAttribute("style","display: block;");const{height:e,paddingTop:a,paddingBottom:o,marginTop:r,marginBottom:l}=axArrHeight(n);let c;c=void 0!==i&&"number"==typeof i?i:(e=>e/3+250)(e),n.setAttribute("style","display: block; padding-top: 0; padding-bottom: 0;margin-top: 0; margin-bottom: 0;");const d=(new Date).getTime(),h=()=>{const i=(new Date).getTime()-d,u=i/c,p=axCurves[s](u),m=0+e*p,f=0+a*p,g=0+o*p,v=0+r*p,x=0+l*p;i<=c&&Math.ceil(m)<e?n.setAttribute("style",`overflow:hidden;display: block; padding-top: ${f}px; padding-bottom: ${g}px;margin-top: ${v}px; margin-bottom: ${x}px; height: ${m}px`):n.setAttribute("style","display: block");const y=requestAnimationFrame(h);(Math.ceil(m)>=e||!e)&&(cancelAnimationFrame(y),t&&t())};h()}return n},axHeightDown=(e,t,i,s,n="easeOut")=>{axFalseReturn(e);let a=axIdToDom(e);const o=t&&t.height?t.height:axArrHeight(a).height,r=t&&t.paddingTop?t.paddingTop:axArrHeight(a).paddingTop,l=t&&t.paddingBottom?t.paddingBottom:axArrHeight(a).paddingBottom,c=t&&t.marginTop?t.marginTop:axArrHeight(a).marginTop,d=t&&t.marginBottom?t.marginBottom:axArrHeight(a).marginBottom;let h;h=void 0!==s&&"number"==typeof s?s:(e=>e/3+250)(o),a.style.overflow="hidden",a.style.height=0,r&&(a.style.paddingTop=0),l&&(a.style.paddingBottom=0),c&&(a.style.marginTop=0),d&&(a.style.marginBottom=0);const u=(new Date).getTime(),p=()=>{const e=(new Date).getTime()-u,t=e/h,s=axCurves[n](t),m=0+o*s,f=0+r*s,g=0+l*s,v=0+c*s,x=0+d*s;e<=h&&Math.ceil(m)<o?(a.style.height=m+"px",r&&(a.style.paddingTop=f+"px"),l&&(a.style.paddingBottom=g+"px"),c&&(a.style.marginTop=v+"px"),d&&(a.style.marginBottom=x+"px")):(a.style.height=o+"px",r&&(a.style.paddingTop=r+"px"),l&&(a.style.paddingBottom=l+"px"),c&&(a.style.marginTop=c+"px"),d&&(a.style.marginBottom=d+"px"));const y=requestAnimationFrame(p);(Math.ceil(m)>=o||!o)&&(cancelAnimationFrame(y),i&&i())};return p(),a},axSlideUp=(e,t,i,s="easeOut")=>{axFalseReturn(e);let n=axIdToDom(e);if("none"!==window.getComputedStyle(n).display){const{height:e,paddingTop:a,paddingBottom:o,marginTop:r,marginBottom:l}=axArrHeight(n);let c;c=void 0!==i&&"number"==typeof i?i:(e=>e/3+250)(e),n.setAttribute("style","display: block; padding-top: 0; padding-bottom: 0;margin-top: 0; margin-bottom: 0;");const d=(new Date).getTime(),h=()=>{const i=(new Date).getTime()-d,u=i/c,p=axCurves[s](u),m=e+-e*p,f=a+-a*p,g=o+-o*p,v=r+-r*p,x=l+-l*p;i<=c&&Math.floor(m)>0?n.setAttribute("style",`overflow:hidden;display: block; padding-top: ${f}px; padding-bottom: ${g}px;margin-top: ${v}px; margin-bottom: ${x}px; height: ${m}px`):n.setAttribute("style","display: none");const y=requestAnimationFrame(h);(Math.floor(m)<=0||!e)&&(cancelAnimationFrame(y),t&&t())};h()}return n},axHeightUp=(e,t,i,s,n="easeOut")=>{axFalseReturn(e);let a=axIdToDom(e);const o=t&&t.height?t.height:axArrHeight(a).height,r=t&&t.paddingTop?t.paddingTop:axArrHeight(a).paddingTop,l=t&&t.paddingBottom?t.paddingBottom:axArrHeight(a).paddingBottom,c=t&&t.marginTop?t.marginTop:axArrHeight(a).marginTop,d=t&&t.marginBottom?t.marginBottom:axArrHeight(a).marginBottom;let h;h=void 0!==s&&"number"==typeof s?s:(e=>e/3+250)(o),a.style.overflow="hidden";const u=(new Date).getTime(),p=()=>{const e=(new Date).getTime()-u,t=e/h,s=axCurves[n](t),m=o+-o*s,f=r+-r*s,g=l+-l*s,v=c+-c*s,x=d+-d*s;e<=h&&Math.floor(m)>0?(a.style.height=m+"px",r&&(a.style.paddingTop=f+"px"),l&&(a.style.paddingBottom=g+"px"),c&&(a.style.marginTop=v+"px"),d&&(a.style.marginBottom=x+"px")):(a.style.height=0,r&&(a.style.paddingTop=0),l&&(a.style.paddingBottom=0),c&&(a.style.marginTop=0),d&&(a.style.marginBottom=0));const y=requestAnimationFrame(p);(Math.floor(m)<=0||!o)&&(cancelAnimationFrame(y),i&&i())};return p(),a},axSlideToggle=(e,t,i,s,n="easeOut")=>{axFalseReturn(e);let a=axIdToDom(e);return"none"===window.getComputedStyle(a).display?axSlideDown(a,t,s,n):axSlideUp(a,i,s,n),a},axFadeIn=(e,t=200,i="linear")=>{axFalseReturn(e);let s=axIdToDom(e);if(s){let e=window.getComputedStyle(s).display,n=window.getComputedStyle(s).opacity;if("none"===e){s.style.display="block",s.style.opacity=0;let e=(new Date).getTime(),n=()=>{let a=(new Date).getTime()-e,o=a/t,r=axCurves[i](o);a<=t&&r<=1?(s.style.display="block",s.style.opacity=r):(s.style.display="block",s.style.opacity=1);let l=requestAnimationFrame(n);r>=1&&cancelAnimationFrame(l)};n()}else if("none"!==e&&1!==Number(n)){let a=(new Date).getTime(),o=()=>{let r=(new Date).getTime()-a,l=r/t,c=axCurves[i](l)+Number(n);r<=t&&c<=1?(s.style.display=e,s.style.opacity=c):(s.style.display=e,s.style.opacity=1);let d=requestAnimationFrame(o);c>=1&&cancelAnimationFrame(d)};o()}}return s},axFadeOut=(e,t=200,i="linear")=>{axFalseReturn(e);let s=axIdToDom(e);if(s){let e=window.getComputedStyle(s).display,n=window.getComputedStyle(s).opacity;if("none"!==e||0!==Number(n)){s.style.opacity=n;let e=(new Date).getTime(),a=()=>{let o=(new Date).getTime()-e,r=o/t,l=Number(n)-axCurves[i](r);o<=t&&l>0?s.style.opacity=l:(s.style.opacity=0,s.style.display="none");let c=requestAnimationFrame(a);l<=0&&cancelAnimationFrame(c)};a()}}return s},axFadeToggle=(e,t=200,i="linear")=>{axFalseReturn(e);let s=axIdToDom(e);if(s){let e=window.getComputedStyle(s).display,n=window.getComputedStyle(s).opacity;"none"===e?axFadeIn(s,t,i):Number(n)<=.5?axFadeIn(s,t,i):(Number(n),axFadeOut(s,t,i))}return s},axShow=(e,t,i)=>{axFalseReturn(e);let s=axIdToDom(e);"visible"==t?s.style.visibility="visible":s.style.display=t||"block",i&&i()},axHide=(e,t,i)=>{axFalseReturn(e);let s=axIdToDom(e);"hidden"==t?s.style.visibility="hidden":s.style.display="none",i&&i()},axToggle=(e,t,i)=>{axFalseReturn(e);let s=axIdToDom(e);axIsVisible(s)?axHide(s,i):axShow(s,t)},axScrollTo=(e,t,i="easeOut")=>{let s=document.documentElement.scrollTop,n=(new Date).getTime(),a=e?axIdToDom(e).getBoundingClientRect().top:-s;t&&"number"==typeof t||(t=Math.abs(a)/4+1e3);let o=()=>{let e=(new Date).getTime()-n,r=e/t,l=s+a*axCurves[i](r);window.scrollTo(0,l),o.timer=requestAnimationFrame(o),e>=t&&(window.scrollTo(0,l),cancelAnimationFrame(o.timer))};return o(),e},axIcon={font:{success:'<i class="ax-iconfont ax-icon-check-o"></i>',error:'<i class="ax-iconfont ax-icon-close-o"></i>',warning:'<i class="ax-iconfont ax-icon-warning-o"></i>',info:'<i class="ax-iconfont ax-icon-info-o"></i>',question:'<i class="ax-iconfont ax-icon-question-o"></i>',successFill:'<i class="ax-iconfont ax-icon-check-o-f"></i>',errorFill:'<i class="ax-iconfont ax-icon-close-o-f"></i>',warningFill:'<i class="ax-iconfont ax-icon-warning-o-f"></i>',infoFill:'<i class="ax-iconfont ax-icon-info-o-f"></i>',questionFill:'<i class="ax-iconfont ax-icon-question-o-f"></i>'},svg:{success:'<svg class="svg-success" xmlns="http://www.w3.org/2000/svg" width="86.6986mm" height="86.6986mm" viewBox="0 0 86.6986 86.6986"><path class="svg-line svg-bg" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-in-1" d="M26.316,42.859L37.9984,54.5414L60.3826,32.1572"></path></svg>',error:'<svg class="svg-error" xmlns="http://www.w3.org/2000/svg" width="86.6986mm" height="86.6986mm" viewBox="0 0 86.6986 86.6986"><path class="svg-line svg-bg" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-in-1" d="M28.774,57.9246L57.9247,28.7739"></path><path class="svg-line svg-in-2" d="M57.9246,57.9246L28.7739,28.7739"></path></svg>',warning:'<svg class="svg-warning" xmlns="http://www.w3.org/2000/svg" width="86.6986mm" height="86.6986mm" viewBox="0 0 86.6986 86.6986"><path class="svg-line svg-bg" d="M43.4611 7.24c2.8081,0.0924 4.39,1.7 5.3045,3.1159l17.4543 29.9414 17.3445 29.7538c0.5448,1.0193 1.596,4.0544 0.1109,6.4168 -1.4849,2.3626 -3.6815,2.9155 -5.3768,2.992l-34.9082 0.0002 -34.6892 -0.0002c-1.1636,-0.0421 -4.3433,-0.6583 -5.6666,-3.1131 -1.3232,-2.4549 -0.7085,-4.6157 0.0723,-6.1078l17.454 -29.9417 17.3449 -29.7537c0.6185,-0.977 2.7471,-3.396 5.5554,-3.3036z"></path><path class="svg-line svg-out" d="M43.4611 7.24c2.8081,0.0924 4.39,1.7 5.3045,3.1159l17.4543 29.9414 17.3445 29.7538c0.5448,1.0193 1.596,4.0544 0.1109,6.4168 -1.4849,2.3626 -3.6815,2.9155 -5.3768,2.992l-34.9082 0.0002 -34.6892 -0.0002c-1.1636,-0.0421 -4.3433,-0.6583 -5.6666,-3.1131 -1.3232,-2.4549 -0.7085,-4.6157 0.0723,-6.1078l17.454 -29.9417 17.3449 -29.7537c0.6185,-0.977 2.7471,-3.396 5.5554,-3.3036z"></path><path class="svg-line svg-in-1" d="M43.3493,27.8713L43.3493,57.2858"></path><circle class="svg-circle svg-in-2" cx="43.3492" cy="64.3337" r="2.1166"></circle></svg>',info:'<svg class="svg-info" xmlns="http://www.w3.org/2000/svg" width="86.6986mm" height="86.6986mm" viewBox="0 0 86.6986 86.6986"><path class="svg-line svg-bg" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-in-1" d="M43.3493,65.0602L43.3493,30.9723"></path><circle class="svg-circle svg-in-2" cx="43.3492" cy="23.5856" r="2.1166"></circle></svg>',question:'<svg class="svg-question" xmlns="http://www.w3.org/2000/svg" width="86.6986mm" height="86.6986mm" viewBox="0 0 86.6986 86.6986"><path class="svg-line svg-bg" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path><path class="svg-line svg-in-1" d="M32.3757 35.7255c-0.2203,-11.823 12.5789,-14.1087 18.4056,-9.4189 5.4663,4.3995 4.7426,12.804 -3.1088,17.9938 -3.0015,1.9839 -3.0003,3.8403 -3.0003,10.1707"></path><circle class="svg-circle svg-in-2" cx="44.6612" cy="60.5502" r="2.1166"></circle></svg>'}},axImage={loadSvg:getComputedStyle(document.documentElement).getPropertyValue("--load-svg").trim().split('"')[1],loadSvgW:getComputedStyle(document.documentElement).getPropertyValue("--load-svg-w").trim().split('"')[1],loadGif:getComputedStyle(document.documentElement).getPropertyValue("--load-gif").trim().split('"')[1],imgAvatar:"data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTYwcHgiIGhlaWdodD0iMTYwcHgiIHZpZXdCb3g9IjAgMCAxNjAgMTYwIj4NCjxyZWN0IHk9IjAiIGZpbGw9IiNGRkZGRkYiIHdpZHRoPSI4MCIgaGVpZ2h0PSIxNjAiLz4NCjxyZWN0IHg9IjgwIiBmaWxsPSIjRjRGNEY0IiB3aWR0aD0iODAiIGhlaWdodD0iMTYwIi8+DQo8cGF0aCBmaWxsPSIjQjJCMkIyIiBkPSJNOTguOTE2LDk3LjI1MmMxMC4zOTMtNi4zODIsMTcuMzQtMTcuODUxLDE3LjM0LTMwLjkxNmMwLTE5Ljk5Mi0xNi4yNjYtMzYuMjU1LTM2LjI1Ny0zNi4yNTUNCgljLTE5Ljk5MiwwLTM2LjI1NSwxNi4yNjMtMzYuMjU1LDM2LjI1NWMwLDEzLjA2NCw2Ljk0NiwyNC41MzQsMTcuMzM4LDMwLjkxNkMzNC4xMTQsMTA1LjM3MSwxNC40NjcsMTMwLjM4NywxNC40NjcsMTYwaDEzMS4wNjYNCglDMTQ1LjUzMywxMzAuMzg3LDEyNS44ODUsMTA1LjM3MSw5OC45MTYsOTcuMjUyeiIvPg0KPC9zdmc+DQo=",imgNone:"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciICB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjE2MHB4IiBoZWlnaHQ9IjE2MHB4IiB2aWV3Qm94PSIwIDAgMTYwIDE2MCI+DQo8cmVjdCBmaWxsPSIjRkZGRkZGIiB3aWR0aD0iMTYwIiBoZWlnaHQ9IjE2MCIvPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggZmlsbD0iI0M5Q0FDQSIgZD0iTTc5LjA4Nyw4Ny44Nkg2MS45ODNjLTEuNzE3LDAtMy4xMDgtMS4yMjMtMy4xMDktMi43M3YtMi4xMTFsOS4xNjMtNi45NThsMy4yODQsMi44NDENCgkJCQljMS43MDgsMS40ODYsNC40MjIsMS41ODUsNi4yNjIsMC4yMjhMOTMuMDcsNjcuNjI1bDYuMjI2LDUuNDc5YzAuNjI4LDAuNTkxLDAuODkyLDAuODU4LDEuNTgsMC44NTgNCgkJCQljMC40OTMsMCwwLjkwNC0wLjI0NCwxLjIxOS0wLjU4N2MwLjMzMy0wLjM2MywwLjMxMS0xLjIzOCwwLjMxMS0xLjY3MlY1Ny44MWMwLTMuMDE4LTIuNzgzLTUuNDY1LTYuMjE4LTUuNDY1SDYxLjk4Mw0KCQkJCWMtMy40MzUsMC02LjIxOCwyLjQ0Ny02LjIxOCw1LjQ2NXYyNy4zMmMwLDEuNDQ4LDAuNjU1LDIuODM5LDEuODIxLDMuODYzYzEuMTY3LDEuMDIzLDIuNzQ5LDEuNjAxLDQuMzk3LDEuNjAxaDE3LjA3MQ0KCQkJCWMwLjc5NSwwLDEuNTI1LTAuNTY3LDEuNTgyLTEuMjY1YzAuMDY1LTAuOC0wLjY1My0xLjQ2Ny0xLjU0Ny0xLjQ2N0w3OS4wODcsODcuODZ6IE01OC44NzUsNTcuODENCgkJCQljMC0xLjUwOSwxLjM5Mi0yLjczMiwzLjEwOS0yLjczMmgzNC4yMDNjMS43MTgsMCwzLjEwOSwxLjIyMywzLjEwOSwyLjczMnYxMS40MzRsLTQuMTIzLTMuNjI5DQoJCQkJYy0xLjE1Mi0wLjg1Ny0yLjg0LTAuODYtMy45OTYtMC4wMDhMNzUuNTg3LDc3LjAyOWMtMC42MTMsMC40NDktMS41MTMsMC40MTctMi4wODItMC4wNzVsLTMuMjg3LTIuODQNCgkJCQljLTEuMTU5LTAuOTkzLTIuOTg5LTEuMDQ0LTQuMjE2LTAuMTIxbC03LjEyNyw1LjQyTDU4Ljg3NSw1Ny44MUw1OC44NzUsNTcuODF6IE02Ny4wMDQsNjQuMjE1YzAsMS42NTgsMC45OTksMy4xNTMsMi41MywzLjc4Nw0KCQkJCWMxLjUzMiwwLjYzNSwzLjI5NSwwLjI4NSw0LjQ2Ny0wLjg4OGMxLjE3My0xLjE3MiwxLjUyMi0yLjkzNSwwLjg4OS00LjQ2NmMtMC42MzUtMS41MzEtMi4xMjktMi41MzEtMy43ODctMi41MzENCgkJCQljLTEuMDg3LDAtMi4xMywwLjQzMi0yLjg5OCwxLjJDNjcuNDM2LDYyLjA4Niw2Ny4wMDQsNjMuMTI3LDY3LjAwNCw2NC4yMTVMNjcuMDA0LDY0LjIxNXogTTEwMi4zMzgsNzkuNzM3DQoJCQkJYzMuNzM3LDMuNzMzLDMuNzM3LDkuNzg2LDAsMTMuNTJjLTMuNzM1LDMuNzM1LTkuNzg5LDMuNzM2LTEzLjUyMywwYy0zLjY4Mi0zLjc0NC0zLjY1NS05Ljc1NCwwLjA1Ny0xMy40NjMNCgkJCQlDOTIuNTgzLDc2LjA4Miw5OC41OTUsNzYuMDU2LDEwMi4zMzgsNzkuNzM3TDEwMi4zMzgsNzkuNzM3eiBNOTAuNzQ1LDkxLjMyNWMyLjI5NSwyLjI5NCw1Ljg4NiwyLjY1Nyw4LjU5MywwLjg2OWwtOS40NjItOS40NjQNCgkJCQljLTEuNzg3LDIuNzA2LTEuNDI0LDYuMjk4LDAuODY5LDguNTkyVjkxLjMyNXogTTEwMS4yNzIsOTAuMjU5YzEuNzgyLTIuNzA4LDEuNDE2LTYuMjk1LTAuODc1LTguNTg1DQoJCQkJYy0yLjI5My0yLjI5LTUuODc5LTIuNjU3LTguNTg3LTAuODc1TDEwMS4yNzIsOTAuMjU5eiBNMTAxLjI3Miw5MC4yNTkiLz4NCgkJPC9nPg0KCTwvZz4NCgk8dGV4dCB0cmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAxIDU0LjgyMzcgMTEwLjU1MDgpIiBmaWxsPSIjQzlDQUNBIiBmb250LWZhbWlseT0iJ01pY3Jvc29mdFlhSGVpJyIgZm9udC1zaXplPSIxMi41ODc3Ij7mmoLml6Dlm77niYc8L3RleHQ+DQo8L2c+DQo8L3N2Zz4NCg==",empty:"data:image/svg+xml;base64,PHN2ZyB0PSIxNTg5ODk5NTI1MTA0IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBwLWlkPSIyNTI5IiB3aWR0aD0iNjQiIGhlaWdodD0iNjQiPjxkZWZzPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+PC9zdHlsZT48L2RlZnM+PHBhdGggZD0iTTExOC44MjY5NzEgMTM4LjQwOTE0M2E3Ljk2ODA0MSA3Ljk2ODA0MSAwIDAgMCA3LjkyMDYxMi03LjkyMDYxMlYxMTEuMzUxMDAzYTcuOTIwNjEyIDcuOTIwNjEyIDAgMSAwLTE1Ljg0MTIyNSAwdjE5LjE3MzA5OWE3Ljk2ODA0MSA3Ljk2ODA0MSAwIDAgMCA3LjkyMDYxMyA3LjkyMDYxM3ogbTE0LjU5NjIxOCAxNC41OTYyMThoMTkuMTg0OTU2YTcuOTIwNjEyIDcuOTIwNjEyIDAgMSAwIDAtMTUuODQxMjI0SDEzMy40MzUwNDZhNy45MjA2MTIgNy45MjA2MTIgMCAxIDAgMCAxNS44NDEyMjR6IG0tMjkuMTkyNDM3LTE1Ljc4MTkzOEg4NS4wNTc2NTNhNy45MjA2MTIgNy45MjA2MTIgMCAwIDAgMCAxNS44NDEyMjRoMTkuMTczMDk5YTcuOTIwNjEyIDcuOTIwNjEyIDAgMCAwIDAtMTUuODQxMjI0eiBtMTQuNTk2MjE5IDE0LjU4NDM2MWE3Ljk2ODA0MSA3Ljk2ODA0MSAwIDAgMC03LjkyMDYxMyA3LjkyMDYxMnYxOS4xNzMwOTlhNy45MjA2MTIgNy45MjA2MTIgMCAwIDAgMTUuODQxMjI1IDB2LTE5LjE0OTM4NWE3Ljk2ODA0MSA3Ljk2ODA0MSAwIDAgMC03LjkyMDYxMi03LjkyMDYxMnogbTc4OC41MDQwNyAxMTguMjc1NjFhMzguNzI1NjI4IDM4LjcyNTYyOCAwIDEgMCAzOC43MjU2MjggMzguNzI1NjI5IDM4LjY3ODIgMzguNjc4MiAwIDAgMC0zOC43NjEyLTM4Ljc4NDkxNXogbTAgNjEuNDkxNDZhMjIuODg0NDA0IDIyLjg4NDQwNCAwIDEgMSAyMi44ODQ0MDMtMjIuODg0NDAzIDIyLjkxOTk3NSAyMi45MTk5NzUgMCAwIDEtMjIuODg0NDAzIDIyLjg4NDQwM3pNNjkyLjUyNTkzMiA0Ny44NzkzOWEyMy41MDA5NzggMjMuNTAwOTc4IDAgMSAwLTIzLjUwMDk3OS0yMy41MDA5NzggMjMuNTAwOTc4IDIzLjUwMDk3OCAwIDAgMCAyMy41MDA5NzkgMjMuNTAwOTc4eiBtMC0zMS4zMDMwMTlhNy42NzE2MTEgNy42NzE2MTEgMCAxIDEtNy42NzE2MTEgNy42NzE2MTEgNy43MDcxODMgNy43MDcxODMgMCAwIDEgNy42NzE2MTEtNy42NzE2MTF6IG0wIDAiIGZpbGw9IiNlNmU2ZTYiIHAtaWQ9IjI1MzAiPjwvcGF0aD48cGF0aCBkPSJNMjc1Ljc2ODkyMyA5OTIuODE1NTUzYzAgMTEuMTQ1NzcyIDM4LjE1NjQ4MyAyMS4zNDI5NjcgOTkuODQ5NTE2IDI2Ljk2MzI4MmExMTk3LjE4NjMyMyAxMTk3LjE4NjMyMyAwIDAgMCAxOTkuOTEyNDYgMGM2MS45MDY0NjItNS41NzI4ODYgOTkuODQ5NTE1LTE1LjgxNzUxIDk5Ljg0OTUxNi0yNi45NjMyODJzLTM4LjE1NjQ4My0yMS4zNDI5NjctOTkuODQ5NTE2LTI2Ljk2MzI4MmExMTk3LjAyMDMyMiAxMTk3LjAyMDMyMiAwIDAgMC0xOTkuOTEyNDYgMGMtNjEuNjU3NDYxIDUuNTcyODg2LTk5Ljg0OTUxNSAxNS44MTc1MS05OS44NDk1MTYgMjYuOTYzMjgyeiBtMCAwIiBmaWxsPSIjZjBmMGYwIiBwLWlkPSIyNTMxIj48L3BhdGg+PHBhdGggZD0iTTU3MS4wMjUxNjIgNDgyLjg5NjQ5M2E3Ljc2NjQ2OSA3Ljc2NjQ2OSAwIDAgMC0xMS4xMzM5MTUgMGwtMTEuOTk5NDkgMTEuOTk5NDktMTEuOTk5NDkxLTExLjk5OTQ5YTcuODczMTgzIDcuODczMTgzIDAgMSAwLTExLjEzMzkxNCAxMS4xMzM5MTRsMTEuOTk5NDkgMTEuOTk5NDkxLTExLjk5OTQ5IDExLjk5OTQ5YTcuOTU2MTg0IDcuOTU2MTg0IDAgMSAwIDExLjI1MjQ4NiAxMS4yNTI0ODdsMTEuOTk5NDkxLTExLjk5OTQ5MSAxMS45OTk0OSAxMS45OTk0OTFhNy43NzgzMjYgNy43NzgzMjYgMCAwIDAgNS41NzI4ODYgMi4zNzE0NDEgNy41NzY3NTMgNy41NzY3NTMgMCAwIDAgNS41NzI4ODYtMi4zNzE0NDEgNy43NjY0NjkgNy43NjY0NjkgMCAwIDAgMC0xMS4xMzM5MTVsLTExLjk5OTQ5LTExLjk5OTQ5IDExLjk5OTQ5LTExLjk5OTQ5MWE4LjExMDMyOCA4LjExMDMyOCAwIDAgMC0wLjExODU3Mi0xMS4yNTI0ODZ6IG0tMTU0LjkwMjUxNCA0Ni4zOTcyMzlhNy44NzMxODMgNy44NzMxODMgMCAwIDAgNS41NzI4ODYgMi4zNzE0NDEgNy44NzMxODMgNy44NzMxODMgMCAwIDAgNS41NzI4ODYtMTMuNDgxNjQxbC0xMS45OTk0OTEtMTEuOTk5NDkxIDExLjk5OTQ5MS0xMS45OTk0OWE3Ljc2NjQ2OSA3Ljc2NjQ2OSAwIDAgMCAwLTExLjEzMzkxNSA3Ljk5MTc1NiA3Ljk5MTc1NiAwIDAgMC0xMS4yNjQzNDQgMGwtMTEuOTk5NDkxIDExLjk5OTQ5MS0xMS45OTk0OS0xMS45OTk0OTFhNy45OTE3NTYgNy45OTE3NTYgMCAwIDAtMTEuMjY0MzQ0IDAgNy43NjY0NjkgNy43NjY0NjkgMCAwIDAgMCAxMS4xMzM5MTVsMTEuOTk5NDkxIDExLjk5OTQ5LTExLjk5OTQ5MSAxMS45OTk0OTFhNy43NjY0NjkgNy43NjY0NjkgMCAwIDAgMCAxMS4xMzM5MTUgNy43NzgzMjYgNy43NzgzMjYgMCAwIDAgNS41NzI4ODYgMi4zNzE0NCA3LjU3Njc1MyA3LjU3Njc1MyAwIDAgMCA1LjU3Mjg4Ni0yLjM3MTQ0bDExLjk5OTQ5LTExLjk5OTQ5MXogbTU5Ljg3ODg4IDgzLjM5MTcxNmExMDcuMzkwNjk3IDEwNy4zOTA2OTcgMCAwIDAtNzcuNDUxMjU2IDMyLjY1NDc0IDcuOTU2MTg0IDcuOTU2MTg0IDAgMCAwIDAuMTE4NTcyIDExLjEzMzkxNSA3LjgzNzYxMiA3LjgzNzYxMiAwIDAgMCAxMS4xMzM5MTQtMC4xMTg1NzIgOTIuNjE2NjIxIDkyLjYxNjYyMSAwIDAgMSAxMzIuMzg1Njg0IDAgOC4xNTc3NTYgOC4xNTc3NTYgMCAwIDAgNS42OTE0NTcgMi4zNzE0NDEgNy44MjU3NTUgNy44MjU3NTUgMCAwIDAgNy4zMDQwMzgtNC44MjU4ODIgOC4wMTU0NyA4LjAxNTQ3IDAgMCAwLTEuNjEyNTgtOC42NTU3NTkgMTA3Ljc1ODI3MSAxMDcuNzU4MjcxIDAgMCAwLTc3LjU2OTgyOS0zMi41MzYxNjh6IG0wIDAiIGZpbGw9IiNkYmRiZGIiIHAtaWQ9IjI1MzIiPjwvcGF0aD48cGF0aCBkPSJNNzY4LjYwMTc1MyAzMTMuODcyMDQ5bC04Mi4xNDY3MS05MS42Nzk5MDJhOTQuMjI5MjAxIDk0LjIyOTIwMSAwIDAgMC03MC4xNDcyMTktMzEuMzAzMDE5SDI0Ni41MDUzNDRhODUuOTA1NDQzIDg1LjkwNTQ0MyAwIDAgMC04NS44NTgwMTUgODUuODU4MDE1djU2NC42NTE5MTRhODUuOTA1NDQzIDg1LjkwNTQ0MyAwIDAgMCA4NS44NTgwMTUgODUuODU4MDE1aDQ1OS40OTAzNzJhODUuOTA1NDQzIDg1LjkwNTQ0MyAwIDAgMCA4NS44NTgwMTQtODUuODU4MDE1VjM3NC42MTY1MDVhOTEuMDYzMzI3IDkxLjA2MzMyNyAwIDAgMC0yMy4yNjM4MzQtNjAuNzQ0NDU2eiBtLTk0LjAyNzYyOC04MS4xNjI1NjJsODIuMTQ2NzEgOTEuNjc5OTAyYTc3LjQyNzU0MyA3Ny40Mjc1NDMgMCAwIDEgMTQuMjI4NjQ1IDIzLjI2MzgzNGgtODUuNDkwNDQyYTM4Ljk2Mjc3MyAzOC45NjI3NzMgMCAwIDEtMzguOTc0NjMtMzguOTc0NjN2LTk1Ljg3NzM1MmE3Ny4yODUyNTYgNzcuMjg1MjU2IDAgMCAxIDI4LjA4OTcxNyAxOS45MjAxMDN6IG0xMDEuNDUwMjM4IDYwOC43MDE0MjhhNzAuMTIzNTA1IDcwLjEyMzUwNSAwIDAgMS03MC4wMjg2NDcgNzAuMDI4NjQ3SDI0Ni41MDUzNDRhNzAuMTIzNTA1IDcwLjEyMzUwNSAwIDAgMS03MC4wMjg2NDctNzAuMDI4NjQ3VjI3Ni43NDcxNDNhNzAuMTIzNTA1IDcwLjEyMzUwNSAwIDAgMSA3MC4wMjg2NDctNzAuMDI4NjQ3aDM2OS44MDI0OGE3OS40NDMyNjcgNzkuNDQzMjY3IDAgMCAxIDE0LjM0NzIxNyAxLjM2MzU3OHYxMDAuNTg0NjYyYTU0LjkxMDcxMiA1NC45MTA3MTIgMCAwIDAgNTQuODAzOTk3IDU0LjgwMzk5N2g4OS42OTk3NDlhODQuMzUyMTUgODQuMzUyMTUgMCAwIDEgMC44NjU1NzYgMTEuMTMzOTE1djQ2Ni43OTQ0MDl6IG0wIDAiIGZpbGw9IiNkYmRiZGIiIHAtaWQ9IjI1MzMiPjwvcGF0aD48L3N2Zz4="},axResult=(e,t)=>{axFalseReturn(e);let i=axIdToDom(e),s="";switch(t){case"success":s='<path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path>\n            <path class="svg-line svg-in-1" d="M26.316,42.859L37.9984,54.5414L60.3826,32.1572"></path>',i.querySelector("svg").classList.add("svg-success");break;case"error":s='<path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path>\n            <path class="svg-line svg-in-1" d="M28.774,57.9246L57.9247,28.7739"></path>\n            <path class="svg-line svg-in-2" d="M57.9246,57.9246L28.7739,28.7739"></path>',i.querySelector("svg").classList.add("svg-error");break;case"question":s='<path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path>\n            <path class="svg-line svg-in-1" d="M32.3757 35.7255c-0.2203,-11.823 12.5789,-14.1087 18.4056,-9.4189 5.4663,4.3995 4.7426,12.804 -3.1088,17.9938 -3.0015,1.9839 -3.0003,3.8403 -3.0003,10.1707"></path>\n            <circle class="svg-circle svg-in-2" cx="44.6612" cy="60.5502" r="2.1166"></circle>',i.querySelector("svg").classList.add("svg-question");break;case"info":s='<path class="svg-line svg-out" d="M7.238500000000002,43.3493A36.1108,36.1108 0,1,1 79.4601,43.3493A36.1108,36.1108 0,1,1 7.238500000000002,43.3493"></path>\n            <path class="svg-line svg-in-1" d="M43.3493,65.0602L43.3493,30.9723"></path>\n            <circle class="svg-circle svg-in-2" cx="43.3492" cy="23.5856" r="2.1166"></circle>',i.querySelector("svg").classList.add("svg-info")}i.classList.add("ax-result-show"),-1==i.querySelector("svg").innerHTML.indexOf("svg-in-1")&&i.querySelector("svg").insertAdjacentHTML("beforeend",s)},axCreateContent=(e,t,i)=>{let s=e.content;if("html"==e.type&&"string"==typeof e.content&&"#"==e.content.substr(0,1))e.content=document.querySelector(e.content).innerHTML;else if("html"==e.type&&"function"==typeof e.content)e.content=e.content.call(t);else if("async"==e.type&&e.url)if(e.url.indexOf("#")>-1){let s=e.url.match(/(\S*)\#/)[1],n="#"+e.url.match(/\#(\S*)/)[1],a=e.content;axAjax({url:s,selector:n,before:t=>{e.content=t},success:s=>{e.content=s,t.content.innerHTML="function"==typeof a?a(s):s,i&&i()}})}else{let s=e.content;axAjax({url:e.url,before:t=>{e.content=t},success:n=>{e.content=n,t.content.innerHTML="function"==typeof s?s(n):n,i&&i()}})}else"iframe"==e.type&&e.url?(e.content=`<iframe src="${e.url}" frameborder="0" width="100%" height="100%"></iframe>`,e.footerShow=!1):e.content?e.content=e.content:e.content="娌℃湁浠讳綍鍐呭锛�";return"picture"==e.type&&e.url?e.content=`\n        <div class="ax-media-container"><img src="${e.url}" /></div>\n        <div class="ax-media-title">${e.name}</div>\n        ${s}\n        `:"video"==e.type&&e.url?e.content=`\n        <div class="ax-media-container"><video src="${e.url}" controls="controls" ></video></div>\n        <div class="ax-media-title">${e.name}</div>\n        ${s}\n        `:"audio"==e.type&&e.url&&(e.content=`\n        <div class="ax-media-container"><audio src="${e.url}" controls="controls" ></audio></div>\n        <div class="ax-media-title">${e.name}</div>\n        ${s}\n        `),e.content},axFooterBtns=(e,t)=>{let i=e.footerBreak?'<div class="ax-break-line"></div>':"",s="";if(e.note&&(e.note=`<div class="ax-note">${e.note}</div>`),e.footerShow)if("right"==e.footerType){let t="",n="",a="";e.confirm.text&&(n=`<a href="###" class="ax-btn ax-primary ${e.confirm.classname}"  confirm>${e.confirm.icon}${e.confirm.text}</a>`),e.cancel.text&&(t=`<a href="###" class="ax-btn ax-text ax-ignore ${e.cancel.classname}"  cancel>${e.cancel.icon}${e.cancel.text}</a>`),e.diy.text&&e.diy.callback?a=`<a href="###" class="ax-btn ax-text ${e.diy.classname}"  diy>${e.diy.icon}${e.diy.text}</a>`:e.diy.text&&!e.diy.callback&&(a=`<a href="${e.diy.url}" target="${e.diy.url}" class="ax-btn ax-text ${e.diy.classname}"  diy>${e.diy.icon}${e.diy.text}</a>`),s=`\n                                        ${i}\n                                        <div class="ax-padding">\n                                              <div class="ax-row">\n                                                  <div class="ax-col">\n                                                  ${e.note}\n                                                  </div>\n                                                  <div class="ax-btns">${a}${t}${n}</div>\n                                              </div>\n                                          </div>\n                          `}else if("line"==e.footerType){let t="",i="",n="";e.confirm.text&&(i=`<a href="###" class="ax-col ax-col-12 ${e.confirm.classname}"  confirm>${e.confirm.icon}${e.confirm.text}</a>`),e.cancel.text&&(t=`<a href="###" class="ax-col ax-col-12 ${e.cancel.classname}"  cancel>${e.cancel.icon}${e.cancel.text}</a><span class="ax-gutter-line"></span>`),e.diy.text&&e.diy.callback?n=`<a href="###" class="ax-col ax-col-12 ${e.diy.classname}"  diy>${e.diy.icon}${e.diy.text}</a><span class="ax-gutter-line"></span>`:e.diy.text&&!e.diy.callback&&(n=`<a href="${e.diy.url}" target="${e.diy.url}" class="ax-col ax-col-12 ${e.diy.classname}"  diy>${e.diy.icon}${e.diy.text}</a><span class="ax-gutter-line"></span>`),s=`\n                          <div class="ax-break-line"></div>\n                          <div class="ax-row">${n}${t}${i}</div>${e.note}\n                          `}else{let t="",n="",a="";e.confirm.text&&(n=`<a href="###" class="ax-btn ax-primary ${e.confirm.classname}"  confirm>${e.confirm.icon}${e.confirm.text}</a>`),e.cancel.text&&(t=`<a href="###" class="ax-btn ax-ignore ${e.cancel.classname}" cancel>${e.cancel.icon}${e.cancel.text}</a>`),e.diy.text&&e.diy.callback?a=`<a href="###" class="ax-btn ${e.diy.classname}" diy>${e.diy.icon}${e.diy.text}</a>`:e.diy.text&&!e.diy.callback&&(a=`<a href="${e.diy.url}" target="${e.diy.url}" class="ax-btn ${e.diy.classname}" diy>${e.diy.icon}${e.diy.text}</a>`),s=`\n                                        ${i}\n                                         <div class="ax-padding ax-align-center">${a}${t}${n}</div>\n                                         <div class="ax-break"></div>${e.note}\n                         `}else s="";return s},axLocalTime=(e,t)=>{let i,s,n,a,o;if(e){if(e=e.trim(),s=new Date(e),n=s instanceof Date&&!isNaN(s.getTime()),!n)return console.error('Date format must be "YYYY-MM-DD" or "YYYY/MM/DD"');i=e.replace(/-/g,"/"),a=new Date(i).getTime(),o=-1!==i.indexOf(":")?0:6e4*new Date(i).getTimezoneOffset()}else a=(new Date).getTime(),o=0;return t?a-o:a},axCreateData=(e,t=["src","cover","caption","type"],i="figure",s=["media","cover","caption","type"],n=["","","","image"],a)=>{let o=[],r="";return axTypeIs("String",e)&&"#"==e.substr(0,1)?o=axTplToArr(e,t,s,i,n):(axTypeIs("Array",e)||axTypeIs("Object",e)?r=JSON.stringify(e):axTypeIs("String",e)&&(r=e),o=axStrToArr(r,s,n)),a&&a(o),o}
-/*!
-* 鎻掍欢锛氬畾涔夋晥鏋滄洿濂紿over鎿嶄綔锛涗娇鐢ㄦ柟娉曪細new axHover('#id',{鍙傛暟})
-*/;class axHover{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({timeout:50,interval:80,sensitivity:7,enter:()=>{},leave:()=>{},hold:""},t);let i=this;this.curX,this.curY,this.preX,this.preY,this.countTimer,this.leaveTimer,this.isActive=!1,this.options.hold?this.hold=axIdToDom(this.options.hold):this.hold="",this.track=e=>{i.curX=e.pageX,i.curY=e.pageY},this.compare=(e,t)=>{let s=i.preX-i.curX,n=i.preY-i.curY;Math.sqrt(s*s+n*n)<i.options.sensitivity?(clearTimeout(i.leaveTimer),i.isActive&&(i.options.leave.call(i,e,t),i.isActive=!1),i.options.enter.call(i,e,t),i.isActive=!0):(i.preX=i.curX,i.preY=i.curY,i.countTimer=setTimeout(()=>{i.compare(e,t)},i.options.interval))},this.init()}init(){let e=this;this.targetDom.addEventListener("mousemove",this.track),this.targetDom.addEventListener("mouseenter",(function(t){let i=this;e.preX=t.pageX,e.preY=t.pageY,e.isActive?clearTimeout(e.leaveTimer):e.countTimer=setTimeout((function(){e.compare(i,t)}),e.options.interval)})),this.targetDom.addEventListener("mouseleave",(function(t){let i=this;clearTimeout(e.countTimer),e.isActive&&(e.leaveTimer=setTimeout((function(){e.options.leave.call(e,i,t),e.isActive=!1}),e.options.timeout))})),this.hold&&(this.hold.onmouseenter=function(t){e.leaveTimer&&clearTimeout(e.leaveTimer),e.options.enter.call(e,e.targetDom,t)},this.hold.onmouseleave=function(t){clearTimeout(e.countTimer),e.leaveTimer=setTimeout((function(){e.options.leave.call(e,e.targetDom,t),e.isActive=!1}),e.options.timeout)})}}
-/*!
- * 鎻掍欢锛氭煡鐪嬫洿澶氾紱浣跨敤鏂规硶锛歯ew axMore('#id',{鍙傛暟})
- */const axMores=[];class axMore{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({length:60,textFold:"灞曞紑",textUnfold:"鏀惰捣",classFold:"ax-color-primary",classUnfold:"ax-color-primary"},t,this.targetDom),this.handlers={},this.html=this.targetDom.innerHTML,this.pureHtml=this.targetDom.textContent;let i=this,s=!0;this.event=function(){s?(i.targetDom.removeChild(this.previousSibling),this.innerHTML=i.options.textUnfold,this.setAttribute("class",i.options.classUnfold),this.insertAdjacentHTML("beforeBegin",i.text),s=!1,"unfold"in i.handlers&&i.emit("unfold","")):(i.targetDom.removeChild(this.previousSibling),this.innerHTML=i.options.textFold,this.setAttribute("class",i.options.classFold),this.insertAdjacentHTML("beforeBegin",i.ell),s=!0,"fold"in i.handlers&&i.emit("fold",""))},this.targetDom.getAttribute("axMore")?this.referName=this.targetDom.getAttribute("axMore"):this.referName="",this.init()}init(){this.text=this.pureHtml.trim().replace(/<[^>]+>/g,"").replace(/ +/g," "),this.ell=this.text.substring(0,this.options.length)+"...";let e=[...this.text].length,t=`<a href="###" class="${this.options.classFold}">${this.options.textFold}</a>`;return e>this.options.length&&(this.targetDom.innerHTML=this.ell+t),this.targetDom.lastChild.onclick=this.event,this.referName&&(axIsEmpty(axMores)?axMores.push({name:this.referName,instance:this}):axMores.some(e=>e.name==this.referName)||axMores.push({name:this.referName,instance:this})),"load"in this.handlers&&this.emit("load",""),this}destroy(e){this.targetDom.lastChild.removeEventListener("click",this.event,!1),this.targetDom.innerHTML=this.html,e&&e.call(this)}updateContent(e,t){return e="string"==typeof e?"#"==e.substr(0,1)?document.querySelector(e).textContent:e:e.textContent,this.pureHtml=e,this.init(),"updated"in this.handlers&&this.emit("updated",""),t&&t.call(this),this}update(e,t){return this.options=axExtend(this.options,e),this.init(),"updated"in this.handlers&&this.emit("updated",""),t&&t.call(this),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axMore]").forEach(e=>{new axMore(e)});
-/*!
- * 鎻掍欢锛氭墜椋庣惔鎶樺彔锛涗娇鐢ㄦ柟娉曪細new axAccordion('#id',{鍙傛暟})
- */
-const axAccordions=[];class axAccordion{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({index:"",cookie:"",active:"",disabled:"",multiple:!1,collapse:!0,trigger:"click"},t,this.targetDom);let i=this;this.handlers={},this.event=function(e){let t=this.parentElement.querySelector(".ax-panel-body"),s=i.elements.indexOf(this.parentElement);"none"===window.getComputedStyle(this.nextElementSibling).display?("show"in i.handlers&&i.emit("show",s),this.parentElement.classList.add("ax-show"),axSlideDown(t,(function(){"shown"in i.handlers&&i.emit("shown",s)})),i.options.cookie&&Cookies.set(i.options.cookie,s,{expires:365e3,path:"/"}),0==i.options.multiple&&axSiblings(this.parentElement,"",".ax-item").forEach(e=>{axSlideUp(e.querySelector(".ax-panel-body")),e.classList.remove("ax-show")})):("hide"in i.handlers&&i.emit("hide",s),this.parentElement.classList.remove("ax-show"),axSlideUp(t,(function(){"hidden"in i.handlers&&i.emit("hidden",s)})),i.options.cookie&&Cookies.set(i.options.cookie,"",{expires:365e3,path:"/"})),e.stopPropagation()},this.targetDom.getAttribute("axAccordion")?this.referName=this.targetDom.getAttribute("axAccordion"):this.referName="",this.init()}init(){let e=[],t=[];this.options.active&&(e=e.concat(axArrToDom(this.options.active)));let i=[...this.targetDom.children].filter(e=>e.classList.contains("ax-show"));i&&(e=e.concat(i)),this.options.disabled&&(t=t.concat(axArrToDom(this.options.disabled)));let s=[...this.targetDom.children].filter(e=>e.hasAttribute("disabled")||"true"==e.getAttribute("disabled"));if(s&&(t=t.concat(s)),this.elements=[...this.targetDom.children].filter(e=>e.classList.contains("ax-item")&&t.indexOf(e)<0),this.options.index&&(this.elements[this.options.index].classList.add("ax-show"),axSlideDown(this.elements[this.options.index].querySelector(".ax-panel-body"))),!this.options.collapse)for(let e=0;e<this.elements.length;e++)this.elements[e].classList.add("ax-show"),axSlideDown(this.elements[e].querySelector(".ax-panel-body"));if(this.options.cookie){let e=Cookies.get(this.options.cookie);e&&(this.elements[e].classList.add("ax-show"),axSlideDown(this.elements[e].querySelector(".ax-panel-body")))}for(let i=0;i<this.elements.length;i++){let s=this.elements[i],n=s.querySelector(".ax-panel-header"),a=s.querySelector(".ax-panel-body");e.indexOf(s)>-1&&(s.classList.add("ax-show"),axSlideDown(a)),t.indexOf(s)<0?n.addEventListener(this.options.trigger,this.event,!1):n.removeEventListener(this.options.trigger,this.event,!1);let o=n.querySelectorAll("a");for(let e=0;e<o.length;e++)o[e].addEventListener(this.options.trigger,(function(e){e.stopPropagation()}))}this.referName&&(axIsEmpty(axAccordions)?axAccordions.push({name:this.referName,instance:this}):axAccordions.some(e=>e.name==this.referName)||axAccordions.push({name:this.referName,instance:this})),"load"in this.handlers&&this.emit("load","")}destroy(e){[...this.targetDom.children].filter(e=>e.classList.contains("ax-item")).forEach(e=>{e.querySelector(".ax-panel-header").removeEventListener(this.options.trigger,this.event,!1)}),e&&e.call(this)}update(e,t){return this.options=axExtend(this.options,e),this.init(),"updated"in this.handlers&&this.emit("updated",""),t&&t.call(this),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axAccordion]").forEach(e=>{new axAccordion(e)});
-/*!
- * 鎻掍欢锛氶〉绛惧垏鎹紱浣跨敤鏂规硶锛歛xTab('#id',{鍙傛暟})
- */
-const axTabs=[];class axTab{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({index:"",cookie:"",trigger:"click",disabled:"",active:"ax-active",nav:".ax-tab-nav",content:".ax-tab-content"},t,this.targetDom);let i=this;this.handlers={},this.event=function(){let e=[...i.nav.children].indexOf(this);i.options.cookie&&Cookies.set(i.options.cookie,e,{expires:365e3,path:"/"});for(let e=0;e<axSiblings(this).length;e++)axSiblings(this)[e].classList.remove(i.options.active);for(let t=0;t<axSiblings(i.content.children[e]).length;t++)axSiblings(i.content.children[e])[t].classList.remove(i.options.active);"show"in i.handlers&&i.emit("show",e),this.classList.add(i.options.active),i.content.children[e].classList.add(i.options.active)},this.targetDom.getAttribute("axTab")?this.referName=this.targetDom.getAttribute("axTab"):this.referName="",this.init()}init(){this.nav=this.targetDom.querySelector(this.options.nav),this.content=this.targetDom.querySelector(this.options.content),this.tabNum=Math.min.apply(null,[this.nav.children.length,this.content.children.length]);let e=this,t=[];if(this.options.disabled&&(t=t.concat(axArrToDom(this.options.disabled))),this.targetDom.querySelectorAll("[aria-disabled=true]")&&(t=t.concat([...this.targetDom.querySelectorAll("[aria-disabled=true]")])),e.options.cookie){let t=Cookies.get(e.options.cookie);if(t){e.nav.children[t].classList.add(e.options.active);for(let i=0;i<axSiblings(e.nav.children[t]).length;i++)axSiblings(e.nav.children[t])[i].classList.remove(e.options.active);e.content.children[t].classList.add(e.options.active);for(let i=0;i<axSiblings(e.content.children[t]).length;i++)axSiblings(e.content.children[t])[i].classList.remove(e.options.active)}else e.nav.children[0].classList.add(e.options.active),e.content.children[0].classList.add(e.options.active)}else if(""==e.options.index||e.options.index<0||e.options.index-e.tabNum>-1)for(let t=0;t<e.tabNum;t++)0==t?(e.nav.children[0].classList.add(e.options.active),e.content.children[0].classList.add(e.options.active)):(e.nav.children[t].classList.remove(e.options.active),e.content.children[t].classList.remove(e.options.active));else for(let t=0;t<e.tabNum;t++)t==e.options.index?(e.nav.children[e.options.index].classList.add(e.options.active),e.content.children[e.options.index].classList.add(e.options.active)):(e.nav.children[t].classList.remove(e.options.active),e.content.children[t].classList.remove(e.options.active));for(let i=0;i<e.tabNum;i++){let s=e.nav.children[i];t.indexOf(s)<0?s.addEventListener(this.options.trigger,this.event,!1):s.removeEventListener(this.options.trigger,this.event,!1)}this.referName&&(axIsEmpty(axTabs)?axTabs.push({name:this.referName,instance:this}):axTabs.some(e=>e.name==this.referName)||axTabs.push({name:this.referName,instance:this})),"load"in this.handlers&&this.emit("load","")}update(e,t){return this.options=axExtend(this.options,e),this.init(),"update"in this.handlers&&this.emit("update",""),t&&t.call(this),this}destroy(e){for(let e=0;e<this.tabNum;e++)this.nav.children[e].removeEventListener(this.options.trigger,this.event,!1);e&&e.call(this)}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axTab]").forEach(e=>{new axTab(e)});
-/*!
-* 鎻掍欢锛氭娊灞変晶杈圭獥锛涗娇鐢ㄦ柟娉曪細new axDrawer({鍙傛暟},'#id')锛�#id鏄彲閫夊弬鏁帮紝鍙互浠庤dom鑾峰彇鍙傛暟鍊�
-*/
-const axDrawers=[];class axDrawer{constructor(e,t){this.options=axExtend({title:"",titleBreak:!0,overlay:!0,overlayClose:!0,placement:"right",size:"sm",padding:"ax-padding",offset:"100px",content:"",type:"html",url:"",close:!0,footerType:"center",footerShow:!0,footerBreak:!1,note:"",confirm:{text:"纭畾",classname:"",icon:"",callback:""},cancel:{text:"鍏抽棴",classname:"",icon:"",callback:""},diy:{text:"",classname:"",icon:"",url:"",target:"",callback:""}},e,t);this.handlers={},t&&t.getAttribute("axDrawer")?this.referName=t.getAttribute("axDrawer"):this.referName="",this.init()}init(){let e=this;return this.renderDom(),this.setAttribute(),1==this.options.content.nodeType?(this.content.innerHTML="",this.content.appendChild(this.options.content)):this.content.innerHTML=axCreateContent(this.options,this,(function(){axPreventScroll(e.wrapper,e.body)})),this.footer.innerHTML=axFooterBtns(this.options,this),this.targetDom.querySelectorAll("[confirm]").forEach(t=>{t.addEventListener("click",(function(){e.options.confirm.callback?e.options.confirm.callback.call(e):e.targetDom.querySelector("form")&&e.targetDom.querySelector("form").submit()}),!1)}),this.targetDom.querySelectorAll("[diy]").forEach(t=>{t.addEventListener("click",(function(){e.options.diy.callback&&e.options.diy.callback.call(e)}),!1)}),this.targetDom.querySelectorAll("[cancel]").forEach(t=>{t.addEventListener("click",(function(){e.options.cancel.callback?e.options.cancel.callback.call(e):e.hide()}),!1)}),this.targetDom.querySelectorAll("[close]").forEach(t=>{t.addEventListener("click",(function(){e.hide()}),!1)}),document.body.appendChild(this.targetDom),axPreventScroll(this.wrapper,this.body),axDrawers.push({name:this.referName,instance:this}),this}createTemplate(){return`\n                    <div class="ax-drawer" data-overlay="true" id="${axCreateId("drawer")}">\n                        <% if(this.overlay){ %><div class="ax-drawer-overlay" <% if(this.overlayClose){ %>close<% } %>></div><% } %>\n                        <div class="ax-drawer-wrapper">\n                            <% if(this.close){ %> <a href="###" class="ax-drawer-close" close><i class="ax-iconfont ax-icon-close"></i></a><% } %>\n                            <% if(this.title){ %><div class="ax-drawer-header"><div class="ax-col ax-align-center"><% this.title %></div></div><% } %>\n                            <% if(this.title && this.titleBreak){ %><div class="ax-break-line"></div><% } %>\n                            <div class="ax-drawer-body">\n                                <% if(this.padding){ %><div class="<% this.padding %>" <% if(this.type == 'iframe'){ %>style="height:100%;"<% } %>> <% } %>\n                                    <div class="ax-drawer-content" <% if(this.type == 'iframe'){ %>style="height:100%;"<% } %>><% this.content %></div>\n                                <% if(this.padding){ %></div><% } %>\n                            </div>\n                            <div class="ax-drawer-footer">\n                            </div>\n                        </div>\n                    </div>\n                  `}renderDom(){this.template=axTplEngine(this.createTemplate(),this.options),this.targetDom=axStrToDom(this.template),this.wrapper=this.targetDom.querySelector(".ax-drawer-wrapper"),this.targetDom.querySelector(".ax-drawer-overlay")&&(this.overlay=this.targetDom.querySelector(".ax-drawer-overlay")),this.content=this.targetDom.querySelector(".ax-drawer-content"),this.body=this.targetDom.querySelector(".ax-drawer-body"),this.targetDom.querySelector(".ax-drawer-footer")&&(this.footer=this.targetDom.querySelector(".ax-drawer-footer")),this.width=window.getComputedStyle(this.wrapper).width,this.height=window.getComputedStyle(this.wrapper).height,this.left=window.getComputedStyle(this.wrapper).left,this.right=window.getComputedStyle(this.wrapper).right,this.top=window.getComputedStyle(this.wrapper).top,this.bottom=window.getComputedStyle(this.wrapper).bottom}setAttribute(){if("left"==this.options.placement)this.targetDom.setAttribute("data-placement","left");else if("right"==this.options.placement)this.targetDom.setAttribute("data-placement","right");else if("top"==this.options.placement)this.targetDom.setAttribute("data-placement","top");else{if("bottom"!=this.options.placement)return;this.targetDom.setAttribute("data-placement","bottom")}if("sm"==this.options.size)this.targetDom.setAttribute("data-size","sm");else if("md"==this.options.size)this.targetDom.setAttribute("data-size","md");else{if("lg"!=this.options.size)return;this.targetDom.setAttribute("data-size","lg")}}show(e){"show"in this.handlers&&this.emit("show",""),this.delete&&console.error("Instance is destroyed!");return axDrawers.forEach(e=>{if(e.instance.targetDom.classList.contains("ax-drawer-show")&&e.instance.options.placement==this.options.placement){let t=e.instance.targetDom.querySelector(".ax-drawer-wrapper");switch(this.options.placement){case"left":t.style.left?t.style.left=parseInt(t.style.left)+parseInt(this.options.offset)+"px":t.style.left=this.options.offset;break;case"right":t.style.right?t.style.right=parseInt(t.style.right)+parseInt(this.options.offset)+"px":t.style.right=this.options.offset;break;case"top":t.style.top?t.style.top=parseInt(t.style.top)+parseInt(this.options.offset)+"px":t.style.top=this.options.offset;break;case"bottom":t.style.bottom?t.style.bottom=parseInt(t.style.bottom)+parseInt(this.options.offset)+"px":t.style.bottom=this.options.offset}}}),this.targetDom.classList.add("ax-drawer-show"),e&&e.call(this),"shown"in this.handlers&&this.emit("shown",""),this}hide(e){"hide"in this.handlers&&this.emit("hide","");return function(e){let t=e.targetDom.querySelector(".ax-drawer-overlay"),i=e.targetDom.querySelector(".ax-drawer-wrapper");switch(t.style.opacity=0,e.options.placement){case"left":i.style.left="-"+getComputedStyle(i).width;break;case"right":i.style.right="-"+getComputedStyle(i).width;break;case"top":i.style.top="-"+getComputedStyle(i).height;break;case"bottom":i.style.bottom="-"+getComputedStyle(i).height}setTimeout((function(){e.targetDom.classList.remove("ax-drawer-show"),t.removeAttribute("style"),i.removeAttribute("style")}),1e3*parseFloat(axStyle(i).animationDuration))}(this),axDrawers.forEach(e=>{if(e.instance.targetDom.classList.contains("ax-drawer-show")&&e.instance.options.placement==this.options.placement){let t=e.instance.targetDom.querySelector(".ax-drawer-wrapper");switch(this.options.placement){case"left":t.style.left=parseInt(t.style.left)-parseInt(this.options.offset)+"px";break;case"right":t.style.right=parseInt(t.style.right)-parseInt(this.options.offset)+"px";break;case"top":t.style.top=parseInt(t.style.top)-parseInt(this.options.offset)+"px";break;case"bottom":t.style.bottom=parseInt(t.style.bottom)-parseInt(this.options.offset)+"px"}}}),this.targetDom.querySelectorAll("video,audio").forEach(e=>{e.pause()}),e&&e.call(this),"hidden"in this.handlers&&this.emit("hidden",""),this}destroy(e){this.targetDom.remove(),e&&e.call(this)}update(e,t){"update"in this.handlers&&this.emit("update","");let i=this.targetDom,s=axClone(this.options),n=axExtend(this.options,e),a=!1;return e&&JSON.stringify(n)!=JSON.stringify(s)?(this.options=n,this.init(),i.remove(),a=!0):a=!1,t&&t.call(this,a,s,n),"updated"in this.handlers&&this.emit("updated",""),this}updateContent(e,t){"update"in this.handlers&&this.emit("update","");let i=this.content.innerHTML,s=!1;return"#"==e.substr(0,1)?document.querySelector(e)?this.content.innerHTML=document.querySelector(e).innerHTML:this.content.innerHTML:this.content.innerHTML=e,s=this.content.innerHTML!=i,t&&t.call(this,s,i,this.content.innerHTML,this.options.content),"updated"in this.handlers&&this.emit("updated",""),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}!function e(t,i){t.forEach(t=>{let s=new axDrawer("",t);i&&(s.targetDom.style.zIndex=parseInt(getComputedStyle(i.targetDom).zIndex)+1),t.onclick=()=>s.show(),e(s.targetDom.querySelectorAll("[axDrawer]"),s)})}([...document.querySelectorAll("[axDrawer]")].filter(e=>axIsVisible(e)));
-/*!
- * 鎻掍欢锛氬璇濆脊绐楋紱浣跨敤鏂规硶锛歯ew axDialog({鍙傛暟},'#id')锛�#id鏄彲閫夊弬鏁帮紝鍙互浠庤dom鑾峰彇鍙傛暟鍊�
- */
-const axDialogs=[];class axDialog{constructor(e,t){this.options=axExtend({title:"",titleBreak:!1,overlay:!0,overlayClose:!0,duration:"",in:"springIn",out:"scaleOut",multiple:!0,size:"md",padding:"ax-padding",drag:!1,content:"",type:"html",url:"",btnClass:"ax-dialog-open",name:"",width:"",height:"",close:!0,closePlace:"inside",footerShow:!0,footerType:"center",footerBreak:!1,note:"",confirm:{text:"纭畾",classname:"",icon:"",callback:""},cancel:{text:"鍏抽棴",classname:"",icon:"",callback:""},diy:{text:"",classname:"",icon:"",url:"",target:"",callback:""}},e,t),this.wrapper="",this.content="",this.overlay="",this.handlers={},this.wrapPosition="",this.wrapLeft="",this.wrapTop="",this.referName="",t&&(this.button=axIdToDom(t),this.button&&this.button.getAttribute("axDialog")&&(this.referName=this.button.getAttribute("axDialog"))),this.init()}init(){let e=this;return this.renderDom(),this.setAttribute(),1==this.options.content.nodeType?(this.content.innerHTML="",this.content.appendChild(this.options.content)):this.content.innerHTML=axCreateContent(this.options,this,(function(){axPreventScroll(e.wrapper,e.body)})),this.footer.innerHTML=axFooterBtns(this.options,this),this.options.drag&&this.drag(),this.targetDom.querySelectorAll("[confirm]").forEach(t=>{t.addEventListener("click",(function(){e.options.confirm.callback?e.options.confirm.callback.call(e):e.targetDom.querySelector("form")&&e.targetDom.querySelector("form").submit()}),!1)}),this.targetDom.querySelectorAll("[diy]").forEach(t=>{t.addEventListener("click",(function(){e.options.diy.callback&&e.options.diy.callback.call(e)}),!1)}),this.targetDom.querySelectorAll("[cancel]").forEach(t=>{t.addEventListener("click",(function(){e.options.cancel.callback?e.options.cancel.callback.call(e):e.hide()}),!1)}),this.targetDom.querySelectorAll("[close]").forEach(t=>{t.addEventListener("click",(function(){e.hide()}),!1)}),document.body.appendChild(this.targetDom),axPreventScroll(this.wrapper,this.body),this.referName&&(axIsEmpty(axDialogs)?axDialogs.push({name:this.referName,instance:this}):axDialogs.some(e=>e.name==this.referName)||axDialogs.push({name:this.referName,instance:this})),this.wrapperHeight=axArrHeight(this.wrapper).height,this}createTemplate(){return`\n        <div class="ax-dialog" data-overlay="true" id="${axCreateId("dialog")}">\n        <% if(this.overlay){ %><div class="ax-dialog-overlay" <% if(this.overlayClose){ %>close<% } %>></div><% } %>\n            <div class="ax-dialog-wrapper">\n                <% if(this.close){ %><a href="###" class="ax-dialog-close" close><i class="ax-iconfont ax-icon-close"></i></a><% } %>\n                <% if(this.title){ %><div class="ax-dialog-header"><% this.title %></div><% } %>\n                <% if(this.titleBreak){ %><div class="ax-break-line"></div><% } %>\n                <div class="ax-dialog-body">\n                    <% if(typeof this.padding == 'string'){ %><div class="<% this.padding %>"> <% }else if(this.padding){ %><div class="ax-padding"> <% } %>\n                    <div class="ax-dialog-content"><% this.content %></div>\n                    <% if(this.padding){ %></div><% } %>\n                </div>\n                <div class="ax-dialog-footer">\n                </div>\n            </div>\n        </div>\n      `}renderDom(){this.template=axTplEngine(this.createTemplate(),this.options),this.targetDom=axStrToDom(this.template),this.wrapper=this.targetDom.querySelector(".ax-dialog-wrapper"),this.header=this.targetDom.querySelector(".ax-dialog-header"),this.content=this.targetDom.querySelector(".ax-dialog-content"),this.body=this.targetDom.querySelector(".ax-dialog-body"),this.overlay=this.targetDom.querySelector(".ax-dialog-overlay"),this.footer=this.targetDom.querySelector(".ax-dialog-footer")}setAttribute(){this.options.size&&this.targetDom.setAttribute("data-size",this.options.size),this.options.footerType&&this.targetDom.setAttribute("data-footerType",this.options.footerType),this.options.height&&(this.content.style.height=this.options.height),this.oldStyle=this.options.width?`width:${this.options.width};`:null,this.options.type&&this.targetDom.setAttribute("data-type",this.options.type),!this.options.overlay&&this.targetDom.setAttribute("data-overlay","false"),!this.options.title&&this.options.close?"lg"==this.options.size?this.targetDom.setAttribute("data-closePlace","bottom"):this.options.title||"inside"!=this.options.closePlace?this.targetDom.setAttribute("data-closePlace",this.options.closePlace):this.targetDom.setAttribute("data-closePlace","outside"):this.options.closePlace&&this.options.close&&this.targetDom.setAttribute("data-closePlace",this.options.closePlace)}drag(e){if(!this.options.title)return!1;{let t=this,i=this.targetDom.querySelector(".ax-dialog-header");this.targetDom.setAttribute("data-drag",this.options.drag),i.onmousedown=function(e){"drag"in t.handlers&&t.emit("drag",""),this.style.cursor="move";let i=this.parentNode;i.style.cssText+="position:fixed ;",t.wrapPosition="fixed";let s=e.clientX-i.offsetLeft,n=e.clientY-i.offsetTop;document.onmousemove=function(e){let a=e.clientX-s,o=e.clientY-n,r=document.documentElement.clientWidth-i.clientWidth,l=document.documentElement.clientHeight-i.clientHeight;a<0&&(a=0),a>r&&(a=r),o<0&&(o=0),o>l&&(o=l),i.style.left=a+"px",i.style.top=o+"px",t.wrapLeft=i.style.left,t.wrapTop=i.style.top}},i.onmouseup=function(){document.onmousemove=null,document.onmouseup=null,"dragged"in t.handlers&&t.emit("dragged","")},i.ondragstart=function(e){axPreventDefault(e)},i.ondragend=function(e){axPreventDefault(e)},e&&e.call(this)}return this}update(e,t){let i=this.targetDom,s=axClone(this.options),n=axExtend(this.options,e),a=!1;return e&&JSON.stringify(n)!=JSON.stringify(s)?(this.options=n,this.init(),i.remove(),a=!0):a=!1,t&&t.call(this,a,s,n),this}updateContent(e,t){let i=this.content.innerHTML,s=!1;return"#"==e.substr(0,1)?document.querySelector(e)?this.content.innerHTML=document.querySelector(e).innerHTML:this.content.innerHTML:this.content.innerHTML=e,s=this.content.innerHTML!=i,t&&t.call(this,s,i,this.content.innerHTML,this.options.content),"updated"in this.handlers&&this.emit("updated",""),this}destroy(e){this.targetDom.remove(),e&&e.call(this)}show(e){this.delete&&console.error("Instance is destroyed!");let t=this;t.options.multiple||axDialogs.forEach(e=>{e.instance!=t&&e.instance.targetDom.classList.contains("ax-dialog-show")&&e.instance.hide()}),"show"in this.handlers&&this.emit("show",""),this.targetDom.classList.remove("ax-dialog-hide"),this.targetDom.classList.add("ax-dialog-show"),this.button&&this.button.classList.add(this.options.btnClass),this.options.duration&&(this.wrapper.style.animationDuration=this.options.duration);let i="";return this.wrapPosition&&(i=`position:${this.wrapPosition};left:${this.wrapLeft};top:${this.wrapTop};`),"slideDown"==this.options.in?axHeightDown(t.wrapper,{height:this.wrapperHeight},"",t.options.duration?parseFloat(t.options.duration):""):this.options.in&&(this.wrapper.style.cssText=`animation-name: ${this.options.in};${i};${this.oldStyle}`),e&&e.call(this),"shown"in this.handlers&&this.emit("shown",""),this}hide(e){"hide"in this.handlers&&this.emit("hide","");let t=this;this.button&&this.button.classList.remove("ax-dialog-open"),this.options.duration&&(this.targetDom.style.animationDuration=this.options.duration),this.targetDom.classList.add("ax-dialog-hide");let i="";return this.wrapPosition&&(i=`position:${this.wrapPosition};left:${this.wrapLeft};top:${this.wrapTop};`),"slideUp"==this.options.out?axHeightUp(t.wrapper,{height:this.wrapperHeight},"",t.options.duration?parseFloat(t.options.duration):""):this.options.out&&(this.wrapper.style.cssText=`animation-name: ${this.options.out};${i};${this.oldStyle}`),setTimeout((function(){t.targetDom.classList.remove("ax-dialog-show"),t.wrapper.style.cssText=t.oldStyle}),t.options.duration?parseFloat(t.options.duration):1e3*parseFloat(axStyle(t.wrapper).animationDuration)),this.targetDom.querySelectorAll("video,audio").forEach(e=>{e.pause()}),e&&e.call(this),"hidden"in this.handlers&&this.emit("hidden",""),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}!function e(t,i){t.forEach(t=>{let s=new axDialog("",t);i&&(s.targetDom.style.zIndex=parseInt(getComputedStyle(i.targetDom).zIndex)+1),t.onclick=()=>s.show(),e(s.targetDom.querySelectorAll("[axDialog]"),s)})}([...document.querySelectorAll("[axDialog]")].filter(e=>axIsVisible(e)));
-/*!
-* 鎻掍欢锛氭皵娉″脊绐楋紱浣跨敤鏂规硶锛歯ew axHover('#id',{鍙傛暟})
-*/
-const axPopups=[];class axPopup{constructor(e,t){this.options=axExtend({title:"",titleBreak:!1,placement:"top",arrow:!0,trigger:"click",pageClose:!0,size:"",duration:"",in:"fadeIn",out:"fadeOut",multiple:!1,offsetShow:!0,rel:"",theme:"",stay:!1,fixDistance:24,name:"",size:"md",width:"",height:"",padding:"ax-padding",content:"",type:"html",url:"",btnClass:"ax-popup-open",close:!0,footerShow:!0,footerType:"line",footerBreak:!1,note:"",confirm:{text:"纭畾",classname:"",icon:"",callback:""},cancel:{text:"鍏抽棴",classname:"",icon:"",callback:""},diy:{text:"",classname:"",icon:"",url:"",target:"",callback:""}},t,e);this.handlers={},this.button=axIdToDom(e),this.button&&this.button.getAttribute("axPopup")?this.referName=this.button.getAttribute("axPopup"):this.referName="",this.init(),this.showEvent()}init(){let e=this;this.renderDom(),this.setAttribute(),1==this.options.content.nodeType?(this.content.innerHTML="",this.content.appendChild(this.options.content)):this.content.innerHTML=axCreateContent(this.options,this,()=>{axPreventScroll(e.wrapper,e.body)}),this.footer.innerHTML=axFooterBtns(this.options,this),this.createPopup(),this.targetDom.querySelectorAll("[confirm]").forEach(t=>{t.addEventListener("click",()=>{e.options.confirm.callback?e.options.confirm.callback.call(e):e.targetDom.querySelector("form")&&e.targetDom.querySelector("form").submit()},!1)}),this.targetDom.querySelectorAll("[diy]").forEach(t=>{t.addEventListener("click",()=>{e.options.diy.callback&&e.options.diy.callback.call(e)},!1)}),this.targetDom.querySelectorAll("[cancel]").forEach(t=>{t.addEventListener("click",()=>{e.options.cancel.callback?e.options.cancel.callback.call(e):e.hide()},!1)}),this.targetDom.querySelectorAll("[close]").forEach(t=>{t.addEventListener("click",()=>{e.hide()},!1)}),document.body.appendChild(this.targetDom),axPreventScroll(this.wrapper,this.body),axPopups.push({name:this.referName,button:this.button,instance:this}),this.wrapperHeight=axArrHeight(this.wrapper).height}createTemplate(){return`\n                            <div class="ax-popup" id="popup${(new Date).getTime()}">\n                                <div class="ax-popup-wrapper">\n                                    <% if(this.close){ %><a href="###" class="ax-close" close></a><% } %>\n                                    <% if(this.title){ %><div class="ax-popup-header"><% this.title %></div><% } %>\n                                    <% if(this.titleBreak){ %><div class="ax-break-line"></div><% } %>\n                                    <div class="ax-popup-body">\n                                        <% if(typeof this.padding == 'string'){ %><div class="<% this.padding %>"> <% }else if(this.padding){ %><div class="ax-padding"> <% } %>\n                                        <% this.media %>\n                                        <div class="ax-popup-content"><% this.content %></div>\n                                        <% if(this.padding){ %></div><% } %>\n                                    </div>\n                                    <div class="ax-popup-footer">\n                                    </div>\n                                </div>\n                                <% if(this.arrow && this.placement!=='center' && !axIsMobi()){ %><i arrow></i><% } %>\n                            </div>\n                            `}renderDom(){this.template=axTplEngine(this.createTemplate(),this.options),this.targetDom=axStrToDom(this.template),this.wrapper=this.targetDom.querySelector(".ax-popup-wrapper"),this.content=this.targetDom.querySelector(".ax-popup-content"),this.body=this.targetDom.querySelector(".ax-popup-body"),this.targetDom.querySelector(".ax-popup-header")&&(this.header=this.targetDom.querySelector(".ax-popup-header")),this.footer=this.targetDom.querySelector(".ax-popup-footer")}setAttribute(){this.options.size&&this.targetDom.setAttribute("data-size",this.options.size),!this.options.arrow&&this.targetDom.setAttribute("data-arrow","false"),this.options.type&&this.targetDom.setAttribute("data-type",this.options.type),this.options.footerType&&this.targetDom.setAttribute("data-footerType",this.options.footerType),this.options.height&&(this.content.style.height=this.options.height),this.options.theme&&this.targetDom.setAttribute("data-theme",this.options.theme)}createPopup(){let e=this;"center"==this.options.placement||axIsMobi()?this.popper=new Popper.createPopper(this.button,this.targetDom,{strategy:"fixed",modifiers:[{name:"computeStyles",fn:e=>{e.state.styles.popper=Object.assign(e.state.styles.popper,{left:"50%",top:"50%",marginLeft:-parseFloat(axStyle(e.state.elements.popper).width)/2+"px",marginTop:-parseFloat(axStyle(e.state.elements.popper).height)/2+"px"})}}]}):this.popper=new Popper.createPopper(this.button,this.targetDom,{fixDistance:this.options.fixDistance,placement:this.options.placement,modifiers:[{name:"offset",options:{offset:[0,e.options.offsetShow?e.options.arrow?8:4:0]}},{name:"computeStyles",options:{gpuAcceleration:!1}}]}),this.oldStyle=this.options.width?`width:${this.options.width};`:""}showEvent(){let e=this,t=()=>{if(e.targetDom.classList.contains("ax-show"))e.hide();else if(e.show(),!e.options.multiple){axPopups.map(e=>e.instance).filter(t=>t!==e&&t.targetDom.classList.contains("ax-show")).forEach(e=>{e.hide()})}};"click"==this.options.trigger?(this.button.addEventListener(this.options.trigger,()=>{t()},!1),this.options.rel&&this.options.rel instanceof Array?this.options.rel.forEach(e=>{document.querySelector(e).addEventListener(this.options.trigger,()=>{t()},!1)}):this.options.rel&&axIdToDom(this.options.rel).addEventListener(this.options.trigger,()=>{t()},!1)):"hover"==this.options.trigger?new axHover(e.button,{enter:()=>{e.show()},leave:()=>{e.hide()},hold:e.targetDom}):"input"==this.options.trigger&&this.button.addEventListener("input",()=>{e.button.value?e.show():e.hide()},!1),this.options.pageClose&&!e.options.multiple&&document.addEventListener("click",t=>{let i;if(e.options.rel instanceof Array)for(let t=0;t<e.options.rel.length;t++){if(!axIsOutside(window.event,axIdToDom(e.options.rel[t]))){i=!1;break}i=!0}else i=axIsOutside(window.event,e.options.rel);axIsOutside(t,e.targetDom)&&axIsOutside(t,e.button)&&i&&e.targetDom.classList.contains("ax-show")&&e.hide()},!1)}update(e,t){"update"in this.handlers&&this.emit("update","");this.targetDom,axClone(this.options);let i=axExtend(this.options,e);return this.options=i,this.targetDom.remove(),this.popper="",this.init(),t&&t.call(this,!1),"updated"in this.handlers&&this.emit("updated",""),this}updateContent(e,t){"update"in this.handlers&&this.emit("update","");let i=this.content.innerHTML,s=!1;return"#"==e.substr(0,1)?document.querySelector(e)?this.content.innerHTML=document.querySelector(e).innerHTML:this.content.innerHTML:this.content.innerHTML=e,s=this.content.innerHTML!=i,t&&t.call(this,s,i,this.content.innerHTML,this.options.content),"updated"in this.handlers&&this.emit("updated",""),this}show(e){this.popper.update(),this.delete&&console.error("Instance is destroyed!");let t=this;return"show"in this.handlers&&this.emit("show",""),this.targetDom.classList.add("ax-show"),this.button&&this.button.classList.add(this.options.btnClass),this.options.duration&&(this.targetDom.style.animationDuration=this.options.duration),"slideDown"==this.options.in?axHeightDown(t.wrapper,{height:this.wrapperHeight},"",t.options.duration?parseFloat(t.options.duration):""):this.options.in&&(this.targetDom.style.animationName=this.options.in),this.targetDom.style.cssText+=`;${this.oldStyle}`,e&&e.call(this),"shown"in this.handlers&&this.emit("shown",""),this}hide(e){if(!this.options.stay){"hide"in this.handlers&&this.emit("hide","");let t=this;this.button&&this.button.classList.remove("ax-popup-open"),this.options.duration&&(this.targetDom.style.animationDuration=this.options.duration),setTimeout(()=>{t.targetDom.classList.remove("ax-show"),"hidden"in t.handlers&&t.emit("hidden","")},t.options.duration?parseFloat(t.options.duration):1e3*parseFloat(axStyle(t.targetDom).animationDuration)),"slideUp"==this.options.out?axHeightUp(t.wrapper,{height:this.wrapperHeight},"",t.options.duration?parseFloat(t.options.duration):""):this.options.out&&(this.targetDom.style.animationName=this.options.out),this.targetDom.style.cssText+=`;${this.oldStyle}`,this.targetDom.querySelectorAll("video,audio").forEach(e=>{e.pause()}),e&&e.call(this)}return this}destroy(e){this.targetDom.remove(),this.popper="",e&&e.call(this)}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}!function e(t,i){t.forEach(t=>{let s=new axPopup(t,"");i&&(s.targetDom.style.zIndex=parseInt(getComputedStyle(i.targetDom).zIndex)+1),e(s.targetDom.querySelectorAll("[axPopup]"),s)})}([...document.querySelectorAll("[axPopup]")].filter(e=>axIsVisible(e)));
-/*!
-* 鎻掍欢锛氬嵆鏃舵秷鎭�/璀﹀憡灏忕獥锛涗娇鐢ㄦ柟娉曪細new axMessage({鍙傛暟})
-*/
-const axMessages=[];class axMessage{constructor(e){this.options=axExtend({className:"",placement:"center-top",content:"",result:"info",delay:3e3,progress:!0,title:{warning:"鎿嶄綔璀﹀憡锛�",success:"鎿嶄綔鎴愬姛锛�",error:"鎿嶄綔澶辫触锛�",question:"鎿嶄綔鐤戦棶锛�",info:"淇℃伅鎻愮ず锛�"},close:!1,iconShow:!1,style:"simple",icon:""},e),this.handlers={},this.init()}init(){let e=this;if("simple"!=this.options.style&&this.options.style){if("complex"==this.options.style)switch(this.options.result){case"success":this.options.icon=axIcon.svg.success;break;case"error":this.options.icon=axIcon.svg.error;break;case"question":this.options.icon=axIcon.svg.question;break;case"warning":this.options.icon=axIcon.svg.warning;break;default:this.options.icon=axIcon.svg.info}}else switch(this.options.result){case"success":this.options.icon=axIcon.font.success,!this.options.content&&(this.options.content=this.options.title.success);break;case"error":this.options.icon=axIcon.font.error,!this.options.content&&(this.options.content=this.options.title.error);break;case"question":this.options.icon=axIcon.font.question,!this.options.content&&(this.options.content=this.options.title.question);break;case"warning":this.options.icon=axIcon.font.warning,!this.options.content&&(this.options.content=this.options.title.warning);break;default:this.options.icon=axIcon.font.info,!this.options.content&&(this.options.content=this.options.title.info)}switch("simple"!=this.options.style&&this.options.style?"complex"==this.options.style&&(this.template=axTplEngine('\n            <section data-style="complex">\n                <div class="ax-message-content">\n                    <div class="ax-message-header">\n                    <% if(this.iconShow){ %><span class="ax-message-icon ax-result ax-result-show"><% this.icon %></span><% } %>\n                    <span class="ax-message-title"><% if(this.result == \'success\'){ %> <% this.title.success %> <% }else if(this.result == \'error\'){ %> <% this.title.error %> <% }else if(this.result == \'question\'){%> <% this.title.question %> <% }else if(this.result == \'warning\'){%> <% this.title.warning %> <% } else {%> <% this.title.info %> <% } %></span></div>\n                    <div class="ax-message-body"><% this.content %></div>\n                </div>\n                <% if(this.close){ %><a href="###" class="ax-close"></a> <% } %>\n                <% if(this.progress){ %><div class="ax-message-progress" style="transition-duration:<% this.delay %>ms;"></div><% } %>\n            </section>\n            ',this.options)):this.template=axTplEngine('\n            <section data-style="simple">\n                <div class="ax-message-content">\n                    <% if(this.iconShow){ %><span class="ax-message-icon"><% this.icon %></span><% } %>\n                    <div class="ax-message-body"><% this.content %></div>\n                    <% if(this.close){ %><a href="###" class="ax-close"></a> <% } %>\n                </div>\n            </section>\n            ',this.options),this.targetDom=axStrToDom(this.template),this.content=this.targetDom.querySelector(".ax-message-body"),this.title=this.targetDom.querySelector(".ax-message-title"),this.close=this.targetDom.querySelector(".ax-close"),this.progress=this.targetDom.querySelector(".ax-message-progress"),this.options.result){case"success":this.targetDom.setAttribute("data-result","success");break;case"error":this.targetDom.setAttribute("data-result","error");break;case"question":this.targetDom.setAttribute("data-result","question");break;case"warning":this.targetDom.setAttribute("data-result","warning");break;default:this.targetDom.setAttribute("data-result","info")}let t="";switch(t=this.options.className?"":" "+this.options.className,this.options.close&&this.targetDom.setAttribute("data-close","true"),this.content.innerHTML=this.options.content,this.event=i=>{if(-1===JSON.stringify(axMessages).indexOf(i)){let s=axAddElem("div",{class:"ax-message"+t,"data-placement":i});axMessages.push({postion:i,parent:s}),s.appendChild(e.targetDom),document.body.appendChild(s),axSlideDown(e.targetDom,()=>{"shown"in e.handlers&&e.emit("shown","")}),e.options.close?e.close.addEventListener("click",()=>{axSlideUp(e.targetDom,()=>{e.targetDom.remove(),"hidden"in e.handlers&&e.emit("hidden","")})},!1):(e.options.progress&&e.progress&&(e.progress.style.cssText+="width:0;"),setTimeout(()=>{axSlideUp(e.targetDom,()=>{e.targetDom.remove(),"hidden"in e.handlers&&e.emit("hidden","")})},this.options.delay))}else{axMessages.find(e=>e.postion==i).parent.insertAdjacentElement("beforeend",e.targetDom),axSlideDown(e.targetDom,()=>{"shown"in e.handlers&&e.emit("shown","")}),e.options.close?e.close.addEventListener("click",()=>{axSlideUp(e.targetDom,()=>{e.targetDom.remove(),"hidden"in e.handlers&&e.emit("hidden","")})},!1):(e.options.progress&&e.progress&&(e.progress.style.cssText+="width:0;"),setTimeout(()=>{axSlideUp(e.targetDom,()=>{e.targetDom.remove(),"hidden"in e.handlers&&e.emit("hidden","")})},this.options.delay))}},this.options.placement){case"left-top":this.event("left-top");break;case"center-top":this.event("center-top");break;case"right-top":this.event("right-top");break;case"left-center":this.event("left-center");break;case"center-center":this.event("center-center");break;case"right-center":this.event("right-center");break;case"left-bottom":this.event("left-bottom");break;case"center-bottom":this.event("center-bottom");break;case"right-bottom":this.event("right-bottom");break;case"left":this.event("left-top");break;case"top":this.event("center-top");break;case"right":this.event("right-top");break;case"center":this.event("center-center");break;default:this.event("center-top")}return this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}
-/*!
-* 鎻掍欢锛氱旱鍚戞姌鍙犺彍鍗曪紱浣跨敤鏂规硶锛歯ew axMenu('#id',{鍙傛暟})
-*/const axMenus=[];class axMenu{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({active:"",disabled:"",toggle:!0,cookie:"",collapse:!0,trigger:"click",dispose:!1,url:"",row:!1,headerWidth:"",dropWidth:"",gutter:""},t,this.targetDom);let i=this;this.handlers={},this.ul=this.targetDom.querySelectorAll("ul"),this.li=this.targetDom.querySelectorAll("li"),this.a=this.targetDom.querySelectorAll("a"),this.showUl=function(e,t){let s=e.parentElement;"show"in i.handlers&&i.emit("show",t),s.classList.add("ax-active"),e.setAttribute("aria-expand","true"),axSlideDown(s.querySelector("ul"),()=>{"shown"in i.handlers&&i.emit("shown",t)})},this.closeUl=function(e,t){let s=e.parentElement;"hide"in i.handlers&&i.emit("hide",t),s.classList.remove("ax-active"),e.setAttribute("aria-expand","false"),axSlideUp(s.querySelector("ul"),(function(){"hidden"in i.handlers&&i.emit("hidden",t)}))},this.event=function(){let e=this.parentElement,t=axSiblings(e),s=[...i.a].filter(e=>e!==this),n="";i.li.forEach((t,i)=>{t==e&&(n=i)}),"false"==this.getAttribute("aria-child")&&(this.classList.add("ax-selected"),s.forEach(e=>{e.classList.remove("ax-selected")}),"selected"in i.handlers&&i.emit("selected",n)),e.querySelector("ul")&&("none"===window.getComputedStyle(e.querySelector("ul")).display?(i.showUl(this,n),i.options.toggle&&t&&t.forEach(e=>{e.classList.remove("ax-active"),e.querySelector("ul")&&axSlideUp(e.querySelector("ul"))})):i.closeUl(this,n)),i.options.cookie&&Cookies.set(i.options.cookie,n,{expires:365e3,path:"/"})},this.targetDom.getAttribute("axMenu")?this.referName=this.targetDom.getAttribute("axMenu"):this.referName="",this.init()}init(){let e=this,t=[],i=[];if(this.options.row&&(this.targetDom.classList.add("ax-menu-row"),this.options.headerWidth&&axChildren(this.targetDom,"li").forEach(e=>{e.style.width=this.options.headerWidth}),this.options.gutter&&axChildren(this.targetDom,"li").forEach(e=>{e.style.marginLeft=this.options.gutter,e.style.marginRight=this.options.gutter}),this.options.dropWidth&&axChildren(this.targetDom,"li").forEach(e=>{let t=e.querySelector("ul");t&&(t.style.width=this.options.dropWidth)})),this.options.active&&(t=t.concat(axArrToDom(this.options.active))),this.targetDom.querySelectorAll("a.ax-selected")&&(t=t.concat([...this.targetDom.querySelectorAll(".ax-selected")])),this.options.disabled&&(i=i.concat(axArrToDom(this.options.disabled))),this.targetDom.querySelectorAll("[aria-disabled=true]")&&(i=i.concat([...this.targetDom.querySelectorAll("[aria-disabled=true]")])),this.options.collapse||(this.li.forEach(e=>{e.classList.add("ax-active")}),this.ul.forEach(e=>{axSlideDown(e)})),axIsEmpty(t)){if(!this.options.active&&this.options.cookie){let e=Cookies.get(this.options.cookie),t=this.targetDom.querySelectorAll("li")[e];t&&(axParents(t,this.targetDom,!0,!1).forEach(e=>{"LI"==e.nodeName?(e.classList.add("ax-active"),e.querySelector("a").setAttribute("aria-expand","true"),e.querySelector("ul")||e.querySelector("a").classList.add("ax-selected")):"UL"==e.nodeName&&axSlideDown(e)}),t.querySelector("ul")&&axSlideDown(t.querySelector("ul")))}}else t.forEach(e=>{axParents(e.parentElement,this.targetDom,!0,!1).forEach(e=>{"LI"==e.nodeName?(e.classList.add("ax-active"),e.querySelector("a").setAttribute("aria-expand","true"),e.querySelector("ul")||e.querySelector("a").classList.add("ax-selected")):"UL"==e.nodeName&&axSlideDown(e)}),e.parentElement.classList.add("ax-active"),axSiblings(e,!1,"ul")[0]&&axSlideDown(axSiblings(e,!1,"ul")[0])});for(let t=0;t<this.li.length;t++){let s=this.li[t],n=s.querySelector("a");s.querySelector("ul")||(n.setAttribute("aria-child","false"),n.setAttribute("aria-expand","false")),this.options.dispose?n.removeEventListener("click",this.event,!1):i.indexOf(n)<0?"hover"==this.options.trigger&&this.options.row&&n.nextElementSibling?"UL"==n.nextElementSibling.nodeName&&new axHover(n,{enter:()=>{e.showUl(n,t)},leave:()=>{e.closeUl(n,t)},hold:n.nextElementSibling}):n.addEventListener("click",this.event,!1):n.removeEventListener("click",this.event,!1)}this.referName&&(axIsEmpty(axMenus)?axMenus.push({name:this.referName,instance:this}):axMenus.some(e=>e.name==this.referName)||axMenus.push({name:this.referName,instance:this})),"load"in this.handlers&&this.emit("load","")}update(e,t){let i=this;return this.options=axExtend(this.options,e),this.options.url&&axAjax({url:i.options.url,success:e=>{i.targetDom.appendChild(axStrToDom(e)),i.li=i.targetDom.querySelectorAll("li"),i.init()}}),this.init(),"update"in this.handlers&&this.emit("update",""),t&&t.call(this),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axMenu]").forEach(e=>{new axMenu(e)});
-/*!
-* 鎻掍欢锛氶粡浣忛《閮ㄦ垨鐩掑瓙锛涗娇鐢ㄦ柟娉曪細new axStick('#id',{鍙傛暟})
-*/
-const axSticks=[];class axStick{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({refer:"body",space:"0px",width:"",zIndex:""},t,this.targetDom);this.handlers={},this.height=this.targetDom.offsetHeight,this.width=this.targetDom.offsetWidth,this.left=axOffset(this.targetDom).left,this.top=axOffset(this.targetDom).top,this.bottom=axOffset(this.targetDom).top+this.height,this.style=this.targetDom.getAttribute("style"),this.placeholder=axAddElem("DIV",{style:`width:${this.width}px;height:${this.height}px;display:none;`}),this.targetDom.insertAdjacentElement("beforebegin",this.placeholder),this.targetDom.getAttribute("axStick")?this.referName=this.targetDom.getAttribute("axStick"):this.referName="",this.init()}init(){this.refer=this.targetDom.closest(this.options.refer),this.referHeight=this.refer.offsetHeight,this.referWidth=this.refer.offsetWidth,this.referLeft=axOffset(this.refer).left,this.referTop=axOffset(this.refer).top,this.referBottom=axOffset(this.refer).top+this.referHeight,"body"===this.options.refer||"fixed"===getComputedStyle(this.refer).position&&"absolute"===getComputedStyle(this.refer).position||(this.refer.style.position="relative"),this.options.zIndex&&(this.targetDom.style.zIndex=this.options.zIndex),"none"!==getComputedStyle(this.targetDom).float&&(this.placeholder.style.float=getComputedStyle(this.targetDom).float);let e=this;window.addEventListener("scroll",()=>{e.height>window.innerHeight?e.bottom<document.documentElement.scrollTop+window.innerHeight&&e.referBottom>document.documentElement.scrollTop+window.innerHeight?(e.targetDom.style.cssText+=`width:${e.targetDom.offsetWidth}px;`,e.targetDom.style.cssText+=`left:${axOffset(e.targetDom).left}px;`,e.targetDom.style.cssText+=`position:fixed;bottom:${e.options.space};margin:0;`,e.placeholder.style.display="block","sticked"in e.handlers&&e.emit("sticked","fixed")):e.referBottom<document.documentElement.scrollTop+window.innerHeight?(e.targetDom.style.position="absolute",e.targetDom.style.left=e.left-e.referLeft+"px",e.targetDom.style.cssText+=`position:absolute;bottom:${e.options.space};margin:0;`,e.placeholder.style.display="none","sticked"in e.handlers&&e.emit("sticked","absolute")):axOffset(e.refer).top>document.documentElement.scrollTop&&(e.targetDom.setAttribute("style",e.style),e.placeholder.style.display="none","unsticked"in e.handlers&&e.emit("unsticked","")):e.top<document.documentElement.scrollTop?(e.options.width?(e.targetDom.style.cssText+=`width:${e.options.width};`,e.targetDom.style.cssText+=`left:calc(50% - ${e.options.width}/2);`):(e.targetDom.style.cssText+=`width:${e.targetDom.offsetWidth}px;`,e.targetDom.style.cssText+=`left:${e.left}px;`),e.targetDom.style.cssText+=`position:fixed;top:${e.options.space};bottom:auto;margin:0;`,e.placeholder.style.display="block","sticked"in e.handlers&&e.emit("sticked","fixed"),e.height>e.referBottom-document.documentElement.scrollTop&&(e.targetDom.style.position="absolute",e.targetDom.style.left=e.left-e.referLeft+"px",e.targetDom.style.top="auto",e.targetDom.style.bottom=0,"sticked"in e.handlers&&e.emit("sticked","absolute"))):(e.targetDom.setAttribute("style",e.style),e.placeholder.style.display="none","unsticked"in e.handlers&&e.emit("unsticked",""))},!1),this.referName&&(axIsEmpty(axSticks)?axSticks.push({name:this.referName,instance:this}):axSticks.some(e=>e.name==this.referName)||axSticks.push({name:this.referName,instance:this}))}destroy(e){this.targetDom.lastChild.removeEventListener("click",this.event,!1),this.targetDom.innerHTML=this.html,e&&e.call(this)}update(e,t){return this.targetDom.style=this.style,this.options=axExtend(this.options,e),this.init(),"updated"in this.handlers&&this.emit("updated",""),t&&t.call(this),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axStick]").forEach(e=>{new axStick(e)});
-/*!
-* 鎻掍欢锛氳疆婊戦�夋嫨锛涙敼閫犺嚜mobile-select 20201110鏇存柊 https://github.com/onlyhom/mobile-select锛涗娇鐢ㄦ柟娉曪細new axScrollSelect('#id',{鍙傛暟})
-*/
-const axScrollSelects=[];(()=>{const e=(e,t)=>e.getElementsByClassName(t),t=(e,t,i,s)=>("mousewheel"===t&&void 0!==document.mozFullScreen&&(t="DOMMouseScroll"),void e.addEventListener(t,(function(e){i.call(this,function(e){let t=e.type;return"DOMMouseScroll"!=t&&"mousewheel"!=t||(e.delta=e.wheelDelta?e.wheelDelta/120:-(e.detail||0)/3),e.srcElement&&!e.target&&(e.target=e.srcElement),axPreventDefault(e),e}(e))}),s||!1));class i{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({wheels:[],title:"",position:[],final:!1,connector:" ",confirmText:"纭",cancelText:"鍙栨秷",className:"",type:"actionbar",labels:"",keyMap:{id:"id",name:"name",value:"value",children:"children"},triggerDisplayData:!0,callback:function(){},transitionEnd:function(){},cancel:function(){},onShow:function(){},onHide:function(){}},t,this.targetDom),this.jsonType=!1,this.cascadeJsonData=[],this.displayJson=[],this.curValue=null,this.curIndexArr=[],this.cascade=!1,this.startY,this.moveEndY,this.moveY,this.oldMoveY,this.offset=0,this.offsetSum=0,this.oversizeBorder,this.curDistance=[],this.clickStatus=!1,this.init(),this.targetDom.setAttribute("autocomplete","off"),this.targetDom.setAttribute("readonly","true")}init(){let e=this;if("string"==typeof e.options.wheels&&-1!=e.options.wheels.indexOf("#"))"UL"==document.querySelector(e.options.wheels).nodeName?e.options.wheels=[{data:axUlToArr(e.options.wheels)}]:"SELECT"==document.querySelector(e.options.wheels).nodeName&&(e.options.wheels=[{data:axSelectToArr(e.options.wheels)}]);else if(0==e.options.wheels.indexOf("date")){let t=e.options.wheels.split("-"),i=t[1],s=t[2],n=t[3];e.options.wheels=e.getDate(i,s,n)}if(e.checkDataType(),e.renderWheels(e.options.wheels,this.options.cancelText,this.options.confirmText),!e.targetDom)return console.error("SwiperSelect instance has been created , but there is no trigger is found on page."),!1;e.targetDom.style.cursor="pointer",e.checkCascade(),e.addListenerAll(),e.cascade&&e.initCascade();let t="";for(let i=0;i<e.wheel.length;i++)axIsEmpty(e.options.labels)||(t+="<li>"+e.options.labels[i]+"</li>");if(e.group.innerHTML=t,e.options.position.length<e.slider.length){let t=e.slider.length-e.options.position.length;for(let i=0;i<t;i++)e.options.position.push(0)}e.setCurDistance(e.options.position),e.cancelBtn.addEventListener("click",(function(t){e.hide(),e.popup&&e.popup.hide()})),e.ensureBtn.addEventListener("click",(function(t){e.hide(),e.popup&&e.popup.hide(),e.liHeight||(e.liHeight=e.mobileSelect.querySelector("li").offsetHeight),e.setValue(),e.curIndexArr=e.getIndexArr(),e.curValue=e.getCurValue(),e.options.callback.call(e,e.curIndexArr,e.curValue)})),e.targetDom.addEventListener("click",(function(t){e.show()})),e.grayLayer&&e.grayLayer.addEventListener("click",(function(t){e.hide()})),e.wrapper.addEventListener("click",(function(e){e.stopPropagation()})),e.fixRowStyle()}setValue(e){let t=this,i="";if(t.options.final)i=t.getCurValue()[t.getCurValue().length-1].value;else for(let e=0;e<t.wheel.length;e++)e==t.wheel.length-1?i+=t.getInnerHtml(e):i+=t.getInnerHtml(e)+t.options.connector;t.options.triggerDisplayData&&("INPUT"==t.targetDom.nodeName?t.targetDom.value=e||i:t.targetDom.innerHTML=e||i)}getDate(e,t,i){let s=e,n=t,a=[],o=new Date;"auto"==s&&"auto"==n?(e=o.getFullYear()-20,t=o.getFullYear(),o.getDate(),a.push(0,o.getMonth())):n>s&&a.push(0,0);let r=[{data:[]}];for(let d=t;d>=e;d--){if(0==d)return;let e={id:d,name:d+"骞�",value:d,children:[]};for(let t=1;t<=12;t++)if("YMD"==i.toUpperCase()){let i=[],r=(l=d,1==(c=t)||3==c||5==c||7==c||8==c||10==c||12==c?31:2==c?l%4==0&&l%100!=0?29:l%400==0?29:28:30);for(let e=1;e<=r;e++)i.push({id:e,name:e+"鏃�",value:e});e.children.push({id:t,name:t+"鏈�",value:t,children:i}),"auto"==s&&"auto"==n?a.push(o.getDate()-1):n>s&&a.push(0)}else"YM"==i.toUpperCase()&&e.children.push({id:t,name:t+"鏈�",value:t});r[0].data.push(e)}var l,c;return axIsEmpty(this.options.position)&&(this.options.position=a),this.options.connector="-",r}show(){this.mobileSelect.classList.add("ax-show"),"function"==typeof this.options.onShow&&this.options.onShow(this)}hide(){this.mobileSelect.classList.remove("ax-show"),"function"==typeof this.options.onHide&&this.options.onHide(this)}renderWheels(t){let i=this,s="";for(let e=0;e<t.length;e++){if(s+='<div class="ax-wheel"><ul class="ax-item-list">',i.jsonType)for(let n=0;n<t[e].data.length;n++)s+='<li data-id="'+t[e].data[n][i.options.keyMap.id]+'">'+t[e].data[n][i.options.keyMap.name]+"</li>";else for(let i=0;i<t[e].data.length;i++)s+="<li>"+t[e].data[i]+"</li>";s+="</ul></div>"}this.options.title||("INPUT"==this.targetDom.nodeName?this.targetDom.getAttribute("placeholder")?this.options.title=this.targetDom.getAttribute("placeholder"):this.targetDom.getAttribute("value")?this.options.title=this.targetDom.getAttribute("value"):this.options.title="":this.options.title=this.targetDom.textContent.trim().replace(/<[^>]+>/g,"").replace(/ +/g," ")),this.template=axTplEngine(`\n            <div class="ax-scrollSelect<% if(this.className){ %> <% this.className %><% } %>" data-type="<% this.type %>" id="scrollSelect${(new Date).getTime()}">\n            <% if(this.type == 'actionbar'){ %><div class="ax-scrollSelect-overlay"></div><% } %>\n            <div class="ax-scrollSelect-wrapper">\n                <div class="ax-scrollSelect-header">\n                    <div class="ax-inner">\n                        <a href="###" class="ax-cancel"><% this.cancelText %></a>\n                        <div class="ax-title"><% this.title %></div>\n                        <a href="###" class="ax-confirm"><% this.confirmText %></a>\n                    </div>\n                </div>\n                <div class="ax-group"></div>\n                <div class="ax-scrollSelect-body">\n                    <div class="ax-inner">\n                        <div class="ax-wheels"></div>\n                        <div class="ax-line"></div>\n                        <div class="ax-mask"></div>\n                    </div>\n                </div>\n            </div>\n        </div>\n          `,this.options),i.mobileSelect=axStrToDom(this.template),i.wheels=i.mobileSelect.querySelector(".ax-wheels"),i.wheels.innerHTML=s,"actionbar"==i.options.type?document.body.appendChild(i.mobileSelect):"popup"==i.options.type?i.popup=new axPopup(this.targetDom,{content:i.mobileSelect,padding:!1,placement:"bottom-start",close:!1,footerShow:!1}):"inline"==i.options.type&&(i.targetDom.insertAdjacentElement("afterEnd",i.mobileSelect),i.header=i.mobileSelect.querySelector(".ax-scrollSelect-header"),i.header.style.display="none"),i.wheel=e(i.mobileSelect,"ax-wheel"),i.slider=e(i.mobileSelect,"ax-item-list"),i.wheels=i.mobileSelect.querySelector(".ax-wheels"),i.liHeight=i.mobileSelect.querySelector("li").offsetHeight,i.ensureBtn=i.mobileSelect.querySelector(".ax-confirm"),i.cancelBtn=i.mobileSelect.querySelector(".ax-cancel"),i.grayLayer=i.mobileSelect.querySelector(".ax-scrollSelect-overlay"),i.wrapper=i.mobileSelect.querySelector(".ax-scrollSelect-wrapper"),i.body=i.mobileSelect.querySelector(".ax-scrollSelect-body"),i.group=i.mobileSelect.querySelector(".ax-group"),i.title=i.mobileSelect.querySelector(".ax-title"),axPreventScroll(i.wrapper)}addListenerAll(){let e=this;for(let t=0;t<e.slider.length;t++)!function(t){e.addListenerWheel(e.wheel[t],t)}(t)}addListenerWheel(e,i){let s=this;e.addEventListener("touchstart",(function(e){s.touch(e,this.firstChild,i)}),!1),e.addEventListener("touchend",(function(e){s.touch(e,this.firstChild,i)}),!1),e.addEventListener("touchmove",(function(e){s.touch(e,this.firstChild,i)}),!1),axIsMobi()||(e.addEventListener("mousedown",(function(e){s.dragClick(e,this.firstChild,i)}),!1),e.addEventListener("mousemove",(function(e){s.dragClick(e,this.firstChild,i)}),!1),e.addEventListener("mouseup",(function(e){s.dragClick(e,this.firstChild,i)}),!0),t(e,"mousewheel",(function(e){e.delta<0?e.direction="wheelUp":e.delta>0&&(e.direction="wheelDown"),s.dragClick(e,this.firstChild,i)})))}checkDataType(){let e=this;"object"==typeof e.options.wheels[0].data[0]&&(e.jsonType=!0)}checkCascade(){let e=this;if(e.jsonType){let t=e.options.wheels[0].data;for(let i=0;i<t.length;i++)if(e.options.keyMap.children in t[i]&&t[i][e.options.keyMap.children].length>0){e.cascade=!0,e.cascadeJsonData=e.options.wheels[0].data;break}}else e.cascade=!1}generateArrData(e){let t=[],i=this.options.keyMap.id,s=this.options.keyMap.value,n=this.options.keyMap.name;for(let a=0;a<e.length;a++){let o={};o[i]=e[a][this.options.keyMap.id],o[s]=e[a][this.options.keyMap.value],o[n]=e[a][this.options.keyMap.name],t.push(o)}return t}initCascade(){let e=this;e.displayJson.push(e.generateArrData(e.cascadeJsonData)),e.options.position.length>0?(e.initDeepCount=0,e.initCheckArrDeep(e.cascadeJsonData[e.options.position[0]])):e.checkArrDeep(e.cascadeJsonData[0]),e.reRenderWheels()}initCheckArrDeep(e){let t=this;if(e&&t.options.keyMap.children in e&&e[t.options.keyMap.children].length>0){t.displayJson.push(t.generateArrData(e[t.options.keyMap.children])),t.initDeepCount++;let i=e[t.options.keyMap.children][t.options.position[t.initDeepCount]];i?t.initCheckArrDeep(i):t.checkArrDeep(e[t.options.keyMap.children][0])}}checkArrDeep(e){let t=this;e&&t.options.keyMap.children in e&&e[t.options.keyMap.children].length>0&&(t.displayJson.push(t.generateArrData(e[t.options.keyMap.children])),t.checkArrDeep(e[t.options.keyMap.children][0]))}checkRange(e,t){let i,s=this,n=s.displayJson.length-1-e;for(let e=0;e<n;e++)s.displayJson.pop();for(let n=0;n<=e;n++)i=0==n?s.cascadeJsonData[t[0]]:i[s.options.keyMap.children][t[n]];s.checkArrDeep(i),s.reRenderWheels(),s.fixRowStyle(),s.setCurDistance(s.resetPosition(e,t))}resetPosition(e,t){let i,s=this,n=t;if(s.slider.length>t.length){i=s.slider.length-t.length;for(let e=0;e<i;e++)n.push(0)}else if(s.slider.length<t.length){i=t.length-s.slider.length;for(let e=0;e<i;e++)n.pop()}for(let t=e+1;t<n.length;t++)n[t]=0;return n}reRenderWheels(){let e=this;if(e.wheel.length>e.displayJson.length){let t=e.wheel.length-e.displayJson.length;for(let i=0;i<t;i++)e.wheels.removeChild(e.wheel[e.wheel.length-1])}for(let t=0;t<e.displayJson.length;t++)!function(t){let i="";if(e.wheel[t]){for(let s=0;s<e.displayJson[t].length;s++){let n=e.displayJson[t][s][e.options.keyMap.name]?e.displayJson[t][s][e.options.keyMap.name]:e.displayJson[t][s][e.options.keyMap.value];i+='<li data-id="'+e.displayJson[t][s][e.options.keyMap.id]+'" data-value="'+e.displayJson[t][s][e.options.keyMap.value]+'" >'+n+"</li>"}e.slider[t].innerHTML=i}else{let s=document.createElement("div");s.className="ax-wheel",i='<ul class="ax-item-list">';for(let s=0;s<e.displayJson[t].length;s++){let n=e.displayJson[t][s][e.options.keyMap.name]?e.displayJson[t][s][e.options.keyMap.name]:e.displayJson[t][s][e.options.keyMap.value];i+='<li data-id="'+e.displayJson[t][s][e.options.keyMap.id]+'" data-value="'+e.displayJson[t][s][e.options.keyMap.value]+'">'+n+"</li>"}i+="</ul>",s.innerHTML=i,e.addListenerWheel(s,t),e.wheels.appendChild(s)}}(t);let t="";for(let i=0;i<e.wheel.length;i++)axIsEmpty(e.options.labels)||(t+="<li>"+e.options.labels[i]+"</li>");e.group.innerHTML=t}updateWheels(e){let t=this;if(t.cascade){if(t.cascadeJsonData=e,t.displayJson=[],t.initCascade(),t.options.position.length<t.slider.length){let e=t.slider.length-t.options.position.length;for(let i=0;i<e;i++)t.options.position.push(0)}t.setCurDistance(t.options.position),t.fixRowStyle()}}updateWheel(e,t){let i=this,s="";if(i.cascade)return console.error("绾ц仈鏍煎紡涓嶆敮鎸乽pdateWheel(),璇蜂娇鐢╱pdateWheels()鏇存柊鏁翠釜鏁版嵁婧�"),!1;if(i.jsonType){for(let e=0;e<t.length;e++){let n=t[e][i.options.keyMap.name]?t[e][i.options.keyMap.name]:t[e][i.options.keyMap.value];s+='<li data-id="'+t[e][i.options.keyMap.id]+'" data-value="'+t[e][i.options.keyMap.value]+'">'+n+"</li>"}i.options.wheels[e]={data:t}}else{for(let e=0;e<t.length;e++)s+="<li>"+t[e]+"</li>";i.options.wheels[e]=t}i.slider[e].innerHTML=s}fixRowStyle(){let e=this,t=(100/e.wheel.length).toFixed(2);for(let i=0;i<e.wheel.length;i++)e.wheel[i].style.width=t+"%"}getIndex(e){return Math.round((2*this.liHeight-e)/this.liHeight)}getIndexArr(){let e=this,t=[];for(let i=0;i<e.curDistance.length;i++)t.push(e.getIndex(e.curDistance[i]));return t}getCurValue(){let e=this,t=[],i=e.getIndexArr();if(e.cascade)for(let s=0;s<e.wheel.length;s++)t.push(e.displayJson[s][i[s]]);else if(e.jsonType)for(let i=0;i<e.curDistance.length;i++)t.push(e.options.wheels[i].data[e.getIndex(e.curDistance[i])]);else for(let i=0;i<e.curDistance.length;i++)t.push(e.getInnerHtml(i));return t}getValue(){return this.curValue}calcDistance(e){return 2*this.liHeight-e*this.liHeight}setCurDistance(e){let t=this,i=[];for(let s=0;s<t.slider.length;s++)i.push(t.calcDistance(e[s])),t.movePosition(t.slider[s],i[s]);t.curDistance=i}fixPosition(e){return-(this.getIndex(e)-2)*this.liHeight}movePosition(e,t){e.style.webkitTransform="translate3d(0,"+t+"px, 0)",e.style.transform="translate3d(0,"+t+"px, 0)"}locatePosition(e,t){let i=this;this.curDistance[e]=this.calcDistance(t),this.movePosition(this.slider[e],this.curDistance[e]),i.cascade&&i.checkRange(e,i.getIndexArr())}updateCurDistance(e,t){e.style.transform?this.curDistance[t]=parseInt(e.style.transform.split(",")[1]):this.curDistance[t]=parseInt(e.style.webkitTransform.split(",")[1])}getDistance(e){return e.style.transform?parseInt(e.style.transform.split(",")[1]):parseInt(e.style.webkitTransform.split(",")[1])}getInnerHtml(e){let t=this,i=t.slider[e].getElementsByTagName("li").length,s=t.getIndex(t.curDistance[e]);return s>=i?s=i-1:s<0&&(s=0),t.slider[e].getElementsByTagName("li")[s].getAttribute("data-value")?t.slider[e].getElementsByTagName("li")[s].getAttribute("data-value"):t.slider[e].getElementsByTagName("li")[s].textContent}setActive(){let e=this;setTimeout((function(){if(!axIsEmpty(e.getIndexArr()))for(let t=0;t<e.getIndexArr().length;t++){let i=[...e.wheel][t].firstChild.children;for(let e=0;e<i.length;e++)i[e].classList.remove("ax-active");i[e.getIndexArr()[t]].classList.add("ax-active")}}),100)}setTitle(){let e="";this.getCurValue().forEach(t=>{t.name?e+=t.name:t.value?e+=t.value:e+=t}),this.title.innerHTML=e}touch(e,t,i){let s=this;switch((e=e||window.event).type){case"touchstart":s.startY=e.touches[0].clientY,s.startY=parseInt(s.startY),s.oldMoveY=s.startY;break;case"touchend":if(s.moveEndY=parseInt(e.changedTouches[0].clientY),s.offsetSum=s.moveEndY-s.startY,s.oversizeBorder=-(t.getElementsByTagName("li").length-3)*s.liHeight,0==s.offsetSum){let e=parseInt((document.documentElement.clientHeight-s.moveEndY)/40);if(2!=e){let n=e-2,a=s.curDistance[i]+n*s.liHeight;a<=2*s.liHeight&&a>=s.oversizeBorder&&(s.curDistance[i]=a,s.movePosition(t,s.curDistance[i]),s.options.transitionEnd.call(s,s.getIndexArr(),s.getCurValue()))}"inline"==s.options.type&&s.setValue(),s.setTitle(),s.setActive()}else s.updateCurDistance(t,i),s.curDistance[i]=s.fixPosition(s.curDistance[i]),s.movePosition(t,s.curDistance[i]),s.curDistance[i]+s.offsetSum>2*s.liHeight?(s.curDistance[i]=2*s.liHeight,setTimeout((function(){s.movePosition(t,s.curDistance[i])}),100)):s.curDistance[i]+s.offsetSum<s.oversizeBorder&&(s.curDistance[i]=s.oversizeBorder,setTimeout((function(){s.movePosition(t,s.curDistance[i])}),100)),s.options.transitionEnd(s.getIndexArr(),s.getCurValue());s.cascade&&s.checkRange(i,s.getIndexArr());break;case"touchmove":axPreventDefault(e),s.moveY=e.touches[0].clientY,s.offset=s.moveY-s.oldMoveY,s.updateCurDistance(t,i),s.curDistance[i]=s.curDistance[i]+s.offset,s.movePosition(t,s.curDistance[i]),s.oldMoveY=s.moveY}}dragClick(e,t,i){let s=this;switch(e=e||window.event,s.oversizeBorder=-(t.getElementsByTagName("li").length-3)*s.liHeight,e.type){case"mousedown":s.startY=e.clientY,s.oldMoveY=s.startY,s.clickStatus=!0;break;case"mouseup":if(s.moveEndY=e.clientY,s.offsetSum=s.moveEndY-s.startY,0==s.offsetSum){let e=parseInt((document.documentElement.clientHeight-s.moveEndY)/40);if(2!=e){let n=e-2,a=s.curDistance[i]+n*s.liHeight;a<=2*s.liHeight&&a>=s.oversizeBorder&&(s.curDistance[i]=a,s.movePosition(t,s.curDistance[i]),s.options.transitionEnd.call(s,s.getIndexArr(),s.getCurValue()))}}else s.updateCurDistance(t,i),s.curDistance[i]=s.fixPosition(s.curDistance[i]),s.movePosition(t,s.curDistance[i]),s.curDistance[i]+s.offsetSum>2*s.liHeight?(s.curDistance[i]=2*s.liHeight,setTimeout((function(){s.movePosition(t,s.curDistance[i])}),100)):s.curDistance[i]+s.offsetSum<s.oversizeBorder&&(s.curDistance[i]=s.oversizeBorder,setTimeout((function(){s.movePosition(t,s.curDistance[i])}),100)),s.options.transitionEnd(s.getIndexArr(),s.getCurValue());s.clickStatus=!1,s.cascade&&s.checkRange(i,s.getIndexArr()),"inline"==s.options.type&&s.setValue(),s.setTitle(),s.setActive();break;case"mousemove":axPreventDefault(e),s.clickStatus&&(s.moveY=e.clientY,s.offset=s.moveY-s.oldMoveY,s.liHeight&&s.updateCurDistance(t,i),s.curDistance[i]=s.curDistance[i]+s.offset,s.movePosition(t,s.curDistance[i]),s.oldMoveY=s.moveY)}"wheelUp"==e.direction?(s.curDistance[i]=s.curDistance[i]-s.liHeight,s.movePosition(t,s.curDistance[i]),s.curDistance[i]+s.offsetSum<s.oversizeBorder&&(s.curDistance[i]=s.oversizeBorder,setTimeout((function(){s.movePosition(t,s.curDistance[i])}),100)),s.clickStatus=!1,s.cascade&&s.checkRange(i,s.getIndexArr()),"inline"==s.options.type&&s.setValue(),s.setTitle(),s.setActive(),s.options.transitionEnd.call(s,s.getIndexArr(),s.getCurValue())):"wheelDown"==e.direction&&(s.curDistance[i]=s.curDistance[i]+s.liHeight,s.movePosition(t,s.curDistance[i]),s.curDistance[i]+s.offsetSum>2*s.liHeight&&(s.curDistance[i]=2*s.liHeight,setTimeout((function(){s.movePosition(t,s.curDistance[i])}),100)),s.clickStatus=!1,s.cascade&&s.checkRange(i,s.getIndexArr()),"inline"==s.options.type&&s.setValue(),s.setTitle(),s.setActive(),s.options.transitionEnd.call(s,s.getIndexArr(),s.getCurValue()))}}window.axScrollSelect=i,document.querySelectorAll("[axScrollSelect]").forEach(e=>{new i(e)})})(),
-/*!
-* 鎻掍欢锛氫笅鎷夐�夋嫨锛堝崟閫夊拰澶氶�夛級锛涙敼閫犺嚜Choices v10.1.0 https://github.com/Choices-js/Choices锛涗娇鐢ㄦ柟娉曪細new axSelect('#id',{鍙傛暟})
-*/
-function(e){let t=window||t||self;"function"==typeof define&&define.amd?define(e):t.axSelect=e(),document.querySelectorAll("[axSelect]").forEach(e=>{new axSelect(e)})}((function(){"use strict";const e="showDropdown",t="hideDropdown",i="change",s="choice",n="search",a="addItem",o="removeItem",r="highlightItem",l="highlightChoice",c="ADD_CHOICE",d="FILTER_CHOICES",h="ACTIVATE_CHOICES",u="CLEAR_CHOICES",p="ADD_GROUP",m="ADD_ITEM",f="REMOVE_ITEM",g="HIGHLIGHT_ITEM",v="CLEAR_ALL",x="RESET_TO",y="SET_IS_LOADING",b={BACK_KEY:46,DELETE_KEY:8,ENTER_KEY:13,A_KEY:65,ESC_KEY:27,UP_KEY:38,DOWN_KEY:40,PAGE_UP_KEY:33,PAGE_DOWN_KEY:34},w=(e=!0)=>({type:h,active:e}),M=({value:e,id:t,active:i,disabled:s})=>({type:p,value:e,id:t,active:i,disabled:s}),E=(e,t)=>({type:g,id:e,highlighted:t}),S=e=>({type:y,isLoading:e});class D{constructor({element:e,type:t,classNames:i}){this.element=e,this.classNames=i,this.type=t,this.isActive=!1}get distanceFromTopWindow(){return this.element.getBoundingClientRect().bottom}getChild(e){return this.element.querySelector(e)}show(){return this.element.classList.add(this.classNames.activeState),this.element.setAttribute("aria-expanded","true"),this.isActive=!0,this}hide(){return this.element.classList.remove(this.classNames.activeState),this.element.setAttribute("aria-expanded","false"),this.isActive=!1,this}}const T=(()=>{const e=document.createElement("div");return t=>{const i=t.trim();e.innerHTML=i;const s=e.children[0];for(;e.firstChild;)e.removeChild(e.firstChild);return s}})(),C=(e,t)=>{const{score:i=0}=e,{score:s=0}=t;return i-s};class L{constructor({element:e,type:t,classNames:i,position:s}){this.element=e,this.classNames=i,this.type=t,this.position=s,this.isOpen=!1,this.isFlipped=!1,this.isFocussed=!1,this.isDisabled=!1,this.isLoading=!1,this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}addEventListeners(){this.element.addEventListener("focus",this._onFocus),this.element.addEventListener("blur",this._onBlur)}removeEventListeners(){this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)}shouldFlip(e){if("number"!=typeof e)return!1;let t=!1;return"auto"===this.position?t=!window.matchMedia(`(min-height: ${e+1}px)`).matches:"top"===this.position&&(t=!0),t}setActiveDescendant(e){this.element.setAttribute("aria-activedescendant",e)}removeActiveDescendant(){this.element.removeAttribute("aria-activedescendant")}open(e){this.element.classList.add(this.classNames.openState),this.element.setAttribute("aria-expanded","true"),this.isOpen=!0,this.shouldFlip(e)&&(this.element.classList.add(this.classNames.flippedState),this.isFlipped=!0)}close(){this.element.classList.remove(this.classNames.openState),this.element.setAttribute("aria-expanded","false"),this.removeActiveDescendant(),this.isOpen=!1,this.isFlipped&&(this.element.classList.remove(this.classNames.flippedState),this.isFlipped=!1)}focus(){this.isFocussed||this.element.focus()}addFocusState(){this.element.classList.add(this.classNames.focusState)}removeFocusState(){this.element.classList.remove(this.classNames.focusState)}enable(){this.element.classList.remove(this.classNames.disabledState),this.element.removeAttribute("aria-disabled"),"select-one"===this.type&&this.element.setAttribute("tabindex","0"),this.isDisabled=!1}disable(){this.element.classList.add(this.classNames.disabledState),this.element.setAttribute("aria-disabled","true"),"select-one"===this.type&&this.element.setAttribute("tabindex","-1"),this.isDisabled=!0}wrap(e){axAddWrap(e,this.element)}unwrap(e){this.element.parentNode&&(this.element.parentNode.insertBefore(e,this.element),this.element.parentNode.removeChild(this.element))}addLoadingState(){this.element.classList.add(this.classNames.loadingState),this.element.setAttribute("aria-busy","true"),this.isLoading=!0}removeLoadingState(){this.element.classList.remove(this.classNames.loadingState),this.element.removeAttribute("aria-busy"),this.isLoading=!1}_onFocus(){this.isFocussed=!0}_onBlur(){this.isFocussed=!1}}class A{constructor({element:e,type:t,classNames:i,preventPaste:s}){this.element=e,this.type=t,this.classNames=i,this.preventPaste=s,this.isFocussed=this.element.isEqualNode(document.activeElement),this.isDisabled=e.disabled,this._onPaste=this._onPaste.bind(this),this._onInput=this._onInput.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this)}set placeholder(e){this.element.placeholder=e}get value(){return axCleanString(this.element.value)}set value(e){this.element.value=e}get rawValue(){return this.element.value}addEventListeners(){this.element.addEventListener("paste",this._onPaste),this.element.addEventListener("input",this._onInput,{passive:!0}),this.element.addEventListener("focus",this._onFocus,{passive:!0}),this.element.addEventListener("blur",this._onBlur,{passive:!0})}removeEventListeners(){this.element.removeEventListener("input",this._onInput),this.element.removeEventListener("paste",this._onPaste),this.element.removeEventListener("focus",this._onFocus),this.element.removeEventListener("blur",this._onBlur)}enable(){this.element.removeAttribute("disabled"),this.isDisabled=!1}disable(){this.element.setAttribute("disabled",""),this.isDisabled=!0}focus(){this.isFocussed||this.element.focus()}blur(){this.isFocussed&&this.element.blur()}clear(e=!0){return this.element.value&&(this.element.value=""),e&&this.setWidth(),this}setWidth(){const{style:e,value:t,placeholder:i}=this.element;e.minWidth=i.length+1+"em",e.width=t.length+1+"em"}setActiveDescendant(e){this.element.setAttribute("aria-activedescendant",e)}removeActiveDescendant(){this.element.removeAttribute("aria-activedescendant")}_onInput(){"select-one"!==this.type&&this.setWidth()}_onPaste(e){this.preventPaste&&axPreventDefault(e)}_onFocus(){this.isFocussed=!0}_onBlur(){this.isFocussed=!1}}class _{constructor({element:e}){this.element=e,this.scrollPos=this.element.scrollTop,this.height=this.element.offsetHeight}clear(){this.element.innerHTML=""}append(e){this.element.appendChild(e)}getChild(e){return this.element.querySelector(e)}hasChildren(){return this.element.hasChildNodes()}scrollToTop(){this.element.scrollTop=0}scrollToChildElement(e,t){if(!e)return;const i=this.element.offsetHeight,s=this.element.scrollTop+i,n=e.offsetHeight,a=e.offsetTop+n,o=t>0?this.element.scrollTop+a-s:e.offsetTop;requestAnimationFrame(()=>{this._animateScroll(o,t)})}_scrollDown(e,t,i){const s=(i-e)/t,n=s>1?s:1;this.element.scrollTop=e+n}_scrollUp(e,t,i){const s=(e-i)/t,n=s>1?s:1;this.element.scrollTop=e-n}_animateScroll(e,t){const i=this.element.scrollTop;let s=!1;t>0?(this._scrollDown(i,4,e),i<e&&(s=!0)):(this._scrollUp(i,4,e),i>e&&(s=!0)),s&&requestAnimationFrame(()=>{this._animateScroll(e,t)})}}class I{constructor({element:e,classNames:t}){if(this.element=e,this.classNames=t,!(e instanceof HTMLInputElement||e instanceof HTMLSelectElement))throw new TypeError("Invalid element passed");this.isDisabled=!1}get isActive(){return"active"===this.element.dataset.choice}get dir(){return this.element.dir}get value(){return this.element.value}set value(e){this.element.value=e}conceal(){this.element.classList.add(this.classNames.input),this.element.hidden=!0,this.element.tabIndex=-1;const e=this.element.getAttribute("style");e&&this.element.setAttribute("data-choice-orig-style",e),this.element.setAttribute("data-choice","active")}reveal(){this.element.classList.remove(this.classNames.input),this.element.hidden=!1,this.element.removeAttribute("tabindex");const e=this.element.getAttribute("data-choice-orig-style");e?(this.element.removeAttribute("data-choice-orig-style"),this.element.setAttribute("style",e)):this.element.removeAttribute("style"),this.element.removeAttribute("data-choice"),this.element.value=this.element.value}enable(){this.element.removeAttribute("disabled"),this.element.disabled=!1,this.isDisabled=!1}disable(){this.element.setAttribute("disabled",""),this.element.disabled=!0,this.isDisabled=!0}triggerEvent(e,t){((e,t,i=null)=>{const s=new CustomEvent(t,{detail:i,bubbles:!0,cancelable:!0});e.dispatchEvent(s)})(this.element,e,t)}}class k extends I{constructor({element:e,classNames:t,delimiter:i}){super({element:e,classNames:t}),this.delimiter=i}get value(){return this.element.value}set value(e){this.element.setAttribute("value",e),this.element.value=e}}class N extends I{constructor({element:e,classNames:t,template:i}){super({element:e,classNames:t}),this.template=i}get placeholderOption(){return this.element.querySelector('option[value=""]')||this.element.querySelector("option[placeholder]")}get optionGroups(){return Array.from(this.element.getElementsByTagName("OPTGROUP"))}get options(){return Array.from(this.element.options)}set options(e){const t=document.createDocumentFragment(),i=e=>{const i=this.template(e);t.appendChild(i)};e.forEach(e=>i(e)),this.appendDocFragment(t)}appendDocFragment(e){this.element.innerHTML="",this.element.appendChild(e)}}const O={disabled:!1,size:"",width:"",items:[],choices:[],silent:!1,renderChoiceLimit:-1,className:"",maxItemCount:-1,addItems:!0,addItemFilter:null,removeItems:!0,removeItemButton:!1,editItems:!1,allowHTML:!0,duplicateItemsAllowed:!0,delimiter:",",paste:!0,searchEnabled:!1,searchChoices:!0,searchFloor:1,searchResultLimit:4,searchFields:["label","value"],position:"auto",resetScrollPosition:!0,shouldSort:!0,shouldSortItems:!1,sorter:({value:e,label:t=e},{value:i,label:s=i})=>t.localeCompare(s,[],{sensitivity:"base",ignorePunctuation:!0,numeric:!0}),placeholder:!0,placeholderValue:"璇疯緭鍏ュ叧閿瓧...",searchPlaceholderValue:"璇疯緭鍏ュ叧閿瓧...",prependValue:null,appendValue:null,renderSelectedChoices:"auto",loadingText:"鍔犺浇涓�...",noResultsText:"娌℃湁妫�绱㈢粨鏋�",noChoicesText:"娌℃湁绗﹀悎鏉′欢鐨勯�夐」",itemSelectText:"鐐瑰嚮閫夋嫨",uniqueItemText:"鍙兘娣诲姞鍞竴鍊�",customAddItemText:"鍙彲娣诲姞鏉′欢鍖归厤鐨勯�夐」",addItemText:e=>`鎸夊洖杞﹂敭娣诲姞 <b>"${axCleanString(e)}"</b> 閫夐」`,maxItemText:e=>`鍙兘娣诲姞 ${e} 椤筦,valueComparer:(e,t)=>e===t,fuseOptions:{includeScore:!0},labelId:"",callbackOnInit:null,callbackOnCreateTemplates:null,classNames:{containerOuter:"ax-select",containerInner:"ax-select-inner",input:"ax-select-input",inputCloned:"ax-input-cloned",list:"ax-select-list",listItems:"ax-label-multiple",listSingle:"ax-label-single",listDropdown:"ax-select-dropdown",dropdownList:"ax-item-list",item:"ax-item",itemSelectable:"ax-item-selectable",itemDisabled:"ax-item-disabled",itemChoice:"ax-item-done",placeholder:"ax-select-placeholder",group:"ax-item-group",groupHeading:"ax-group-name",button:"ax-close",activeState:"ax-active",focusState:"ax-focuse",openState:"ax-open",disabledState:"ax-disabled",highlightedState:"ax-highlight",selectedState:"ax-selected",flippedState:"ax-flipped",loadingState:"ax-buffer",noResults:"ax-no-results",noChoices:"ax-no-select"}},j=[];const $=[];const P=[];const z={groups:[],items:[],choices:[],loading:!1},Y=Redux.combineReducers({items:function(e=j,t={}){switch(t.type){case"ADD_ITEM":{const i=t;return[...e,{id:i.id,choiceId:i.choiceId,groupId:i.groupId,value:i.value,label:i.label,active:!0,highlighted:!1,customProperties:i.customProperties,placeholder:i.placeholder||!1,keyCode:null}].map(e=>{const t=e;return t.highlighted=!1,t})}case"REMOVE_ITEM":return e.map(e=>{const i=e;return i.id===t.id&&(i.active=!1),i});case"HIGHLIGHT_ITEM":{const i=t;return e.map(e=>{const t=e;return t.id===i.id&&(t.highlighted=i.highlighted),t})}default:return e}},groups:function(e=$,t={}){switch(t.type){case"ADD_GROUP":{const i=t;return[...e,{id:i.id,value:i.value,active:i.active,disabled:i.disabled}]}case"CLEAR_CHOICES":return[];default:return e}},choices:function(e=P,t={}){switch(t.type){case"ADD_CHOICE":{const i=t,s={id:i.id,elementId:i.elementId,groupId:i.groupId,value:i.value,label:i.label||i.value,disabled:i.disabled||!1,selected:!1,active:!0,score:9999,customProperties:i.customProperties,placeholder:i.placeholder||!1};return[...e,s]}case"ADD_ITEM":{const i=t;return i.choiceId>-1?e.map(e=>{const t=e;return t.id===parseInt(`${i.choiceId}`,10)&&(t.selected=!0),t}):e}case"REMOVE_ITEM":{const i=t;return i.choiceId&&i.choiceId>-1?e.map(e=>{const t=e;return t.id===parseInt(`${i.choiceId}`,10)&&(t.selected=!1),t}):e}case"FILTER_CHOICES":{const i=t;return e.map(e=>{const t=e;return t.active=i.results.some(({item:e,score:i})=>e.id===t.id&&(t.score=i,!0)),t})}case"ACTIVATE_CHOICES":{const i=t;return e.map(e=>{const t=e;return t.active=i.active,t})}case"CLEAR_CHOICES":return P;default:return e}},loading:(e=!1,t={})=>{switch(t.type){case"SET_IS_LOADING":return t.isLoading;default:return e}}}),q=(e,t)=>{let i=e;if("CLEAR_ALL"===t.type)i=z;else if("RESET_TO"===t.type)return s=t.state,JSON.parse(JSON.stringify(s));var s;return Y(i,t)};class B{constructor(){this._store=Redux.createStore(q,window.__REDUX_DEVTOOLS_EXTENSION__&&window.__REDUX_DEVTOOLS_EXTENSION__())}subscribe(e){this._store.subscribe(e)}dispatch(e){this._store.dispatch(e)}get state(){return this._store.getState()}get items(){return this.state.items}get activeItems(){return this.items.filter(e=>!0===e.active)}get highlightedActiveItems(){return this.items.filter(e=>e.active&&e.highlighted)}get choices(){return this.state.choices}get activeChoices(){return this.choices.filter(e=>!0===e.active)}get selectableChoices(){return this.choices.filter(e=>!0!==e.disabled)}get searchableChoices(){return this.selectableChoices.filter(e=>!0!==e.placeholder)}get placeholderChoice(){return[...this.choices].reverse().find(e=>!0===e.placeholder)}get groups(){return this.state.groups}get activeGroups(){const{groups:e,choices:t}=this;return e.filter(e=>{const i=!0===e.active&&!1===e.disabled,s=t.some(e=>!0===e.active&&!1===e.disabled);return i&&s},[])}isLoading(){return this.state.loading}getChoiceById(e){return this.activeChoices.find(t=>t.id===parseInt(e,10))}getGroupById(e){return this.groups.find(t=>t.id===e)}}const H={containerOuter({classNames:{containerOuter:e}},t,i,s,n,a,o){const r=Object.assign(document.createElement("div"),{className:e});return r.dataset.type=a,t&&(r.dir=t),s&&(r.tabIndex=0),i&&(r.setAttribute("role",n?"combobox":"listbox"),n&&r.setAttribute("aria-autocomplete","list")),r.setAttribute("aria-haspopup","true"),r.setAttribute("aria-expanded","false"),this.config.className&&r.classList.add(this.config.className),this.config.size&&r.setAttribute("data-size",this.config.size),o&&r.setAttribute("aria-labeledby",o),r},containerInner:({classNames:{containerInner:e}})=>Object.assign(document.createElement("div"),{className:e}),itemList:({classNames:{list:e,listSingle:t,listItems:i}},s)=>Object.assign(document.createElement("span"),{className:`${s?t:i}`}),placeholder:({allowHTML:e,classNames:{placeholder:t}},i)=>Object.assign(document.createElement("div"),{className:t,[e?"innerHTML":"innerText"]:i}),item({allowHTML:e,classNames:{item:t,button:i,highlightedState:s,itemSelectable:n,placeholder:a}},{id:o,value:r,label:l,customProperties:c,active:d,disabled:h,highlighted:u,placeholder:p},m){const f=Object.assign(document.createElement("span"),{className:t,[e?"innerHTML":"innerText"]:l});if(Object.assign(f.dataset,{item:"",id:o,value:r,customProperties:c}),d&&f.setAttribute("aria-selected","true"),h&&f.setAttribute("aria-disabled","true"),p&&f.classList.add(a),f.classList.add(u?s:n),m){h&&f.classList.remove(n),f.dataset.deletable="";const t="",s=Object.assign(document.createElement("i"),{type:"button",className:i,[e?"innerHTML":"innerText"]:t});s.setAttribute("aria-label",`${t}: '${r}'`),s.dataset.button="",f.appendChild(s)}return f},choiceList({classNames:{dropdownList:e}},t){const i=Object.assign(document.createElement("div"),{className:e});return t||i.setAttribute("aria-multiselectable","true"),i.setAttribute("role","listbox"),i},choiceGroup({allowHTML:e,classNames:{group:t,groupHeading:i,itemDisabled:s}},{id:n,value:a,disabled:o}){const r=Object.assign(document.createElement("div"),{className:`${t} ${o?s:""}`});return r.setAttribute("role","group"),Object.assign(r.dataset,{group:"",id:n,value:a}),o&&r.setAttribute("aria-disabled","true"),r.appendChild(Object.assign(document.createElement("div"),{className:i,[e?"innerHTML":"innerText"]:a})),r},choice({allowHTML:e,classNames:{item:t,itemChoice:i,itemSelectable:s,selectedState:n,itemDisabled:a,placeholder:o}},{id:r,value:l,label:c,groupId:d,elementId:h,disabled:u,selected:p,placeholder:m},f){const g=Object.assign(document.createElement("div"),{id:h,[e?"innerHTML":"innerText"]:c,className:`${t} ${i}`});return p&&g.classList.add(n),m&&g.classList.add(o),g.setAttribute("role",d&&d>0?"treeitem":"option"),Object.assign(g.dataset,{choice:"",id:r,value:l,selectText:f}),u?(g.classList.add(a),g.dataset.choiceDisabled="",g.setAttribute("aria-disabled","true")):(g.classList.add(s),g.dataset.choiceSelectable=""),g},input({classNames:{input:e,inputCloned:t}},i){const s=Object.assign(document.createElement("input"),{type:"search",name:"search_terms",className:`${e} ${t}`,autocomplete:"off",autocapitalize:"off",spellcheck:!1});return s.setAttribute("role","textbox"),s.setAttribute("aria-autocomplete","list"),s.setAttribute("aria-label",i),s},dropdown({classNames:{list:e,listDropdown:t}}){const i=document.createElement("div");return i.classList.add(t),i.setAttribute("aria-expanded","false"),i},notice({allowHTML:e,classNames:{item:t,itemChoice:i,noResults:s,noChoices:n}},a,o=""){const r=[t,i];return"no-choices"===o?r.push(n):"no-results"===o&&r.push(s),Object.assign(document.createElement("div"),{[e?"innerHTML":"innerText"]:a,className:r.join(" ")})},option({label:e,value:t,customProperties:i,active:s,disabled:n}){const a=new Option(e,t,!1,s);return i&&(a.dataset.customProperties=`${i}`),a.disabled=!!n,a}},F="-ms-scroll-limit"in document.documentElement.style&&"-ms-ime-align"in document.documentElement.style,R={};class V{constructor(e="[data-choice]",t={}){t.allowHTML,this.config=deepmerge.all([O,V.defaults.options,t],{arrayMerge:(e,t)=>[...t]}),this.origElem=e,this.config=axDataset(e,this.config);const i=((e,t)=>{const i=Object.keys(e).sort(),s=Object.keys(t).sort();return i.filter(e=>s.indexOf(e)<0)})(this.config,O);i.length&&console.warn("Unknown config option(s) passed",i.join(", "));const s="string"==typeof e?document.querySelector(e):e;if(!(s instanceof HTMLInputElement||s instanceof HTMLSelectElement))throw TypeError("Expected one of the following types text|select-one|select-multiple");if(this._isTextElement="text"===s.type,this._isSelectOneElement="select-one"===s.type,this._isSelectMultipleElement="select-multiple"===s.type,this._isSelectElement=this._isSelectOneElement||this._isSelectMultipleElement,this.config.searchEnabled=this._isSelectMultipleElement||this.config.searchEnabled,["auto","always"].includes(`${this.config.renderSelectedChoices}`)||(this.config.renderSelectedChoices="auto"),t.addItemFilter&&"function"!=typeof t.addItemFilter){const e=t.addItemFilter instanceof RegExp?t.addItemFilter:new RegExp(t.addItemFilter);this.config.addItemFilter=e.test.bind(e)}if(this._isTextElement?this.passedElement=new k({element:s,classNames:this.config.classNames,delimiter:this.config.delimiter}):this.passedElement=new N({element:s,classNames:this.config.classNames,template:e=>this._templates.option(e)}),this.initialised=!1,this._store=new B,this._initialState=z,this._currentState=z,this._prevState=z,this._currentValue="",this._canSearch=!!this.config.searchEnabled,this._isScrollingOnIe=!1,this._highlightPosition=0,this._wasTap=!0,this._placeholderValue=this._generatePlaceholderValue(),this._baseId=axCreateId("choices-","",this.passedElement.element),this._direction=this.passedElement.dir,!this._direction){const{direction:e}=window.getComputedStyle(this.passedElement.element),{direction:t}=window.getComputedStyle(document.documentElement);e!==t&&(this._direction=e)}if(this._idNames={itemChoice:"item-choice"},this._isSelectElement&&(this._presetGroups=this.passedElement.optionGroups,this._presetOptions=this.passedElement.options),this._presetChoices=this.config.choices,this._presetItems=this.config.items,this.passedElement.value&&this._isTextElement){const e=this.passedElement.value.split(this.config.delimiter);this._presetItems=this._presetItems.concat(e)}if(this.passedElement.options&&this.passedElement.options.forEach(e=>{this._presetChoices.push({value:e.value,label:e.innerHTML,selected:!!e.selected,disabled:e.disabled||e.parentNode.disabled,placeholder:""===e.value||e.hasAttribute("placeholder"),customProperties:e.dataset["custom-properties"]})}),this._render=this._render.bind(this),this._onFocus=this._onFocus.bind(this),this._onBlur=this._onBlur.bind(this),this._onKeyUp=this._onKeyUp.bind(this),this._onKeyDown=this._onKeyDown.bind(this),this._onClick=this._onClick.bind(this),this._onTouchMove=this._onTouchMove.bind(this),this._onTouchEnd=this._onTouchEnd.bind(this),this._onMouseDown=this._onMouseDown.bind(this),this._onMouseOver=this._onMouseOver.bind(this),this._onFormReset=this._onFormReset.bind(this),this._onSelectKey=this._onSelectKey.bind(this),this._onEnterKey=this._onEnterKey.bind(this),this._onEscapeKey=this._onEscapeKey.bind(this),this._onDirectionKey=this._onDirectionKey.bind(this),this._onDeleteKey=this._onDeleteKey.bind(this),this.passedElement.isActive)return this.config.silent||console.warn("Trying to initialise Choices on element already initialised",{element:e}),void(this.initialised=!0);e&&e.hasOwnProperty("axSelect")&&e.getAttribute("axSelect")?this.referName=e.getAttribute("axSelect"):this.referName="",this.init(),this.config.disabled&&this.disable()}static get defaults(){return Object.preventExtensions({get options(){return R},get templates(){return H}})}init(e){if(this.initialised)return;this._createTemplates(),this._createElements(),this._createStructure(),this._store.subscribe(this._render),this._render(),this._addEventListeners(),(!this.config.addItems||this.passedElement.element.hasAttribute("disabled"))&&this.disable(),this.initialised=!0;const{callbackOnInit:t}=this.config;if(t&&"function"==typeof t&&t.call(this),e&&e.call(this),this.referName)if(axIsEmpty(axSelects))axSelects.push({name:this.referName,instance:this});else for(let e=0;e<axSelects.length;e++){if(axSelects[e].name==this.referName){axSelects[e].instance=this;break}axSelects.push({name:this.referName,instance:this})}}destroy(e){this.initialised&&(this._removeEventListeners(),this.passedElement.reveal(),this.containerOuter.unwrap(this.passedElement.element),this.clearStore(),this._isSelectElement&&(this.passedElement.options=this._presetOptions),this._templates=H,this.initialised=!1,e&&e.call(this))}enable(e){return this.passedElement.isDisabled&&this.passedElement.enable(),this.containerOuter.isDisabled&&(this._addEventListeners(),this.input.enable(),this.containerOuter.enable()),e&&e.call(this),this}disable(e){return this.passedElement.isDisabled||this.passedElement.disable(),this.containerOuter.isDisabled||(this._removeEventListeners(),this.input.disable(),this.containerOuter.disable()),e&&e.call(this),this}highlightItem(e,t=!0,i){if(!e||!e.id)return this;const{id:s,groupId:n=-1,value:a="",label:o=""}=e,l=n>=0?this._store.getGroupById(n):null;return this._store.dispatch(E(s,!0)),t&&this.passedElement.triggerEvent(r,{id:s,value:a,label:o,groupValue:l&&l.value?l.value:null}),i&&i.call(this),this}unhighlightItem(e,t){if(!e||!e.id)return this;const{id:i,groupId:s=-1,value:n="",label:a=""}=e,o=s>=0?this._store.getGroupById(s):null;return this._store.dispatch(E(i,!1)),this.passedElement.triggerEvent(r,{id:i,value:n,label:a,groupValue:o&&o.value?o.value:null}),t&&t.call(this),this}highlightAll(e){return this._store.items.forEach(e=>this.highlightItem(e)),e&&e.call(this),this}unhighlightAll(e){return this._store.items.forEach(e=>this.unhighlightItem(e)),e&&e.call(this),this}removeActiveItemsByValue(e,t){return this._store.activeItems.filter(t=>t.value===e).forEach(e=>this._removeItem(e)),t&&t.call(this),this}removeActiveItems(e,t){return this._store.activeItems.filter(({id:t})=>t!==e).forEach(e=>this._removeItem(e)),t&&t.call(this),this}removeHighlightedItems(e=!1,t){return this._store.highlightedActiveItems.forEach(t=>{this._removeItem(t),e&&this._triggerChange(t.value)}),t&&t.call(this),this}showDropdown(t,i){return this.dropdown.isActive?this:(requestAnimationFrame(()=>{this.dropdown.show(),this.containerOuter.open(this.dropdown.distanceFromTopWindow),!t&&this._canSearch&&this.input.focus(),this.passedElement.triggerEvent(e,{})}),i&&i.call(this),this)}hideDropdown(e,i){return this.dropdown.isActive?(requestAnimationFrame(()=>{this.dropdown.hide(),this.containerOuter.close(),!e&&this._canSearch&&(this.input.removeActiveDescendant(),this.input.blur()),this.passedElement.triggerEvent(t,{})}),i&&i.call(this),this):(i&&i.call(this),this)}getValue(e=!1,t){const i=this._store.activeItems.reduce((t,i)=>{const s=e?i.value:i;return t.push(s),t},[]);return t&&t.call(this),this._isSelectOneElement?i[0]:i}setValue(e,t){return this.initialised?(e.forEach(e=>this._setChoiceOrItem(e)),t&&t.call(this),this):this}setChoiceByValue(e,t){if(!this.initialised||this._isTextElement)return this;return(Array.isArray(e)?e:[e]).forEach(e=>this._findAndSelectChoiceByValue(e)),t&&t.call(this),this}setChoices(e=[],t="value",i="label",s=!1,n){if(!this.initialised)throw new ReferenceError("setChoices was called on a non-initialized instance of Choices");if(!this._isSelectElement)throw new TypeError("setChoices can't be used with INPUT based Choices");if("string"!=typeof t||!t)throw new TypeError("value parameter must be a name of 'value' field in passed objects");if(s&&this.clearChoices(),"function"==typeof e){const n=e(this);if("function"==typeof Promise&&n instanceof Promise)return new Promise(e=>requestAnimationFrame(e)).then(()=>this._handleLoadingState(!0)).then(()=>n).then(e=>this.setChoices(e,t,i,s)).catch(e=>{this.config.silent||console.error(e)}).then(()=>this._handleLoadingState(!1)).then(()=>this);if(!Array.isArray(n))throw new TypeError(`.setChoices first argument function must return either array of choices or Promise, got: ${typeof n}`);return this.setChoices(n,t,i,!1)}if(!Array.isArray(e))throw new TypeError(".setChoices must be called either with array of choices with a function resulting into Promise of array of choices");return this.containerOuter.removeLoadingState(),this._startLoading(),e.forEach(e=>{if(e.choices)this._addGroup({id:e.id?parseInt(`${e.id}`,10):null,group:e,valueKey:t,labelKey:i});else{const s=e;this._addChoice({value:s[t],label:s[i],isSelected:!!s.selected,isDisabled:!!s.disabled,placeholder:!!s.placeholder,customProperties:s.customProperties})}}),this._stopLoading(),n&&n.call(this),this}clearChoices(e){return this._store.dispatch({type:u}),e&&e.call(this),this}clearStore(e){return this._store.dispatch({type:v}),e&&e.call(this),this}clearInput(e){const t=!this._isSelectOneElement;return this.input.clear(t),!this._isTextElement&&this._canSearch&&(this._isSearching=!1,this._store.dispatch(w(!0))),e&&e.call(this),this}_render(e){if(this._store.isLoading())return;this._currentState=this._store.state;const t=this._currentState.choices!==this._prevState.choices||this._currentState.groups!==this._prevState.groups||this._currentState.items!==this._prevState.items,i=this._isSelectElement,s=this._currentState.items!==this._prevState.items;t&&(i&&this._renderChoices(),s&&this._renderItems(),this._prevState=this._currentState,e&&e.call(this))}_renderChoices(){const{activeGroups:e,activeChoices:t}=this._store;let i=document.createDocumentFragment();if(this.choiceList.clear(),this.config.resetScrollPosition&&requestAnimationFrame(()=>this.choiceList.scrollToTop()),e.length>=1&&!this._isSearching){const s=t.filter(e=>!0===e.placeholder&&-1===e.groupId);s.length>=1&&(i=this._createChoicesFragment(s,i)),i=this._createGroupsFragment(e,t,i)}else t.length>=1&&(i=this._createChoicesFragment(t,i));if(i.childNodes&&i.childNodes.length>0){const{activeItems:e}=this._store,t=this._canAddItem(e,this.input.value);if(t.response)this.choiceList.append(i),this._highlightChoice();else{const e=this._getTemplate("notice",t.notice);this.choiceList.append(e)}}else{let e,t;this._isSearching?(t="function"==typeof this.config.noResultsText?this.config.noResultsText():this.config.noResultsText,e=this._getTemplate("notice",t,"no-results")):(t="function"==typeof this.config.noChoicesText?this.config.noChoicesText():this.config.noChoicesText,e=this._getTemplate("notice",t,"no-choices")),this.choiceList.append(e)}}_renderItems(){const e=this._store.activeItems||[];this.itemList.clear();const t=this._createItemsFragment(e);t.childNodes&&this.itemList.append(t)}_createGroupsFragment(e,t,i=document.createDocumentFragment()){const s=e=>t.filter(t=>this._isSelectOneElement?t.groupId===e.id:t.groupId===e.id&&("always"===this.config.renderSelectedChoices||!t.selected));return this.config.shouldSort&&e.sort(this.config.sorter),e.forEach(e=>{const t=s(e);if(t.length>=1){const s=this._getTemplate("choiceGroup",e);i.appendChild(s),this._createChoicesFragment(t,i,!0)}}),i}_createChoicesFragment(e,t=document.createDocumentFragment(),i=!1){const{renderSelectedChoices:s,searchResultLimit:n,renderChoiceLimit:a}=this.config,o=this._isSearching?C:this.config.sorter,r=e=>{if("auto"!==s||(this._isSelectOneElement||!e.selected)){const i=this._getTemplate("choice",e,this.config.itemSelectText);t.appendChild(i)}};let l=e;"auto"!==s||this._isSelectOneElement||(l=e.filter(e=>!e.selected));const{placeholderChoices:c,normalChoices:d}=l.reduce((e,t)=>(t.placeholder?e.placeholderChoices.push(t):e.normalChoices.push(t),e),{placeholderChoices:[],normalChoices:[]});(this.config.shouldSort||this._isSearching)&&d.sort(o);let h=l.length;const u=this._isSelectOneElement?[...c,...d]:d;this._isSearching?h=n:a&&a>0&&!i&&(h=a);for(let e=0;e<h;e+=1)u[e]&&r(u[e]);return t}_createItemsFragment(e,t=document.createDocumentFragment()){const{shouldSortItems:i,sorter:s,removeItemButton:n}=this.config;i&&!this._isSelectOneElement&&e.sort(s),this._isTextElement?this.passedElement.value=e.map(({value:e})=>e).join(this.config.delimiter):this.passedElement.options=e;return e.forEach(e=>{const i=this._getTemplate("item",e,n);t.appendChild(i)}),t}_triggerChange(e){null!=e&&this.passedElement.triggerEvent(i,{value:e})}_selectPlaceholderChoice(e){this._addItem({value:e.value,label:e.label,choiceId:e.id,groupId:e.groupId,placeholder:e.placeholder}),this._triggerChange(e.value)}_handleButtonAction(e,t){if(!(e&&t&&this.config.removeItems&&this.config.removeItemButton))return;const i=t.parentNode&&t.parentNode.dataset.id,s=i&&e.find(e=>e.id===parseInt(i,10));s&&(this._removeItem(s),this._triggerChange(s.value),this._isSelectOneElement&&this._store.placeholderChoice&&this._selectPlaceholderChoice(this._store.placeholderChoice))}_handleItemAction(e,t,i=!1){if(!e||!t||!this.config.removeItems||this._isSelectOneElement)return;const s=t.dataset.id;e.forEach(e=>{e.id!==parseInt(`${s}`,10)||e.highlighted?!i&&e.highlighted&&this.unhighlightItem(e):this.highlightItem(e)}),this.input.focus()}_handleChoiceAction(e,t){if(!e||!t)return;const{id:i}=t.dataset,n=i&&this._store.getChoiceById(i);if(!n)return;const a=e[0]&&e[0].keyCode?e[0].keyCode:void 0,o=this.dropdown.isActive;if(n.keyCode=a,this.passedElement.triggerEvent(s,{choice:n}),!n.selected&&!n.disabled){this._canAddItem(e,n.value).response&&(this._addItem({value:n.value,label:n.label,choiceId:n.id,groupId:n.groupId,customProperties:n.customProperties,placeholder:n.placeholder,keyCode:n.keyCode}),this._triggerChange(n.value))}this.clearInput(),o&&this._isSelectOneElement&&(this.hideDropdown(!0),this.containerOuter.focus())}_handleBackspace(e){if(!this.config.removeItems||!e)return;const t=e[e.length-1],i=e.some(e=>e.highlighted);this.config.editItems&&!i&&t?(this.input.value=t.value,this.input.setWidth(),this._removeItem(t),this._triggerChange(t.value)):(i||this.highlightItem(t,!1),this.removeHighlightedItems(!0))}_startLoading(){this._store.dispatch(S(!0))}_stopLoading(){this._store.dispatch(S(!1))}_handleLoadingState(e=!0){let t=this.itemList.getChild(`.${this.config.classNames.placeholder}`);e?(this.disable(),this.containerOuter.addLoadingState(),this._isSelectOneElement?t?t.innerHTML=this.config.loadingText:(t=this._getTemplate("placeholder",this.config.loadingText),t&&this.itemList.append(t)):this.input.placeholder=this.config.loadingText):(this.enable(),this.containerOuter.removeLoadingState(),this._isSelectOneElement?t&&(t.innerHTML=this._placeholderValue||""):this.input.placeholder=this._placeholderValue||"")}_handleSearch(e){if(!this.input.isFocussed)return;const{choices:t}=this._store,{searchFloor:i,searchChoices:s}=this.config,a=t.some(e=>!e.active);if(null!=e&&e.length>=i){const t=s?this._searchChoices(e):0;this.passedElement.triggerEvent(n,{value:e,resultCount:t})}else a&&(this._isSearching=!1,this._store.dispatch(w(!0)))}_canAddItem(e,t){let i=!0,s="function"==typeof this.config.addItemText?this.config.addItemText(t):this.config.addItemText;if(!this._isSelectOneElement){const n=((e,t,i="value")=>e.some(e=>"string"==typeof t?e[i]===t.trim():e[i]===t))(e,t);this.config.maxItemCount>0&&this.config.maxItemCount<=e.length&&(i=!1,s="function"==typeof this.config.maxItemText?this.config.maxItemText(this.config.maxItemCount):this.config.maxItemText),!this.config.duplicateItemsAllowed&&n&&i&&(i=!1,s="function"==typeof this.config.uniqueItemText?this.config.uniqueItemText(t):this.config.uniqueItemText),this._isTextElement&&this.config.addItems&&i&&"function"==typeof this.config.addItemFilter&&!this.config.addItemFilter(t)&&(i=!1,s="function"==typeof this.config.customAddItemText?this.config.customAddItemText(t):this.config.customAddItemText)}return{response:i,notice:s}}_searchChoices(e){const t="string"==typeof e?e.trim():e,i="string"==typeof this._currentValue?this._currentValue.trim():this._currentValue;if(t.length<1&&t===`${i} `)return 0;const s=this._store.searchableChoices,n=t,a=Object.assign(this.config.fuseOptions,{keys:[...this.config.searchFields],includeMatches:!0}),o=new Fuse(s,a).search(n);return this._currentValue=t,this._highlightPosition=0,this._isSearching=!0,this._store.dispatch((e=>({type:d,results:e}))(o)),o.length}_addEventListeners(){const{documentElement:e}=document;e.addEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.addEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.addEventListener("mousedown",this._onMouseDown,!0),e.addEventListener("click",this._onClick,{passive:!0}),e.addEventListener("touchmove",this._onTouchMove,{passive:!0}),this.dropdown.element.addEventListener("mouseover",this._onMouseOver,{passive:!0}),this._isSelectOneElement&&(this.containerOuter.element.addEventListener("focus",this._onFocus,{passive:!0}),this.containerOuter.element.addEventListener("blur",this._onBlur,{passive:!0})),this.input.element.addEventListener("keyup",this._onKeyUp,{passive:!0}),this.input.element.addEventListener("focus",this._onFocus,{passive:!0}),this.input.element.addEventListener("blur",this._onBlur,{passive:!0}),this.input.element.form&&this.input.element.form.addEventListener("reset",this._onFormReset,{passive:!0}),this.input.addEventListeners()}_removeEventListeners(){const{documentElement:e}=document;e.removeEventListener("touchend",this._onTouchEnd,!0),this.containerOuter.element.removeEventListener("keydown",this._onKeyDown,!0),this.containerOuter.element.removeEventListener("mousedown",this._onMouseDown,!0),e.removeEventListener("click",this._onClick),e.removeEventListener("touchmove",this._onTouchMove),this.dropdown.element.removeEventListener("mouseover",this._onMouseOver),this._isSelectOneElement&&(this.containerOuter.element.removeEventListener("focus",this._onFocus),this.containerOuter.element.removeEventListener("blur",this._onBlur)),this.input.element.removeEventListener("keyup",this._onKeyUp),this.input.element.removeEventListener("focus",this._onFocus),this.input.element.removeEventListener("blur",this._onBlur),this.input.element.form&&this.input.element.form.removeEventListener("reset",this._onFormReset),this.input.removeEventListeners()}_onKeyDown(e){const{keyCode:t}=e,{activeItems:i}=this._store,s=this.input.isFocussed,n=this.dropdown.isActive,a=this.itemList.hasChildren(),o=String.fromCharCode(t),r=/[a-zA-Z0-9-_ ]/.test(o),{BACK_KEY:l,DELETE_KEY:c,ENTER_KEY:d,A_KEY:h,ESC_KEY:u,UP_KEY:p,DOWN_KEY:m,PAGE_UP_KEY:f,PAGE_DOWN_KEY:g}=b;switch(this._isTextElement||n||!r||(this.showDropdown(),this.input.isFocussed||(this.input.value+=o.toLowerCase())),t){case h:return this._onSelectKey(e,a);case d:return this._onEnterKey(e,i,n);case u:return this._onEscapeKey(n);case p:case f:case m:case g:return this._onDirectionKey(e,n);case c:case l:return this._onDeleteKey(e,i,s)}}_onKeyUp({target:e,keyCode:t}){const{value:i}=this.input,{activeItems:s}=this._store,n=this._canAddItem(s,i),{BACK_KEY:a,DELETE_KEY:o}=b;if(this._isTextElement){if(n.notice&&i){const e=this._getTemplate("notice",n.notice);this.dropdown.element.innerHTML=e.outerHTML,this.showDropdown(!0)}else this.hideDropdown(!0)}else{const i=(t===a||t===o)&&e&&!e.value,s=!this._isTextElement&&this._isSearching,r=this._canSearch&&n.response;i&&s?(this._isSearching=!1,this._store.dispatch(w(!0))):r&&this._handleSearch(this.input.rawValue)}this._canSearch=this.config.searchEnabled}_onSelectKey(e,t){const{ctrlKey:i,metaKey:s}=e;if((i||s)&&t){this._canSearch=!1,this.config.removeItems&&!this.input.value&&this.input.element===document.activeElement&&this.highlightAll()}}_onEnterKey(e,t,i){const{target:s}=e,{ENTER_KEY:n}=b,a=s&&s.hasAttribute("data-button");if(this._isTextElement&&s&&s.value){const{value:e}=this.input;this._canAddItem(t,e).response&&(this.hideDropdown(!0),this._addItem({value:e}),this._triggerChange(e),this.clearInput())}if(a&&(this._handleButtonAction(t,s),axPreventDefault(e)),i){const i=this.dropdown.getChild(`.${this.config.classNames.highlightedState}`);i&&(t[0]&&(t[0].keyCode=n),this._handleChoiceAction(t,i)),axPreventDefault(e)}else this._isSelectOneElement&&(this.showDropdown(),axPreventDefault(e))}_onEscapeKey(e){e&&(this.hideDropdown(!0),this.containerOuter.focus())}_onDirectionKey(e,t){const{keyCode:i,metaKey:s}=e,{DOWN_KEY:n,PAGE_UP_KEY:a,PAGE_DOWN_KEY:o}=b;if(t||this._isSelectOneElement){this.showDropdown(),this._canSearch=!1;const t=i===n||i===o?1:-1,r="[data-choice-selectable]";let l;if(s||i===o||i===a)l=t>0?this.dropdown.element.querySelector(`${r}:last-of-type`):this.dropdown.element.querySelector(r);else{const e=this.dropdown.element.querySelector(`.${this.config.classNames.highlightedState}`);l=e?((e,t,i=1)=>{const s=`${i>0?"next":"previous"}ElementSibling`;let n=e[s];for(;n;){if(n.matches(t))return n;n=n[s]}return n})(e,r,t):this.dropdown.element.querySelector(r)}l&&(((e,t,i=1)=>{if(!e)return!1;let s;return s=i>0?t.scrollTop+t.offsetHeight>=e.offsetTop+e.offsetHeight:e.offsetTop>=t.scrollTop,s})(l,this.choiceList.element,t)||this.choiceList.scrollToChildElement(l,t),this._highlightChoice(l)),axPreventDefault(e)}}_onDeleteKey(e,t,i){const{target:s}=e;this._isSelectOneElement||s.value||!i||(this._handleBackspace(t),axPreventDefault(e))}_onTouchMove(){this._wasTap&&(this._wasTap=!1)}_onTouchEnd(e){const{target:t}=e||e.touches[0];if(this._wasTap&&this.containerOuter.element.contains(t)){(t===this.containerOuter.element||t===this.containerInner.element)&&(this._isTextElement?this.input.focus():this._isSelectMultipleElement&&this.showDropdown()),e.stopPropagation()}this._wasTap=!0}_onMouseDown(e){const{target:t}=e;if(!(t instanceof HTMLElement))return;if(F&&this.choiceList.element.contains(t)){const t=this.choiceList.element.firstElementChild,i="ltr"===this._direction?e.offsetX>=t.offsetWidth:e.offsetX<t.offsetLeft;this._isScrollingOnIe=i}if(t===this.input.element)return;const i=t.closest("[data-button],[data-item],[data-choice]");if(i instanceof HTMLElement){const t=e.shiftKey,{activeItems:s}=this._store,{dataset:n}=i;"button"in n?this._handleButtonAction(s,i):"item"in n?this._handleItemAction(s,i,t):"choice"in n&&this._handleChoiceAction(s,i)}axPreventDefault(e)}_onMouseOver({target:e}){e instanceof HTMLElement&&"choice"in e.dataset&&this._highlightChoice(e)}_onClick({target:e}){if(this.containerOuter.element.contains(e))this.dropdown.isActive||this.containerOuter.isDisabled?this._isSelectOneElement&&e!==this.input.element&&!this.dropdown.element.contains(e)&&this.hideDropdown():this._isTextElement?document.activeElement!==this.input.element&&this.input.focus():(this.showDropdown(),this.containerOuter.focus());else{this._store.highlightedActiveItems.length>0&&this.unhighlightAll(),this.containerOuter.removeFocusState(),this.hideDropdown(!0)}}_onFocus({target:e}){e&&this.containerOuter.element.contains(e)&&{text:()=>{e===this.input.element&&this.containerOuter.addFocusState()},"select-one":()=>{this.containerOuter.addFocusState(),e===this.input.element&&this.showDropdown(!0)},"select-multiple":()=>{e===this.input.element&&(this.showDropdown(!0),this.containerOuter.addFocusState())}}[this.passedElement.element.type]()}_onBlur({target:e}){if(e&&this.containerOuter.element.contains(e)&&!this._isScrollingOnIe){const{activeItems:t}=this._store,i=t.some(e=>e.highlighted);({text:()=>{e===this.input.element&&(this.containerOuter.removeFocusState(),i&&this.unhighlightAll(),this.hideDropdown(!0))},"select-one":()=>{this.containerOuter.removeFocusState(),(e===this.input.element||e===this.containerOuter.element&&!this._canSearch)&&this.hideDropdown(!0)},"select-multiple":()=>{e===this.input.element&&(this.containerOuter.removeFocusState(),this.hideDropdown(!0),i&&this.unhighlightAll())}})[this.passedElement.element.type]()}else this._isScrollingOnIe=!1,this.input.element.focus()}_onFormReset(){var e;this._store.dispatch((e=this._initialState,{type:x,state:e}))}_highlightChoice(e=null){const t=Array.from(this.dropdown.element.querySelectorAll("[data-choice-selectable]"));if(!t.length)return;let i=e;Array.from(this.dropdown.element.querySelectorAll(`.${this.config.classNames.highlightedState}`)).forEach(e=>{e.classList.remove(this.config.classNames.highlightedState),e.setAttribute("aria-selected","false")}),i?this._highlightPosition=t.indexOf(i):(i=t.length>this._highlightPosition?t[this._highlightPosition]:t[t.length-1],i||(i=t[0])),i.classList.add(this.config.classNames.highlightedState),i.setAttribute("aria-selected","true"),this.passedElement.triggerEvent(l,{el:i}),this.dropdown.isActive&&(this.input.setActiveDescendant(i.id),this.containerOuter.setActiveDescendant(i.id))}_addItem({value:e,label:t=null,choiceId:i=-1,groupId:s=-1,customProperties:n={},placeholder:o=!1,keyCode:r=-1}){let l="string"==typeof e?e.trim():e;const{items:c}=this._store,d=t||l,h=i||-1,u=s>=0?this._store.getGroupById(s):null,p=c?c.length+1:1;this.config.prependValue&&(l=this.config.prependValue+l.toString()),this.config.appendValue&&(l+=this.config.appendValue.toString()),this._store.dispatch((({value:e,label:t,id:i,choiceId:s,groupId:n,customProperties:a,placeholder:o,keyCode:r})=>({type:m,value:e,label:t,id:i,choiceId:s,groupId:n,customProperties:a,placeholder:o,keyCode:r}))({value:l,label:d,id:p,choiceId:h,groupId:s,customProperties:n,placeholder:o,keyCode:r})),this._isSelectOneElement&&this.removeActiveItems(p),this.passedElement.triggerEvent(a,{id:p,value:l,label:d,customProperties:n,groupValue:u&&u.value?u.value:null,keyCode:r})}_removeItem(e){const{id:t,value:i,label:s,customProperties:n,choiceId:a,groupId:r}=e,l=r&&r>=0?this._store.getGroupById(r):null;t&&a&&(this._store.dispatch(((e,t)=>({type:f,id:e,choiceId:t}))(t,a)),this.passedElement.triggerEvent(o,{id:t,value:i,label:s,customProperties:n,groupValue:l&&l.value?l.value:null}))}_addChoice({value:e,label:t=null,isSelected:i=!1,isDisabled:s=!1,groupId:n=-1,customProperties:a={},placeholder:o=!1,keyCode:r=-1}){if(null==e)return;const{choices:l}=this._store,d=t||e,h=l?l.length+1:1,u=`${this._baseId}-${this._idNames.itemChoice}-${h}`;this._store.dispatch((({value:e,label:t,id:i,groupId:s,disabled:n,elementId:a,customProperties:o,placeholder:r,keyCode:l})=>({type:c,value:e,label:t,id:i,groupId:s,disabled:n,elementId:a,customProperties:o,placeholder:r,keyCode:l}))({id:h,groupId:n,elementId:u,value:e,label:d,disabled:s,customProperties:a,placeholder:o,keyCode:r})),i&&this._addItem({value:e,label:d,choiceId:h,customProperties:a,placeholder:o,keyCode:r})}_addGroup({group:e,id:t,valueKey:i="value",labelKey:s="label"}){const n=axTypeIs("Object",e)?e.choices:Array.from(e.getElementsByTagName("OPTION")),a=t||Math.floor((new Date).valueOf()*Math.random()),o=!!e.disabled&&e.disabled;if(n){this._store.dispatch(M({value:e.label,id:a,active:!0,disabled:o}));const t=e=>{const t=e.disabled||e.parentNode&&e.parentNode.disabled;this._addChoice({value:e[i],label:axTypeIs("Object",e)?e[s]:e.innerHTML,isSelected:e.selected,isDisabled:t,groupId:a,customProperties:e.customProperties,placeholder:e.placeholder})};n.forEach(t)}else this._store.dispatch(M({value:e.label,id:e.id,active:!1,disabled:e.disabled}))}_getTemplate(e,...t){return this._templates[e].call(this,this.config,...t)}_createTemplates(){const{callbackOnCreateTemplates:e}=this.config;let t={};e&&"function"==typeof e&&(t=e.call(this,T)),this._templates=deepmerge(H,t)}_createElements(){this.containerOuter=new L({element:this._getTemplate("containerOuter",this._direction,this._isSelectElement,this._isSelectOneElement,this.config.searchEnabled,this.passedElement.element.type,this.config.labelId),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.containerInner=new L({element:this._getTemplate("containerInner"),classNames:this.config.classNames,type:this.passedElement.element.type,position:this.config.position}),this.input=new A({element:this._getTemplate("input",this._placeholderValue),classNames:this.config.classNames,type:this.passedElement.element.type,preventPaste:!this.config.paste}),this.choiceList=new _({element:this._getTemplate("choiceList",this._isSelectOneElement)}),this.itemList=new _({element:this._getTemplate("itemList",this._isSelectOneElement)}),this.dropdown=new D({element:this._getTemplate("dropdown"),classNames:this.config.classNames,type:this.passedElement.element.type})}_createStructure(){this.passedElement.conceal(),this.containerInner.wrap(this.passedElement.element),this.containerOuter.wrap(this.containerInner.element),this._isSelectOneElement?this.input.placeholder=this.config.searchPlaceholderValue||"":this._placeholderValue&&(this.input.placeholder=this._placeholderValue,this.input.setWidth()),this.containerOuter.element.appendChild(this.containerInner.element),this.containerOuter.element.appendChild(this.dropdown.element),this.containerInner.element.appendChild(this.itemList.element),this._isTextElement||this.dropdown.element.appendChild(this.choiceList.element),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element),this._isSelectElement&&(this._highlightPosition=0,this._isSearching=!1,this._startLoading(),this._presetGroups.length?this._addPredefinedGroups(this._presetGroups):this._addPredefinedChoices(this._presetChoices),this._stopLoading()),this.config.width?this.containerOuter.element.style.width=this.config.width:this.origElem.style&&this.origElem.style.width&&(this.containerOuter.element.style.width=this.origElem.style.width),this._isTextElement&&this._addPredefinedItems(this._presetItems),this._isSelectOneElement?this.config.searchEnabled&&this.dropdown.element.insertBefore(this.input.element,this.dropdown.element.firstChild):this.containerInner.element.appendChild(this.input.element)}_addPredefinedGroups(e){const t=this.passedElement.placeholderOption;t&&t.parentNode&&"SELECT"===t.parentNode.tagName&&this._addChoice({value:t.value,label:t.innerHTML,isSelected:t.selected,isDisabled:t.disabled,placeholder:!0}),e.forEach(e=>this._addGroup({group:e,id:e.id||null}))}_addPredefinedChoices(e){this.config.shouldSort&&e.sort(this.config.sorter);const t=e.some(e=>e.selected),i=e.findIndex(e=>void 0===e.disabled||!e.disabled);e.forEach((e,s)=>{const{value:n="",label:a,customProperties:o,placeholder:r}=e;if(this._isSelectElement)if(e.choices)this._addGroup({group:e,id:e.id||null});else{const l=!!(this._isSelectOneElement&&!t&&s===i)||e.selected,c=e.disabled;this._addChoice({value:n,label:a,isSelected:!!l,isDisabled:!!c,placeholder:!!r,customProperties:o})}else this._addChoice({value:n,label:a,isSelected:!!e.selected,isDisabled:!!e.disabled,placeholder:!!e.placeholder,customProperties:o})})}_addPredefinedItems(e){e.forEach(e=>{"object"==typeof e&&e.value&&this._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}),"string"==typeof e&&this._addItem({value:e})})}_setChoiceOrItem(e){({object:()=>{e.value&&(this._isTextElement?this._addItem({value:e.value,label:e.label,choiceId:e.id,customProperties:e.customProperties,placeholder:e.placeholder}):this._addChoice({value:e.value,label:e.label,isSelected:!0,isDisabled:!1,customProperties:e.customProperties,placeholder:e.placeholder}))},string:()=>{this._isTextElement?this._addItem({value:e}):this._addChoice({value:e,label:e,isSelected:!0,isDisabled:!1})}})[axType(e).toLowerCase()]()}_findAndSelectChoiceByValue(e){const{choices:t}=this._store,i=t.find(t=>this.config.valueComparer(t.value,e));i&&!i.selected&&this._addItem({value:i.value,label:i.label,choiceId:i.id,groupId:i.groupId,customProperties:i.customProperties,placeholder:i.placeholder,keyCode:i.keyCode})}_generatePlaceholderValue(){if(this._isSelectElement&&this.passedElement.placeholderOption){const{placeholderOption:e}=this.passedElement;return e?e.text:null}const{placeholder:e,placeholderValue:t}=this.config,{element:{dataset:i}}=this.passedElement;if(e){if(t)return t;if(i.placeholder)return i.placeholder}return null}}return V}));
-/*!
- * 鎻掍欢锛氭煡鐪嬫洿澶氾紱浣跨敤鏂规硶锛歯ew axDropdown('#id',{鍙傛暟})
- */
-class axDropdown{constructor(e,t){this.options=axExtend({content:"",arrow:!0,padding:!1,size:"sm",width:"",placement:"bottom",trigger:"click",break:!0,node:"a",ellipsis:!0,theme:""},t,e);let i=this;this.button=axIdToDom(e),this.content="";axTypeIs("Array",this.options.content)?this.content=function(e){let t="string"==typeof e?JSON.parse(e):e,s=axAddElem("div");return t.forEach((e,n)=>{let a="";a="a"==i.options.node?axAddElem(i.options.node,{class:"ax-info-block",href:e.link?e.link:"##",target:e.target?e.target:"_blank"},'<div class="ax-row"><div class="ax-col"></div></div>'):axAddElem(i.options.node,{class:"ax-info-block"},'<div class="ax-row"><div class="ax-col"></div></div>'),e.className&&a.classList.add(e.className),i.options.ellipsis?"a"!=i.options.node&&e.link?a.querySelector(".ax-col").appendChild(axAddElem("a",{class:"ax-ell",href:e.link,target:e.target?e.target:"_blank"},e.name)):a.querySelector(".ax-col").appendChild(axAddElem("span",{class:"ax-ell"},e.name)):a.querySelector(".ax-col").textContent=e.name,e.icon?a.querySelector(".ax-col").insertAdjacentElement("beforebegin",axAddElem("span",{class:"ax-icon ax-iconfont "+e.icon})):e.head&&a.querySelector(".ax-col").insertAdjacentElement("beforebegin",axAddElem("span",{class:"ax-head",style:"background-image:url("+e.head+");"})),e.suffix&&a.querySelector(".ax-col").insertAdjacentElement("afterend",axAddElem("span",{class:"ax-arrow"},e.suffix)),s.appendChild(a),i.options.break&&t.length!=n+1&&a.insertAdjacentHTML("afterend",'<div class="ax-break-line"></div>')}),s}(this.options.content):axTypeIs("String",this.options.content)&&(this.content=this.options.content),this.init()}init(){return this.popup=new axPopup(this.button,{padding:this.options.padding,arrow:this.options.arrow,in:"slideDown",out:"slideUp",size:this.options.size,width:this.options.width,trigger:this.options.trigger,placement:this.options.placement,theme:this.options.theme,content:this.content,footerShow:!1,close:!1}),axTypeIs("Array",this.options.content)&&(this.popup.body.innerHTML=this.content.innerHTML,this.popup.wrapperHeight=axArrHeight(this.popup.wrapper).height),this}}document.querySelectorAll("[axDropdown]").forEach(e=>{new axDropdown(e)});
-/*!
-* 鎻掍欢锛氳〃鍗曟暟閲忔杩涘鍑忥紱浣跨敤鏂规硶锛歯ew axAmount('#id',{鍙傛暟})
-*/
-const axAmounts=[];class axAmount{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({value:"",min:"",max:"",step:1,precision:0,rule:"",disabled:!1,increase:!0,decrease:!0,cookie:""},t,this.targetDom);this.handlers={},this.increase=this.targetDom.querySelector("[increase]"),this.decrease=this.targetDom.querySelector("[decrease]"),this.input=this.targetDom.querySelector("input"),this.targetDom.getAttribute("axAmount")?this.referName=this.targetDom.getAttribute("axAmount"):this.referName="",this.init()}init(){let e=this;switch(this.options.rule){case"currency":this.options.min=0,this.options.max=null,this.options.step=.01,this.options.precision=2;break;case"quantity":this.options.min=1,this.options.max=999,this.options.step=1,this.options.precision=0;break;case"percent":this.options.min=0,this.options.max=100,this.options.step=1,this.options.precision=0;break;case"month":this.options.min=1,this.options.max=12,this.options.step=1,this.options.precision=0;break;case"day":this.options.min=1,this.options.max=31,this.options.step=1,this.options.precision=0;break;case"hour":this.options.min=0,this.options.max=24,this.options.step=1,this.options.precision=0;break;case"minute":case"second":this.options.min=0,this.options.max=59,this.options.step=1,this.options.precision=0}this.options.cookie&&(this.options.value=Cookies.get(this.options.cookie)),this.options.value&&(this.options.min&&this.options.value<this.options.min?this.options.value=this.options.min:this.options.max&&this.options.value>this.options.max&&(this.options.value=this.options.max),this.input.value=this.options.value),this.options.min&&this.options.min>Number(e.input.value)&&(this.input.value=this.options.min),this.options.max&&this.options.max<Number(e.input.value)&&(this.input.value=this.options.max),this.options.disabled&&(this.input.setAttribute("disabled","true"),this.increase.setAttribute("diabled","true"),this.decrease.setAttribute("diabled","true")),this.options.increase||this.increase.setAttribute("diabled","true"),this.options.decrease||this.decrease.setAttribute("diabled","true");let t=!0,i=!0;this.eventIncrease=function(){i||(e.options.decreae=!0,e.decrease.removeAttribute("disabled"));let s=Number(e.input.value),n=Number(e.input.value);""===e.options.max?s+=e.options.step:""!==e.options.max&&s<e.options.max&&(s+=e.options.step),""!==e.options.max&&s+e.options.step>e.options.max&&(e.options.increae=!1,e.increase.setAttribute("disabled","true"),t=!1,"maxed"in e.handlers&&e.emit("maxed","")),e.input.value=s.toFixed(e.options.precision),e.input.value>n&&"changed"in e.handlers&&e.emit("changed",n,e.input.value),e.options.cookie&&Cookies.set(e.options.cookie,Number(e.input.value),{expires:365e3,path:"/"})},this.eventDecrease=function(){t||(e.options.increae=!0,e.increase.removeAttribute("disabled"));let s=Number(e.input.value),n=Number(e.input.value);""===e.options.min?s-=e.options.step:""!==e.options.min&&s>e.options.min&&(s-=e.options.step),""!==e.options.min&&s-e.options.step<e.options.min&&(e.options.decreae=!1,e.decrease.setAttribute("disabled","true"),i=!1,"mined"in e.handlers&&e.emit("mined","")),e.input.value=s.toFixed(e.options.precision),e.input.value<n&&"changed"in e.handlers&&e.emit("changed",n,e.input.value),e.options.cookie&&Cookies.set(e.options.cookie,Number(e.input.value),{expires:365e3,path:"/"})},this.eventKey=function(t){"38"==t.keyCode||"39"==t.keyCode?e.eventIncrease():"37"!=t.keyCode&&"40"!=t.keyCode||e.eventDecrease()},this.options.disabled||this.input.hasAttribute("disabled")?(this.increase.removeEventListener("click",this.eventIncrease,!1),this.decrease.removeEventListener("click",this.eventDecrease,!1)):(!this.options.increase||this.increase.hasAttribute("disabled")?this.increase.removeEventListener("click",this.eventIncrease,!1):(this.increase.addEventListener("click",this.eventIncrease,!1),this.input.addEventListener("keydown",this.eventKey,!1)),!this.options.decrease||this.decrease.hasAttribute("disabled")?this.decrease.removeEventListener("click",this.eventdecrease,!1):(this.decrease.addEventListener("click",this.eventDecrease,!1),this.input.addEventListener("keydown",this.eventKey,!1))),this.referName&&(axIsEmpty(axAmounts)?axAmounts.push({name:this.referName,instance:this}):axAmounts.some(e=>e.name==this.referName)||axAmounts.push({name:this.referName,instance:this}))}update(e,t){return this.options=axExtend(this.options,e),"updated"in this.handlers&&this.emit("updated",""),t&&t.call(this),this}destroy(e){this.input.removeAttribute("disabled"),this.increase.removeAttribute("disabled"),this.decrease.removeAttribute("disabled"),this.input.removeEventListener("keydown",this.eventKey,!1),this.increase.removeEventListener("click",this.eventIncrease,!1),this.decrease.removeEventListener("click",this.eventDecrease,!1),e&&e.call(this)}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}
-/*!
- * QRCode.js 1.0.0 from https://github.com/davidshimjs/qrcodejs | AXUI淇浜嗕弗鏍兼ā寮忎笅鎶ラ敊闂
- */
-var QRCode;document.querySelectorAll("[axAmount]").forEach(e=>{new axAmount(e)}),function(){function e(e){this.mode=i.MODE_8BIT_BYTE,this.data=e,this.parsedData=[];for(var t=0,s=this.data.length;t<s;t++){var n=[],a=this.data.charCodeAt(t);a>65536?(n[0]=240|(1835008&a)>>>18,n[1]=128|(258048&a)>>>12,n[2]=128|(4032&a)>>>6,n[3]=128|63&a):a>2048?(n[0]=224|(61440&a)>>>12,n[1]=128|(4032&a)>>>6,n[2]=128|63&a):a>128?(n[0]=192|(1984&a)>>>6,n[1]=128|63&a):n[0]=a,this.parsedData.push(n)}this.parsedData=Array.prototype.concat.apply([],this.parsedData),this.parsedData.length!=this.data.length&&(this.parsedData.unshift(191),this.parsedData.unshift(187),this.parsedData.unshift(239))}function t(e,t){this.typeNumber=e,this.errorCorrectLevel=t,this.modules=null,this.moduleCount=0,this.dataCache=null,this.dataList=[]}e.prototype={getLength:function(e){return this.parsedData.length},write:function(e){for(var t=0,i=this.parsedData.length;t<i;t++)e.put(this.parsedData[t],8)}},t.prototype={addData:function(t){var i=new e(t);this.dataList.push(i),this.dataCache=null},isDark:function(e,t){if(e<0||this.moduleCount<=e||t<0||this.moduleCount<=t)throw new Error(e+","+t);return this.modules[e][t]},getModuleCount:function(){return this.moduleCount},make:function(){this.makeImpl(!1,this.getBestMaskPattern())},makeImpl:function(e,i){this.moduleCount=4*this.typeNumber+17,this.modules=new Array(this.moduleCount);for(var s=0;s<this.moduleCount;s++){this.modules[s]=new Array(this.moduleCount);for(var n=0;n<this.moduleCount;n++)this.modules[s][n]=null}this.setupPositionProbePattern(0,0),this.setupPositionProbePattern(this.moduleCount-7,0),this.setupPositionProbePattern(0,this.moduleCount-7),this.setupPositionAdjustPattern(),this.setupTimingPattern(),this.setupTypeInfo(e,i),this.typeNumber>=7&&this.setupTypeNumber(e),null==this.dataCache&&(this.dataCache=t.createData(this.typeNumber,this.errorCorrectLevel,this.dataList)),this.mapData(this.dataCache,i)},setupPositionProbePattern:function(e,t){for(var i=-1;i<=7;i++)if(!(e+i<=-1||this.moduleCount<=e+i))for(var s=-1;s<=7;s++)t+s<=-1||this.moduleCount<=t+s||(this.modules[e+i][t+s]=0<=i&&i<=6&&(0==s||6==s)||0<=s&&s<=6&&(0==i||6==i)||2<=i&&i<=4&&2<=s&&s<=4)},getBestMaskPattern:function(){for(var e=0,t=0,i=0;i<8;i++){this.makeImpl(!0,i);var s=n.getLostPoint(this);(0==i||e>s)&&(e=s,t=i)}return t},createMovieClip:function(e,t,i){var s=e.createEmptyMovieClip(t,i);this.make();for(var n=0;n<this.modules.length;n++)for(var a=1*n,o=0;o<this.modules[n].length;o++){var r=1*o;this.modules[n][o]&&(s.beginFill(0,100),s.moveTo(r,a),s.lineTo(r+1,a),s.lineTo(r+1,a+1),s.lineTo(r,a+1),s.endFill())}return s},setupTimingPattern:function(){for(var e=8;e<this.moduleCount-8;e++)null==this.modules[e][6]&&(this.modules[e][6]=e%2==0);for(var t=8;t<this.moduleCount-8;t++)null==this.modules[6][t]&&(this.modules[6][t]=t%2==0)},setupPositionAdjustPattern:function(){for(var e=n.getPatternPosition(this.typeNumber),t=0;t<e.length;t++)for(var i=0;i<e.length;i++){var s=e[t],a=e[i];if(null==this.modules[s][a])for(var o=-2;o<=2;o++)for(var r=-2;r<=2;r++)this.modules[s+o][a+r]=-2==o||2==o||-2==r||2==r||0==o&&0==r}},setupTypeNumber:function(e){for(var t=n.getBCHTypeNumber(this.typeNumber),i=0;i<18;i++){var s=!e&&1==(t>>i&1);this.modules[Math.floor(i/3)][i%3+this.moduleCount-8-3]=s}for(i=0;i<18;i++){s=!e&&1==(t>>i&1);this.modules[i%3+this.moduleCount-8-3][Math.floor(i/3)]=s}},setupTypeInfo:function(e,t){for(var i=this.errorCorrectLevel<<3|t,s=n.getBCHTypeInfo(i),a=0;a<15;a++){var o=!e&&1==(s>>a&1);a<6?this.modules[a][8]=o:a<8?this.modules[a+1][8]=o:this.modules[this.moduleCount-15+a][8]=o}for(a=0;a<15;a++){o=!e&&1==(s>>a&1);a<8?this.modules[8][this.moduleCount-a-1]=o:a<9?this.modules[8][15-a-1+1]=o:this.modules[8][15-a-1]=o}this.modules[this.moduleCount-8][8]=!e},mapData:function(e,t){for(var i=-1,s=this.moduleCount-1,a=7,o=0,r=this.moduleCount-1;r>0;r-=2)for(6==r&&r--;;){for(var l=0;l<2;l++)if(null==this.modules[s][r-l]){var c=!1;o<e.length&&(c=1==(e[o]>>>a&1)),n.getMask(t,s,r-l)&&(c=!c),this.modules[s][r-l]=c,-1==--a&&(o++,a=7)}if((s+=i)<0||this.moduleCount<=s){s-=i,i=-i;break}}}},t.PAD0=236,t.PAD1=17,t.createData=function(e,i,s){for(var a=l.getRSBlocks(e,i),o=new c,r=0;r<s.length;r++){var d=s[r];o.put(d.mode,4),o.put(d.getLength(),n.getLengthInBits(d.mode,e)),d.write(o)}var h=0;for(r=0;r<a.length;r++)h+=a[r].dataCount;if(o.getLengthInBits()>8*h)throw new Error("code length overflow. ("+o.getLengthInBits()+">"+8*h+")");for(o.getLengthInBits()+4<=8*h&&o.put(0,4);o.getLengthInBits()%8!=0;)o.putBit(!1);for(;!(o.getLengthInBits()>=8*h||(o.put(t.PAD0,8),o.getLengthInBits()>=8*h));)o.put(t.PAD1,8);return t.createBytes(o,a)},t.createBytes=function(e,t){for(var i=0,s=0,a=0,o=new Array(t.length),l=new Array(t.length),c=0;c<t.length;c++){var d=t[c].dataCount,h=t[c].totalCount-d;s=Math.max(s,d),a=Math.max(a,h),o[c]=new Array(d);for(var u=0;u<o[c].length;u++)o[c][u]=255&e.buffer[u+i];i+=d;var p=n.getErrorCorrectPolynomial(h),m=new r(o[c],p.getLength()-1).mod(p);l[c]=new Array(p.getLength()-1);for(u=0;u<l[c].length;u++){var f=u+m.getLength()-l[c].length;l[c][u]=f>=0?m.get(f):0}}var g=0;for(u=0;u<t.length;u++)g+=t[u].totalCount;var v=new Array(g),x=0;for(u=0;u<s;u++)for(c=0;c<t.length;c++)u<o[c].length&&(v[x++]=o[c][u]);for(u=0;u<a;u++)for(c=0;c<t.length;c++)u<l[c].length&&(v[x++]=l[c][u]);return v};for(var i={MODE_NUMBER:1,MODE_ALPHA_NUM:2,MODE_8BIT_BYTE:4,MODE_KANJI:8},s={L:1,M:0,Q:3,H:2},n={PATTERN_POSITION_TABLE:[[],[6,18],[6,22],[6,26],[6,30],[6,34],[6,22,38],[6,24,42],[6,26,46],[6,28,50],[6,30,54],[6,32,58],[6,34,62],[6,26,46,66],[6,26,48,70],[6,26,50,74],[6,30,54,78],[6,30,56,82],[6,30,58,86],[6,34,62,90],[6,28,50,72,94],[6,26,50,74,98],[6,30,54,78,102],[6,28,54,80,106],[6,32,58,84,110],[6,30,58,86,114],[6,34,62,90,118],[6,26,50,74,98,122],[6,30,54,78,102,126],[6,26,52,78,104,130],[6,30,56,82,108,134],[6,34,60,86,112,138],[6,30,58,86,114,142],[6,34,62,90,118,146],[6,30,54,78,102,126,150],[6,24,50,76,102,128,154],[6,28,54,80,106,132,158],[6,32,58,84,110,136,162],[6,26,54,82,110,138,166],[6,30,58,86,114,142,170]],G15:1335,G18:7973,G15_MASK:21522,getBCHTypeInfo:function(e){for(var t=e<<10;n.getBCHDigit(t)-n.getBCHDigit(n.G15)>=0;)t^=n.G15<<n.getBCHDigit(t)-n.getBCHDigit(n.G15);return(e<<10|t)^n.G15_MASK},getBCHTypeNumber:function(e){for(var t=e<<12;n.getBCHDigit(t)-n.getBCHDigit(n.G18)>=0;)t^=n.G18<<n.getBCHDigit(t)-n.getBCHDigit(n.G18);return e<<12|t},getBCHDigit:function(e){for(var t=0;0!=e;)t++,e>>>=1;return t},getPatternPosition:function(e){return n.PATTERN_POSITION_TABLE[e-1]},getMask:function(e,t,i){switch(e){case 0:return(t+i)%2==0;case 1:return t%2==0;case 2:return i%3==0;case 3:return(t+i)%3==0;case 4:return(Math.floor(t/2)+Math.floor(i/3))%2==0;case 5:return t*i%2+t*i%3==0;case 6:return(t*i%2+t*i%3)%2==0;case 7:return(t*i%3+(t+i)%2)%2==0;default:throw new Error("bad maskPattern:"+e)}},getErrorCorrectPolynomial:function(e){for(var t=new r([1],0),i=0;i<e;i++)t=t.multiply(new r([1,a.gexp(i)],0));return t},getLengthInBits:function(e,t){if(1<=t&&t<10)switch(e){case i.MODE_NUMBER:return 10;case i.MODE_ALPHA_NUM:return 9;case i.MODE_8BIT_BYTE:case i.MODE_KANJI:return 8;default:throw new Error("mode:"+e)}else if(t<27)switch(e){case i.MODE_NUMBER:return 12;case i.MODE_ALPHA_NUM:return 11;case i.MODE_8BIT_BYTE:return 16;case i.MODE_KANJI:return 10;default:throw new Error("mode:"+e)}else{if(!(t<41))throw new Error("type:"+t);switch(e){case i.MODE_NUMBER:return 14;case i.MODE_ALPHA_NUM:return 13;case i.MODE_8BIT_BYTE:return 16;case i.MODE_KANJI:return 12;default:throw new Error("mode:"+e)}}},getLostPoint:function(e){for(var t=e.getModuleCount(),i=0,s=0;s<t;s++)for(var n=0;n<t;n++){for(var a=0,o=e.isDark(s,n),r=-1;r<=1;r++)if(!(s+r<0||t<=s+r))for(var l=-1;l<=1;l++)n+l<0||t<=n+l||0==r&&0==l||o==e.isDark(s+r,n+l)&&a++;a>5&&(i+=3+a-5)}for(s=0;s<t-1;s++)for(n=0;n<t-1;n++){var c=0;e.isDark(s,n)&&c++,e.isDark(s+1,n)&&c++,e.isDark(s,n+1)&&c++,e.isDark(s+1,n+1)&&c++,0!=c&&4!=c||(i+=3)}for(s=0;s<t;s++)for(n=0;n<t-6;n++)e.isDark(s,n)&&!e.isDark(s,n+1)&&e.isDark(s,n+2)&&e.isDark(s,n+3)&&e.isDark(s,n+4)&&!e.isDark(s,n+5)&&e.isDark(s,n+6)&&(i+=40);for(n=0;n<t;n++)for(s=0;s<t-6;s++)e.isDark(s,n)&&!e.isDark(s+1,n)&&e.isDark(s+2,n)&&e.isDark(s+3,n)&&e.isDark(s+4,n)&&!e.isDark(s+5,n)&&e.isDark(s+6,n)&&(i+=40);var d=0;for(n=0;n<t;n++)for(s=0;s<t;s++)e.isDark(s,n)&&d++;return i+Math.abs(100*d/t/t-50)/5*10}},a={glog:function(e){if(e<1)throw new Error("glog("+e+")");return a.LOG_TABLE[e]},gexp:function(e){for(;e<0;)e+=255;for(;e>=256;)e-=255;return a.EXP_TABLE[e]},EXP_TABLE:new Array(256),LOG_TABLE:new Array(256)},o=0;o<8;o++)a.EXP_TABLE[o]=1<<o;for(o=8;o<256;o++)a.EXP_TABLE[o]=a.EXP_TABLE[o-4]^a.EXP_TABLE[o-5]^a.EXP_TABLE[o-6]^a.EXP_TABLE[o-8];for(o=0;o<255;o++)a.LOG_TABLE[a.EXP_TABLE[o]]=o;function r(e,t){if(null==e.length)throw new Error(e.length+"/"+t);for(var i=0;i<e.length&&0==e[i];)i++;this.num=new Array(e.length-i+t);for(var s=0;s<e.length-i;s++)this.num[s]=e[s+i]}function l(e,t){this.totalCount=e,this.dataCount=t}function c(){this.buffer=[],this.length=0}r.prototype={get:function(e){return this.num[e]},getLength:function(){return this.num.length},multiply:function(e){for(var t=new Array(this.getLength()+e.getLength()-1),i=0;i<this.getLength();i++)for(var s=0;s<e.getLength();s++)t[i+s]^=a.gexp(a.glog(this.get(i))+a.glog(e.get(s)));return new r(t,0)},mod:function(e){if(this.getLength()-e.getLength()<0)return this;for(var t=a.glog(this.get(0))-a.glog(e.get(0)),i=new Array(this.getLength()),s=0;s<this.getLength();s++)i[s]=this.get(s);for(s=0;s<e.getLength();s++)i[s]^=a.gexp(a.glog(e.get(s))+t);return new r(i,0).mod(e)}},l.RS_BLOCK_TABLE=[[1,26,19],[1,26,16],[1,26,13],[1,26,9],[1,44,34],[1,44,28],[1,44,22],[1,44,16],[1,70,55],[1,70,44],[2,35,17],[2,35,13],[1,100,80],[2,50,32],[2,50,24],[4,25,9],[1,134,108],[2,67,43],[2,33,15,2,34,16],[2,33,11,2,34,12],[2,86,68],[4,43,27],[4,43,19],[4,43,15],[2,98,78],[4,49,31],[2,32,14,4,33,15],[4,39,13,1,40,14],[2,121,97],[2,60,38,2,61,39],[4,40,18,2,41,19],[4,40,14,2,41,15],[2,146,116],[3,58,36,2,59,37],[4,36,16,4,37,17],[4,36,12,4,37,13],[2,86,68,2,87,69],[4,69,43,1,70,44],[6,43,19,2,44,20],[6,43,15,2,44,16],[4,101,81],[1,80,50,4,81,51],[4,50,22,4,51,23],[3,36,12,8,37,13],[2,116,92,2,117,93],[6,58,36,2,59,37],[4,46,20,6,47,21],[7,42,14,4,43,15],[4,133,107],[8,59,37,1,60,38],[8,44,20,4,45,21],[12,33,11,4,34,12],[3,145,115,1,146,116],[4,64,40,5,65,41],[11,36,16,5,37,17],[11,36,12,5,37,13],[5,109,87,1,110,88],[5,65,41,5,66,42],[5,54,24,7,55,25],[11,36,12],[5,122,98,1,123,99],[7,73,45,3,74,46],[15,43,19,2,44,20],[3,45,15,13,46,16],[1,135,107,5,136,108],[10,74,46,1,75,47],[1,50,22,15,51,23],[2,42,14,17,43,15],[5,150,120,1,151,121],[9,69,43,4,70,44],[17,50,22,1,51,23],[2,42,14,19,43,15],[3,141,113,4,142,114],[3,70,44,11,71,45],[17,47,21,4,48,22],[9,39,13,16,40,14],[3,135,107,5,136,108],[3,67,41,13,68,42],[15,54,24,5,55,25],[15,43,15,10,44,16],[4,144,116,4,145,117],[17,68,42],[17,50,22,6,51,23],[19,46,16,6,47,17],[2,139,111,7,140,112],[17,74,46],[7,54,24,16,55,25],[34,37,13],[4,151,121,5,152,122],[4,75,47,14,76,48],[11,54,24,14,55,25],[16,45,15,14,46,16],[6,147,117,4,148,118],[6,73,45,14,74,46],[11,54,24,16,55,25],[30,46,16,2,47,17],[8,132,106,4,133,107],[8,75,47,13,76,48],[7,54,24,22,55,25],[22,45,15,13,46,16],[10,142,114,2,143,115],[19,74,46,4,75,47],[28,50,22,6,51,23],[33,46,16,4,47,17],[8,152,122,4,153,123],[22,73,45,3,74,46],[8,53,23,26,54,24],[12,45,15,28,46,16],[3,147,117,10,148,118],[3,73,45,23,74,46],[4,54,24,31,55,25],[11,45,15,31,46,16],[7,146,116,7,147,117],[21,73,45,7,74,46],[1,53,23,37,54,24],[19,45,15,26,46,16],[5,145,115,10,146,116],[19,75,47,10,76,48],[15,54,24,25,55,25],[23,45,15,25,46,16],[13,145,115,3,146,116],[2,74,46,29,75,47],[42,54,24,1,55,25],[23,45,15,28,46,16],[17,145,115],[10,74,46,23,75,47],[10,54,24,35,55,25],[19,45,15,35,46,16],[17,145,115,1,146,116],[14,74,46,21,75,47],[29,54,24,19,55,25],[11,45,15,46,46,16],[13,145,115,6,146,116],[14,74,46,23,75,47],[44,54,24,7,55,25],[59,46,16,1,47,17],[12,151,121,7,152,122],[12,75,47,26,76,48],[39,54,24,14,55,25],[22,45,15,41,46,16],[6,151,121,14,152,122],[6,75,47,34,76,48],[46,54,24,10,55,25],[2,45,15,64,46,16],[17,152,122,4,153,123],[29,74,46,14,75,47],[49,54,24,10,55,25],[24,45,15,46,46,16],[4,152,122,18,153,123],[13,74,46,32,75,47],[48,54,24,14,55,25],[42,45,15,32,46,16],[20,147,117,4,148,118],[40,75,47,7,76,48],[43,54,24,22,55,25],[10,45,15,67,46,16],[19,148,118,6,149,119],[18,75,47,31,76,48],[34,54,24,34,55,25],[20,45,15,61,46,16]],l.getRSBlocks=function(e,t){var i=l.getRsBlockTable(e,t);if(null==i)throw new Error("bad rs block @ typeNumber:"+e+"/errorCorrectLevel:"+t);for(var s=i.length/3,n=[],a=0;a<s;a++)for(var o=i[3*a+0],r=i[3*a+1],c=i[3*a+2],d=0;d<o;d++)n.push(new l(r,c));return n},l.getRsBlockTable=function(e,t){switch(t){case s.L:return l.RS_BLOCK_TABLE[4*(e-1)+0];case s.M:return l.RS_BLOCK_TABLE[4*(e-1)+1];case s.Q:return l.RS_BLOCK_TABLE[4*(e-1)+2];case s.H:return l.RS_BLOCK_TABLE[4*(e-1)+3];default:return}},c.prototype={get:function(e){var t=Math.floor(e/8);return 1==(this.buffer[t]>>>7-e%8&1)},put:function(e,t){for(var i=0;i<t;i++)this.putBit(1==(e>>>t-i-1&1))},getLengthInBits:function(){return this.length},putBit:function(e){var t=Math.floor(this.length/8);this.buffer.length<=t&&this.buffer.push(0),e&&(this.buffer[t]|=128>>>this.length%8),this.length++}};var d=[[17,14,11,7],[32,26,20,14],[53,42,32,24],[78,62,46,34],[106,84,60,44],[134,106,74,58],[154,122,86,64],[192,152,108,84],[230,180,130,98],[271,213,151,119],[321,251,177,137],[367,287,203,155],[425,331,241,177],[458,362,258,194],[520,412,292,220],[586,450,322,250],[644,504,364,280],[718,560,394,310],[792,624,442,338],[858,666,482,382],[929,711,509,403],[1003,779,565,439],[1091,857,611,461],[1171,911,661,511],[1273,997,715,535],[1367,1059,751,593],[1465,1125,805,625],[1528,1190,868,658],[1628,1264,908,698],[1732,1370,982,742],[1840,1452,1030,790],[1952,1538,1112,842],[2068,1628,1168,898],[2188,1722,1228,958],[2303,1809,1283,983],[2431,1911,1351,1051],[2563,1989,1423,1093],[2699,2099,1499,1139],[2809,2213,1579,1219],[2953,2331,1663,1273]];function h(){var e=!1,t=navigator.userAgent;if(/android/i.test(t)){e=!0;var i=t.toString().match(/android ([0-9]\.[0-9])/i);i&&i[1]&&(e=parseFloat(i[1]))}return e}var u=function(){var e=function(e,t){this._el=e,this._htOption=t};return e.prototype.draw=function(e){var t=this._htOption,i=this._el,s=e.getModuleCount();Math.floor(t.width/s),Math.floor(t.height/s);function n(e,t){var i=document.createElementNS("http://www.w3.org/2000/svg",e);for(var s in t)t.hasOwnProperty(s)&&i.setAttribute(s,t[s]);return i}this.clear();var a=n("svg",{viewBox:"0 0 "+String(s)+" "+String(s),width:"100%",height:"100%",fill:t.colorLight});a.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink"),i.appendChild(a),a.appendChild(n("rect",{fill:t.colorLight,width:"100%",height:"100%"})),a.appendChild(n("rect",{fill:t.colorDark,width:"1",height:"1",id:"template"}));for(var o=0;o<s;o++)for(var r=0;r<s;r++)if(e.isDark(o,r)){var l=n("use",{x:String(r),y:String(o)});l.setAttributeNS("http://www.w3.org/1999/xlink","href","#template"),a.appendChild(l)}},e.prototype.clear=function(){for(;this._el.hasChildNodes();)this._el.removeChild(this._el.lastChild)},e}(),p="svg"===document.documentElement.tagName.toLowerCase()?u:"undefined"!=typeof CanvasRenderingContext2D?function(){function e(){this._elImage.src=this._elCanvas.toDataURL("image/png"),this._elImage.style.display="block",this._elCanvas.style.display="none"}if(this&&this._android&&this._android<=2.1){var t=1/window.devicePixelRatio,i=CanvasRenderingContext2D.prototype.drawImage;CanvasRenderingContext2D.prototype.drawImage=function(e,s,n,a,o,r,l,c,d){if("nodeName"in e&&/img/i.test(e.nodeName))for(var h=arguments.length-1;h>=1;h--)arguments[h]=arguments[h]*t;else void 0===c&&(arguments[1]*=t,arguments[2]*=t,arguments[3]*=t,arguments[4]*=t);i.apply(this,arguments)}}function s(e,t){var i=this;if(i._fFail=t,i._fSuccess=e,null===i._bSupportDataURI){var s=document.createElement("img"),n=function(){i._bSupportDataURI=!1,i._fFail&&i._fFail.call(i)};return s.onabort=n,s.onerror=n,s.onload=function(){i._bSupportDataURI=!0,i._fSuccess&&i._fSuccess.call(i)},void(s.src="data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==")}!0===i._bSupportDataURI&&i._fSuccess?i._fSuccess.call(i):!1===i._bSupportDataURI&&i._fFail&&i._fFail.call(i)}var n=function(e,t){this._bIsPainted=!1,this._android=h(),this._htOption=t,this._elCanvas=document.createElement("canvas"),this._elCanvas.width=t.width,this._elCanvas.height=t.height,e.appendChild(this._elCanvas),this._el=e,this._oContext=this._elCanvas.getContext("2d"),this._bIsPainted=!1,this._elImage=document.createElement("img"),this._elImage.alt="Scan me!",this._elImage.style.display="none",this._el.appendChild(this._elImage),this._bSupportDataURI=null};return n.prototype.draw=function(e){var t=this._elImage,i=this._oContext,s=this._htOption,n=e.getModuleCount(),a=s.width/n,o=s.height/n,r=Math.round(a),l=Math.round(o);t.style.display="none",this.clear();for(var c=0;c<n;c++)for(var d=0;d<n;d++){var h=e.isDark(c,d),u=d*a,p=c*o;i.strokeStyle=h?s.colorDark:s.colorLight,i.lineWidth=1,i.fillStyle=h?s.colorDark:s.colorLight,i.fillRect(u,p,a,o),i.strokeRect(Math.floor(u)+.5,Math.floor(p)+.5,r,l),i.strokeRect(Math.ceil(u)-.5,Math.ceil(p)-.5,r,l)}this._bIsPainted=!0},n.prototype.makeImage=function(){this._bIsPainted&&s.call(this,e)},n.prototype.isPainted=function(){return this._bIsPainted},n.prototype.clear=function(){this._oContext.clearRect(0,0,this._elCanvas.width,this._elCanvas.height),this._bIsPainted=!1},n.prototype.round=function(e){return e?Math.floor(1e3*e)/1e3:e},n}():function(){var e=function(e,t){this._el=e,this._htOption=t};return e.prototype.draw=function(e){for(var t=this._htOption,i=this._el,s=e.getModuleCount(),n=Math.floor(t.width/s),a=Math.floor(t.height/s),o=['<table style="border:0;border-collapse:collapse;">'],r=0;r<s;r++){o.push("<tr>");for(var l=0;l<s;l++)o.push('<td style="border:0;border-collapse:collapse;padding:0;margin:0;width:'+n+"px;height:"+a+"px;background-color:"+(e.isDark(r,l)?t.colorDark:t.colorLight)+';"></td>');o.push("</tr>")}o.push("</table>"),i.innerHTML=o.join("");var c=i.childNodes[0],d=(t.width-c.offsetWidth)/2,h=(t.height-c.offsetHeight)/2;d>0&&h>0&&(c.style.margin=h+"px "+d+"px")},e.prototype.clear=function(){this._el.innerHTML=""},e}();function m(e,t){for(var i=1,n=function(e){var t=encodeURI(e).toString().replace(/\%[0-9a-fA-F]{2}/g,"a");return t.length+(t.length!=e?3:0)}(e),a=0,o=d.length;a<=o;a++){var r=0;switch(t){case s.L:r=d[a][0];break;case s.M:r=d[a][1];break;case s.Q:r=d[a][2];break;case s.H:r=d[a][3]}if(n<=r)break;i++}if(i>d.length)throw new Error("Too long data");return i}(QRCode=function(e,t){if(this._htOption={width:256,height:256,typeNumber:4,colorDark:"#000000",colorLight:"#ffffff",correctLevel:s.H},"string"==typeof t&&(t={text:t}),t)for(var i in t)this._htOption[i]=t[i];"string"==typeof e&&(e=document.getElementById(e)),this._htOption.useSVG&&(p=u),this._android=h(),this._el=e,this._oQRCode=null,this._oDrawing=new p(this._el,this._htOption),this._htOption.text&&this.makeCode(this._htOption.text)}).prototype.makeCode=function(e){this._oQRCode=new t(m(e,this._htOption.correctLevel),this._htOption.correctLevel),this._oQRCode.addData(e),this._oQRCode.make(),this._el.title=e,this._oDrawing.draw(this._oQRCode),this.makeImage()},QRCode.prototype.makeImage=function(){"function"==typeof this._oDrawing.makeImage&&(!this._android||this._android>=3)&&this._oDrawing.makeImage()},QRCode.prototype.clear=function(){this._oDrawing.clear()},QRCode.CorrectLevel=s}();
-/*!
-* 鎻掍欢锛氶〉闈㈢ぞ浜ゅ垎浜紱浣跨敤鏂规硶锛歯ew axShare('#id',{鍙傛暟})
-*/
-class axShare{constructor(e,t){this.targetDom=axIdToDom(e),this.options=axExtend({source:"",title:"",des:"",url:window.location.href,image:"",key:"",origin:window.location.origin,qrTitle:"<p>鍦ㄥ井淇¢噷鐐瑰嚮鈥滃彂鐜扳�濓紝鍐嶇偣鍑烩�滄壂涓�鎵紝鈥�<br />渚垮彲灏嗘湰鏂囧垎浜嚦鏈嬪弸鍦堛��</p>",qrSize:180,newPage:!0,dialogText:"纭畾鍒嗕韩鏈〉闈紵",onShare:""},t,this.targetDom);this.handlers={},this.options.source||(this.options.source=document.querySelector('meta[name="site"]')||document.title),this.options.title||(this.options.title=document.querySelector('meta[name="title"]')||document.title),this.options.des||(this.options.des=document.querySelector('meta[name="description"]')||""),this.options.image||(this.options.image=(document.images[0]||0).src||""),this.init()}init(){this.shareUrl={qzone:"http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url="+this.options.url+"&title="+this.options.title+"&desc="+this.options.des+"&summary="+this.options.summary+"&site="+this.options.source+"&pics="+this.options.image,youdao:"http://note.youdao.com/memory/?title="+this.options.title+"&pic="+this.options.image+"&summary="+this.options.des+"&url="+this.options.url,qq:"http://connect.qq.com/widget/shareqq/index.html?url="+this.options.url+"&title="+this.options.title+"&source="+this.options.source+"&desc="+this.options.des+"&pics="+this.options.image+"&summary="+this.options.summary,weibo:"https://service.weibo.com/share/share.php?url="+this.options.url+"&title="+this.options.title+"&pic="+this.options.image+"&appkey="+this.options.key,daoban:"http://shuo.douban.com/!service/share?href="+this.options.url+"&name="+this.options.title+"&text="+this.options.des+"&image="+this.options.image+"&starid=0&aid=0&style=11",linkedin:"http://www.linkedin.com/shareArticle?mini=true&ro=true&title="+this.options.title+"&url="+this.options.url+"&summary="+this.options.summary+"&source="+this.options.source+"&armin=armin",facebook:"https://www.facebook.com/sharer/sharer.php?u="+this.options.url,twitter:"https://twitter.com/intent/tweet?text="+this.options.title+"&url="+this.options.url+"&via="+this.options.origin,google:"https://plus.google.com/share?url="+this.options.url,pinterest:"https://www.pinterest.com/pin/create/button/?url="+this.options.url+"&description="+this.options.des+"&media="+this.options.image,tumblr:"https://www.tumblr.com/widgets/share/tool?shareSource=legacy&canonicalUrl=&url="+this.options.url+"&title="+this.options.title};for(let e in this.shareUrl)this.changeHref(e);this.targetDom.querySelector('[share="wechat"]')&&this.createQrcode()}changeHref(e){let t=this,i=this.targetDom.querySelector("[share="+e+"]");i&&(i.hasAttribute("confirm")?i.addEventListener("click",(function(i){axPreventDefault(i),new axDialog({content:t.options.dialogText,footerType:"right",confirm:{callback:function(){t.options.newPage?(window.open(t.shareUrl[e]),this.hide()):window.location.href=t.shareUrl[e],t.options.onShare&&t.options.onShare.call(t,e)}}}).show()}),!1):(this.options.newPage?i.setAttribute("target","_blank"):i.removeAttribute("target"),i.setAttribute("href",this.shareUrl[e]),i.addEventListener("click",i=>{t.options.onShare&&t.options.onShare.call(t,e)},!1)))}createQrcode(){let e=this.targetDom.querySelector('[share="wechat"]');if(0===e.length)return!1;let t=axAddElem("div",{class:"ax-qrcode"}),i=axAddElem("div",{class:"ax-qrcode-body"}),s=axAddElem("div",{class:"ax-qrcode-title"},this.options.qrTitle);new QRCode(i,{text:this.options.url,width:this.options.qrSize,height:this.options.qrSize}),t.appendChild(i),t.appendChild(s),new axPopup(e,{content:t,padding:!0,placement:"bottom",close:!1,footerShow:!1})}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axShare]").forEach(e=>{new axShare(e)});
-/*!
-* 鎻掍欢锛氳〃鍗曟暟閲忔杩涘鍑忥紱浣跨敤鏂规硶锛歯ew axComplete('#id',{鍙傛暟})
-*/
-class axComplete{constructor(e,t){this.options=axExtend({list:"",keys:[],threshold:.6,isCaseSensitive:!1,hasMatches:!0,minLength:1,findAll:!1,template:"",className:"",break:!0,tips:"inside",highlight:!0,rel:"",fill:""},t,e),this.input=axIdToDom(e),this.handlers={},this.rel=this.options.rel?axIdToDom(this.options.rel):"",this.outerDom=axAddElem("div",this.options.className?{class:this.options.className}:{class:"ax-complete"}),this.popup=this.createPopup(),this.popup.content.appendChild(this.outerDom),this.innerDom=axAddElem("div",{class:"ax-complete-list"}),this.outerDom.appendChild(this.innerDom),this.tipsDom=axAddElem("div",{class:"ax-complete-tips"}),this.options.tips?"inline"==this.options.tips?this.input.insertAdjacentElement("afterend",this.tipsDom):"#"==this.options.tips.substr(0,1)?axIdToDom(this.options.tips).appendChild(this.tipsDom):this.outerDom.insertAdjacentElement("afterbegin",this.tipsDom):this.tipsDom.remove(),this.init()}init(){let e=this;if(this.data=[],"string"==typeof this.options.list&&"#"==this.options.list.substr(0,1)?this.data=axListToArr(this.options.list):"string"==typeof this.options.list?this.data=this.options.list.split(","):this.options.list instanceof Array&&(this.data=this.options.list),axIsEmpty(this.data))return!1;if("0"==Object.keys(this.data[0])[0]){let e=[];this.data.forEach(t=>{let i={};i.name=t,e.push(i)}),this.data=e}this.fuseOpt={includeScore:!0},this.fuseOpt.threshold=this.options.threshold,this.fuseOpt.includeMatches=this.options.hasMatches,this.fuseOpt.minMatchCharLength=this.options.minLength,this.fuseOpt.findAllMatches=this.options.findAll,Object.keys(this.data[0])[0]&&axIsEmpty(this.options.keys)?this.fuseOpt.keys=["name"]:Object.keys(this.data[0])[0]&&!axIsEmpty(this.options.keys)&&(this.fuseOpt.keys=this.options.keys),this.initList(),this.fuse=new Fuse(this.data,this.fuseOpt),this.input.addEventListener("input",(function(){e.results=e.fuse.search(this.value.trim()),e.innerDom.innerHTML=e.renderDom(),e.options.tips&&(e.tipsDom.innerHTML=`鍏辨湁${e.results.length}涓粨鏋滅鍚堣姹俙),e.options.highlight&&e.results.forEach((t,i)=>{let s=e.innerDom.querySelectorAll('[role="item"]')[i],n=s.querySelector('[role="name"]').innerHTML;t.matches[0].indices.forEach(e=>{let t=n.substring(e[0],e[1]+1),i=n.split(t).join('<i class="ax-mark">'+t+"</i>");s.querySelector('[role="name"]').innerHTML=i}),s.onclick=function(){e.options.fill&&Object.keys(t.item).indexOf(e.options.fill)>-1?(e.input.value=t.item[e.options.fill],"selected"in e.handlers&&e.emit("selected",t.item[e.options.fill])):(e.input.value=Object.values(t.item)[0],"selected"in e.handlers&&e.emit("selected",Object.values(t.item)[0])),e.popup.hide()}}),this.value||(e.tipsDom.innerHTML="",setTimeout((function(){e.initList()}),50))}),!1)}createPopup(){return new axPopup(this.input,{content:this.outerDom,trigger:"input",padding:!1,placement:"bottom-start",close:!1,footerShow:!1})}renderDom(){let e="";return axIsEmpty(this.results)?this.innerDom.innerHTML="":(this.results.forEach((t,i)=>{e+=axTplEngine(this.createTemplate(),t),this.options.break&&i+1<this.results.length&&(e+='<div class="ax-break-line"></div>')}),this.innerDom.innerHTML=e),this.innerDom.innerHTML}initList(){let e=this;this.innerDom.innerHTML=this.initDom(),this.options.rel&&(this.rel.onclick=function(){e.popup.targetDom.classList.contains("ax-show")?e.popup.hide():e.popup.show()}),this.innerDom.querySelectorAll('[role="item"]').forEach((t,i)=>{t.onclick=function(){e.options.fill&&Object.keys(e.data[i]).indexOf(e.options.fill)>-1?e.input.value=e.data[i][e.options.fill]:e.input.value=Object.values(e.data[i])[0],e.popup.hide()}})}initDom(){let e=[];this.data.forEach(t=>{let i={};i.item=t,e.push(i)});let t="";return axIsEmpty(this.data)?this.innerDom.innerHTML="":(e.forEach((i,s)=>{t+=axTplEngine(this.createTemplate(),i),this.options.break&&s+1<e.length&&(t+='<div class="ax-break-line"></div>')}),this.innerDom.innerHTML=t),this.innerDom.innerHTML}createTemplate(){return this.options.template?this.options.template:'<a href="###" class="ax-info-block ax-hover" role="item">\n                <div class="ax-row">\n                  <div class="ax-col"><span class="ax-ell" role="name"><% Object.values(this[Object.keys(this)[0]])[0] %></span></div>\n                </div>\n              </a>\n      '}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axComplete]").forEach(e=>{new axComplete(e)});
-/*!
- * jeDate v6.5.0 from https://github.com/singod/jeDate | AXUI鍋氫簡娣卞害淇敼
- */
-const axDate=(()=>{var jet={},regymdzz="YYYY|MM|DD|hh|mm|ss|zz",$Q=function(e,t){return t=t||document,e.nodeType?e:t.querySelector(e)},jeDate=function(e,t){return new jeDatePick(e,"function"==typeof t?t():t)};function DateTime(e,t){var i=new Date,s=["FullYear","Month","Date","Hours","Minutes","Seconds"],n=jet.extend({YYYY:null,MM:null,DD:null,hh:i.getHours(),mm:i.getMinutes(),ss:i.getSeconds()},t),a=null==t?i:new Date(n.YYYY,n.MM,n.DD,n.hh,n.mm,n.ss);(e||[]).length>0&&jet.each(e,(function(e,t){a["set"+s[e]]("Month"==s[e]?parseInt(t)-1:parseInt(t))})),this.reDate=function(){return new DateTime},this.GetValue=function(){return a},this.GetYear=function(){return a.getFullYear()},this.GetMonth=function(){return a.getMonth()+1},this.GetDate=function(){return a.getDate()},this.GetHours=function(){return a.getHours()},this.GetMinutes=function(){return a.getMinutes()},this.GetSeconds=function(){return a.getSeconds()}}function jeDatePick(e,t){var i=axExtend({language:{name:"cn",month:["01","02","03","04","05","06","07","08","09","10","11","12"],weeks:["鏃�","涓�","浜�","涓�","鍥�","浜�","鍏�"],times:["灏忔椂","鍒嗛挓","绉掓暟"],timetxt:["鏃堕棿閫夋嫨","寮�濮嬫椂闂�","缁撴潫鏃堕棿"],backtxt:"杩斿洖鏃ユ湡",clear:"娓呯┖",close:"鍏抽棴",today:"鐜板湪",yes:"纭畾"},format:"YYYY-MM-DD hh:mm:ss",minDate:"1900-01-01 00:00:00",maxDate:"2099-12-31 23:59:59",mode:"popup",isShow:!0,multiPane:!0,onClose:!0,range:!1,trigger:"click",position:[],valiDate:[],isinitVal:!1,initDate:{},rel:"",isTime:!0,isClear:!1,clearFun:function(){},isClose:!0,closeFun:function(){},isToday:!0,isYes:!0,festival:!1,fixed:!0,zIndex:2099,nowClose:!1,method:{},theme:{},shortcut:[],donefun:null,before:null,succeed:null},t,e);this.$opts=jet.extend(i,t||{}),this.valCell=$Q(e),this.format=this.$opts.format,null!=this.valCell?this.init():alert(e+"  ID鎴栫被鍚嶄笉瀛樺湪!"),jet.extend(this,this.$opts.method),delete this.$opts.method}jeDate.extend=jet.extend=function(){var e,t,i,s=arguments[0],n=1,a=arguments.length;for("boolean"==typeof s&&(s,s=arguments[1]||{},n=2),"object"!=typeof s&&"function"!=typeof s&&(s={}),a===n&&(s=this,--n);n<a;n++)if(null!=(e=arguments[n]))for(t in e)s[t],s!==(i=e[t])&&void 0!==i&&(s[t]=i);return s},jeDate.nowDate=function(e,t){return t=t||"YYYY-MM-DD hh:mm:ss",isNaN(e)||(e={DD:e}),jet.parse(jet.getDateTime(e),t)},jeDate.convert=function(e){e.format=e.format||"YYYY-MM-DD hh:mm:ss",e.addval=e.addval||[];var t=jet.reMatch(e.format),i={};jet.each(jet.reMatch(e.val),(function(e,s){i[t[e]]=parseInt(s)}));var s=new DateTime(e.addval,i);return{YYYY:s.GetYear(),MM:s.GetMonth(),DD:s.GetDate(),hh:s.GetHours(),mm:s.GetMinutes(),ss:s.GetSeconds()}},jeDate.valText=function(e,t){return jet.valText(e,t)},jeDate.timeStampDate=function(e,t){t=t||"YYYY-MM-DD hh:mm:ss";var i=/^(-)?\d{1,10}$/.test(e)||/^(-)?\d{1,13}$/.test(e);if(/^[1-9]*[1-9][0-9]*$/.test(e)&&i){var s=parseInt(e);if(/^(-)?\d{1,10}$/.test(s))s*=1e3;else if(/^(-)?\d{1,13}$/.test(s))s*=1e3;else{if(!/^(-)?\d{1,14}$/.test(s))return void alert("鏃堕棿鎴虫牸寮忎笉姝g‘");s*=100}var n=new Date(s);return jet.parse({YYYY:n.getFullYear(),MM:jet.digit(n.getMonth()+1),DD:jet.digit(n.getDate()),hh:jet.digit(n.getHours()),mm:jet.digit(n.getMinutes()),ss:jet.digit(n.getSeconds())},t)}var a=jet.reMatch(e),o=new Date(a[0],a[1]-1,a[2],a[3]||0,a[4]||0,a[5]||0);return Math.round(o.getTime()/1e3)},jeDate.getLunar=function(e){var t=jeLunar(e.YYYY,parseInt(e.MM)-1,e.DD);return{nM:t.lnongMonth,nD:t.lnongDate,cY:parseInt(t.solarYear),cM:parseInt(t.solarMonth),cD:parseInt(t.solarDate),cW:t.inWeekDays,nW:t.solarWeekDay}},jeDate.parse=jet.parse=function(e,t){return t.replace(new RegExp(regymdzz,"g"),(function(t,i){return"zz"==t?"00":jet.digit(e[t])}))},jet.extend(jet,{isType:function(e,t){return Object.prototype.toString.call(e)=="[object "+t.toLowerCase().replace(/\b(\w)|\s(\w)/g,(function(e){return e.toUpperCase()}))+"]"},each:function(e,t,i){var s,n=0,a=e.length;if(void 0===a||"function"===e){for(s in e)if(!1===t.call(e[s],s,e[s]))break}else for(;n<a&&!1!==t.call(e[n],n,e[n++]););return e},on:function(e,t,i){return e.addEventListener?(e.addEventListener(t,i,!1),!0):e.attachEvent?e.attachEvent("on"+t,i):void(e["on"+t]=i)},isObj:function(e){for(var t in e)return!0;return!1},trim:function(e){return e.replace(/(^\s*)|(\s*$)/g,"")},reMatch:function(e){var t=[],i="",s=/(^\w{4}|\w{2}\B)/g;return i=jet.isNum(e)?e.replace(s,"$1-"):/^[A-Za-z]+$/.test(e)?e.replace(s,"$1-"):e,jet.each(i.match(/\w+|d+/g),(function(e,i){t.push(jet.isNum(i)?parseInt(i):i)})),t},equals:function(e,t){if(!t)return!1;if(e.length!=t.length)return!1;for(var i=0,s=e.length;i<s;i++)if(e[i]instanceof Array&&t[i]instanceof Array){if(!e[i].equals(t[i]))return!1}else if(e[i]!=t[i])return!1;return!0},docScroll:function(e){return e=e?"scrollLeft":"scrollTop",document.body[e]|document.documentElement[e]},docArea:function(e){return document.documentElement[e?"clientWidth":"clientHeight"]},digit:function(e){return e<10?"0"+(0|e):e},isNum:function(e){return!!/^[+-]?\d*\.?\d*$/.test(e)},getDaysNum:function(e,t){var i=31,s=e%100!=0&&e%4==0||e%400==0;switch(parseInt(t)){case 2:i=s?29:28;break;case 4:case 6:case 9:case 11:i=30}return i},getYM:function(e,t,i){var s=new Date(e,t-1);return s.setMonth(t-1+i),{y:s.getFullYear(),m:s.getMonth()+1}},prevMonth:function(e,t,i){return jet.getYM(e,t,0-(i||1))},nextMonth:function(e,t,i){return jet.getYM(e,t,i||1)},setCss:function(e,t){for(var i in t)e.style[i]=t[i]},html:function(e,t){return void 0===t?e&&1===e.nodeType?e.innerHTML:void 0:void 0!==t&&1==t?e&&1===e.nodeType?e.outerHTML:void 0:e.innerHTML=t},text:function(e,t){var i=document.all?"innerText":"textContent";return void 0===t?e&&1===e.nodeType?e[i]:void 0:e[i]=t},val:function(e,t){if(void 0===t)return e&&1===e.nodeType&&void 0!==e.value?e.value:void 0;t=null==t?"":t+"",e.value=t},attr:function(e,t){return e.getAttribute(t)},hasClass:function(e,t){return e.className.match(new RegExp("(\\s|^)"+t+"(\\s|$)"))},stopPropagation:function(e){e&&e.stopPropagation?e.stopPropagation():window.event.cancelBubble=!0},template:function(e,t){var i=/[^\w\-\.:]/.test(e)?e:document.getElementById(e).innerHTML;return function(e,t){var i="var $out='"+e.replace(/[\r\n]/g,"").replace(/^(.+?)\{\%|\%\}(.+?)\{\%|\%\}(.+?)$/g,(function(e){return e.replace(/(['"])/g,"\\$1")})).replace(/\{\%\s*=\s*(.+?)\%\}/g,"';$out+=$1;$out+='").replace(/\{\%(.+?)\%\}/g,"';$1;$out+='")+"';return new String($out);",s=function(e){var t="";for(var i in e)t+="var "+i+'= $D["'+i+'"];';return t}(t);return new new Function("$D",s+i)(t)+""}(i,t)},isValDiv:function(e){return/textarea|input/.test(e.tagName.toLocaleLowerCase())},valText:function(e,t){var i=$Q(e),s=jet.isValDiv(i)?"val":"text";if(null==t)return jet[s](i);jet[s](i,t)},isBool:function(e){return null==e||1==e},getDateTime:function(e){var t=new DateTime,i=jet.extend({YYYY:null,MM:null,DD:null,hh:0,mm:0,ss:0},e),s={YYYY:"FullYear",MM:"Month",DD:"Date",hh:"Hours",mm:"Minutes",ss:"Seconds"};return jet.each(["ss","mm","hh","DD","MM","YYYY"],(function(e,n){if(!jet.isNum(parseInt(i[n])))return null;var a=t.GetValue();(parseInt(i[n])||0==parseInt(i[n]))&&a["set"+s[n]](t["Get"+s[n]]()+("MM"==n?-1:0)+parseInt(i[n]))})),{YYYY:t.GetYear(),MM:t.GetMonth(),DD:t.GetDate(),hh:t.GetHours(),mm:t.GetMinutes(),ss:t.GetSeconds()}}});var searandom=function(){for(var e="",t=[1,2,3,4,5,6,7,8,9,0],i=0;i<8;i++)e+=t[Math.round(Math.random()*(t.length-1))];return e},ymdzArr=jet.reMatch(regymdzz),elx="#ax-date";function jeLunar(e,t,i){var s=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42448,83315,21200,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46496,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,21952,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19415,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448],n=[0,21208,43467,63836,85337,107014,128867,150921,173149,195551,218072,240693,263343,285989,308563,331033,353350,375494,397447,419210,440795,462224,483532,504758],a=["灏忓瘨","澶у瘨","绔嬫槬","闆ㄦ按","鎯婅洶","鏄ュ垎","娓呮槑","璋烽洦","绔嬪","灏忔弧","鑺掔","澶忚嚦","灏忔殤","澶ф殤","绔嬬","澶勬殤","鐧介湶","绉嬪垎","瀵掗湶","闇滈檷","绔嬪啲","灏忛洩","澶ч洩","鍐嚦"],o=["姝�","浜�","涓�","鍥�","浜�","鍏�","涓�","鍏�","涔�","鍗�","鍗佷竴","鑵�"],r={"0101":"*1鍏冩棪鑺�","0202":"婀垮湴鏃�","0214":"鎯呬汉鑺�","0308":"濡囧コ鑺�","0312":"妞嶆爲鑺�","0315":"娑堣垂鑰呮潈鐩婃棩","0401":"鎰氫汉鑺�","0422":"鍦扮悆鏃�","0501":"*1鍔冲姩鑺�","0504":"闈掑勾鑺�","0512":"鎶ゅ+鑺�","0518":"鍗氱墿棣嗘棩","0520":"姣嶄翰鑺�","0601":"鍎跨鑺�","0623":"濂ユ灄鍖瑰厠鏃�","0630":"鐖朵翰鑺�","0701":"寤哄厷鑺�","0801":"寤哄啗鑺�","0903":"鎶楁垬鑳滃埄鏃�","0910":"鏁欏笀鑺�",1001:"*3鍥藉簡鑺�",1201:"鑹炬粙鐥呮棩",1224:"骞冲畨澶�",1225:"鍦h癁鑺�"},l={"0100":"闄ゅ","0101":"*2鏄ヨ妭","0115":"鍏冨鑺�","0505":"*1绔崍鑺�","0707":"涓冨鑺�","0715":"涓厓鑺�","0815":"*1涓鑺�","0909":"*1閲嶉槼鑺�",1015:"涓嬪厓鑺�",1208:"鑵婂叓鑺�",1223:"灏忓勾"};return new function(e){var t=function(e,t){return new Date(31556925974.7*(e-1900)+6e4*n[t]+Date.UTC(1900,0,6,2,5)).getUTCDate()},i=function(e){var t,i=348;for(t=32768;t>8;t>>=1)i+=s[e-1900]&t?1:0;return i+d(e)},c=function(e){return"鐢蹭箼涓欎竵鎴婂繁搴氳緵澹櫢".charAt(e%10)+"瀛愪笐瀵呭嵂杈板烦鍗堟湭鐢抽厜鎴屼亥".charAt(e%12)},d=function(e){return h(e)?65536&s[e-1900]?30:29:0},h=function(e){return 15&s[e-1900]},u=function(e,t){return s[e-1900]&65536>>t?30:29},p=function(e){return e<10?"0"+(0|e):e},m=function(e,t){var i=e;return t.replace(/dd?d?d?|MM?M?M?|yy?y?y?/g,(function(e){switch(e){case"yyyy":var t="000"+i.getFullYear();return t.substring(t.length-4);case"dd":return p(i.getDate());case"d":return i.getDate().toString();case"MM":return p(i.getMonth()+1);case"M":return i.getMonth()+1}}))};this.isToday=!1,this.isRestDay=!1,this.solarYear=m(e,"yyyy"),this.solarMonth=m(e,"M"),this.solarDate=m(e,"d"),this.solarWeekDay=e.getDay(),this.inWeekDays="鏄熸湡"+"鏃ヤ竴浜屼笁鍥涗簲鍏竷鍏節鍗�".charAt(this.solarWeekDay);var f=new function(e){var t,s,n=0,a=(e-new Date(1900,0,31))/864e5;for(this.dayCyl=a+40,this.monCyl=14,t=1900;t<2050&&a>0;t++)a-=n=i(t),this.monCyl+=12;for(a<0&&(a+=n,t--,this.monCyl-=12),this.year=t,this.yearCyl=t-1864,s=h(t),this.isLeap=!1,t=1;t<13&&a>0;t++)s>0&&t==s+1&&0==this.isLeap?(--t,this.isLeap=!0,n=d(this.year)):n=u(this.year,t),1==this.isLeap&&t==s+1&&(this.isLeap=!1),a-=n,0==this.isLeap&&this.monCyl++;0==a&&s>0&&t==s+1&&(this.isLeap?this.isLeap=!1:(this.isLeap=!0,--t,--this.monCyl)),a<0&&(a+=n,--t,--this.monCyl),this.month=t,this.day=a+1}(e);this.lunarYear=f.year,this.shengxiao="榧犵墰铏庡厰榫欒泧椹緤鐚撮浮鐙楃尓".charAt((this.lunarYear-4)%12),this.lunarMonth=f.month,this.lunarIsLeapMonth=f.isLeap,this.lnongMonth=this.lunarIsLeapMonth?"闂�"+o[f.month-1]:o[f.month-1],this.lunarDate=f.day,this.showInLunar=this.lnongDate=function(e,t){var i;switch(t){case 10:i="鍒濆崄";break;case 20:i="浜屽崄";break;case 30:i="涓夊崄";break;default:i="鍒濆崄寤垮崊".charAt(Math.floor(t/10)),i+="鏃ヤ竴浜屼笁鍥涗簲鍏竷鍏節鍗�".charAt(t%10)}return i}(this.lunarMonth,this.lunarDate),1==this.lunarDate&&(this.showInLunar=this.lnongMonth+"鏈�"),this.ganzhiYear=c(f.yearCyl),this.ganzhiMonth=c(f.monCyl),this.ganzhiDate=c(f.dayCyl++),this.jieqi="",this.restDays=0,t(this.solarYear,2*(this.solarMonth-1))==m(e,"d")&&(this.showInLunar=this.jieqi=a[2*(this.solarMonth-1)]),t(this.solarYear,2*(this.solarMonth-1)+1)==m(e,"d")&&(this.showInLunar=this.jieqi=a[2*(this.solarMonth-1)+1]),"娓呮槑"==this.showInLunar&&(this.showInLunar="娓呮槑鑺�",this.restDays=1),this.solarFestival=r[m(e,"MM")+m(e,"dd")],void 0===this.solarFestival?this.solarFestival="":/\*(\d)/.test(this.solarFestival)&&(this.restDays=parseInt(RegExp.$1),this.solarFestival=this.solarFestival.replace(/\*\d/,"")),this.showInLunar=""==this.solarFestival?this.showInLunar:this.solarFestival,this.lunarFestival=l[this.lunarIsLeapMonth?"00":p(this.lunarMonth)+p(this.lunarDate)],void 0===this.lunarFestival?this.lunarFestival="":/\*(\d)/.test(this.lunarFestival)&&(this.restDays=this.restDays>parseInt(RegExp.$1)?this.restDays:parseInt(RegExp.$1),this.lunarFestival=this.lunarFestival.replace(/\*\d/,"")),12==this.lunarMonth&&this.lunarDate==u(this.lunarYear,12)&&(this.lunarFestival=l["0100"],this.restDays=1),this.showInLunar=""==this.lunarFestival?this.showInLunar:this.lunarFestival}(new Date(e,t,i))}return jet.extend(jeDatePick.prototype,{init:function(){var e,t=this,i=t.$opts,s=i.trigger,n=i.initDate||[],a=i.range,o=jet.isBool(i.isShow),r=null!=i.isinitVal&&0!=i.isinitVal;if(t.shortIndex="",t.shortMenu=axAddElem("div",{class:"ax-date-menu"}),t.setDatas(),i.before&&i.before(t.valCell),r&&s&&o){if(n[1]){var l=jet.getDateTime(n[0]);e=[{YYYY:l.YYYY,MM:jet.digit(l.MM),DD:jet.digit(l.DD),hh:jet.digit(l.hh),mm:jet.digit(l.mm),ss:jet.digit(l.ss)}]}else e=t.getValue(jet.isObj(n[0])?n[0]:{});a||t.setValue([e[0]],i.format,!0)}var c=function(){var e=jet.reMatch(t.format),i=""!=t.getValue(),s=[],n=7==t.dlen?"hh:mm:ss":"YYYY-MM"+(t.dlen<=2?"":"-DD"),r=t.valCell.value;if(r){r=r.substr(0,11);var l=[jet.parse(jet.getDateTime({}),n)];l=l[0];var c=new Date(r).setHours("0"),d=new Date(l).setHours("0"),h={DD:parseInt((c-d)/1e3/3600/24)};t.selectValue=[jet.parse(jet.getDateTime(h),n)]}else t.selectValue=[jet.parse(jet.getDateTime({}),n)];if(i&&o){var u=t.getValue().split(a);jet.each(new Array(a?2:1),(function(t){s[t]={},jet.each(jet.reMatch(u[t]),(function(i,n){s[t][e[i]]=parseInt(n)}))})),a&&(t.selectValue=u)}else{var p=t.getValue({})[0],m=jet.nextMonth(p.YYYY,p.MM||jet.getDateTime({}).MM);t.dlen>2&&t.dlen<=6&&(m.y,m.m);s=[p]}return t.selectDate=s,s},d=[];if(t.minDate="",t.maxDate="",o&&s||(d=c()),o&&s){if(s){if(document.querySelectorAll(elx).length>0)return;var h=c();t.minDate=jet.isType(i.minDate,"function")?i.minDate(t):i.minDate,t.maxDate=jet.isType(i.maxDate,"function")?i.maxDate(t):i.maxDate,t.storeData(h[0],h[1]),t.renderDate(),"inline"==i.mode?(t.valCell.insertAdjacentElement("afterend",t.dateCell),t.valCell.setAttribute("readonly","")):"dialog"==i.mode?(t.dialog=new axDialog({size:"",padding:!1,footerShow:!1,content:t.dateCell}),t.valCell.addEventListener("click",(function(){t.dialog.show()}),!1)):t.popup=new axPopup(t.valCell,{size:"",padding:!1,rel:i.rel,placement:"bottom-start",close:!1,footerShow:!1,content:t.dateCell})}}else t.minDate=jet.isType(i.minDate,"function")?i.minDate(t):i.minDate,t.maxDate=jet.isType(i.maxDate,"function")?i.maxDate(t):i.maxDate,t.storeData(d[0],d[1]),t.renderDate(),i.succeed&&i.succeed(t.dateCell)},setDatas:function(){var e=this,t=e.$opts,i=t.range,s=[],n=jet.isBool(t.isShow),a=t.multiPane;e.$data=jet.extend({year:!1,month:!1,day:!0,time:!1,timebtn:!1},{shortcut:[],lang:t.language,yaerlist:[],monthlist:[[],[]],ymlist:[[],[]],daylist:[[],[]],clear:t.isClear,close:t.isClose,today:!i&&t.isToday,yes:t.isYes,pane:a?1:2}),t.shortcut.length>0&&(jet.each(t.shortcut,(function(e,t){var i=[],n=jet.isType(t.val,"function")?t.val():t.val;if(jet.isType(n,"object")){for(var a in n)i.push(a+":"+n[a]);s.push(jet.extend({},{name:t.name,val:"{"+i.join("#")+"}"}))}})),e.$data.shortcut=s),e.dlen=function(){var t=jet.reMatch(e.format),i=[];jet.each(ymdzArr,(function(e,s){jet.each(t,(function(e,t){s==t&&i.push(t)}))}));var s=i.length;return"hh"==i[0]&&s<=3?7:s}(),e.$data.dlen=e.dlen,e.timeInspect=!1,1==e.dlen?jet.extend(e.$data,{year:!0,day:!1}):2==e.dlen?jet.extend(e.$data,{month:!0,day:!1}):e.dlen>3&&e.dlen<=6?e.$data.timebtn=!0:7==e.dlen&&jet.extend(e.$data,{day:!1,time:!0}),n||(e.$data.clear=!1,e.$data.yes=!1)},renderDate:function(){var e=this,t=e.$opts,i=jet.isBool(t.isShow),s=elx+searandom();if(null==e.dateCell&&(e.dateCell=document.createElement("div"),e.dateCell.id=s.replace(/\#/g,""),e.dateCell.className=elx.replace(/\#/g,"")+" "+(t.festival?" ax-with-calendar":""),e.wrapper=axAddElem("div",{class:"ax-date-wrapper"}),e.dateCell.appendChild(e.wrapper)),jet.html(e.wrapper,jet.template(e.dateTemplate(),e.$data)),jet.isObj(t.theme)){var n=document.createElement("style"),a=".ax-date"+searandom(),o=t.theme,r="background-color:"+o.bgcolor,l="color:"+(null==o.color?"#FFFFFF":o.color),c=null==o.pnColor?"":"color:"+o.pnColor+";";e.dateCell.className=e.dateCell.className+" "+a.replace(/^./g,""),n.setAttribute("type","text/css"),n.innerHTML=a+" .ax-date-menu p:hover{"+r+";"+l+";}"+a+" .ax-date-header em{"+l+";}"+a+" .ax-date-body .ytable td.ax-selected span,"+a+" .ax-date-body .ax-mtable td.ax-selected span,"+a+" .ax-date-body .ytable td.ax-selected span:hover,"+a+" .ax-date-body .ax-mtable td.ax-selected span:hover{"+r+";border:1px "+o.bgcolor+" solid;"+l+";}"+a+" .ax-date-body .ax-dtable td.ax-selected,"+a+" .ax-date-body .ax-dtable td.ax-selected:hover,"+a+" .ax-date-body .ax-dtable td.ax-selected .lunar,"+a+" .ax-date-header,"+a+" .ax-date-time .ax-date-header,"+a+" .ax-date-time .ax-time-list ul li.ax-selected,"+a+" .ax-date-time .ax-time-list ul li.ax-selected:hover,"+a+" .ax-date-time .ax-time-list ul li.ax-disabled.ax-selected,"+a+" .ax-date-footbtn .timecon,"+a+" .ax-date-footbtn .btnscon span{"+r+";"+l+";}"+a+" .ax-date-body .ax-dtable td.ax-other,"+a+" .ax-date-body .ax-dtable td.ax-other .ax-unit,"+a+" .ax-date-body .ax-dtable td.ax-other .lunar{"+c+"}"+a+" .ax-date-body .ax-dtable td.contain,"+a+" .ax-date-body .ax-dtable td.contain:hover{background-"+c+"}",e.dateCell.appendChild(n)}if(e.compileBindNode(e.dateCell),document.querySelectorAll(s).length>0&&document.body.removeChild($Q(s)),!i&&e.valCell.appendChild(e.dateCell),e.methodEventBind(),(7==e.dlen||e.dlen>3&&e.dlen<=6)&&e.locateScroll(),t.festival&&"cn"==t.language.name&&e.showFestival(),i&&(e.dateOrien(e.dateCell,e.valCell),e.blankArea()),t.shortcut.length>0){e.shortMenu.innerHTML="";for(var d=0;d<t.shortcut.length;d++)e.shortMenu.innerHTML+='<a href="###">'+t.shortcut[d].name+"</a>";e.wrapper.insertAdjacentElement("afterbegin",e.shortMenu),e.shortMenu.querySelectorAll("a").forEach((i,s)=>{i.onclick=function(){e.shortIndex=s,e.shortClick(JSON.stringify(t.shortcut[s].val))}}),""!==e.shortIndex&&e.shortMenu.querySelectorAll("a")[e.shortIndex].classList.add("ax-selected")}},setValue:function(e,t,i){var s,n=this.valCell;if(t=t||this.format,"string"==typeof e&&""!=e){var a=e.split(this.$opts.range),o=[];jet.each(a,(function(e,i){var s=jet.reMatch(i),n={};jet.each(jet.reMatch(t),(function(e,t){n[t]=s[e]})),o.push(n)})),s=o}else s=e;var r=this.parseValue(s,t);return 0!=i&&jet.valText(n,r),r},getValue:function(e){var t,i=this.valCell,s=this.$opts,n=(new DateTime).reDate(),a=n.GetYear(),o=n.GetMonth(),r=n.GetDate(),l=n.GetHours(),c=n.GetMinutes(),d=n.GetSeconds();if(null==e&&jet.isBool(s.isShow))t=jet.valText(i);else{var h=jet.isBool(s.isShow)?""==jet.valText(i):!jet.isBool(s.isShow),u=jet.extend({YYYY:null,MM:null,DD:null},e||{}),p=[],m=new Array(2),f=function(e){return[null==u[e]||null==u[e],u[e]]},g=[{YYYY:a,MM:o,DD:r,hh:l,mm:c,ss:d,zz:""},{YYYY:a,MM:o,DD:r,hh:l,mm:c,ss:d,zz:""}];if(h)jet.each(m,(function(e){var t={};jet.each(ymdzArr,(function(i,s){t[s]=parseInt(f(s)[0]?g[e][s]:f(s)[1])})),p.push(jet.extend(g[e],t))}));else{var v=0!=s.range,x=this.getValue(),y=x.split(s.range),b=jet.reMatch(this.format);jet.each(m,(function(t){var i={},s=v?jet.reMatch(y[t]):jet.reMatch(x);jet.each(b,(function(e,t){i[t]=s[e]}));var n=jet.extend(i,e||{});p.push(jet.extend(g[t],n))}))}t=p}return t},storeData:function(e,t){t=t||{};var i,s=this.$opts,n=s.multiPane,a=this.valCell,o=(new Date).getDate(),r=jet.isObj(t),l={yearlist:[],monthlist:[[],[]],daylist:[],daytit:[],timelist:[]},c=null==e.DD?o:e.DD,d=null==t.DD?o:t.DD,h={hh:e.hh,mm:e.mm,ss:e.ss},u={hh:t.hh||0,mm:t.mm||0,ss:t.ss||0};if(l.yearlist.push(this.eachYear(parseInt(e.YYYY),1)),0==n){var p=r?t.YYYY:e.YYYY;l.yearlist.push(this.eachYear(parseInt(p),2))}if(l.monthlist[0]=this.eachMonth(e.YYYY,0),0==n&&(l.monthlist[1]=this.eachMonth(e.YYYY+1,1)),l.daylist.push(this.eachDays(e.YYYY,e.MM,c,0)),l.daytit.push({YYYY:e.YYYY,MM:e.MM}),0==n){var m=jet.nextMonth(e.YYYY,e.MM);l.daylist.push(this.eachDays(m.y,m.m,d,1)),l.daytit.push({YYYY:m.y,MM:m.m})}this.selectTime=[h,u],l.timelist.push(this.eachTime(h,1)),0==n&&(i=7==this.dlen&&s.range&&!r?h:u,7==this.dlen&&s.range&&""==jet.valText(a)&&(this.selectTime[1]=jet.extend(u,h)),l.timelist.push(this.eachTime(i,2))),jet.extend(this.$data,l)},dateTemplate:function(){var e,t,i,s,n=this,a=n.$opts,o=a.multiPane,r="",l="",c=a.language,d="cn"==c.name?"骞�":"",h="cn"==c.name?"鏈�":"",u=(e=[],t=o?"11":"23",1==n.dlen?e=["{%=yearlist[i][0].y-"+t+"%}","{%=yearlist[i][yearlist[i].length-1].y%}"]:2==n.dlen?e=o?["{%=yearlist[0][0].y-1%}","{%=yearlist[0][0].y+1%}"]:["{%=yearlist[i][0].y-"+t+"%}","{%=yearlist[i][yearlist[i].length-1].y%}"]:n.dlen>2&&n.dlen<=6&&(e=["{%=yearlist[0][0].y-1%}","{%=yearlist[0][0].y+1%}"]),e),p='<a href="###" class="ax-yprev ax-iconfont ax-icon-left-double" @on="yearBtn(lprev,'+u[0]+')"></a>',m='<a href="###" class="ax-ynext ax-iconfont ax-icon-right-double" @on="yearBtn(rnext,'+u[1]+')"></a>',f='{% if(dlen>2){ %}<a href="###" class="ax-mprev ax-iconfont ax-icon-left" @on="monthBtn(mprev,{%=daytit[i].YYYY%}-{%=daytit[i].MM%})"></a>{% } %}',g='{% if(dlen>2){ %}<a href="###" class="ax-mnext ax-iconfont ax-icon-right" @on="monthBtn(mnext,{%=daytit[i].YYYY%}-{%=daytit[i].MM%})"></a>{% } %}',v='<table class="ax-ytable year{%= i==0 ? "left":"right"%}" style="display:{%=year ? "table":"none"%};"><tbody><tr>{% for(var y=0;y<=11;y++){ %}<td class="{%=yearlist[i][y].style%}" @on="yearClick({%=yearlist[i][y].y%})"><span>{%=yearlist[i][y].y%}'+d+"</span></td>{% if((y+1)%3==0){ %} </tr>{% } %} {% } %} </tbody></table>",x='<table class="ax-mtable month{%= i==0 ? "left":"right"%}" style="display:{%=month ? "table":"none"%};"><tbody><tr>{% for(var m=0;m<=11;m++){ %}<td class="{%=monthlist[i][m].style%}" ym="{%=monthlist[i][m].y%}-{%=monthlist[i][m].m%}" @on="monthClick({%=monthlist[i][m].y%}-{%=monthlist[i][m].m%})"><span>{%=monthlist[i][m].m%}'+h+"</span></td>{% if((m+1)%3==0){ %} </tr>{% } %} {% } %} </tbody></table>",y='<table class="ax-dtable days{%= i==0 ? "left":"right"%}" style="display:{%=day ? "table":"none"%};"><thead><tr>{% for(var w=0;w<lang.weeks.length;w++){ %} <th><i>{%=lang.weeks[w]%}</i></th> {% } %}</tr></thead><tbody><tr>{% for(var d=0;d<=41;d++){ %}<td class="{%=daylist[i][d].style%}" ymd="{%=daylist[i][d].ymd%}" @on="daysClick({%=daylist[i][d].ymd%})">{%=daylist[i][d].day%}</td>{% if((d+1)%7==0){ %} </tr>{% } %} {% } %} </tbody></table>',b='<div class="ax-date-time">{% for(var h=0;h<timelist.length;h++){ %}<div class="ax-date-panel"><div class="ax-date-header">{%= timelist.length == 1 ? lang.timetxt[0]:lang.timetxt[h+1]%}</div><div class="ax-date-body"><div class="ax-time-title"><div class="ax-time-item">{%=lang.times[0]%}</div><div class="ax-time-item">{%=lang.times[1]%}</div><div class="ax-time-item">{%=lang.times[2]%}</div></div><div class="ax-time-list">{% for(var t=0;t<3;t++){ %}<div class="ax-time-item"><ul>{% for(var s=0;s<timelist[h][t].length;s++){ %}<li class="{%=timelist[h][t][s].style%}" @on="hmsClick({%= h %},{%= h>0?3+t:t %})"><span>{%= timelist[h][t][s].hms < 10 ? "0" + timelist[h][t][s].hms :timelist[h][t][s].hms %}</span></li>{% } %}</ul></div>{% } %}</div></div></div>{% } %}</div>',w=(a.shortcut.length,i="",1==n.dlen?i='<a href="###" class="ax-ym">{%=yearlist[i][0].y%}'+d+" ~ {%=yearlist[i][yearlist[i].length-1].y%}"+d+"</a>":2==n.dlen?i='<a href="###" class="ax-ym" @on="yearShow({%=yearlist[0][i].y%})">{%=yearlist[0][i].y%}'+d+"</a>":n.dlen>2&&n.dlen<=6&&(i='<a href="###" class="ax-ym" @on="monthShow({%=daytit[i].MM%})">{%=daytit[i].MM%}'+h+'</a><a href="###" class="ax-ym" @on="yearShow({%=daytit[i].YYYY%})">{%=daytit[i].YYYY%}'+d+"</a>"),i),M=(s="",1==n.dlen?s=o?[p+m]:[p,m]:2==n.dlen?s=o?[p+m]:[p,m]:n.dlen>2&&n.dlen<=6?s=o?[p+f+g+m]:[p+f,g+m]:7==n.dlen&&(s=""),s);1==n.dlen?r=v:2==n.dlen?r=v+x:3==n.dlen?r=v+x+y:n.dlen>3&&n.dlen<=6?(r=v+x+y,l=b):7==n.dlen&&(l=b);var E='{% for(var i=0;i<pane;i++){ %}<div class="ax-date-panel"><div class="ax-date-header">{% if(i==0){ %}'+M[0]+"{% }else{ %}"+M[1]+"{% } %}"+w+'</div><div class="ax-date-body{%= i==1?" bordge":"" %}">'+r+"</div></div>{% } %}";"inline"==a.mode&&(a.isClose=!1,n.dateCell.setAttribute("data-mode","inline"));let S="";if(a.isShow&&"inline"!=a.mode||(a.isClose=!1),S=a.isClear?'<a href="###" class="ax-btn ax-text clear" @on="clearBtn">'+a.language.clear+"</a>":a.isClose?'<a href="###" class="ax-btn ax-text clear" @on="closeBtn">'+a.language.close+"</a>":"",a.multiPane)var D='<div class="ax-date-footer" line>{% if(timebtn){%}<a href="###" class="ax-btn ax-text timecon" @on="timeBtn">{%=lang.timetxt[0]%}</a>{% } %}'+S+'{% if(today){ %}<a href="###" class="ax-btn ax-text today" @on="nowBtn">{%=lang.today%}</a>{% } %}{% if(yes){ %}<a href="###" class="ax-btn ax-text setok" @on="sureBtn">{%=lang.yes%}</a>{% } %}</div></div>';else D='<div class="ax-date-footer"><div class="ax-footer-left">{% if(timebtn){%}<a href="###" class="ax-btn ax-text timecon" @on="timeBtn">{%=lang.timetxt[0]%}</a>{% } %}</div><div class="ax-footer-right">'+S+'{% if(today){ %}<a href="###" class="ax-btn ax-text today" @on="nowBtn">{%=lang.today%}</a>{% } %}{% if(yes){ %}<a href="###" class="ax-btn setok" @on="sureBtn">{%=lang.yes%}</a>{% } %}</div></div>';return'<div class="ax-date-main"><div class="ax-date-ymd">'+E+"</div>"+l+D+"</div>"},compileBindNode:function(e){var t=this;jet.each(e.childNodes,(function(e,i){if(1===i.nodeType){t.$opts.festival||i.removeAttribute("ymd"),t.compileBindNode(i);var s=i.getAttribute("@on");if(null!=s){var n=((o=/\(.*\)/.exec(a=s))?(o=o[0],a=a.replace(o,""),o=o.replace(/[\(\)\'\"]/g,"").split(",")):o=[],[a,o]);jet.on(i,"click",(function(){t[n[0]]&&t[n[0]].apply(i,n[1])})),i.removeAttribute("@on")}}var a,o}))},methodEventBind:function(){var that=this,opts=that.$opts,multi=opts.multiPane,DTS=that.$data,result=(new DateTime).reDate(),dateY=result.GetYear(),dateM=result.GetMonth(),dateD=result.GetDate(),range=opts.range,elCell=that.dateCell;jet.extend(that,{yearBtn:function(e,t){var i=t.split("#"),s=(jet.reMatch(i[0]),that.selectTime);exarr=[jet.extend({YYYY:parseInt(t),MM:dateM,DD:dateD},s[0]),{}];var n=that.parseValue([exarr[0]],that.format);that.storeData(exarr[0],exarr[1]),that.renderDate(),opts.toggle&&opts.toggle({elem:that.valCell,val:n,date:exarr[0]})},yearShow:function(e){DTS.year=!0,DTS.month=!1,that.dlen>2&&that.dlen<=6&&(DTS.day=!1),that.renderDate()},monthBtn:function(e,t){var i,s,n=jet.reMatch(t),a=that.selectTime,o=[],r=parseInt(n[0]),l=parseInt(n[1]);if(range)"mprev"==e?(i=jet.prevMonth(r,l),s=jet.nextMonth(i.y,i.m)):(s=jet.nextMonth(r,l),i=jet.prevMonth(s.y,s.m)),o=[jet.extend({YYYY:i.y,MM:i.m,DD:dateD},a[0]),{YYYY:s.y,MM:s.m,DD:dateD}];else{var c="mprev"==e?jet.prevMonth(r,l):jet.nextMonth(r,l);o=[jet.extend({YYYY:c.y,MM:c.m,DD:dateD},a[0]),{}]}var d=that.parseValue([o[0]],that.format);that.storeData(o[0],o[1]),that.renderDate(),opts.toggle&&opts.toggle({elem:that.valCell,val:d,date:o[0]})},monthShow:function(e){DTS.year=!1,DTS.month=!0,that.dlen>2&&that.dlen<=6&&(DTS.day=!1),that.renderDate()},shortClick:function(val){var reval=val.replace(/\#/g,","),evobj=eval("("+reval+")"),gval=jet.getDateTime(evobj),tmval=that.selectTime;if(that.selectValue=[jet.parse(gval,"YYYY-MM-DD")],that.selectDate=[{YYYY:gval.YYYY,MM:gval.MM,DD:gval.DD}],that.selectTime=[{hh:gval.hh,mm:gval.mm,ss:gval.ss}],tmval=that.selectTime,opts.onClose){var nYM=jet.nextMonth(gval.YYYY,gval.MM),ymarr=[{YYYY:gval.YYYY,MM:gval.MM,DD:gval.DD},{YYYY:nYM.y,MM:nYM.m,DD:null}];that.storeData(jet.extend(ymarr[0],tmval[0]),jet.extend(ymarr[1],tmval[1])),that.renderDate()}else that.setValue(gval,that.format),that.closeDate();that.lastClick="panel"},yearClick:function(e){if(!jet.hasClass(this,"ax-disabled")){var t="",i=that.dlen;if(range&&1==i){var s=that.selectValue.length;if(that.selectDate=2==s?[{YYYY:parseInt(e),MM:dateM}]:[{YYYY:that.selectDate[0].YYYY,MM:that.selectDate[0].MM},{YYYY:parseInt(e),MM:dateM}],that.selectValue=2==s?[e+"-"+jet.digit(dateM)]:[that.selectValue[0],e+"-"+jet.digit(dateM)],2==that.selectValue.length){var n=[that.selectValue[0],that.selectValue[1]],a=[{},{}];n.sort((function(e,t){return e>t?1:-1})),that.selectValue=n,jet.each(n,(function(e,t){jet.each(jet.reMatch(t),(function(t,i){a[e][ymdzArr[t]]=i}))})),that.selectDate=a}}else i>1&&i<=6?t=parseInt(e):(that.selectValue=[e+"-"+jet.digit(dateM)],that.selectDate=[{YYYY:parseInt(e),MM:dateM}]);DTS.year=1==i,DTS.month=i<3,DTS.day=i>2&&i<=6;var o=i>1&&i<=6?t:parseInt(that.selectDate[0].YYYY);that.storeData(jet.extend({YYYY:o,MM:dateM,DD:dateD},that.selectTime[0]),{}),that.renderDate(),that.lastClick="panel"}},monthClick:function(e){if(!jet.hasClass(this,"ax-disabled")){var t=jet.reMatch(e),i=[{},{}],s=that.selectValue.length;if(range){if(that.selectDate=2==s?[{YYYY:t[0],MM:t[1]}]:[{YYYY:that.selectDate[0].YYYY,MM:that.selectDate[0].MM},{YYYY:parseInt(e),MM:t[1]}],that.selectValue=2==s?[e]:[that.selectValue[0],e],2==that.selectValue.length){var n=[that.selectValue[0],that.selectValue[1]];n.sort((function(e,t){return e>t?1:-1})),that.selectValue=n,jet.each(n,(function(e,t){jet.each(jet.reMatch(t),(function(t,s){i[e][ymdzArr[t]]=s}))})),that.selectDate=i}}else that.selectValue=[e],that.selectDate=[{YYYY:t[0],MM:t[1]}];that.dlen>2&&(DTS.year=!1,DTS.month=!1),DTS.day=that.dlen>2&&that.dlen<=6,that.storeData(jet.extend({YYYY:parseInt(that.selectDate[0].YYYY),MM:parseInt(that.selectDate[0].MM),DD:dateD},that.selectTime[0]),{}),that.renderDate(),that.lastClick="panel"}},daysClick:function(e){if(!jet.hasClass(this,"ax-disabled")){var t,i,s=that.selectTime,n=jet.reMatch(e),a=that.selectValue.length,o="",r=[{},{}];if(range){if(1==a){var l=[that.selectValue[0],e];l.sort((function(e,t){return e>t?1:-1})),that.selectValue=l,jet.each(l,(function(e,t){jet.each(jet.reMatch(t),(function(t,i){r[e][ymdzArr[t]]=i}))})),that.selectDate=r}else that.selectValue=[e],r=[{YYYY:n[0],MM:n[1],DD:n[2]}],that.selectDate=[{YYYY:n[0],MM:n[1],DD:n[2]},{}];t=jet.nextMonth(r[0].YYYY,r[0].MM),i=[{YYYY:r[0].YYYY,MM:r[0].MM,DD:r[0].DD},{YYYY:t.y,MM:t.m,DD:null}],that.storeData(jet.extend(i[0],s[0]),jet.extend(i[1],s[1])),that.renderDate()}else that.selectValue=[e],that.selectDate=[{YYYY:n[0],MM:n[1],DD:n[2]},{YYYY:n[0],MM:n[1],DD:n[2]}],jet.each(new Array(0==range?1:2),(function(e){jet.each(n,(function(t,i){r[e][ymdzArr[t]]=i})),jet.extend(r[e],s[e])})),opts.onClose?(that.storeData(jet.extend(r[0],s[0]),jet.extend(r[1],s[1])),that.renderDate()):(o=that.setValue(r,that.format),that.closeDate(),opts.donefun&&opts.donefun.call(that,{elem:that.valCell,val:o,date:r}));that.lastClick="panel"}},hmsClick:function(e,t){var i=parseInt(t),s=parseInt(jet.text(this)),n=parseInt(e),a="ax-selected",o=["hh","mm","ss"],r=$Q(".ax-date-time",that.dateCell).querySelectorAll("ul")[i],l=that.$data.timelist[0].length;if(!jet.hasClass(this,"ax-disabled")){if(jet.each(r.childNodes,(function(e,t){var i=new RegExp("(^|\\s+)"+a+"(\\s+|$)","g");t.className=i.test(t.className)?t.className.replace(i,""):t.className})),that.selectTime[n][1==n?o[i-l]:o[i]]=s,this.className=this.className+a,7==that.dlen&&0==e&&range&&!multi){var c=that.getValue({}),d=jet.nextMonth(c[0].YYYY,c[0].MM),h=that.selectTime;that.storeData({YYYY:c[0].YYYY,MM:c[0].MM,DD:null,hh:h[0].hh,mm:h[0].mm,ss:h[0].ss},{YYYY:d.y,MM:d.m,DD:null,hh:h[1].hh,mm:h[1].mm,ss:h[1].ss}),that.renderDate()}that.lastClick="panel"}},timeBtn:function(){var e=$Q(".ax-date-time",elCell),t="none"==e.style.display;jet.text(this,t?opts.language.backtxt:opts.language.timetxt[0]),jet.setCss(e,{display:t?"":"none"}),that.lastClick="panel",e.querySelectorAll("ul").forEach(e=>{axPreventScroll(e)})},clearBtn:function(){jet.valText(that.valCell,""),that.selectDate=[jet.parse(jet.getDateTime({}),"YYYY-MM-DD hh:mm:ss")],opts.isShow&&that.closeDate(),opts.clearfun&&opts.clearfun.call(that)},closeBtn:function(){opts.isShow&&that.closeDate(),opts.closefun&&opts.closefun.call(that)},nowBtn:function(){var e,t=jet.getDateTime({}),i=jet.nextMonth(t.YYYY,t.MM);that.selectDate=[t],that.storeData(t,{YYYY:i.y,MM:i.m,DD:null,hh:0,mm:0,ss:0}),that.renderDate(),opts.nowClose?(e=opts.isShow?that.setValue([t],that.format,!0):jet.parse(t,that.format),that.closeDate()):"inline"==opts.mode&&that.setValue([t],that.format,!0),that.nowVal=that.selectDate,that.lastClick="now",opts.donefun&&opts.donefun.call(that,{elem:that.valCell,val:e,date:t})},sureBtn:function(){var e=that.selectValue.length>1?[{},{}]:[{}],t="",i=that.selectTime,s=function(e){var t=null==e.hh?0:e.hh,i=null==e.mm?0:e.mm,s=null==e.ss?0:e.ss;return parseInt(jet.digit(t)+""+jet.digit(i)+jet.digit(s))};if(range){if(that.selectValue.length>1){var n=that.selectValue;n.sort((function(e,t){return e>t?1:-1})),jet.each(n,(function(t,s){jet.each(jet.reMatch(s),(function(i,s){e[t][ymdzArr[i]]=s})),jet.extend(e[t],i[t])}))}else 7==that.dlen&&i.length>1&&(e=i);var a=s(i[0])>=s(i[1]),o=that.selectValue,r="";if(null!=o[1]&&(r=o[0].replace(/\-/g,"")==o[1].replace(/\-/g,"")),1==o.length&&that.dlen<7)return void that.tips("cn"==opts.language.name?"鏈�夌粨鏉熸棩鏈�":"Please select the end date");if(7==that.dlen&&a||r&&a)return void that.tips("cn"==opts.language.name?"缁撴潫鏃堕棿蹇呴』澶т簬寮�濮嬫椂闂�":"The end time must be greater than the start time")}else jet.each(new Array(0==range?1:2),(function(t){7!=that.dlen&&jet.each(jet.reMatch(that.selectValue[0]),(function(i,s){e[t][ymdzArr[i]]=s})),jet.extend(e[t],i[t])}));t="now"==that.lastClick?that.setValue(that.nowVal,that.format,!!opts.isShow):that.setValue(e,that.format,!!opts.isShow),that.closeDate(),opts.donefun&&opts.donefun.call(that,{elem:that.valCell,val:t,date:e})},blankArea:function(){}})},eachYear:function(e,t){var i,s=this.$opts,n=parseInt(e),a=[],o="",r=this.selectDate,l=jet.reMatch(this.minDate),c=jet.reMatch(this.maxDate);i=1==t?n:this.yindex,this.yindex=1==t?12+n:12+this.yindex;for(var d=null==r[1]?"":r[1].YYYY;i<this.yindex;i++)o=s.range&&i==r[0].YYYY?"ax-selected ax-start":s.range&&i==d?"ax-selected ax-end":i==r[0].YYYY||i==d?"ax-selected":i>r[0].YYYY&&i<d?"ax-contain":i<l[0]||i>c[0]?"ax-disabled":"",a.push({style:o,y:i});return a},eachMonth:function(e,t){var i=this.$opts,s=[],n=this.selectDate,a="",o=i.language.month,r=jet.reMatch(this.minDate),l=jet.reMatch(this.maxDate),c=parseInt(r[0]+""+jet.digit(r[1])),d=parseInt(l[0]+""+jet.digit(l[1])),h=parseInt(n[0].YYYY+""+jet.digit(n[0].MM)),u=n[1]?parseInt(n[1].YYYY+""+jet.digit(n[1].MM)):0;return jet.each(o,(function(t,n){var o=parseInt(e+""+jet.digit(n));a=i.range&&o==h?"ax-selected ax-start":i.range&&o==u?"ax-selected ax-end":o==h||o==u?"ax-selected":o>h&&o<u?"ax-contain":o<c||o>d?"ax-disabled":"",s.push({style:a,y:e,m:n})})),s},eachDays:function(e,t,i,s){for(var n=this,a=0,o=[],r=n.$opts,l=new Date(e,t-1,1).getDay()||7,c=jet.getDaysNum(e,t),d=n.selectDate,h=jet.prevMonth(e,t),u=jet.getDaysNum(e,h.m),p=jet.nextMonth(e,t),m=r.language,f=r.valiDate||[],g=jet.reMatch(n.minDate),v=parseInt(g[0]+""+jet.digit(g[1])+jet.digit(g[2])),x=jet.reMatch(n.maxDate),y=parseInt(x[0]+""+jet.digit(x[1])+jet.digit(x[2])),b=d[0]?parseInt(d[0].YYYY+""+jet.digit(d[0].MM)+jet.digit(d[0].DD)):"",w=d[1]?parseInt(d[1].YYYY+""+jet.digit(d[1].MM)+jet.digit(d[1].DD)):"",M=function(e,t,i){var s=r.marks;return jet.isType(s,"array")&&s.length>0&&function(e,t){for(var i=e.length;i--;)if(e[i]===t)return!0;return!1}(s,e+"-"+jet.digit(t)+"-"+jet.digit(i))?'<i class="marks"></i>':""},E=function(e,t,i){var s="";if(1==r.festival&&"cn"==m.name){var n=jeLunar(e,t-1,i),a=n.solarFestival||n.lunarFestival;s='<div class="ax-with-lunar"><div class="ax-solar">'+i+'</div><div class="ax-lunar">'+(""!=(a&&n.jieqi)?a:n.jieqi||n.showInLunar)+"</div></div>"}else s='<span class="ax-unit">'+i+"</span>";return s},S=function(e,t,i,s){var n=parseInt(e+""+jet.digit(t)+jet.digit(i));if(s){if(n>=v&&n<=y)return!0}else if(v>n||y<n)return!0},D=function(e,t){if(f.length>0&&""!=f[0])if(/\%/g.test(f[0])){var i=f[0].replace(/\%/g,"").split(","),s=[];jet.each(i,(function(e,t){s.push(jet.digit(parseInt(t)))}));var a=0==function(e,t){for(var i in t)if(t[i]==e)return!0;return!1}(jet.digit(e),s);t=jet.isBool(f[1])?a?" ax-disabled":t:a?t:" ax-disabled"}else{var o=n.dateRegExp(f[0]).test(jet.digit(e));t=jet.isBool(f[1])?o?" ax-disabled":t:o?t:" ax-disabled"}return t},T=u-l+1;T<=u;T++,a++){var C=M(h.y,h.m,T),L=S(h.y,h.m,T,!1)?"ax-disabled":"ax-other";L=D(T,L),o.push({style:L,ymd:h.y+"-"+jet.digit(h.m)+"-"+jet.digit(T),day:E(h.y,h.m,T)+C})}for(var A=1;A<=c;A++,a++){var _=M(e,t,A),I="",k=parseInt(e+""+jet.digit(t)+jet.digit(A)),N=k>b,O=k<w;I=D(A,I=S(e,t,A,!0)?r.range&&k==b?" ax-selected ax-start":r.range&&k==w?" ax-selected ax-end":k==b||k==w?" ax-selected":N&&O?" ax-contain":"":" ax-disabled"),o.push({style:"ax-current"+I,ymd:e+"-"+jet.digit(t)+"-"+jet.digit(A),day:E(e,t,A)+_})}for(var j=1,$=42-a;j<=$;j++){var P=M(p.y,p.m,j),z=S(p.y,p.m,j,!1)?"ax-disabled":"ax-other";z=D(j,z),o.push({style:z,ymd:p.y+"-"+jet.digit(p.m)+"-"+jet.digit(j),day:E(p.y,p.m,j)+P})}return o},eachTime:function(e,t){var i=this,s=i.$opts,n=s.range,a=s.multiPane,o=[],r=[],l=["hh","mm","ss"],c=[],d="",h=i.format,u=jet.trim(i.minDate).replace(/\s+/g," "),p=jet.trim(i.maxDate).replace(/\s+/g," "),m=u.split(" "),f=p.split(" ");return i.dlen>3&&/\:/.test(m)&&/\:/.test(f)&&(o=jet.reMatch(/\s/.test(u)&&i.dlen>3?m[1]:u),r=jet.reMatch(/\s/.test(p)&&i.dlen>3?f[1]:p)),jet.each([24,60,60],(function(s,u){c[s]=[];var p=null==o[s]||0==o[s]?e[l[s]]:o[s],f=""==i.getValue()?p:e[l[s]];i.dlen>3&&/\:/.test(m)&&1==t&&(i.selectTime[0][l[s]]=f);for(var g=0;g<u;g++){var v=new RegExp(l[s],"g").test(h);d=g==f?v?"ax-selected":"ax-disabled":!v||!n&&a&&(g<o[s]||g>r[s])?"ax-disabled":a?"":1==t&&g<o[s]||2==t&&g>r[s]?"ax-disabled":"",c[s].push({style:d,hms:g})}})),c},closeDate:function(){"popup"==this.$opts.mode?this.popup.hide():"dialog"==this.$opts.mode&&this.dialog.hide()},parseValue:function(e,t){var i=[],s=this.$opts.range;return jet.each(e,(function(e,s){i.push(jet.parse(s,t))})),0==s?i[0]:i.join(s)},dateRegExp:function(valArr){var enval=valArr.split(",")||[],regs="",doExp=function(val){var arr,tmpEval,regs=/#?\{(.*?)\}/;for(val+="";null!=(arr=regs.exec(val));)arr.lastIndex=arr.index+arr[1].length+arr[0].length-arr[1].length-1,tmpEval=parseInt(eval(arr[1])),tmpEval<0&&(tmpEval="9700"+-tmpEval),val=val.substring(0,arr.index)+tmpEval+val.substring(arr.lastIndex+1);return val};if(enval&&enval.length>0){for(var i=0;i<enval.length;i++)regs+=doExp(enval[i]),i!=enval.length-1&&(regs+="|");regs=regs?new RegExp("(?:"+regs+")"):null}else regs=null;return regs},showFestival:function(){var e=this;e.$opts;jet.each(e.dateCell.querySelectorAll(".ax-dtable td"),(function(t,i){var s=jet.reMatch(jet.attr(i,"ymd")),n=document.createElement("div");i.removeAttribute("ymd"),new axHover(i,{enter:function(){var t=new jeLunar(s[0],s[1]-1,s[2]);if(!$Q("#jedatetipscon")){n.id=n.className="jedatetipscon";var a="<p>"+t.solarYear+"骞�"+t.solarMonth+"鏈�"+t.solarDate+"鏃� "+t.inWeekDays+"</p><p>鍐滃巻锛�"+t.shengxiao+"骞� "+t.lnongMonth+"鏈�"+t.lnongDate+"</p><p>"+t.ganzhiYear+"骞� "+t.ganzhiMonth+"鏈� "+t.ganzhiDate+"鏃�</p>",o=""!=(t.solarFestival||t.lunarFestival)?'<p class="red">鑺傛棩锛�'+t.solarFestival+t.lunarFestival+"</p>":"",r=""!=t.jieqi?"<p>"+(""!=t.jieqi?"鑺傛皵锛�"+t.jieqi:"")+"</p>":"",l=""!=(t.solarFestival||t.lunarFestival||t.jieqi)?o+r:"";jet.html(n,a+l),e.lunarPopup=new axPopup(i,{size:"",close:!1,placement:"bottom-start",footerShow:!1,content:n}).show()}},leave:function(){e.lunarPopup&&e.lunarPopup.targetDom.remove()}})})),1!==e.dateCell.nodeType||jet.hasClass(e.dateCell,"grid")||(e.dateCell.className=e.dateCell.className+" grid")},lunarOrien:function(e,t,i){var s,n,a=t.getBoundingClientRect(),o=e.offsetWidth,r=e.offsetHeight;return n=a.right+o/1.5>=jet.docArea(!0)?a.right-o:a.left+(i?0:jet.docScroll(!0)),s=a.bottom+r/1<=jet.docArea()?a.bottom-1:a.top>r/1.5?a.top-r-1:jet.docArea()-r,n+o>jet.docArea(!0)&&(n=a.left-(o-a.width)),{top:Math.max(s+(i?0:jet.docScroll())+1,1)+"px",left:n+"px"}},dateOrien:function(e,t,i){var s=this.$opts.fixed?t.getBoundingClientRect():e.getBoundingClientRect(),n=s.left,a=s.bottom;if(this.$opts.fixed){var o=e.offsetWidth,r=e.offsetHeight;n+o>jet.docArea(!0)&&(n-=o-s.width),a+r>jet.docArea()&&(a=s.top>r?s.top-r-2:jet.docArea()-r-1),Math.max(a+(i?0:jet.docScroll())+1,1)+"px",n+"px"}else"50%","50%",e.style.cssText="marginTop:"+-s.height/2+";marginLeft:"+-s.width/2},tips:function(e,t){new axMessage({content:e,iconShow:!0,result:"error"})},locateScroll:function(){var e=$Q(".ax-date-time",this.dateCell).querySelectorAll("ul");jet.each(e,(function(e,t){var i=t.querySelector(".ax-selected");t.scrollTop=i?i.offsetTop:0})),7!=this.dlen&&jet.setCss($Q(".ax-date-time",this.dateCell),{display:"none"})}}),jeDate})();document.querySelectorAll("[axDate]").forEach(e=>{new axDate(e)});
-/*!
-* 鎻掍欢锛氳疆婊戦�夋嫨锛涙敼閫犺嚜ion.rangeSlider | https://github.com/IonDen/ion.rangeSlider锛涗娇鐢ㄦ柟娉曪細new axRange('#id',{鍙傛暟})
-*/
-const axRanges=[];class axRange{constructor(e,t){if(this.targetDom="string"==typeof e?document.querySelector(e):e,!(this instanceof axRange))return new axRange(e,t);let i=this;this.calcCount=0,this.updateTm=0,this.oldFrom=0,this.oldTo=0,this.oldMinInterval=null,this.rafId=null,this.dragging=!1,this.forceRedraw=!1,this.noDiapason=!1,this.hasTabIndex=!0,this.isKey=!1,this.isUpdate=!1,this.isStart=!0,this.isFinish=!1,this.isActive=!1,this.isResize=!1,this.isClick=!1,this.target="base",this.cache={win:window,body:document.body,targetDom:this.targetDom,cont:null,rs:null,min:null,max:null,from:null,to:null,single:null,bar:null,line:null,s_single:null,s_from:null,s_to:null,shad_single:null,shad_from:null,shad_to:null,edge:null,grid:null,grid_labels:[]},this.coords={x_gap:0,x_pointer:0,w_rs:0,w_rs_old:0,w_handle:0,p_gap:0,p_gap_left:0,p_gap_right:0,p_step:0,p_pointer:0,p_handle:0,p_single_fake:0,p_single_real:0,p_from_fake:0,p_from_real:0,p_to_fake:0,p_to_real:0,p_bar_x:0,p_bar_w:0,grid_gap:0,big_num:0,big:[],big_w:[],big_p:[],big_x:[]},this.labels={w_min:0,w_max:0,w_from:0,w_to:0,w_single:0,p_min:0,p_max:0,p_from_fake:0,p_from_left:0,p_to_fake:0,p_to_left:0,p_single_fake:0,p_single_left:0},"INPUT"!==this.targetDom.nodeName&&console&&console.warn&&console.warn("Base targetDom should be <input>!",input),this.config={className:"",type:"single",min:0,max:100,from:null,to:null,step:1,minInterval:0,maxInterval:0,dragInterval:!1,values:[],pValues:[],fromStick:!1,fromMin:null,fromMax:null,fromShadow:!1,toStick:!1,toMin:null,toMax:null,toShadow:!1,prettifyEnabled:!1,prettifySeparator:" ",prettify:null,forceEdges:!1,keyboard:!0,grid:!1,gridMargin:!0,gridNum:4,gridSnap:!1,hideLabelTrack:!1,hideLabelSlider:!1,prefix:"",postfix:"",maxPostfix:"",decorateBoth:!0,valuesSeparator:" 鈥� ",inputValuesSeparator:";",disabled:!1,block:!1,scope:null,onStart:null,onChange:null,onFinish:null,onUpdate:null};let s=this.targetDom.value;void 0!==s&&""!==s&&(s=t&&t.inputValuesSeparator?s.split(t.inputValuesSeparator):s.split(";"),s[0]&&s[0]==+s[0]&&(s[0]=+s[0]),s[1]&&s[1]==+s[1]&&(s[1]=+s[1]),t&&t.values&&t.values.length?(this.config.from=s[0]&&t.values.indexOf(s[0]),this.config.to=s[1]&&t.values.indexOf(s[1])):(this.config.from=s[0]&&+s[0],this.config.to=s[1]&&+s[1])),this.options=axExtend(this.config,t,this.targetDom),this.targetDom?this.referName=this.targetDom.getAttribute("axRange"):this.referName="",this.handlers={},this.update_check={},this.result={input:this.cache.targetDom,slider:null,min:this.options.min,max:this.options.max,from:this.options.from,from_percent:0,from_value:null,to:this.options.to,to_percent:0,to_value:null};this.ready=function(e){this.noDiapason=!1,this.coords.p_step=P(this.options.step,!0),this.target="base",this.toggleInput(),n(),g(),e?(this.forceRedraw=!0,y(!0),$()):(this.forceRedraw=!0,y(!0),N()),L()};const n=function(){const e='<div class="ax-range '+i.options.className+'"></div>';i.cache.targetDom.insertAdjacentHTML("beforebegin",e),i.cache.targetDom.setAttribute("readonly","true"),i.cache.cont=i.cache.targetDom.previousElementSibling,i.result.slider=i.cache.cont,i.cache.cont.innerHTML='<div class="ax-range-label"><span class="ax-range-line" tabindex="0"></span><span class="ax-range-min">0</span><span class="ax-range-max">1</span><span class="ax-range-from">0</span><span class="ax-range-to">0</span><span class="ax-range-single">0</span></div><div class="ax-range-grid">1</div>',i.cache.label=i.cache.cont.querySelector(".ax-range-label"),i.cache.min=i.cache.cont.querySelector(".ax-range-min"),i.cache.max=i.cache.cont.querySelector(".ax-range-max"),i.cache.from=i.cache.cont.querySelector(".ax-range-from"),i.cache.to=i.cache.cont.querySelector(".ax-range-to"),i.cache.single=i.cache.cont.querySelector(".ax-range-single"),i.cache.line=i.cache.cont.querySelector(".ax-range-line"),i.cache.grid=i.cache.cont.querySelector(".ax-range-grid"),"single"===i.options.type?(i.cache.cont.insertAdjacentHTML("beforeend",'<div class="ax-range-bar ax-range-bar-single"></div><div class="ax-range-shadow ax-shadow-single"></div><span class="ax-range-handle ax-single"><i></i><i></i><i></i></span>'),i.cache.bar=i.cache.cont.querySelector(".ax-range-bar"),i.cache.edge=i.cache.cont.querySelector(".ax-range-bar-single"),i.cache.s_single=i.cache.cont.querySelector(".ax-single"),i.cache.from.style.visibility="hidden",i.cache.to.style.visibility="hidden",i.cache.shad_single=i.cache.cont.querySelector(".ax-shadow-single")):(i.cache.cont.insertAdjacentHTML("beforeend",'<div class="ax-range-bar"></div><div class="ax-range-shadow ax-shadow-from"></div><div class="ax-range-shadow ax-shadow-to"></div><span class="ax-range-handle ax-from"><i></i><i></i><i></i></span><span class="ax-range-handle ax-to"><i></i><i></i><i></i></span>'),i.cache.bar=i.cache.cont.querySelector(".ax-range-bar"),i.cache.s_from=i.cache.cont.querySelector(".ax-from"),i.cache.s_to=i.cache.cont.querySelector(".ax-to"),i.cache.shad_from=i.cache.cont.querySelector(".ax-shadow-from"),i.cache.shad_to=i.cache.cont.querySelector(".ax-shadow-to"),a()),i.options.hideLabelSlider&&(i.cache.from.style.display="none",i.cache.to.style.display="none",i.cache.single.style.display="none"),W(),i.options.disabled?(o(),i.cache.targetDom.disabled=!0):(i.cache.targetDom.disabled=!1,r(),l()),i.options.disabled||(i.options.block?o():r()),i.options.dragInterval&&(i.cache.bar.style.cursor="ew-resize")},a=function(){const e=i.options.min,t=i.options.max,s=i.options.from,n=i.options.to;s>e&&n===t?i.cache.s_from.classList.add("ax-last"):n<t&&i.cache.s_to.classList.add("ax-last")},o=function(){i.cache.cont.insertAdjacentHTML("beforeend",'<div class="ax-disabled-mask"></div>'),i.cache.cont.classList.add("ax-disabled")},r=function(){i.cache.cont.classList.remove(".ax-disabled-mask"),i.cache.cont.classList.remove("ax-disabled")};this.remove=function(){this.cache.cont.remove(),this.cache.cont=null,this.cache.win.removeEventListener("keydown",m.bind(this,"keyboard")),this.cache.body.removeEventListener("touchmove",d.bind(this)),this.cache.body.removeEventListener("mousemove",d.bind(this)),this.cache.win.removeEventListener("touchend",h.bind(this)),this.cache.win.removeEventListener("mouseup",h.bind(this)),this.cache.grid_labels=[],this.coords.big=[],this.coords.big_w=[],this.coords.big_p=[],this.coords.big_x=[],cancelAnimationFrame(this.rafId)};const l=function(){i.noDiapason||(i.cache.body.addEventListener("touchmove",d.bind(this)),i.cache.body.addEventListener("mousemove",d.bind(this)),i.cache.win.addEventListener("touchend",h.bind(this)),i.cache.win.addEventListener("mouseup",h.bind(this)),i.cache.line.addEventListener("touchstart",p.bind(this,"click"),{passive:!0}),i.cache.line.addEventListener("mousedown",p.bind(this,"click")),i.cache.line.addEventListener("focus",c.bind(this)),i.options.dragInterval&&"double"===i.options.type?(i.cache.bar.addEventListener("touchstart",u.bind(this,"both"),{passive:!0}),i.cache.bar.addEventListener("mousedown",u.bind(this,"both"))):(i.cache.bar.addEventListener("touchstart",p.bind(this,"click"),{passive:!0}),i.cache.bar.addEventListener("mousedown",p.bind(this,"click"))),"single"===i.options.type?(i.cache.single.addEventListener("touchstart",u.bind(this,"single"),{passive:!0}),i.cache.s_single.addEventListener("touchstart",u.bind(this,"single"),{passive:!0}),i.cache.shad_single.addEventListener("touchstart",p.bind(this,"click"),{passive:!0}),i.cache.single.addEventListener("mousedown",u.bind(this,"single")),i.cache.s_single.addEventListener("mousedown",u.bind(this,"single")),i.cache.edge.addEventListener("mousedown",p.bind(this,"click")),i.cache.shad_single.addEventListener("touchstart",p.bind(this,"click"),{passive:!0})):(i.cache.single.addEventListener("touchstart",u.bind(this,null),{passive:!0}),i.cache.single.addEventListener("mousedown",u.bind(this,null)),i.cache.from.addEventListener("touchstart",u.bind(this,"from"),{passive:!0}),i.cache.s_from.addEventListener("touchstart",u.bind(this,"from"),{passive:!0}),i.cache.to.addEventListener("touchstart",u.bind(this,"to"),{passive:!0}),i.cache.s_to.addEventListener("touchstart",u.bind(this,"to"),{passive:!0}),i.cache.shad_from.addEventListener("touchstart",p.bind(this,"click"),{passive:!0}),i.cache.shad_to.addEventListener("touchstart",p.bind(this,"click"),{passive:!0}),i.cache.from.addEventListener("mousedown",u.bind(this,"from")),i.cache.s_from.addEventListener("mousedown",u.bind(this,"from")),i.cache.to.addEventListener("mousedown",u.bind(this,"to")),i.cache.s_to.addEventListener("mousedown",u.bind(this,"to")),i.cache.shad_from.addEventListener("mousedown",p.bind(this,"click")),i.cache.shad_to.addEventListener("mousedown",p.bind(this,"click"))),i.options.keyboard&&i.cache.line.addEventListener("keydown",m.bind(this,"keyboard")))},c=function(e){if(i.target)i.cache.line.focus();else{let e,t;t="single"===i.options.type?i.cache.single:i.cache.from,e=t.getBoundingClientRect().left,e+=t.getBoundingClientRect().width/2-1,p("single",{preventDefault:function(){},pageX:e})}},d=function(e){if(!i.dragging)return;const t=e.pageX||e.originalEvent.touches&&e.originalEvent.touches[0].pageX;i.coords.x_pointer=t-i.coords.x_gap,y()},h=function(e){if(!i.isActive)return;i.isActive=!1;const t=i.cache.cont.querySelector(".ax-hover");t&&t.classList.remove("ax-hover"),i.forceRedraw=!0,L(),x(),(i.cache.cont.contains(e.target)||i.dragging)&&j(),i.dragging=!1},u=function(e,t){axPreventDefault(t);const s=t.pageX||t.originalEvent.touches&&t.originalEvent.touches[0].pageX;2!==t.button&&("both"===e&&v(),e||(e=i.target||"from"),i.target=e,i.isActive=!0,i.dragging=!0,i.coords.x_gap=i.cache.label.getBoundingClientRect().left,i.coords.x_pointer=s-i.coords.x_gap,b(),function(e){switch(i.target){case"single":i.coords.p_gap=F(i.coords.p_pointer-i.coords.p_single_fake),i.cache.s_single.classList.add("ax-hover");break;case"from":i.coords.p_gap=F(i.coords.p_pointer-i.coords.p_from_fake),i.cache.s_from.classList.add("ax-hover","ax-last"),i.cache.s_to.classList.remove("ax-last");break;case"to":i.coords.p_gap=F(i.coords.p_pointer-i.coords.p_to_fake),i.cache.s_to.classList.add("ax-hover","ax-last"),i.cache.s_from.classList.remove("ax-last");break;case"both":i.coords.p_gap_left=F(i.coords.p_pointer-i.coords.p_from_fake),i.coords.p_gap_right=F(i.coords.p_to_fake-i.coords.p_pointer),i.cache.s_to.classList.remove("ax-last"),i.cache.s_from.classList.remove("ax-last")}}(),i.cache.line.dispatchEvent(new Event("focus")),L())},p=function(e,t){axPreventDefault(t);const s=t.pageX||t.originalEvent.touches&&t.originalEvent.touches[0].pageX;2!==t.button&&(i.target=e,i.isClick=!0,i.coords.x_gap=i.cache.label.getBoundingClientRect().left,i.coords.x_pointer=+(s-i.coords.x_gap).toFixed(),i.forceRedraw=!0,y(),i.cache.line.dispatchEvent(new Event("focus")))},m=function(e,t){if(!(t.altKey||t.ctrlKey||t.shiftKey||t.metaKey))switch(t.which){case 83:case 65:case 40:case 37:axPreventDefault(t),f(!1);break;case 87:case 68:case 38:case 39:axPreventDefault(t),f(!0)}},f=function(e){let t=i.coords.p_pointer;const s=i.options.step/((i.options.max-i.options.min)/100);e?t+=s:t-=s,i.coords.x_pointer=F(i.coords.w_rs/100*t),i.isKey=!0,y()},g=function(){if(i.options){if(i.options.hideLabelTrack)return i.cache.min.style.display="none",void(i.cache.max.style.display="none");if(i.options.values.length)i.cache.min.innerHTML=U(i.options.pValues[i.options.min]),i.cache.max.innerHTML=U(i.options.pValues[i.options.max]);else{const e=R(i.options.min),t=R(i.options.max);i.result.min_pretty=e,i.result.max_pretty=t,i.cache.min.innerHTML=U(e,i.options.min),i.cache.max.innerHTML=U(t,i.options.max)}i.labels.w_min=i.cache.min.offsetWidth,i.labels.w_max=i.cache.max.offsetWidth}},v=function(){const e=i.result.to-i.result.from;null===i.oldMinInterval&&(i.oldMinInterval=i.options.minInterval),i.options.minInterval=e},x=function(){null!==i.oldMinInterval&&(i.options.minInterval=i.oldMinInterval,i.oldMinInterval=null)},y=function(e){if(!i.options)return;if(i.calcCount++,(10===i.calcCount||e)&&(i.calcCount=0,i.coords.w_rs=i.cache.label.offsetWidth,S()),!i.coords.w_rs)return;b();let t=E();switch("both"===i.target&&(i.coords.p_gap=0,t=E()),"click"===i.target&&(i.coords.p_gap=i.coords.p_handle/2,t=E(),i.options.dragInterval?i.target="both_one":i.target=D(t)),i.target){case"base":const e=(i.options.max-i.options.min)/100,s=(i.result.from-i.options.min)/e,n=(i.result.to-i.options.min)/e;i.coords.p_single_real=F(s),i.coords.p_from_real=F(s),i.coords.p_to_real=F(n),i.coords.p_single_real=H(i.coords.p_single_real,i.options.fromMin,i.options.fromMax),i.coords.p_from_real=H(i.coords.p_from_real,i.options.fromMin,i.options.fromMax),i.coords.p_to_real=H(i.coords.p_to_real,i.options.toMin,i.options.toMax),i.coords.p_single_fake=M(i.coords.p_single_real),i.coords.p_from_fake=M(i.coords.p_from_real),i.coords.p_to_fake=M(i.coords.p_to_real),i.target=null;break;case"single":if(i.options.fromStick)break;i.coords.p_single_real=w(t),i.coords.p_single_real=Y(i.coords.p_single_real),i.coords.p_single_real=H(i.coords.p_single_real,i.options.fromMin,i.options.fromMax),i.coords.p_single_fake=M(i.coords.p_single_real);break;case"from":if(i.options.fromStick)break;i.coords.p_from_real=w(t),i.coords.p_from_real=Y(i.coords.p_from_real),i.coords.p_from_real>i.coords.p_to_real&&(i.coords.p_from_real=i.coords.p_to_real),i.coords.p_from_real=H(i.coords.p_from_real,i.options.fromMin,i.options.fromMax),i.coords.p_from_real=q(i.coords.p_from_real,i.coords.p_to_real,"from"),i.coords.p_from_real=B(i.coords.p_from_real,i.coords.p_to_real,"from"),i.coords.p_from_fake=M(i.coords.p_from_real);break;case"to":if(i.options.toStick)break;i.coords.p_to_real=w(t),i.coords.p_to_real=Y(i.coords.p_to_real),i.coords.p_to_real<i.coords.p_from_real&&(i.coords.p_to_real=i.coords.p_from_real),i.coords.p_to_real=H(i.coords.p_to_real,i.options.toMin,i.options.toMax),i.coords.p_to_real=q(i.coords.p_to_real,i.coords.p_from_real,"to"),i.coords.p_to_real=B(i.coords.p_to_real,i.coords.p_from_real,"to"),i.coords.p_to_fake=M(i.coords.p_to_real);break;case"both":if(i.options.fromStick||i.options.toStick)break;t=F(t+.001*i.coords.p_handle),i.coords.p_from_real=w(t)-i.coords.p_gap_left,i.coords.p_from_real=Y(i.coords.p_from_real),i.coords.p_from_real=H(i.coords.p_from_real,i.options.fromMin,i.options.fromMax),i.coords.p_from_real=q(i.coords.p_from_real,i.coords.p_to_real,"from"),i.coords.p_from_fake=M(i.coords.p_from_real),i.coords.p_to_real=w(t)+i.coords.p_gap_right,i.coords.p_to_real=Y(i.coords.p_to_real),i.coords.p_to_real=H(i.coords.p_to_real,i.options.toMin,i.options.toMax),i.coords.p_to_real=q(i.coords.p_to_real,i.coords.p_from_real,"to"),i.coords.p_to_fake=M(i.coords.p_to_real);break;case"both_one":if(i.options.fromStick||i.options.toStick)break;const a=w(t),o=i.result.from_percent,r=i.result.to_percent-o,l=r/2;let c=a-l,d=a+l;c<0&&(c=0,d=c+r),d>100&&(d=100,c=d-r),i.coords.p_from_real=Y(c),i.coords.p_from_real=H(i.coords.p_from_real,i.options.fromMin,i.options.fromMax),i.coords.p_from_fake=M(i.coords.p_from_real),i.coords.p_to_real=Y(d),i.coords.p_to_real=H(i.coords.p_to_real,i.options.toMin,i.options.toMax),i.coords.p_to_fake=M(i.coords.p_to_real)}"single"===i.options.type?(i.coords.p_bar_x=i.coords.p_handle/2,i.coords.p_bar_w=i.coords.p_single_fake,i.result.from_percent=i.coords.p_single_real,i.result.from=z(i.coords.p_single_real),i.result.from_pretty=R(i.result.from),i.options.values.length&&(i.result.from_value=i.options.values[i.result.from])):(i.coords.p_bar_x=F(i.coords.p_from_fake+i.coords.p_handle/2),i.coords.p_bar_w=F(i.coords.p_to_fake-i.coords.p_from_fake),i.result.from_percent=i.coords.p_from_real,i.result.from=z(i.coords.p_from_real),i.result.from_pretty=R(i.result.from),i.result.to_percent=i.coords.p_to_real,i.result.to=z(i.coords.p_to_real),i.result.to_pretty=R(i.result.to),i.options.values.length&&(i.result.from_value=i.options.values[i.result.from],i.result.to_value=i.options.values[i.result.to])),T(),C()},b=function(){i.coords.w_rs?(i.coords.x_pointer<0||isNaN(i.coords.x_pointer)?i.coords.x_pointer=0:i.coords.x_pointer>i.coords.w_rs&&(i.coords.x_pointer=i.coords.w_rs),i.coords.p_pointer=F(i.coords.x_pointer/i.coords.w_rs*100)):i.coords.p_pointer=0},w=function(e){return e/(100-i.coords.p_handle)*100},M=function(e){return e/100*(100-i.coords.p_handle)},E=function(){const e=100-i.coords.p_handle;let t=F(i.coords.p_pointer-i.coords.p_gap);return t<0?t=0:t>e&&(t=e),t},S=function(){"single"===i.options.type?i.coords.w_handle=i.cache.s_single.offsetWidth:i.coords.w_handle=i.cache.s_from.offsetWidth,i.coords.p_handle=F(i.coords.w_handle/i.coords.w_rs*100)},D=function(e){if("single"===i.options.type)return"single";return e>=i.coords.p_from_real+(i.coords.p_to_real-i.coords.p_from_real)/2?i.options.toStick?"from":"to":i.options.fromStick?"to":"from"},T=function(){i.coords.w_rs&&(i.labels.p_min=i.labels.w_min/i.coords.w_rs*100,i.labels.p_max=i.labels.w_max/i.coords.w_rs*100)},C=function(){i.coords.w_rs&&!i.options.hideLabelSlider&&("single"===i.options.type?(i.labels.w_single=i.cache.single.offsetWidth,i.labels.p_single_fake=i.labels.w_single/i.coords.w_rs*100,i.labels.p_single_left=i.coords.p_single_fake+i.coords.p_handle/2-i.labels.p_single_fake/2,i.labels.p_single_left=G(i.labels.p_single_left,i.labels.p_single_fake)):(i.labels.w_from=i.cache.from.offsetWidth,i.labels.p_from_fake=i.labels.w_from/i.coords.w_rs*100,i.labels.p_from_left=i.coords.p_from_fake+i.coords.p_handle/2-i.labels.p_from_fake/2,i.labels.p_from_left=F(i.labels.p_from_left),i.labels.p_from_left=G(i.labels.p_from_left,i.labels.p_from_fake),i.labels.w_to=i.cache.to.offsetWidth,i.labels.p_to_fake=i.labels.w_to/i.coords.w_rs*100,i.labels.p_to_left=i.coords.p_to_fake+i.coords.p_handle/2-i.labels.p_to_fake/2,i.labels.p_to_left=F(i.labels.p_to_left),i.labels.p_to_left=G(i.labels.p_to_left,i.labels.p_to_fake),i.labels.w_single=i.cache.single.offsetWidth,i.labels.p_single_fake=i.labels.w_single/i.coords.w_rs*100,i.labels.p_single_left=(i.labels.p_from_left+i.labels.p_to_left+i.labels.p_to_fake)/2-i.labels.p_single_fake/2,i.labels.p_single_left=F(i.labels.p_single_left),i.labels.p_single_left=G(i.labels.p_single_left,i.labels.p_single_fake)))},L=function(){i.rafId&&(cancelAnimationFrame(i.rafId),i.rafId=null),clearTimeout(i.updateTm),i.updateTm=null,i.options&&(A(),i.isActive?i.rafId=requestAnimationFrame(L):i.updateTm=setTimeout(L,300))},A=function(){i.coords.w_rs=i.cache.label.offsetWidth,i.coords.w_rs&&(i.coords.w_rs!==i.coords.w_rs_old&&(i.target="base",i.isResize=!0),(i.coords.w_rs!==i.coords.w_rs_old||i.forceRedraw)&&(g(),y(!0),_(),i.options.grid&&(J(),Q()),i.forceRedraw=!0,i.coords.w_rs_old=i.coords.w_rs,I()),i.coords.w_rs&&(i.dragging||i.forceRedraw||i.isKey)&&((i.oldFrom!==i.result.from||i.oldTo!==i.result.to||i.forceRedraw||i.isKey)&&(_(),i.cache.bar.style.left=i.coords.p_bar_x+"%",i.cache.bar.style.width=i.coords.p_bar_w+"%","single"===i.options.type?(i.cache.bar.style.left="0",i.cache.bar.style.width=i.coords.p_bar_w+i.coords.p_bar_x+"%",i.cache.s_single.style.left=i.coords.p_single_fake+"%",i.cache.single.style.left=i.labels.p_single_left+"%"):(i.cache.s_from.style.left=i.coords.p_from_fake+"%",i.cache.s_to.style.left=i.coords.p_to_fake+"%",(i.oldFrom!==i.result.from||i.forceRedraw)&&(i.cache.from.style.left=i.labels.p_from_left+"%"),(i.oldTo!==i.result.to||i.forceRedraw)&&(i.cache.to.style.left=i.labels.p_to_left+"%"),i.cache.single.style.left=i.labels.p_single_left+"%"),k(),i.oldFrom===i.result.from&&i.oldTo===i.result.to||i.isStart||(i.cache.targetDom.dispatchEvent(new Event("change")),i.cache.targetDom.dispatchEvent(new Event("input"))),i.oldFrom=i.result.from,i.oldTo=i.result.to,i.isResize||i.isUpdate||i.isStart||i.isFinish||O(),(i.isKey||i.isClick)&&(i.isKey=!1,i.isClick=!1,j()),i.isUpdate=!1,i.isResize=!1,i.isFinish=!1),i.isStart=!1,i.isKey=!1,i.isClick=!1,i.forceRedraw=!1))},_=function(){if(!i.options)return;const e=i.options.values.length,t=i.options.pValues;let s,n,a,o,r;if(!i.options.hideLabelSlider)if("single"===i.options.type)e?(s=U(t[i.result.from]),i.cache.single.innerHTML=s):(o=R(i.result.from),s=U(o,i.result.from),i.cache.single.innerHTML=s),C(),i.labels.p_single_left<i.labels.p_min+1?i.cache.min.style.visibility="hidden":i.cache.min.style.visibility="visible",i.labels.p_single_left+i.labels.p_single_fake>100-i.labels.p_max-1?i.cache.max.style.visibility="hidden":i.cache.max.style.visibility="visible";else{e?(i.options.decorateBoth?(s=U(t[i.result.from]),s+=i.options.valuesSeparator,s+=U(t[i.result.to])):s=U(t[i.result.from]+i.options.valuesSeparator+t[i.result.to]),n=U(t[i.result.from]),a=U(t[i.result.to]),i.cache.single.innerHTML=s,i.cache.from.innerHTML=n,i.cache.to.innerHTML=a):(o=R(i.result.from),r=R(i.result.to),i.options.decorateBoth?(s=U(o,i.result.from),s+=i.options.valuesSeparator,s+=U(r,i.result.to)):s=U(o+i.options.valuesSeparator+r,i.result.to),n=U(o,i.result.from),a=U(r,i.result.to),i.cache.single.innerHTML=s,i.cache.from.innerHTML=n,i.cache.to.innerHTML=a),C();const l=Math.min(i.labels.p_single_left,i.labels.p_from_left),c=i.labels.p_single_left+i.labels.p_single_fake,d=i.labels.p_to_left+i.labels.p_to_fake;let h=Math.max(c,d);i.labels.p_from_left+i.labels.p_from_fake>=i.labels.p_to_left?(i.cache.from.style.visibility="hidden",i.cache.to.style.visibility="hidden",i.cache.single.style.visibility="visible",i.result.from===i.result.to?("from"===i.target?i.cache.from.style.visibility="visible":"to"===i.target?i.cache.to.style.visibility="visible":i.target||(i.cache.from.style.visibility="visible"),i.cache.single.style.visibility="hidden",h=d):(i.cache.from.style.visibility="hidden",i.cache.to.style.visibility="hidden",i.cache.single.style.visibility="visible",h=Math.max(c,d))):(i.cache.from.style.visibility="visible",i.cache.to.style.visibility="visible",i.cache.single.style.visibility="hidden"),l<i.labels.p_min+1?i.cache.min.style.visibility="hidden":i.cache.min.style.visibility="visible",h>100-i.labels.p_max-1?i.cache.max.style.visibility="hidden":i.cache.max.style.visibility="visible"}},I=function(){const e=i.options,t=i.cache,s="number"==typeof e.fromMin&&!isNaN(e.fromMin),n="number"==typeof e.fromMax&&!isNaN(e.fromMax),a="number"==typeof e.toMin&&!isNaN(e.toMin),o="number"==typeof e.toMax&&!isNaN(e.toMax);let r,l,c,d;"single"===e.type?e.fromShadow&&(s||n)?(r=P(s?e.fromMin:e.min),l=P(n?e.fromMax:e.max)-r,r=F(r-i.coords.p_handle/100*r),l=F(l-i.coords.p_handle/100*l),r+=i.coords.p_handle/2,t.shad_single.style.display="block",t.shad_single.style.left=r+"%",t.shad_single.style.width=l+"%"):t.shad_single.style.display="none":(e.fromShadow&&(s||n)?(r=P(s?e.fromMin:e.min),l=P(n?e.fromMax:e.max)-r,r=F(r-i.coords.p_handle/100*r),l=F(l-i.coords.p_handle/100*l),r+=i.coords.p_handle/2,t.shad_from.style.display="block",t.shad_from.style.left=r+"%",t.shad_from.style.width=l+"%"):t.shad_from.style.display="none",e.toShadow&&(a||o)?(c=P(a?e.toMin:e.min),d=P(o?e.toMax:e.max)-c,c=F(c-i.coords.p_handle/100*c),d=F(d-i.coords.p_handle/100*d),c+=i.coords.p_handle/2,t.shad_to.style.display="block",t.shad_to.style.left=c+"%",t.shad_to.style.width=d+"%"):t.shad_to.style.display="none")},k=function(){"single"===i.options.type?(i.options.values.length?i.cache.targetDom.setAttribute("value",i.result.from_value):i.cache.targetDom.setAttribute("value",i.result.from),i.cache.targetDom.dataset.from=i.result.from):(i.options.values.length?i.cache.targetDom.setAttribute("value",i.result.from_value+i.options.inputValuesSeparator+i.result.to_value):i.cache.targetDom.setAttribute("value",i.result.from+i.options.inputValuesSeparator+i.result.to),i.cache.targetDom.dataset.from=i.result.from,i.cache.targetDom.dataset.to=i.result.to)},N=function(){k(),i.options.onStart&&"function"==typeof i.options.onStart&&(i.options.scope?i.options.onStart.call(i.options.scope,i.result):i.options.onStart(i.result))},O=function(){k(),i.options.onChange&&"function"==typeof i.options.onChange&&(i.options.scope?i.options.onChange.call(i.options.scope,i.result):i.options.onChange(i.result))},j=function(){k(),i.options.onFinish&&"function"==typeof i.options.onFinish&&(i.options.scope?i.options.onFinish.call(i.options.scope,i.result):i.options.onFinish(i.result))},$=function(){k(),i.options.onUpdate&&"function"==typeof i.options.onUpdate&&(i.options.scope?i.options.onUpdate.call(i.options.scope,i.result):i.options.onUpdate(i.result))};this.toggleInput=function(){this.cache.targetDom.classList.toggle("ax-range-input"),this.hasTabIndex?this.cache.targetDom.setAttribute("tabindex","-1"):this.cache.targetDom.removeAttribute("tabindex"),this.hasTabIndex=!this.hasTabIndex};const P=function(e,t){let s,n,a=i.options.max-i.options.min,o=a/100;return a?(s=t?e:e-i.options.min,n=s/o,F(n)):(i.noDiapason=!0,0)},z=function(e){let t,s,n=i.options.min,a=i.options.max,o=n.toString().split(".")[1],r=a.toString().split(".")[1],l=0,c=0;if(0===e)return i.options.min;if(100===e)return i.options.max;o&&(t=o.length,l=t),r&&(s=r.length,l=s),t&&s&&(l=t>=s?t:s),n<0&&(c=Math.abs(n),n=+(n+c).toFixed(l),a=+(a+c).toFixed(l));let d,h=(a-n)/100*e+n,u=i.options.step.toString().split(".")[1];return u?h=+h.toFixed(u.length):(h/=i.options.step,h*=i.options.step,h=+h.toFixed(0)),c&&(h-=c),d=u?+h.toFixed(u.length):F(h),d<i.options.min?d=i.options.min:d>i.options.max&&(d=i.options.max),d},Y=function(e){let t=Math.round(e/i.coords.p_step)*i.coords.p_step;return t>100&&(t=100),100===e&&(t=100),F(t)},q=function(e,t,s){let n,a,o=i.options;return o.minInterval?(n=z(e),a=z(t),"from"===s?a-n<o.minInterval&&(n=a-o.minInterval):n-a<o.minInterval&&(n=a+o.minInterval),P(n)):e},B=function(e,t,s){let n,a,o=i.options;return o.maxInterval?(n=z(e),a=z(t),"from"===s?a-n>o.maxInterval&&(n=a-o.maxInterval):n-a>o.maxInterval&&(n=a+o.maxInterval),P(n)):e},H=function(e,t,s){let n=z(e);return"number"!=typeof t&&(t=i.options.min),"number"!=typeof s&&(s=i.options.max),n<t&&(n=t),n>s&&(n=s),P(n)},F=function(e){return+(e=e.toFixed(20))},R=function(e){return i.options.prettifyEnabled?i.options.prettify&&"function"==typeof i.options.prettify?i.options.prettify(e):V(e):e},V=function(e){return e.toString().replace(/(\d{1,3}(?=(?:\d\d\d)+(?!\d)))/g,"$1"+i.options.prettifySeparator)},G=function(e,t){return i.options.forceEdges?(e<0?e=0:e>100-t&&(e=100-t),F(e)):F(e)};this.validate=function(){let e,t,s=this.options,n=this.result,a=s.values,o=a.length;if("string"==typeof s.min&&(s.min=+s.min),"string"==typeof s.max&&(s.max=+s.max),"string"==typeof s.from&&(s.from=+s.from),"string"==typeof s.to&&(s.to=+s.to),"string"==typeof s.step&&(s.step=+s.step),"string"==typeof s.fromMin&&(s.fromMin=+s.fromMin),"string"==typeof s.fromMax&&(s.fromMax=+s.fromMax),"string"==typeof s.toMin&&(s.toMin=+s.toMin),"string"==typeof s.toMax&&(s.toMax=+s.toMax),"string"==typeof s.gridNum&&(s.gridNum=+s.gridNum),s.max<s.min&&(s.max=s.min),o)for(s.pValues=[],s.min=0,s.max=o-1,s.step=1,s.gridNum=s.max,s.gridSnap=!0,t=0;t<o;t++)e=+a[t],isNaN(e)?e=a[t]:(a[t]=e,e=R(e)),s.pValues.push(e);("number"!=typeof s.from||isNaN(s.from))&&(s.from=s.min),("number"!=typeof s.to||isNaN(s.to))&&(s.to=s.max),"single"===s.type?(s.from<s.min&&(s.from=s.min),s.from>s.max&&(s.from=s.max)):(s.from<s.min&&(s.from=s.min),s.from>s.max&&(s.from=s.max),s.to<s.min&&(s.to=s.min),s.to>s.max&&(s.to=s.max),i.update_check.from&&(i.update_check.from!==s.from&&s.from>s.to&&(s.from=s.to),i.update_check.to!==s.to&&s.to<s.from&&(s.to=s.from)),s.from>s.to&&(s.from=s.to),s.to<s.from&&(s.to=s.from)),("number"!=typeof s.step||isNaN(s.step)||!s.step||s.step<0)&&(s.step=1),"number"==typeof s.fromMin&&s.from<s.fromMin&&(s.from=s.fromMin),"number"==typeof s.fromMax&&s.from>s.fromMax&&(s.from=s.fromMax),"number"==typeof s.toMin&&s.to<s.toMin&&(s.to=s.toMin),"number"==typeof s.toMax&&s.from>s.toMax&&(s.to=s.toMax),n&&(n.min!==s.min&&(n.min=s.min),n.max!==s.max&&(n.max=s.max),(n.from<n.min||n.from>n.max)&&(n.from=s.from),(n.to<n.min||n.to>n.max)&&(n.to=s.to)),("number"!=typeof s.minInterval||isNaN(s.minInterval)||!s.minInterval||s.minInterval<0)&&(s.minInterval=0),("number"!=typeof s.maxInterval||isNaN(s.maxInterval)||!s.maxInterval||s.maxInterval<0)&&(s.maxInterval=0),s.minInterval&&s.minInterval>s.max-s.min&&(s.minInterval=s.max-s.min),s.maxInterval&&s.maxInterval>s.max-s.min&&(s.maxInterval=s.max-s.min)};const U=function(e,t){let s="",n=i.options;return n.prefix&&(s+=n.prefix),s+=e,n.maxPostfix&&(n.values.length&&e===n.pValues[n.max]?(s+=n.maxPostfix,n.postfix&&(s+=" ")):t===n.max&&(s+=n.maxPostfix,n.postfix&&(s+=" "))),n.postfix&&(s+=n.postfix),s};this.updateResult=function(){this.result.min=this.options.min,this.result.max=this.options.max,i.result.from=i.options.from,i.result.from_percent=P(i.result.from),i.result.from_pretty=R(i.result.from),i.options.values&&(i.result.from_value=i.options.values[i.result.from]),i.result.to=i.options.to,i.result.to_percent=P(i.result.to),i.result.to_pretty=R(i.result.to),i.options.values&&(i.result.to_value=i.options.values[i.result.to])};const W=function(){if(!i.options.grid)return;let e,t,s,n,a,o=i.options,r=o.max-o.min,l=o.gridNum,c=0,d=0,h=4,u=0,p="";for(J(),o.gridSnap&&(l=r/o.step),l>50&&(l=50),c=F(100/l),l>4&&(h=3),l>7&&(h=2),l>14&&(h=1),l>28&&(h=0),e=0;e<l+1;e++){for(s=h,d=F(c*e),d>100&&(d=100),i.coords.big[e]=d,n=(d-c*(e-1))/(s+1),t=1;t<=s&&0!==d;t++)u=F(d-n*t),p+='<span class="ax-range-grid-pol ax-small" style="left: '+u+'%"></span>';p+='<span class="ax-range-grid-pol" style="left: '+d+'%"></span>',a=z(d),a=o.values.length?o.pValues[a]:R(a),p+='<span class="ax-range-grid-text ax-grid-text-'+e+'" style="left: '+d+'%">'+a+"</span>"}i.coords.big_num=Math.ceil(l+1),i.cache.cont.classList.add("ax-with-grid"),i.cache.grid.innerHTML=p,X()},X=function(){for(let e=0;e<i.coords.big_num;e++)i.cache.grid_labels.push(i.cache.grid.querySelector(".ax-grid-text-"+e));Q()},Q=function(){const e=[],t=[],s=i.coords.big_num;for(let n=0;n<s;n++)i.coords.big_w[n]=i.cache.grid_labels[n].offsetWidth,i.coords.big_p[n]=F(i.coords.big_w[n]/i.coords.w_rs*100),i.coords.big_x[n]=F(i.coords.big_p[n]/2),e[n]=F(i.coords.big[n]-i.coords.big_x[n]),t[n]=F(e[n]+i.coords.big_p[n]);i.options.forceEdges&&(e[0]<-i.coords.grid_gap&&(e[0]=-i.coords.grid_gap,t[0]=F(e[0]+i.coords.big_p[0]),i.coords.big_x[0]=i.coords.grid_gap),t[s-1]>100+i.coords.grid_gap&&(t[s-1]=100+i.coords.grid_gap,e[s-1]=F(t[s-1]-i.coords.big_p[s-1]),i.coords.big_x[s-1]=F(i.coords.big_p[s-1]-i.coords.grid_gap))),K(2,e,t),K(4,e,t);for(let e=0;e<s;e++){const t=i.cache.grid_labels[e];i.coords.big_x[e]!==Number.POSITIVE_INFINITY&&(t.style.marginLeft=-i.coords.big_x[e]+"%")}},K=function(e,t,s){const n=i.coords.big_num;for(let a=0;a<n;a+=e){let o=a+e/2;if(o>=n)break;const r=i.cache.grid_labels[o];s[a]<=t[o]?r.style.visibility="visible":r.style.visibility="hidden"}},J=function(){i.options.gridMargin&&(i.coords.w_rs=i.cache.label.offsetWidth,i.coords.w_rs&&("single"===i.options.type?i.coords.w_handle=i.cache.s_single.offsetWidth:i.coords.w_handle=i.cache.s_from.offsetWidth,i.coords.p_handle=F(i.coords.w_handle/i.coords.w_rs*100),i.coords.grid_gap=F(i.coords.p_handle/2-.1),i.cache.grid.style.width=F(100-i.coords.p_handle)+"%",i.cache.grid.style.left=i.coords.grid_gap+"%"))};this.init()}init(){if(this.validate(),this.ready(),this.referName)if(axIsEmpty(axRanges))axRanges.push({name:this.referName,instance:this});else for(let e=0;e<axRanges.length;e++){if(axRanges[e].name==this.referName){axRanges[e].instance=this;break}axRanges.push({name:this.referName,instance:this})}}update(e,t){if(this.targetDom)return this.isUpdate=!0,this.options.from=this.result.from,this.options.to=this.result.to,this.update_check.from=this.result.from,this.update_check.to=this.result.to,this.options=Object.assign(this.options,e),this.validate(),this.updateResult(e),this.toggleInput(),this.remove(),this.ready(!0),"updated"in this.handlers&&this.emit("updated",""),t&&t.call(this),this}reset(e){this.targetDom&&(this.updateResult(),"reset"in this.handlers&&this.emit("reset",""),e&&e.call(this),this.update())}destroy(e){this.targetDom&&(this.toggleInput(),this.targetDom.removeAttribute("readonly"),this.remove(),this.targetDom=null,this.options=null,"destroy"in this.handlers&&this.emit("destroy",""),e&&e.call(this))}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}document.querySelectorAll("[axRange]").forEach(e=>{new axRange(e)});
-/*!
- * 鎻掍欢锛氳〃鍗曟牎楠岋紱浣跨敤鏂规硶锛歯ew axValid('#id',{鍙傛暟},'#id')锛沺arent鍙傛暟鍙寚瀹氾紝涔熷彲璁╂彃浠惰嚜宸卞尮閰嶏紙鏈�杩戠殑form鍏冪礌锛�
- */
-const axValids=[];class axValid{constructor(e,t,i){if(this.targetDom=axIdToDom(e),!this.targetDom.getAttribute("name"))return console.error("The element to be verified must have a name attribute!"),!1;if(i?this.parent="string"==typeof e?document.querySelector(i):i:this.targetDom.closest("form")?this.parent=this.targetDom.closest("form"):this.parent="",this.options=axExtend({mode:"newLine",iconShow:!0,type:"",rule:{},label:"",within:"",error:"",success:"閫氳繃楠岃瘉锛�",equal:"",max:"",min:"",divisor:"",length:"",maxLength:"",minLength:"",include:[],exclude:[],earliest:"",latest:"",compare:"",date:"",format:"",inputSuccess:"ax-check-primary",inputError:"ax-check-danger",boxSuccess:"ax-color-primary",boxError:"ax-color-danger",chars:"~!@#",charsShow:!1,trigger:"blur",group:!1,onChange:""},t,this.targetDom),this.handlers={},this.strong=0,this.message="",this.name=this.targetDom.getAttribute("name"),this.buttonId=this.name,this.targetDom.getAttribute("axValid")?this.alias=this.targetDom.getAttribute("axValid"):this.alias="",axIsEmpty(this.options.include)?this.options.include=[]:this.options.include=this.options.include.split(","),axIsEmpty(this.options.exclude)?this.options.exclude=[]:this.options.exclude=this.options.exclude.split(","),this.options.type.indexOf("strong")>-1&&this.options.format){this.upperLen="",this.lowerLen="",this.numberLen="",this.charLen;let e="",t="",i="";if(this.formatMin="",this.formatMax="",this.onlyName={},this.lowerName="",this.upperName="",this.numberName="",this.charsName="",this.scaleNameGroup=[],this.scaleName={},this.scale="",this.regExp="",this.regText=[],e=this.options.format.split("#")[0],this.options.format.split("#")[1]?(t=this.options.format.split("#")[1],this.formatMin=t.split(",")[0],-1==t.indexOf(",")?(this.lengthOnly=!0,this.formatMax=""):-1!==t.indexOf(",")&&t.split(",")[1]?this.formatMax=t.split(",")[1]:this.formatMax=""):(this.formatMin="",this.formatMax=""),this.options.format.split("#")[2]&&(i=this.options.format.split("#")[2],-1!==i.indexOf("a")&&(this.scaleName.lower="灏忓啓瀛楁瘝",this.scale+="a-z",this.regText.push("a-z"),this.scaleNameGroup.push(this.scaleName.lower)),-1!==i.indexOf("A")&&(this.scaleName.upper="澶у啓瀛楁瘝",this.scale+="A-Z",this.regText.push("A-Z"),this.scaleNameGroup.push(this.scaleName.upper)),-1!==i.indexOf("9")&&(this.scaleName.number="鏁板瓧",this.scale+="0-9",this.regText.push("0-9"),this.scaleNameGroup.push(this.scaleName.number)),-1!==i.indexOf("~")&&(this.scaleName.char=this.options.charsShow?'鐗规畩瀛楃"'+this.options.chars+'"':"鐗规畩瀛楃",this.scale+=this.options.chars,this.regText.push(this.options.chars),this.scaleNameGroup.push(this.scaleName.char)),-1!==i.indexOf("涓�")&&(this.scaleName.cn="涓枃",this.scale+="涓�-榫�",this.regText.push("涓�-榫�"),this.scaleNameGroup.push(this.scaleName.cn)),this.scaleNameGroup.length>2?this.scaleNameGroup=axRangeReplace(this.scaleNameGroup.join(),"鍜�",this.scaleNameGroup.join().lastIndexOf(","),"",1):this.scaleNameGroup=this.scaleNameGroup.join(),this.scaleNameGroup=this.scaleNameGroup.replaceAll(",","銆�"),!axIsEmpty(this.scaleNameGroup)&&(this.message+="蹇呴』鏄�"+this.scaleNameGroup+"锛屽苟涓旇姹�")),axIsEmpty(this.options.format.split("#")[0])&&this.options.format.split("#")[3]&&(this.options.format.split("#")[3]<i.length&&this.options.format.split("#")[3]>0?2==this.options.format.split("#")[3]?this.regText.forEach(e=>{this.regExp+="(?!["+e+"]+$)"}):3==this.options.format.split("#")[3]?axArrange(this.regText,2).forEach(e=>{this.regExp+="(?!["+e.join().replaceAll(",","")+"]+$)"}):4==this.options.format.split("#")[3]&&axArrange(this.regExp,3).forEach(e=>{this.regExp+="(?!["+e.join().replaceAll(",","")+"]+$)"}):console.error("闅忔満瀛楃绫诲瀷蹇呴』鏈�1绉嶏紝骞朵笖涓嶈兘瓒呰繃鍏佽瀛楃绫诲瀷鑼冨洿锛�"),this.message=this.scaleNameGroup+"涓嚦灏戦�夋嫨"+this.options.format.split("#")[3]+"绉嶅瓧绗︺��"),-1!==e.indexOf("a")){let t=e.lastIndexOf("a");this.onlyName.lower="灏忓啓瀛楁瘝",this.lowerLen=parseInt(e.substring(t+1,t+2)),this.message+=this.onlyName.lower+"鑷冲皯"+this.lowerLen+"涓紝"}if(-1!==e.indexOf("A")){let t=e.lastIndexOf("A");this.onlyName.upper="澶у啓瀛楁瘝",this.upperLen=parseInt(e.substring(t+1,t+2)),this.message+=this.onlyName.upper+"鑷冲皯"+this.upperLen+"涓紝"}if(-1!==e.indexOf("9")){let t=e.lastIndexOf("9");this.onlyName.number="鏁板瓧",this.numberLen=parseInt(e.substring(t+1,t+2)),this.message+=this.onlyName.number+"鑷冲皯"+this.numberLen+"涓紝"}if(-1!==e.indexOf("~")){let t=e.lastIndexOf("~");this.onlyName.char=this.options.charsShow?'鐗规畩瀛楃"'+this.options.chars+'"':"鐗规畩瀛楃",this.charLen=parseInt(e.substring(t+1,t+2)),this.message+=this.onlyName.char+"鑷冲皯"+this.charLen+"涓��"}if(-1!==e.indexOf("涓�")){let t=e.lastIndexOf("涓�");this.onlyName.cn="涓枃",this.cnLen=parseInt(e.substring(t+1,t+2)),this.message+=this.onlyName.cn+"鑷冲皯"+this.cnLen+"涓��"}this.lowerLen&&(this.regExp+="(?="+Array(this.lowerLen+1).join(".*?[a-z]")+")"),this.upperLen&&(this.regExp+="(?="+Array(this.upperLen+1).join(".*?[A-Z]")+")"),this.numberLen&&(this.regExp+="(?="+Array(this.numberLen+1).join(".*?[0-9]")+")"),this.charLen&&(this.regExp+="(?="+Array(this.charLen+1).join(".*?["+this.options.chars+"]")+")"),this.cnLen&&(this.regExp+="(?="+Array(this.cnLen+1).join(".*?[涓�-榫")+")"),axIsEmpty(this.scale)?axIsEmpty(this.scale)&&this.formatMin?this.regExp+=".":this.regExp+=".{0,}":this.formatMin?this.regExp+="["+this.scale+"]":this.regExp+="["+this.scale+"]+",this.formatMin&&this.lengthOnly&&!this.formatMax?(this.regExp+="{"+this.formatMin+"}",this.message+="鎬诲叡鍙兘鏄�"+this.formatMin+"涓瓧绗︺��"):this.formatMin&&!this.formatMax?(this.regExp+="{"+this.formatMin+",}",this.message+="鎬诲叡鑷冲皯"+this.formatMin+"涓瓧绗︺��"):this.formatMin&&this.formatMax&&(this.regExp+="{"+this.formatMin+","+this.formatMax+"}",this.message+="鎬诲叡鑷冲皯"+this.formatMin+"涓瓧绗︼紝涓斾笉鑳借秴杩�"+this.formatMax+"涓瓧绗︺��")}this.init()}init(){let e=this;this.buttonId&&(axIsEmpty(axValids)?axValids.push({name:this.buttonId,alias:this.alias,instance:this,parent:this.parent}):axValids.some(e=>e.name==this.buttonId&&e.parent==this.parent)||axValids.push({name:this.buttonId,alias:this.alias,instance:this,parent:this.parent})),axValids.some(e=>e.name==this.options.compare)?(this.compareName=axInstance(axValids,this.options.compare).name,axInstance(axValids,this.options.compare).options.label?this.compareLabel=axInstance(axValids,this.options.compare).options.label:this.compareLabel=this.compareName):this.options.compare&&document.querySelector("[name = "+this.options.compare+"]")?(this.compareName=this.options.compare,this.compareLabel=this.options.compare):(this.compareLabel="",this.compareName=""),this.rules=this.getRules(this.options.rule,this.options.label),this.msgBox=axAddElem("div",{valid:""}),"submit"==this.options.trigger?this.targetDom.addEventListener("change",()=>{e.createMsg()},!1):"input"==this.options.trigger?this.targetDom.addEventListener("input",()=>{e.createMsg()},!1):"change"==this.options.trigger?this.targetDom.addEventListener("change",()=>{e.createMsg()},!1):this.targetDom.addEventListener("blur",()=>{e.createMsg()},!1)}getRules(e,t){if("string"==typeof e&&e)e=JSON.parse(e);else{this.options.type.trim().split(",").forEach(i=>{this.isType(i,e,t)})}return e}isType(e,t,i){"isRequired"==e?t.presence={message:this.diyMsg("^"+i+"涓嶈兘涓虹┖锛�")}:"isEmail"==e?t.email={message:this.diyMsg('^"%{value}"涓嶆槸涓�涓湁鏁堢殑閭鍦板潃锛�')}:"isUrl"==e?t.url={message:this.diyMsg('^"%{value}"涓嶆槸涓�涓湁鏁堢殑缃戝潃锛�')}:"exclude"==e?this.options.exclude&&(t.exclusion={within:this.options.exclude,message:this.diyMsg("^"+i+'"%{value}"鏄笉琚厑璁哥殑锛�')}):"include"==e?this.options.include&&(t.inclusion={within:this.options.include,message:this.diyMsg("^"+i+'"%{value}"鏄笉琚厑璁哥殑锛�')}):"maxLength"==e?this.options.maxLength&&(axIsEmpty(t.length)&&(t.length={}),t.length.maximum=this.options.maxLength,t.length.tooLong=this.diyMsg("^"+i+"鏈�澶氬厑璁�"+this.options.maxLength+"涓瓧绗︿覆锛�")):"minLength"==e?this.options.minLength&&(axIsEmpty(t.length)&&(t.length={}),t.length.minimum=this.options.minLength,t.length.tooShort=this.diyMsg("^"+i+"鏈�灏戣姹�"+this.options.minLength+"涓瓧绗︿覆锛�")):"length"==e?this.options.length&&(axIsEmpty(t.length)&&(t.length={}),t.length.is=this.options.length,t.length.wrongLength=this.diyMsg("^"+i+"瑕佹眰绛変簬"+this.options.length+"涓瓧绗︿覆锛�")):"isStrict"==e?(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.strict=!0,t.numericality.notValid=this.diyMsg("^"+i+"瑕佹眰鏄竴涓暟瀛楀苟涓斾笉鑳戒互0寮�澶达紒")):"isNumber"==e?(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.notValid=this.diyMsg("^"+i+"蹇呴』鏄竴涓暟瀛楋紒")):"isOdd"==e?(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.odd=!0,t.numericality.notOdd=this.diyMsg("^"+i+"瑕佹眰鏄竴涓鏁帮紒")):"isEven"==e?(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.even=!0,t.numericality.notEven=this.diyMsg("^"+i+"瑕佹眰鏄竴涓伓鏁帮紒")):"isInteger"==e?(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.onlyInteger=!0,t.numericality.notInteger=this.diyMsg("^"+i+"瑕佹眰鏄竴涓暣鏁帮紒")):"greaterThan"==e?this.options.max&&(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.greaterThan=this.options.max,t.numericality.notGreaterThan=this.diyMsg("^"+i+"瑕佹眰澶т簬"+this.options.max+"锛�")):"greaterEqual"==e?this.options.max&&(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.greaterThanOrEqualTo=this.options.max,t.numericality.notGreaterThanOrEqualTo=this.diyMsg("^"+i+"瑕佹眰澶т簬鎴栫瓑浜�"+this.options.max+"锛�")):"lessThan"==e?this.options.min&&(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.lessThan=this.options.min,t.numericality.message=this.diyMsg("^"+i+"瑕佹眰灏忎簬"+this.options.min+"锛�")):"lessEqual"==e?this.options.min&&(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.lessThanOrEqualTo=this.options.min,t.numericality.notLessThanOrEqualTo=this.diyMsg("^"+i+"瑕佹眰灏忎簬鎴栫瓑浜�"+this.options.min+"锛�")):"equal"==e?this.options.equal&&(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.equalTo=this.options.equal,t.numericality.notEqualTo=this.diyMsg("^"+i+"瑕佹眰绛変簬"+this.options.equal+"锛�")):"divisible"==e?this.options.divisor&&(axIsEmpty(t.numericality)&&(t.numericality={}),t.numericality.divisibleBy=this.options.divisor,t.numericality.notDivisibleBy=this.diyMsg("^"+i+"瑕佹眰鑳借"+this.options.divisor+"鏁撮櫎锛�")):"isDateTime"==e?(axIsEmpty(t.datetime)&&(t.datetime={}),t.datetime.notValid=this.diyMsg('^"%{value}"涓嶆槸涓�涓棩鏈熸牸寮忥紒')):"isDate"==e?(axIsEmpty(t.datetime)&&(t.datetime={}),t.datetime.dateOnly=!0,t.datetime.notValid=this.diyMsg('^"%{value}"涓嶆槸涓�涓棩鏈熸牸寮忥紒姝g‘鏍煎紡濡傦細2021-2-12鎴�2021/2/12')):"earliest"==e?this.options.earliest&&(axIsEmpty(t.datetime)&&(t.datetime={}),t.datetime.earliest=this.options.earliest,t.datetime.tooEarly=this.diyMsg("^鏃ユ湡鏃堕棿涓嶈兘鏃╀簬"+this.options.earliest+"锛�")):"latest"==e?this.options.latest&&(axIsEmpty(t.datetime)&&(t.datetime={}),t.datetime.latest=this.options.latest,t.datetime.tooLate=this.diyMsg("^鏃ユ湡鏃堕棿涓嶈兘鏅氫簬"+this.options.latest+"锛�")):"confirm"==e?axIsEmpty(this.options.compare)||(t.equality={attribute:this.options.compare,message:this.diyMsg("^"+i+"涓�"+this.compareLabel+"涓嶄竴鑷达紒")}):"strong"==e&&this.options.format&&(t.format={pattern:this.regExp,message:this.diyMsg("^"+i+"瑕佹眰"+this.message)})}diyMsg(e){return this.options.error?this.options.error:e}createMsg(){let e={},t={},i=this.targetDom.name,s=this.targetDom.value;if(!s||(e[i]=s),this.compareName&&this.options.compare){let t=document.querySelector("[name="+this.compareName+"]").value;e[this.compareName]=t}!this.rules||(t[i]=this.rules),validate.extend(validate.validators.datetime,{parse:(e,t)=>(this.timeValue=e,axLocalTime(e)),format:(e,t)=>this.timeValue});let n=validate(e,t,{format:"flat"});n?(this.flag=!1,this.result=n[0],this.targetDom.classList.remove(this.options.inputSuccess),this.targetDom.classList.add(this.options.inputError),this.msgBox.classList.remove(this.options.boxSuccess),this.msgBox.classList.add(this.options.boxError),this.options.iconShow?this.msgBox.innerHTML=axIcon.font.errorFill+" "+this.result:this.msgBox.innerHTML=this.result):(this.flag=!0,this.result=this.options.label+this.options.success,this.targetDom.classList.remove(this.options.inputError),this.targetDom.classList.add(this.options.inputSuccess),this.msgBox.classList.remove(this.options.boxError),this.msgBox.classList.add(this.options.boxSuccess),this.options.iconShow?this.msgBox.innerHTML=axIcon.font.successFill+" "+this.result:this.msgBox.innerHTML=this.result);let a=0,o=0,r=0,l=0,c=0,d=0;if("strong"==this.options.type&&this.options.format&&(s&&s.match(new RegExp("[a-z]"))&&(o=1),s&&s.match(new RegExp("[A-Z]"))&&(a=1),s&&s.match(new RegExp("[0-9]"))&&(r=1),s&&s.match(new RegExp("["+this.options.chars+"]"))&&(l=1),s&&s.match(new RegExp("[涓�-榫"))&&(c=1),s&&this.formatMin&&s.length>=this.formatMin&&(d=1)),this.strong=a+o+r+l+c+d,axValids.find(e=>e.name=this.buttonId&&e.parent==this.parent).instance=this,"note"==this.options.mode){this.msgBox.classList.add("ax-form-txt");let e=this.targetDom.parentNode.parentNode.nextElementSibling;e&&e.hasAttribute("valid")&&(e.remove(),this.targetDom.parentNode.parentNode.insertAdjacentElement("afterend",this.msgBox)),this.targetDom.parentNode.parentNode.insertAdjacentElement("afterend",this.msgBox)}else if("popup"==this.options.mode)this.popup?(this.popup.content.innerHTML="",this.popup.content.appendChild(this.msgBox)):this.popup=new axPopup(this.targetDom,{content:this.msgBox,padding:!1,placement:"bottom-start",offsetShow:!1,arrow:!1,close:!1,footerShow:!1,theme:"crude",stay:!0}).show();else if("message"==this.options.mode)this.flag?new axMessage({content:this.result,result:"success",iconShow:!0}):new axMessage({content:this.result,result:"error",iconShow:!0});else if("#"==this.options.mode.substr(0,1))document.querySelector(this.options.mode).innerHTML="",this.options.group?axIsEmpty(axValids)||axValids.forEach(e=>{axIsEmpty(e.instance.msgBox.children)||document.querySelector(this.options.mode).insertAdjacentElement("beforeend",e.instance.msgBox)}):document.querySelector(this.options.mode).appendChild(this.msgBox);else if(1==this.options.mode.nodeType)this.options.mode.innerHTML="",this.options.group?axIsEmpty(axValids)||axValids.forEach(e=>{axIsEmpty(e.instance.msgBox.children)||document.querySelector(this.options.mode).insertAdjacentElement("beforeend",e.instance.msgBox)}):this.options.mode.appendChild(this.msgBox);else{this.msgBox.classList.add("ax-valid");let e=this.targetDom.nextElementSibling;e&&e.hasAttribute("valid")&&e.remove(),this.targetDom.insertAdjacentElement("afterend",this.msgBox)}this.options.onChange&&this.options.onChange.call(this,this.strong,this.flag,this.msgBox.innerHTML),"update"in this.handlers&&this.emit("update",this.strong,this.flag,this.msgBox.innerHTML)}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}[...document.querySelectorAll("[axValid]")].filter(e=>e.getAttribute("name")).forEach(e=>{new axValid(e)});
-/*!
-* 鎻掍欢锛氬垪琛ㄧ瓫閫夈�佹绱€�佹帓搴忓拰鍒嗛〉锛涙敼閫犺嚜listjs v2.3.1 https://github.com/javve/list.js锛涗娇鐢ㄦ柟娉曪細new axList('#id',{鍙傛暟})
-*/
-const axLists=[];!function(e){let t=window||t||self;"function"==typeof define&&define.amd?define(e):t.axList=e(),document.querySelectorAll("[axList]").forEach(e=>{new axList(e)})}((function(){"use strict";var e,t,i=0;function s(e){return e>=48&&e<=57}function n(e,n){for(var a=(e+="").length,o=(n+="").length,r=0,l=0;r<a&&l<o;){var c=e.charCodeAt(r),d=n.charCodeAt(l);if(s(c)){if(!s(d))return c-d;for(var h=r,u=l;48===c&&++h<a;)c=e.charCodeAt(h);for(;48===d&&++u<o;)d=n.charCodeAt(u);for(var p=h,m=u;p<a&&s(e.charCodeAt(p));)++p;for(;m<o&&s(n.charCodeAt(m));)++m;var f=p-h-m+u;if(f)return f;for(;h<p;)if(f=e.charCodeAt(h++)-n.charCodeAt(u++))return f;r=p,l=m}else{if(c!==d)return c<i&&d<i&&-1!==t[c]&&-1!==t[d]?t[c]-t[d]:c-d;++r,++l}}return r>=a&&l<o&&a>=o?-1:l>=o&&r<a&&o>=a?1:a-o}n.caseInsensitive=n.i=function(e,t){return n((""+e).toLowerCase(),(""+t).toLowerCase())},Object.defineProperties(n,{alphabet:{get:function(){return e},set:function(s){t=[];var n=0;if(e=s)for(;n<e.length;n++)t[e.charCodeAt(n)]=n;for(i=t.length,n=0;n<i;n++)void 0===t[n]&&(t[n]=-1)}}});var a=n,o=function(e,t,i,s){return(s=s||{}).test&&s.querySelector||!s.test&&document.querySelector?function(e,t,i){return i?e.querySelector(t):e.querySelectorAll(t)}(e,t,i):s.test&&s.getElementsByClassName||!s.test&&document.getElementsByClassName?function(e,t,i){return i?e.querySelector(t):e.querySelectorAll(t)}(e,t,i):function(e,t,i){for(var s=[],n=e.getElementsByTagName("*"),a=n.length,o=new RegExp("(^|\\s)"+t+"(\\s|$)"),r=0,l=0;r<a;r++)if(o.test(n[r].className)){if(i)return n[r];s[l]=n[r],l++}return s}(e,t,i)},r=function(e){for(var t,i=Array.prototype.slice.call(arguments,1),s=0;t=i[s];s++)if(t)for(var n in t)e[n]=t[n];return e},l=[].indexOf,c=function(e,t){if(l)return e.indexOf(t);for(var i=0,s=e.length;i<s;++i)if(e[i]===t)return i;return-1},d={},h=function(e){if(void 0===e)return[];if(null===e)return[null];if(e===window)return[window];if("string"==typeof e)return[e];if(function(e){return"[object Array]"===Object.prototype.toString.call(e)}(e))return e;if("number"!=typeof e.length)return[e];if("function"==typeof e&&e instanceof Function)return[e];for(var t=[],i=0,s=e.length;i<s;i++)(Object.prototype.hasOwnProperty.call(e,i)||i in e)&&t.push(e[i]);return t.length?t:[]};var u=window.addEventListener?"addEventListener":"attachEvent",p=window.removeEventListener?"removeEventListener":"detachEvent",m="addEventListener"!==u?"on":"";d.bind=function(e,t,i,s){for(var n=0,a=(e=h(e)).length;n<a;n++)e[n][u](m+t,i,s||!1)},d.unbind=function(e,t,i,s){for(var n=0,a=(e=h(e)).length;n<a;n++)e[n][p](m+t,i,s||!1)},d.debounce=function(e,t,i){var s;return t?function(){var n=this,a=arguments,o=function(){s=null,i||e.apply(n,a)},r=i&&!s;clearTimeout(s),s=setTimeout(o,t),r&&e.apply(n,a)}:e};var f=function(e){return e=(e=null===(e=void 0===e?"":e)?"":e).toString()},g=c,v=/\s+/,x=function(e){return new y(e)};function y(e){if(!e||!e.nodeType)throw new Error("A DOM element reference is required");this.el=e,this.list=e.classList}y.prototype.add=function(e){if(this.list)return this.list.add(e),this;var t=this.array();return~g(t,e)||t.push(e),this.el.className=t.join(" "),this},y.prototype.remove=function(e){if(this.list)return this.list.remove(e),this;var t=this.array(),i=g(t,e);return~i&&t.splice(i,1),this.el.className=t.join(" "),this},y.prototype.toggle=function(e,t){return this.list?(void 0!==t?t!==this.list.toggle(e,t)&&this.list.toggle(e):this.list.toggle(e),this):(void 0!==t?t?this.add(e):this.remove(e):this.has(e)?this.remove(e):this.add(e),this)},y.prototype.array=function(){var e=(this.el.getAttribute("class")||"").replace(/^\s+|\s+$/g,"").split(v);return""===e[0]&&e.shift(),e},y.prototype.has=y.prototype.contains=function(e){return this.list?this.list.contains(e):!!~g(this.array(),e)};var b=function(e,t){var i=e.getAttribute&&e.getAttribute(t)||null;if(!i)for(var s=e.attributes,n=s.length,a=0;a<n;a++)void 0!==s[a]&&s[a].nodeName===t&&(i=s[a].nodeValue);return i},w=function(e){return function(t,i,s){var n=this;this._values={},this.found=!1,this.filtered=!1;this.values=function(t,i){if(void 0===t)return n._values;for(var s in t)n._values[s]=t[s];!0!==i&&e.templater.set(n,n.values())},this.show=function(){e.templater.show(n)},this.hide=function(){e.templater.hide(n)},this.matching=function(){return e.filtered&&e.searched&&n.found&&n.filtered||e.filtered&&!e.searched&&n.filtered||!e.filtered&&e.searched&&n.found||!e.filtered&&!e.searched},this.visible=function(){return!(!n.elm||n.elm.parentNode!=e.list)},function(t,i,s){if(void 0===i)s?n.values(t,s):n.values(t);else{n.elm=i;var a=e.templater.get(n,t);n.values(a)}}(t,i,s)}},M=function(e){var t,i=this,s=function(t,i){var s=t.cloneNode(!0);s.removeAttribute("id");for(var n=0,a=i.length;n<a;n++){var o=void 0,r=i[n];if(r.data)for(var l=0,c=r.data.length;l<c;l++)s.setAttribute("data-"+r.data[l],"");else r.attr&&r.name?(o=e.utils.getByClass(s,"."+r.name,!0))&&o.setAttribute(r.attr,""):(o=e.utils.getByClass(s,"."+r,!0))&&(o.innerHTML="")}return s},n=function(){for(var t=e.list.childNodes,i=0,s=t.length;i<s;i++)if(void 0===t[i].data)return t[i].cloneNode(!0)},a=function(e){if("string"==typeof e){if(/<tr[\s>]/g.exec(e)){var t=document.createElement("tbody");return t.innerHTML=e,t.firstElementChild}if(-1!==e.indexOf("<")){var i=document.createElement("div");return i.innerHTML=e,i.firstElementChild}}},o=function(t,i,s){var n=void 0,a=function(t){for(var i=0,s=e.valueNames.length;i<s;i++){var n=e.valueNames[i];if(n.data){for(var a=n.data,o=0,r=a.length;o<r;o++)if(a[o]===t)return{data:t}}else{if(n.attr&&n.name&&n.name==t)return n;if(n===t)return t}}}(i);a&&(a.data?t.elm.setAttribute("data-"+a.data,s):a.attr&&a.name?(n=e.utils.getByClass(t.elm,"."+a.name,!0))&&n.setAttribute(a.attr,s):(n=e.utils.getByClass(t.elm,"."+a,!0))&&(n.innerHTML=s))};this.get=function(t,s){i.create(t);for(var n={},a=0,o=s.length;a<o;a++){var r=void 0,l=s[a];if(l.data)for(var c=0,d=l.data.length;c<d;c++)n[l.data[c]]=e.utils.getAttribute(t.elm,"data-"+l.data[c]);else l.attr&&l.name?(r=e.utils.getByClass(t.elm,"."+l.name,!0),n[l.name]=r?e.utils.getAttribute(r,l.attr):""):(r=e.utils.getByClass(t.elm,"."+l,!0),n[l]=r?r.innerHTML:"")}return n},this.set=function(e,t){if(!i.create(e))for(var s in t)t.hasOwnProperty(s)&&o(e,s,t[s])},this.create=function(e){return void 0===e.elm&&(e.elm=t(e.values()),i.set(e,e.values()),!0)},this.remove=function(t){t.elm.parentNode===e.list&&e.list.removeChild(t.elm)},this.show=function(t){i.create(t),e.list.appendChild(t.elm)},this.hide=function(t){void 0!==t.elm&&t.elm.parentNode===e.list&&e.list.removeChild(t.elm)},this.clear=function(){if(e.list.hasChildNodes())for(;e.list.childNodes.length>=1;)e.list.removeChild(e.list.firstChild)},function(){var i;if("function"!=typeof e.item){if(!(i=e.item&&"string"==typeof e.item?-1===e.item.indexOf("<")?document.querySelector(e.item):a(e.item):n()))throw new Error("The list needs to have at least one item on init otherwise you'll have to add a template.");i=s(i,e.valueNames),t=function(){return i.cloneNode(!0)}}else t=function(t){var i=e.item(t);return a(i)}}()},E=function(e,t){t=r({location:0,distance:100,threshold:.4,multiSearch:!0,searchClass:"[fuzzy]"},t=t||{});var i={search:function(s,n){for(var a=t.multiSearch?s.replace(/ +$/,"").split(/ +/):[s],o=0,r=e.items.length;o<r;o++)i.item(e.items[o],n,a)},item:function(e,t,s){for(var n=!0,a=0;a<s.length;a++){for(var o=!1,r=0,l=t.length;r<l;r++)i.values(e.values(),t[r],s[a])&&(o=!0);o||(n=!1)}e.found=n},values:function(e,i,s){if(e.hasOwnProperty(i)&&function(e,t,i){var s=i.location||0,n=i.distance||100,a=i.threshold||.4;if(t===e)return!0;if(t.length>32)return!1;var o=s,r=function(){var e,i={};for(e=0;e<t.length;e++)i[t.charAt(e)]=0;for(e=0;e<t.length;e++)i[t.charAt(e)]|=1<<t.length-e-1;return i}();function l(e,i){var s=e/t.length,a=Math.abs(o-i);return n?s+a/n:a?1:s}var c=a,d=e.indexOf(t,o);-1!=d&&(c=Math.min(l(0,d),c),-1!=(d=e.lastIndexOf(t,o+t.length))&&(c=Math.min(l(0,d),c)));var h,u,p=1<<t.length-1;d=-1;for(var m,f=t.length+e.length,g=0;g<t.length;g++){for(h=0,u=f;h<u;)l(g,o+u)<=c?h=u:f=u,u=Math.floor((f-h)/2+h);f=u;var v=Math.max(1,o-u+1),x=Math.min(o+u,e.length)+t.length,y=Array(x+2);y[x+1]=(1<<g)-1;for(var b=x;b>=v;b--){var w=r[e.charAt(b-1)];if(y[b]=0===g?(y[b+1]<<1|1)&w:(y[b+1]<<1|1)&w|(m[b+1]|m[b])<<1|1|m[b+1],y[b]&p){var M=l(g,b-1);if(M<=c){if(c=M,!((d=b-1)>o))break;v=Math.max(1,2*o-d)}}}if(l(g+1,o)>c)break;m=y}return!(d<0)}(f(e[i]).toLowerCase(),s,t))return!0;return!1}};return d.bind(o(e.listContainer,t.searchClass),"keyup",e.utils.events.debounce((function(t){var s=t.target||t.srcElement;e.search(s.value,i.search)}),e.searchDelay)),function(t,s){e.search(t,s,i.search)}},S=a;l=c;return function(e,t,i){var s,n,a,c=this,u=w(c),p=(n=c,a=function(e,t,i){var s=e.splice(0,50);i=(i=i||[]).concat(n.add(s)),e.length>0?setTimeout((function(){a(e,t,i)}),1):(n.update(),t(i))}),m=function(e){var t=!1,i=function(i,n){var a=axAddElem("a",{class:"ax-first",href:"###"}),o=axAddElem("a",{class:"ax-last",href:"###"}),r=axAddElem("a",{class:"ax-prev",href:"###"}),l=axAddElem("a",{class:"ax-next",href:"###"}),c=axAddElem("span",{class:"ax-total"});n.btnFirst=a,n.btnLast=o,n.btnPrev=r,n.btnNext=l,n.btnTotal=c;var d=function(e){"left"==e?(a.classList.add("ax-disabled"),r.classList.add("ax-disabled"),o.classList.remove("ax-disabled"),l.classList.remove("ax-disabled")):"right"==e?(o.classList.add("ax-disabled"),l.classList.add("ax-disabled"),a.classList.remove("ax-disabled"),r.classList.remove("ax-disabled")):(o.classList.remove("ax-disabled"),l.classList.remove("ax-disabled"),a.classList.remove("ax-disabled"),r.classList.remove("ax-disabled"))};if(e.page<1)return e.listContainer.style.display="none",void(t=!0);t&&(e.listContainer.style.display="block");var h,u=e.matchingItems.length,p=e.i,m=e.page,f=Math.ceil(u/m),g=Math.ceil(p/m),v=n.innerWindow||2,y=n.left||n.outerWindow||0,b=n.right||n.outerWindow||0;if(b=f-b,i.clear(),1==g?d("left"):g==f?d("right"):d(),"simple"==n.type?(n.totalShow=!1,n.firstShow=!1,n.lastShow=!1,n.pagesShow=!1,n.prevShow=!0,n.nextShow=!0):"full"==n.type?(n.totalShow=!0,n.firstShow=!0,n.lastShow=!0,n.pagesShow=!0,n.prevShow=!0,n.nextShow=!0):"pure"==n.type&&(n.totalShow=!1,n.firstShow=!1,n.lastShow=!1,n.pagesShow=!0,n.prevShow=!1,n.nextShow=!1),n.pagesShow)for(var w=1;w<=f;w++){var M=g===w?"ax-active":"";s.number(w,y,b,g,v)?((h=i.add({dotted:!1})[0]).elm.innerHTML=w,M&&x(h.elm).add(M),h.elm.setAttribute("data-i",w),h.elm.setAttribute("data-page",m)):s.dotted(i,w,y,b,g,v,i.size())&&((h=i.add({dotted:!0})[0]).elm=axAddElem("span","","..."))}a.innerHTML=n.textFirst,o.innerHTML=n.textLast,r.innerHTML=n.textPrev,l.innerHTML=n.textNext,c.innerHTML="绗�"+g+"/"+f+"椤�",i.list.classList.contains("ax-group")?(axSiblings(i.list).forEach(e=>{e.remove()}),n.totalShow&&i.list.insertAdjacentElement("beforeBegin",c),n.firstShow&&i.list.insertAdjacentElement("beforeBegin",a),n.prevShow&&i.list.insertAdjacentElement("beforeBegin",r),n.lastShow&&i.list.insertAdjacentElement("afterEnd",o),n.nextShow&&i.list.insertAdjacentElement("afterEnd",l)):(n.prevShow&&i.list.insertAdjacentElement("afterBegin",r),n.firstShow&&i.list.insertAdjacentElement("afterBegin",a),n.totalShow&&i.list.insertAdjacentElement("afterBegin",c),n.nextShow&&i.list.insertAdjacentElement("beforeEnd",l),n.lastShow&&i.list.insertAdjacentElement("beforeEnd",o))},s={number:function(e,t,i,s,n){return this.left(e,t,n,s)||this.right(e,i,n,s)||this.innerWindow(e,s,n)},left:function(e,t,i,s){return s<=t+i+2&&e<=t+2*i+2||e<=t},right:function(e,t,i,s){return s>=t-i-1&&e>t-2*i-2||e>t},innerWindow:function(e,t,i){return e>=t-i&&e<=t+i},dotted:function(e,t,i,s,n,a,o){return this.dottedLeft(e,t,i,s,n,a)||this.dottedRight(e,t,i,s,n,a,o)},dottedLeft:function(e,t,i,s,n,a){return t==i+1&&!this.innerWindow(t,n,a)&&!this.right(t,s)},dottedRight:function(e,t,i,s,n,a,o){return!e.items[o-1].values().dotted&&(t==s&&!this.innerWindow(t,n,a)&&!this.right(t,s))}};return function(t){var s=new axList(e.listContainer,{listClass:t.paginationClass||".ax-pagination",item:t.item||"<a href='###'></a>",valueNames:["page","dotted"],searchClass:".pagination-search-that-is-not-supposed-to-exist",sortClass:".pagination-sort-that-is-not-supposed-to-exist"});d.bind(s.listContainer,"click",(function(t){var i=t.target||t.srcElement,s=e.utils.getAttribute(i,"data-page"),n=e.utils.getAttribute(i,"data-i");n&&e.show((n-1)*s+1,s);var a=e.matchingItems.length,o=Math.floor(a/e.page),r=a%e.page,l=Math.ceil(e.i/e.page),c=(l-2)*e.page+1,d=l*e.page+1,h="",u=Math.ceil(a/e.page);e.options.pagination.forEach(t=>{t.btnFirst&&i==t.btnFirst&&e.show(1,e.page),t.btnLast&&i==t.btnLast&&(h=0==r?e.matchingItems.length-e.page+1:o*e.page+1,e.show(h,e.page)),t.btnPrev&&i==t.btnPrev&&1!=l&&e.show(c,e.page),t.btnNext&&i==t.btnNext&&l!=u&&e.show(d,e.page)})})),e.on("updated",(function(){i(s,t)})),i(s,t)}}(c);s={start:function(){if(c.listContainer=axIdToDom(e),t&&".pagination-search-that-is-not-supposed-to-exist"==t.searchClass)c.options=t;else{var i={valueNames:["name"],page:10,i:1,item:"",searchDelay:0,listClass:"[list]",searchClass:"[search]",sortClass:"[data-sort]",filterClass:"[filter]",resetClass:"[reset]",pagination:{paginationClass:".ax-pagination",textFirst:"棣栭〉",textLast:"灏鹃〉",textPrev:"涓婁竴椤�",textNext:"涓嬩竴椤�",type:"regular",innerWindow:2,left:2,right:2,totalShow:!1,prevShow:!0,nextShow:!0,firstShow:!0,lastShow:!0,pagesShow:!0}},s=axClone(i.pagination);if(c.options=axExtend(i,t,c.listContainer),1==c.options.pagination&&(c.options.pagination=s),"Array"==axType(c.options.pagination)){var n=[];c.options.pagination.forEach(e=>{e=axMerge(s,e),n.push(e)}),c.options.pagination=n}c.listContainer&&c.listContainer.getAttribute("axList")?c.referName=c.listContainer.getAttribute("axList"):c.referName="",axLists.push({name:c.referName,instance:c})}c.listClass=c.options.listClass?c.options.listClass:".ax-list-body",c.searchClass=c.options.searchClass?c.options.searchClass:".ax-list-search",c.sortClass=c.options.sortClass?c.options.sortClass:".ax-list-sort",c.page=c.options.page?c.options.page:1e3,c.i=c.options.i?c.options.i:1,c.items=[],c.visibleItems=[],c.matchingItems=[],c.searched=!1,c.filtered=!1,c.searchColumns=void 0,c.searchDelay=c.options.searchDelay?c.options.searchDelay:0,c.handlers={updated:[]},c.valueNames=[],c.utils={getByClass:o,extend:r,indexOf:l,events:d,toString:f,naturalSort:S,classes:x,getAttribute:b,toArray:h},c.utils.extend(c,c.options),c.listContainer&&(c.list=o(c.listContainer,c.listClass,!0),c.parse=function(e){var t=w(e),i=function(i,s){for(var n=0,a=i.length;n<a;n++)e.items.push(new t(s,i[n]))},s=function(t,n){var a=t.splice(0,50);i(a,n),t.length>0?setTimeout((function(){s(t,n)}),1):(e.update(),e.trigger("parseComplete"))};return e.handlers.parseComplete=e.handlers.parseComplete||[],function(){var t=function(e){for(var t=e.childNodes,i=[],s=0,n=t.length;s<n;s++)void 0===t[s].data&&i.push(t[s]);return i}(e.list),n=e.valueNames;e.indexAsync?s(t,n):i(t,n)}}(c),c.templater=function(e){return new M(e)}(c),c.search=function(e){var t,i,s,n={resetList:function(){e.i=1,e.templater.clear(),s=void 0},setOptions:function(e){2==e.length&&e[1]instanceof Array?t=e[1]:2==e.length&&"function"==typeof e[1]?(t=void 0,s=e[1]):3==e.length?(t=e[1],s=e[2]):t=void 0},setColumns:function(){0!==e.items.length&&void 0===t&&(t=void 0===e.searchColumns?n.toArray(e.items[0].values()):e.searchColumns)},setSearchString:function(t){t=(t=e.utils.toString(t).toLowerCase()).replace(/[-[\]{}()*+?.,\\^$|#]/g,"\\$&"),i=t},toArray:function(e){var t=[];for(var i in e)t.push(i);return t}},a=function(){for(var s,n=[],a=i;null!==(s=a.match(/"([^"]+)"/));)n.push(s[1]),a=a.substring(0,s.index)+a.substring(s.index+s[0].length);(a=a.trim()).length&&(n=n.concat(a.split(/\s+/)));for(var o=0,r=e.items.length;o<r;o++){var l=e.items[o];if(l.found=!1,n.length){for(var c=0,d=n.length;c<d;c++){for(var h=!1,u=0,p=t.length;u<p;u++){var m=l.values(),f=t[u];if(m.hasOwnProperty(f)&&void 0!==m[f]&&null!==m[f])if(-1!==("string"!=typeof m[f]?m[f].toString():m[f]).toLowerCase().indexOf(n[c])){h=!0;break}}if(!h)break}l.found=h}}},o=function(){e.reset.search(),e.searched=!1},r=function(r){return e.trigger("searchStart"),n.resetList(),n.setSearchString(r),n.setOptions(arguments),n.setColumns(),""===i?o():(e.searched=!0,s?s(i,t):a()),e.update(),e.trigger("searchComplete"),e.visibleItems};return e.handlers.searchStart=e.handlers.searchStart||[],e.handlers.searchComplete=e.handlers.searchComplete||[],e.utils.events.bind(e.utils.getByClass(e.listContainer,e.searchClass),"keyup",e.utils.events.debounce((function(t){var i=t.target||t.srcElement;""===i.value&&!e.searched||r(i.value)}),e.searchDelay)),e.utils.events.bind(e.utils.getByClass(e.listContainer,e.searchClass),"input",(function(e){""===(e.target||e.srcElement).value&&r("")})),r}(c),c.filter=function(e){return e.handlers.filterStart=e.handlers.filterStart||[],e.handlers.filterComplete=e.handlers.filterComplete||[],function(t){if(e.trigger("filterStart"),e.i=1,e.reset.filter(),void 0===t)e.filtered=!1;else{e.filtered=!0;for(var i=e.items,s=0,n=i.length;s<n;s++){var a=i[s];t(a)?a.filtered=!0:a.filtered=!1}}return e.update(),e.trigger("filterComplete"),e.visibleItems}}(c),c.sort=function(e){var t={els:void 0,clear:function(){for(var i=0,s=t.els.length;i<s;i++)e.utils.classes(t.els[i]).remove("asc"),e.utils.classes(t.els[i]).remove("desc")},getOrder:function(t){var i=e.utils.getAttribute(t,"data-order");return"asc"==i||"desc"==i?i:e.utils.classes(t).has("desc")?"asc":e.utils.classes(t).has("asc")?"desc":"asc"},getInSensitive:function(t,i){var s=e.utils.getAttribute(t,"data-insensitive");i.insensitive="false"!==s},setOrder:function(i){for(var s=0,n=t.els.length;s<n;s++){var a=t.els[s];if(e.utils.getAttribute(a,"data-sort")===i.valueName){var o=e.utils.getAttribute(a,"data-order");"asc"==o||"desc"==o?o==i.order&&e.utils.classes(a).add(i.order):e.utils.classes(a).add(i.order)}}}},i=function(){e.trigger("sortStart");var i={},s=arguments[0].currentTarget||arguments[0].srcElement||void 0;s?(i.valueName=e.utils.getAttribute(s,"data-sort"),t.getInSensitive(s,i),i.order=t.getOrder(s)):((i=arguments[1]||i).valueName=arguments[0],i.order=i.order||"asc",i.insensitive=void 0===i.insensitive||i.insensitive),t.clear(),t.setOrder(i);var n,a=i.sortFunction||e.sortFunction||null,o="desc"===i.order?-1:1;n=a?function(e,t){return a(e,t,i)*o}:function(t,s){var n=e.utils.naturalSort;return n.alphabet=e.alphabet||i.alphabet||void 0,!n.alphabet&&i.insensitive&&(n=e.utils.naturalSort.caseInsensitive),n(t.values()[i.valueName],s.values()[i.valueName])*o},e.items.sort(n),e.update(),e.trigger("sortComplete")};return e.handlers.sortStart=e.handlers.sortStart||[],e.handlers.sortComplete=e.handlers.sortComplete||[],t.els=e.utils.getByClass(e.listContainer,e.sortClass),e.utils.events.bind(t.els,"click",i),e.on("searchStart",t.clear),e.on("filterStart",t.clear),i}(c),c.fuzzySearch=E(c,c.options.fuzzySearch),this.handlers(),this.items(),c.options&&".pagination-search-that-is-not-supposed-to-exist"!=c.options.searchClass&&this.pagination(),c.listContainer.querySelectorAll(c.options.filterClass).forEach(e=>{var t=e.getAttribute("filter").match(/(\S*):/)[1].trim(),i=e.getAttribute("filter").match(/:(\S*)/)[1].trim();e.onclick=function(){return c.filter((function(e){return e.values()[t]==i})),!1}}),c.listContainer.querySelectorAll(c.options.resetClass).forEach(e=>{e.onclick=function(){return c.filter(),c.search(),!1}}),c.on("searchComplete",(function(e){var t=c.listContainer.querySelector(".ax-fast-list");c.listContainer.querySelector(c.options.searchClass).value&&e.matchingItems.length?t&&axSlideDown(t):t&&axSlideUp(t)})),c.update())},handlers:function(){for(var e in c.handlers)c[e]&&c.handlers.hasOwnProperty(e)&&c.on(e,c[e])},items:function(){c.parse(c.list),void 0!==i&&c.add(i)},pagination:function(){if(void 0!==c.options.pagination){!0===c.options.pagination&&(c.options.pagination=[{}]),void 0===c.options.pagination[0]&&(c.options.pagination=[c.options.pagination]);for(var e=0,t=c.options.pagination.length;e<t;e++)c.options.pagination&&c.listContainer.querySelector(c.options.pagination[e].paginationClass)&&m(c.options.pagination[e])}}},this.reIndex=function(){c.items=[],c.visibleItems=[],c.matchingItems=[],c.searched=!1,c.filtered=!1,c.parse(c.list)},this.toJSON=function(){for(var e=[],t=0,i=c.items.length;t<i;t++)e.push(c.items[t].values());return e},this.add=function(e,t){if(0!==e.length){if(!t){var i=[],s=!1;void 0===e[0]&&(e=[e]);for(var n=0,a=e.length;n<a;n++){var o;s=c.items.length>c.page,o=new u(e[n],void 0,s),c.items.push(o),i.push(o)}return c.update(),i}p(e.slice(0),t)}},this.show=function(e,t){return this.i=e,this.page=t,c.update(),c},this.remove=function(e,t,i){for(var s=0,n=0,a=c.items.length;n<a;n++)c.items[n].values()[e]==t&&(c.templater.remove(c.items[n],i),c.items.splice(n,1),a--,n--,s++);return c.update(),s},this.get=function(e,t){for(var i=[],s=0,n=c.items.length;s<n;s++){var a=c.items[s];a.values()[e]==t&&i.push(a)}return i},this.size=function(){return c.items.length},this.clear=function(){return c.templater.clear(),c.items=[],c},this.on=function(e,t){return c.handlers[e].push(t),c},this.off=function(e,t){var i=c.handlers[e],s=l(i,t);return s>-1&&i.splice(s,1),c},this.trigger=function(e){for(var t=c.handlers[e].length;t--;)c.handlers[e][t](c);return c},this.reset={filter:function(){for(var e=c.items,t=e.length;t--;)e[t].filtered=!1;return c},search:function(){for(var e=c.items,t=e.length;t--;)e[t].found=!1;return c}},this.update=function(){var e=c.items,t=e.length;c.visibleItems=[],c.matchingItems=[],c.templater.clear();for(var i=0;i<t;i++)e[i].matching()&&c.matchingItems.length+1>=c.i&&c.visibleItems.length<c.page?(e[i].show(),c.visibleItems.push(e[i]),c.matchingItems.push(e[i])):e[i].matching()?(c.matchingItems.push(e[i]),e[i].hide()):e[i].hide();return c.trigger("updated"),c},s.start()}})),
-/*!
- * 杞挱鎻掍欢axSwipe锛屼娇鐢ㄦ柟娉曪細new axSwipe('#id',{鍙傛暟})銆傛簮鑷猄wiper v8.1.4 from https://swiperjs.com | AXUI鍋氫簡閮ㄥ垎淇敼
- */
-function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).axSwiper=t(),document.querySelectorAll("[axSwiper]").forEach(e=>{new axSwiper(e)})}(this,(function(){"use strict";function e(e){return null!==e&&"object"==typeof e&&"constructor"in e&&e.constructor===Object}function t(i,s){void 0===i&&(i={}),void 0===s&&(s={}),Object.keys(s).forEach(n=>{void 0===i[n]?i[n]=s[n]:e(s[n])&&e(i[n])&&Object.keys(s[n]).length>0&&t(i[n],s[n])})}const i={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector:()=>null,querySelectorAll:()=>[],getElementById:()=>null,createEvent:()=>({initEvent(){}}),createElement:()=>({children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName:()=>[]}),createElementNS:()=>({}),importNode:()=>null,location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function s(){const e="undefined"!=typeof document?document:{};return t(e,i),e}const n={document:i,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle:()=>({getPropertyValue:()=>""}),Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia:()=>({}),requestAnimationFrame:e=>"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0),cancelAnimationFrame(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function a(){const e="undefined"!=typeof window?window:{};return t(e,n),e}class o extends Array{constructor(e){"number"==typeof e?super(e):(super(...e||[]),function(e){const t=e.__proto__;Object.defineProperty(e,"__proto__",{get:()=>t,set(e){t.__proto__=e}})}(this))}}function r(e){void 0===e&&(e=[]);const t=[];return e.forEach(e=>{Array.isArray(e)?t.push(...r(e)):t.push(e)}),t}function l(e,t){return Array.prototype.filter.call(e,t)}function c(e,t){const i=a(),n=s();let r=[];if(!t&&e instanceof o)return e;if(!e)return new o(r);if("string"==typeof e){const i=e.trim();if(i.indexOf("<")>=0&&i.indexOf(">")>=0){let e="div";0===i.indexOf("<li")&&(e="ul"),0===i.indexOf("<tr")&&(e="tbody"),0!==i.indexOf("<td")&&0!==i.indexOf("<th")||(e="tr"),0===i.indexOf("<tbody")&&(e="table"),0===i.indexOf("<option")&&(e="select");const t=n.createElement(e);t.innerHTML=i;for(let e=0;e<t.childNodes.length;e+=1)r.push(t.childNodes[e])}else r=function(e,t){if("string"!=typeof e)return[e];const i=[],s=t.querySelectorAll(e);for(let e=0;e<s.length;e+=1)i.push(s[e]);return i}(e.trim(),t||n)}else if(e.nodeType||e===i||e===n)r.push(e);else if(Array.isArray(e)){if(e instanceof o)return e;r=e}return new o(function(e){const t=[];for(let i=0;i<e.length;i+=1)-1===t.indexOf(e[i])&&t.push(e[i]);return t}(r))}c.fn=o.prototype;const d={addClass:function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];const s=r(t.map(e=>e.split(" ")));return this.forEach(e=>{e.classList.add(...s)}),this},removeClass:function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];const s=r(t.map(e=>e.split(" ")));return this.forEach(e=>{e.classList.remove(...s)}),this},hasClass:function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];const s=r(t.map(e=>e.split(" ")));return l(this,e=>s.filter(t=>e.classList.contains(t)).length>0).length>0},toggleClass:function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];const s=r(t.map(e=>e.split(" ")));this.forEach(e=>{s.forEach(t=>{e.classList.toggle(t)})})},attr:function(e,t){if(1===arguments.length&&"string"==typeof e)return this[0]?this[0].getAttribute(e):void 0;for(let i=0;i<this.length;i+=1)if(2===arguments.length)this[i].setAttribute(e,t);else for(const t in e)this[i][t]=e[t],this[i].setAttribute(t,e[t]);return this},removeAttr:function(e){for(let t=0;t<this.length;t+=1)this[t].removeAttribute(e);return this},transform:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transform=e;return this},transition:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transitionDuration="string"!=typeof e?`${e}ms`:e;return this},on:function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];let[s,n,a,o]=t;function r(e){const t=e.target;if(!t)return;const i=e.target.dom7EventData||[];if(i.indexOf(e)<0&&i.unshift(e),c(t).is(n))a.apply(t,i);else{const e=c(t).parents();for(let t=0;t<e.length;t+=1)c(e[t]).is(n)&&a.apply(e[t],i)}}function l(e){const t=e&&e.target&&e.target.dom7EventData||[];t.indexOf(e)<0&&t.unshift(e),a.apply(this,t)}"function"==typeof t[1]&&([s,a,o]=t,n=void 0),o||(o=!1);const d=s.split(" ");let h;for(let e=0;e<this.length;e+=1){const t=this[e];if(n)for(h=0;h<d.length;h+=1){const e=d[h];t.dom7LiveListeners||(t.dom7LiveListeners={}),t.dom7LiveListeners[e]||(t.dom7LiveListeners[e]=[]),t.dom7LiveListeners[e].push({listener:a,proxyListener:r}),t.addEventListener(e,r,o)}else for(h=0;h<d.length;h+=1){const e=d[h];t.dom7Listeners||(t.dom7Listeners={}),t.dom7Listeners[e]||(t.dom7Listeners[e]=[]),t.dom7Listeners[e].push({listener:a,proxyListener:l}),t.addEventListener(e,l,o)}}return this},off:function(){for(var e=arguments.length,t=new Array(e),i=0;i<e;i++)t[i]=arguments[i];let[s,n,a,o]=t;"function"==typeof t[1]&&([s,a,o]=t,n=void 0),o||(o=!1);const r=s.split(" ");for(let e=0;e<r.length;e+=1){const t=r[e];for(let e=0;e<this.length;e+=1){const i=this[e];let s;if(!n&&i.dom7Listeners?s=i.dom7Listeners[t]:n&&i.dom7LiveListeners&&(s=i.dom7LiveListeners[t]),s&&s.length)for(let e=s.length-1;e>=0;e-=1){const n=s[e];a&&n.listener===a?(i.removeEventListener(t,n.proxyListener,o),s.splice(e,1)):a&&n.listener&&n.listener.dom7proxy&&n.listener.dom7proxy===a?(i.removeEventListener(t,n.proxyListener,o),s.splice(e,1)):a||(i.removeEventListener(t,n.proxyListener,o),s.splice(e,1))}}}return this},trigger:function(){const e=a();for(var t=arguments.length,i=new Array(t),s=0;s<t;s++)i[s]=arguments[s];const n=i[0].split(" "),o=i[1];for(let t=0;t<n.length;t+=1){const s=n[t];for(let t=0;t<this.length;t+=1){const n=this[t];if(e.CustomEvent){const t=new e.CustomEvent(s,{detail:o,bubbles:!0,cancelable:!0});n.dom7EventData=i.filter((e,t)=>t>0),n.dispatchEvent(t),n.dom7EventData=[],delete n.dom7EventData}}}return this},transitionEnd:function(e){const t=this;return e&&t.on("transitionend",(function i(s){s.target===this&&(e.call(this,s),t.off("transitionend",i))})),this},outerWidth:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetWidth+parseFloat(e.getPropertyValue("margin-right"))+parseFloat(e.getPropertyValue("margin-left"))}return this[0].offsetWidth}return null},outerHeight:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetHeight+parseFloat(e.getPropertyValue("margin-top"))+parseFloat(e.getPropertyValue("margin-bottom"))}return this[0].offsetHeight}return null},styles:function(){const e=a();return this[0]?e.getComputedStyle(this[0],null):{}},offset:function(){if(this.length>0){const e=a(),t=s(),i=this[0],n=i.getBoundingClientRect(),o=t.body,r=i.clientTop||o.clientTop||0,l=i.clientLeft||o.clientLeft||0,c=i===e?e.scrollY:i.scrollTop,d=i===e?e.scrollX:i.scrollLeft;return{top:n.top+c-r,left:n.left+d-l}}return null},css:function(e,t){const i=a();let s;if(1===arguments.length){if("string"!=typeof e){for(s=0;s<this.length;s+=1)for(const t in e)this[s].style[t]=e[t];return this}if(this[0])return i.getComputedStyle(this[0],null).getPropertyValue(e)}if(2===arguments.length&&"string"==typeof e){for(s=0;s<this.length;s+=1)this[s].style[e]=t;return this}return this},each:function(e){return e?(this.forEach((t,i)=>{e.apply(t,[t,i])}),this):this},html:function(e){if(void 0===e)return this[0]?this[0].innerHTML:null;for(let t=0;t<this.length;t+=1)this[t].innerHTML=e;return this},text:function(e){if(void 0===e)return this[0]?this[0].textContent.trim():null;for(let t=0;t<this.length;t+=1)this[t].textContent=e;return this},is:function(e){const t=a(),i=s(),n=this[0];let r,l;if(!n||void 0===e)return!1;if("string"==typeof e){if(n.matches)return n.matches(e);if(n.webkitMatchesSelector)return n.webkitMatchesSelector(e);if(n.msMatchesSelector)return n.msMatchesSelector(e);for(r=c(e),l=0;l<r.length;l+=1)if(r[l]===n)return!0;return!1}if(e===i)return n===i;if(e===t)return n===t;if(e.nodeType||e instanceof o){for(r=e.nodeType?[e]:e,l=0;l<r.length;l+=1)if(r[l]===n)return!0;return!1}return!1},index:function(){let e,t=this[0];if(t){for(e=0;null!==(t=t.previousSibling);)1===t.nodeType&&(e+=1);return e}},eq:function(e){if(void 0===e)return this;const t=this.length;if(e>t-1)return c([]);if(e<0){const i=t+e;return c(i<0?[]:[this[i]])}return c([this[e]])},append:function(){let e;const t=s();for(let i=0;i<arguments.length;i+=1){e=i<0||arguments.length<=i?void 0:arguments[i];for(let i=0;i<this.length;i+=1)if("string"==typeof e){const s=t.createElement("div");for(s.innerHTML=e;s.firstChild;)this[i].appendChild(s.firstChild)}else if(e instanceof o)for(let t=0;t<e.length;t+=1)this[i].appendChild(e[t]);else this[i].appendChild(e)}return this},prepend:function(e){const t=s();let i,n;for(i=0;i<this.length;i+=1)if("string"==typeof e){const s=t.createElement("div");for(s.innerHTML=e,n=s.childNodes.length-1;n>=0;n-=1)this[i].insertBefore(s.childNodes[n],this[i].childNodes[0])}else if(e instanceof o)for(n=0;n<e.length;n+=1)this[i].insertBefore(e[n],this[i].childNodes[0]);else this[i].insertBefore(e,this[i].childNodes[0]);return this},next:function(e){return this.length>0?e?this[0].nextElementSibling&&c(this[0].nextElementSibling).is(e)?c([this[0].nextElementSibling]):c([]):this[0].nextElementSibling?c([this[0].nextElementSibling]):c([]):c([])},nextAll:function(e){const t=[];let i=this[0];if(!i)return c([]);for(;i.nextElementSibling;){const s=i.nextElementSibling;e?c(s).is(e)&&t.push(s):t.push(s),i=s}return c(t)},prev:function(e){if(this.length>0){const t=this[0];return e?t.previousElementSibling&&c(t.previousElementSibling).is(e)?c([t.previousElementSibling]):c([]):t.previousElementSibling?c([t.previousElementSibling]):c([])}return c([])},prevAll:function(e){const t=[];let i=this[0];if(!i)return c([]);for(;i.previousElementSibling;){const s=i.previousElementSibling;e?c(s).is(e)&&t.push(s):t.push(s),i=s}return c(t)},parent:function(e){const t=[];for(let i=0;i<this.length;i+=1)null!==this[i].parentNode&&(e?c(this[i].parentNode).is(e)&&t.push(this[i].parentNode):t.push(this[i].parentNode));return c(t)},parents:function(e){const t=[];for(let i=0;i<this.length;i+=1){let s=this[i].parentNode;for(;s;)e?c(s).is(e)&&t.push(s):t.push(s),s=s.parentNode}return c(t)},closest:function(e){let t=this;return void 0===e?c([]):(t.is(e)||(t=t.parents(e).eq(0)),t)},find:function(e){const t=[];for(let i=0;i<this.length;i+=1){const s=this[i].querySelectorAll(e);for(let e=0;e<s.length;e+=1)t.push(s[e])}return c(t)},children:function(e){const t=[];for(let i=0;i<this.length;i+=1){const s=this[i].children;for(let i=0;i<s.length;i+=1)e&&!c(s[i]).is(e)||t.push(s[i])}return c(t)},filter:function(e){return c(l(this,e))},remove:function(){for(let e=0;e<this.length;e+=1)this[e].parentNode&&this[e].parentNode.removeChild(this[e]);return this}};function h(e,t){return void 0===t&&(t=0),setTimeout(e,t)}function u(){return Date.now()}function p(e,t){void 0===t&&(t="x");const i=a();let s,n,o;const r=function(e){const t=a();let i;return t.getComputedStyle&&(i=t.getComputedStyle(e,null)),!i&&e.currentStyle&&(i=e.currentStyle),i||(i=e.style),i}(e);return i.WebKitCSSMatrix?(n=r.transform||r.webkitTransform,n.split(",").length>6&&(n=n.split(", ").map(e=>e.replace(",",".")).join(", ")),o=new i.WebKitCSSMatrix("none"===n?"":n)):(o=r.MozTransform||r.OTransform||r.MsTransform||r.msTransform||r.transform||r.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),s=o.toString().split(",")),"x"===t&&(n=i.WebKitCSSMatrix?o.m41:16===s.length?parseFloat(s[12]):parseFloat(s[4])),"y"===t&&(n=i.WebKitCSSMatrix?o.m42:16===s.length?parseFloat(s[13]):parseFloat(s[5])),n||0}function m(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function f(e){return"undefined"!=typeof window&&void 0!==window.HTMLElement?e instanceof HTMLElement:e&&(1===e.nodeType||11===e.nodeType)}function g(){const e=Object(arguments.length<=0?void 0:arguments[0]),t=["__proto__","constructor","prototype"];for(let i=1;i<arguments.length;i+=1){const s=i<0||arguments.length<=i?void 0:arguments[i];if(null!=s&&!f(s)){const i=Object.keys(Object(s)).filter(e=>t.indexOf(e)<0);for(let t=0,n=i.length;t<n;t+=1){const n=i[t],a=Object.getOwnPropertyDescriptor(s,n);void 0!==a&&a.enumerable&&(m(e[n])&&m(s[n])?s[n].__swiper__?e[n]=s[n]:g(e[n],s[n]):!m(e[n])&&m(s[n])?(e[n]={},s[n].__swiper__?e[n]=s[n]:g(e[n],s[n])):e[n]=s[n])}}}return e}function v(e,t,i){e.style.setProperty(t,i)}function x(e){let{swiper:t,targetPosition:i,side:s}=e;const n=a(),o=-t.translate;let r,l=null;const c=t.params.speed;t.wrapperEl.style.scrollSnapType="none",n.cancelAnimationFrame(t.cssModeFrameID);const d=i>o?"next":"prev",h=(e,t)=>"next"===d&&e>=t||"prev"===d&&e<=t,u=()=>{r=(new Date).getTime(),null===l&&(l=r);const e=Math.max(Math.min((r-l)/c,1),0),a=.5-Math.cos(e*Math.PI)/2;let d=o+a*(i-o);if(h(d,i)&&(d=i),t.wrapperEl.scrollTo({[s]:d}),h(d,i))return t.wrapperEl.style.overflow="hidden",t.wrapperEl.style.scrollSnapType="",setTimeout(()=>{t.wrapperEl.style.overflow="",t.wrapperEl.scrollTo({[s]:d})}),void n.cancelAnimationFrame(t.cssModeFrameID);t.cssModeFrameID=n.requestAnimationFrame(u)};u()}let y,b,w;function M(){return y||(y=function(){const e=a(),t=s();return{smoothScroll:t.documentElement&&"scrollBehavior"in t.documentElement.style,touch:!!("ontouchstart"in e||e.DocumentTouch&&t instanceof e.DocumentTouch),passiveListener:function(){let t=!1;try{const i=Object.defineProperty({},"passive",{get(){t=!0}});e.addEventListener("testPassiveListener",null,i)}catch(e){}return t}(),gestures:"ongesturestart"in e}}()),y}function E(e){return void 0===e&&(e={}),b||(b=function(e){let{userAgent:t}=void 0===e?{}:e;const i=M(),s=a(),n=s.navigator.platform,o=t||s.navigator.userAgent,r={ios:!1,android:!1},l=s.screen.width,c=s.screen.height,d=o.match(/(Android);?[\s\/]+([\d.]+)?/);let h=o.match(/(iPad).*OS\s([\d_]+)/);const u=o.match(/(iPod)(.*OS\s([\d_]+))?/),p=!h&&o.match(/(iPhone\sOS|iOS)\s([\d_]+)/),m="Win32"===n;let f="MacIntel"===n;return!h&&f&&i.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(`${l}x${c}`)>=0&&(h=o.match(/(Version)\/([\d.]+)/),h||(h=[0,1,"13_0_0"]),f=!1),d&&!m&&(r.os="android",r.android=!0),(h||p||u)&&(r.os="ios",r.ios=!0),r}(e)),b}function S(){return w||(w=function(){const e=a();return{isSafari:function(){const t=e.navigator.userAgent.toLowerCase();return t.indexOf("safari")>=0&&t.indexOf("chrome")<0&&t.indexOf("android")<0}(),isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(e.navigator.userAgent)}}()),w}Object.keys(d).forEach(e=>{Object.defineProperty(c.fn,e,{value:d[e],writable:!0})});var D={on(e,t,i){const s=this;if(!s.eventsListeners||s.destroyed)return s;if("function"!=typeof t)return s;const n=i?"unshift":"push";return e.split(" ").forEach(e=>{s.eventsListeners[e]||(s.eventsListeners[e]=[]),s.eventsListeners[e][n](t)}),s},once(e,t,i){const s=this;if(!s.eventsListeners||s.destroyed)return s;if("function"!=typeof t)return s;function n(){s.off(e,n),n.__emitterProxy&&delete n.__emitterProxy;for(var i=arguments.length,a=new Array(i),o=0;o<i;o++)a[o]=arguments[o];t.apply(s,a)}return n.__emitterProxy=t,s.on(e,n,i)},onAny(e,t){const i=this;if(!i.eventsListeners||i.destroyed)return i;if("function"!=typeof e)return i;const s=t?"unshift":"push";return i.eventsAnyListeners.indexOf(e)<0&&i.eventsAnyListeners[s](e),i},offAny(e){const t=this;if(!t.eventsListeners||t.destroyed)return t;if(!t.eventsAnyListeners)return t;const i=t.eventsAnyListeners.indexOf(e);return i>=0&&t.eventsAnyListeners.splice(i,1),t},off(e,t){const i=this;return!i.eventsListeners||i.destroyed?i:i.eventsListeners?(e.split(" ").forEach(e=>{void 0===t?i.eventsListeners[e]=[]:i.eventsListeners[e]&&i.eventsListeners[e].forEach((s,n)=>{(s===t||s.__emitterProxy&&s.__emitterProxy===t)&&i.eventsListeners[e].splice(n,1)})}),i):i},emit(){const e=this;if(!e.eventsListeners||e.destroyed)return e;if(!e.eventsListeners)return e;let t,i,s;for(var n=arguments.length,a=new Array(n),o=0;o<n;o++)a[o]=arguments[o];return"string"==typeof a[0]||Array.isArray(a[0])?(t=a[0],i=a.slice(1,a.length),s=e):(t=a[0].events,i=a[0].data,s=a[0].context||e),i.unshift(s),(Array.isArray(t)?t:t.split(" ")).forEach(t=>{e.eventsAnyListeners&&e.eventsAnyListeners.length&&e.eventsAnyListeners.forEach(e=>{e.apply(s,[t,...i])}),e.eventsListeners&&e.eventsListeners[t]&&e.eventsListeners[t].forEach(e=>{e.apply(s,i)})}),e}};function T(e){let{swiper:t,runCallbacks:i,direction:s,step:n}=e;const{activeIndex:a,previousIndex:o}=t;let r=s;if(r||(r=a>o?"next":a<o?"prev":"reset"),t.emit(`transition${n}`),i&&a!==o){if("reset"===r)return void t.emit(`slideResetTransition${n}`);t.emit(`slideChangeTransition${n}`),"next"===r?t.emit(`slideNextTransition${n}`):t.emit(`slidePrevTransition${n}`)}}function C(e){const t=this,i=s(),n=a(),o=t.touchEventsData,{params:r,touches:l,enabled:d}=t;if(!d)return;if(t.animating&&r.preventInteractionOnTransition)return;!t.animating&&r.cssMode&&r.loop&&t.loopFix();let h=e;h.originalEvent&&(h=h.originalEvent);let p=c(h.target);if("wrapper"===r.touchEventsTarget&&!p.closest(t.wrapperEl).length)return;if(o.isTouchEvent="touchstart"===h.type,!o.isTouchEvent&&"which"in h&&3===h.which)return;if(!o.isTouchEvent&&"button"in h&&h.button>0)return;if(o.isTouched&&o.isMoved)return;!!r.noSwipingClass&&""!==r.noSwipingClass&&h.target&&h.target.shadowRoot&&e.path&&e.path[0]&&(p=c(e.path[0]));const m=r.noSwipingSelector?r.noSwipingSelector:`.${r.noSwipingClass}`,f=!(!h.target||!h.target.shadowRoot);if(r.noSwiping&&(f?function(e,t){return void 0===t&&(t=this),function t(i){return i&&i!==s()&&i!==a()?(i.assignedSlot&&(i=i.assignedSlot),i.closest(e)||t(i.getRootNode().host)):null}(t)}(m,h.target):p.closest(m)[0]))return void(t.allowClick=!0);if(r.swipeHandler&&!p.closest(r.swipeHandler)[0])return;l.currentX="touchstart"===h.type?h.targetTouches[0].pageX:h.pageX,l.currentY="touchstart"===h.type?h.targetTouches[0].pageY:h.pageY;const g=l.currentX,v=l.currentY,x=r.edgeSwipeDetection||r.iOSEdgeSwipeDetection,y=r.edgeSwipeThreshold||r.iOSEdgeSwipeThreshold;if(x&&(g<=y||g>=n.innerWidth-y)){if("prevent"!==x)return;axPreventDefault(e)}if(Object.assign(o,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),l.startX=g,l.startY=v,o.touchStartTime=u(),t.allowClick=!0,t.updateSize(),t.swipeDirection=void 0,r.threshold>0&&(o.allowThresholdMove=!1),"touchstart"!==h.type){let e=!0;p.is(o.focusableElements)&&(e=!1,"SELECT"===p[0].nodeName&&(o.isTouched=!1)),i.activeElement&&c(i.activeElement).is(o.focusableElements)&&i.activeElement!==p[0]&&i.activeElement.blur();const s=e&&t.allowTouchMove&&r.touchStartPreventDefault;!r.touchStartForcePreventDefault&&!s||p[0].isContentEditable||axPreventDefault(h)}t.params.freeMode&&t.params.freeMode.enabled&&t.freeMode&&t.animating&&!r.cssMode&&t.freeMode.onTouchStart(),t.emit("touchStart",h)}function L(e){const t=s(),i=this,n=i.touchEventsData,{params:a,touches:o,rtlTranslate:r,enabled:l}=i;if(!l)return;let d=e;if(d.originalEvent&&(d=d.originalEvent),!n.isTouched)return void(n.startMoving&&n.isScrolling&&i.emit("touchMoveOpposite",d));if(n.isTouchEvent&&"touchmove"!==d.type)return;const h="touchmove"===d.type&&d.targetTouches&&(d.targetTouches[0]||d.changedTouches[0]),p="touchmove"===d.type?h.pageX:d.pageX,m="touchmove"===d.type?h.pageY:d.pageY;if(d.preventedByNestedSwiper)return o.startX=p,void(o.startY=m);if(!i.allowTouchMove)return c(d.target).is(n.focusableElements)||(i.allowClick=!1),void(n.isTouched&&(Object.assign(o,{startX:p,startY:m,currentX:p,currentY:m}),n.touchStartTime=u()));if(n.isTouchEvent&&a.touchReleaseOnEdges&&!a.loop)if(i.isVertical()){if(m<o.startY&&i.translate<=i.maxTranslate()||m>o.startY&&i.translate>=i.minTranslate())return n.isTouched=!1,void(n.isMoved=!1)}else if(p<o.startX&&i.translate<=i.maxTranslate()||p>o.startX&&i.translate>=i.minTranslate())return;if(n.isTouchEvent&&t.activeElement&&d.target===t.activeElement&&c(d.target).is(n.focusableElements))return n.isMoved=!0,void(i.allowClick=!1);if(n.allowTouchCallbacks&&i.emit("touchMove",d),d.targetTouches&&d.targetTouches.length>1)return;o.currentX=p,o.currentY=m;const f=o.currentX-o.startX,g=o.currentY-o.startY;if(i.params.threshold&&Math.sqrt(f**2+g**2)<i.params.threshold)return;if(void 0===n.isScrolling){let e;i.isHorizontal()&&o.currentY===o.startY||i.isVertical()&&o.currentX===o.startX?n.isScrolling=!1:f*f+g*g>=25&&(e=180*Math.atan2(Math.abs(g),Math.abs(f))/Math.PI,n.isScrolling=i.isHorizontal()?e>a.touchAngle:90-e>a.touchAngle)}if(n.isScrolling&&i.emit("touchMoveOpposite",d),void 0===n.startMoving&&(o.currentX===o.startX&&o.currentY===o.startY||(n.startMoving=!0)),n.isScrolling)return void(n.isTouched=!1);if(!n.startMoving)return;i.allowClick=!1,!a.cssMode&&d.cancelable&&axPreventDefault(d),a.touchMoveStopPropagation&&!a.nested&&d.stopPropagation(),n.isMoved||(a.loop&&!a.cssMode&&i.loopFix(),n.startTranslate=i.getTranslate(),i.setTransition(0),i.animating&&i.$wrapperEl.trigger("webkitTransitionEnd transitionend"),n.allowMomentumBounce=!1,!a.grabCursor||!0!==i.allowSlideNext&&!0!==i.allowSlidePrev||i.setGrabCursor(!0),i.emit("sliderFirstMove",d)),i.emit("sliderMove",d),n.isMoved=!0;let v=i.isHorizontal()?f:g;o.diff=v,v*=a.touchRatio,r&&(v=-v),i.swipeDirection=v>0?"prev":"next",n.currentTranslate=v+n.startTranslate;let x=!0,y=a.resistanceRatio;if(a.touchReleaseOnEdges&&(y=0),v>0&&n.currentTranslate>i.minTranslate()?(x=!1,a.resistance&&(n.currentTranslate=i.minTranslate()-1+(-i.minTranslate()+n.startTranslate+v)**y)):v<0&&n.currentTranslate<i.maxTranslate()&&(x=!1,a.resistance&&(n.currentTranslate=i.maxTranslate()+1-(i.maxTranslate()-n.startTranslate-v)**y)),x&&(d.preventedByNestedSwiper=!0),!i.allowSlideNext&&"next"===i.swipeDirection&&n.currentTranslate<n.startTranslate&&(n.currentTranslate=n.startTranslate),!i.allowSlidePrev&&"prev"===i.swipeDirection&&n.currentTranslate>n.startTranslate&&(n.currentTranslate=n.startTranslate),i.allowSlidePrev||i.allowSlideNext||(n.currentTranslate=n.startTranslate),a.threshold>0){if(!(Math.abs(v)>a.threshold||n.allowThresholdMove))return void(n.currentTranslate=n.startTranslate);if(!n.allowThresholdMove)return n.allowThresholdMove=!0,o.startX=o.currentX,o.startY=o.currentY,n.currentTranslate=n.startTranslate,void(o.diff=i.isHorizontal()?o.currentX-o.startX:o.currentY-o.startY)}a.followFinger&&!a.cssMode&&((a.freeMode&&a.freeMode.enabled&&i.freeMode||a.watchSlidesProgress)&&(i.updateActiveIndex(),i.updateSlidesClasses()),i.params.freeMode&&a.freeMode.enabled&&i.freeMode&&i.freeMode.onTouchMove(),i.updateProgress(n.currentTranslate),i.setTranslate(n.currentTranslate))}function A(e){const t=this,i=t.touchEventsData,{params:s,touches:n,rtlTranslate:a,slidesGrid:o,enabled:r}=t;if(!r)return;let l=e;if(l.originalEvent&&(l=l.originalEvent),i.allowTouchCallbacks&&t.emit("touchEnd",l),i.allowTouchCallbacks=!1,!i.isTouched)return i.isMoved&&s.grabCursor&&t.setGrabCursor(!1),i.isMoved=!1,void(i.startMoving=!1);s.grabCursor&&i.isMoved&&i.isTouched&&(!0===t.allowSlideNext||!0===t.allowSlidePrev)&&t.setGrabCursor(!1);const c=u(),d=c-i.touchStartTime;if(t.allowClick){const e=l.path||l.composedPath&&l.composedPath();t.updateClickedSlide(e&&e[0]||l.target),t.emit("tap click",l),d<300&&c-i.lastClickTime<300&&t.emit("doubleTap doubleClick",l)}if(i.lastClickTime=u(),h(()=>{t.destroyed||(t.allowClick=!0)}),!i.isTouched||!i.isMoved||!t.swipeDirection||0===n.diff||i.currentTranslate===i.startTranslate)return i.isTouched=!1,i.isMoved=!1,void(i.startMoving=!1);let p;if(i.isTouched=!1,i.isMoved=!1,i.startMoving=!1,p=s.followFinger?a?t.translate:-t.translate:-i.currentTranslate,s.cssMode)return;if(t.params.freeMode&&s.freeMode.enabled)return void t.freeMode.onTouchEnd({currentPos:p});let m=0,f=t.slidesSizesGrid[0];for(let e=0;e<o.length;e+=e<s.slidesPerGroupSkip?1:s.slidesPerGroup){const t=e<s.slidesPerGroupSkip-1?1:s.slidesPerGroup;void 0!==o[e+t]?p>=o[e]&&p<o[e+t]&&(m=e,f=o[e+t]-o[e]):p>=o[e]&&(m=e,f=o[o.length-1]-o[o.length-2])}let g=null,v=null;s.rewind&&(t.isBeginning?v=t.params.virtual&&t.params.virtual.enabled&&t.virtual?t.virtual.slides.length-1:t.slides.length-1:t.isEnd&&(g=0));const x=(p-o[m])/f,y=m<s.slidesPerGroupSkip-1?1:s.slidesPerGroup;if(d>s.longSwipesMs){if(!s.longSwipes)return void t.slideTo(t.activeIndex);"next"===t.swipeDirection&&(x>=s.longSwipesRatio?t.slideTo(s.rewind&&t.isEnd?g:m+y):t.slideTo(m)),"prev"===t.swipeDirection&&(x>1-s.longSwipesRatio?t.slideTo(m+y):null!==v&&x<0&&Math.abs(x)>s.longSwipesRatio?t.slideTo(v):t.slideTo(m))}else{if(!s.shortSwipes)return void t.slideTo(t.activeIndex);t.navigation&&(l.target===t.navigation.nextEl||l.target===t.navigation.prevEl)?l.target===t.navigation.nextEl?t.slideTo(m+y):t.slideTo(m):("next"===t.swipeDirection&&t.slideTo(null!==g?g:m+y),"prev"===t.swipeDirection&&t.slideTo(null!==v?v:m))}}function _(){const e=this,{params:t,el:i}=e;if(i&&0===i.offsetWidth)return;t.breakpoints&&e.setBreakpoint();const{allowSlideNext:s,allowSlidePrev:n,snapGrid:a}=e;e.allowSlideNext=!0,e.allowSlidePrev=!0,e.updateSize(),e.updateSlides(),e.updateSlidesClasses(),("auto"===t.slidesPerView||t.slidesPerView>1)&&e.isEnd&&!e.isBeginning&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),e.autoplay&&e.autoplay.running&&e.autoplay.paused&&e.autoplay.run(),e.allowSlidePrev=n,e.allowSlideNext=s,e.params.watchOverflow&&a!==e.snapGrid&&e.checkOverflow()}function I(e){const t=this;t.enabled&&(t.allowClick||(t.params.preventClicks&&axPreventDefault(e),t.params.preventClicksPropagation&&t.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function k(){const e=this,{wrapperEl:t,rtlTranslate:i,enabled:s}=e;if(!s)return;let n;e.previousTranslate=e.translate,e.isHorizontal()?e.translate=-t.scrollLeft:e.translate=-t.scrollTop,0===e.translate&&(e.translate=0),e.updateActiveIndex(),e.updateSlidesClasses();const a=e.maxTranslate()-e.minTranslate();n=0===a?0:(e.translate-e.minTranslate())/a,n!==e.progress&&e.updateProgress(i?-e.translate:e.translate),e.emit("setTranslate",e.translate,!1)}let N=!1;function O(){}const j=(e,t)=>{const i=s(),{params:n,touchEvents:a,el:o,wrapperEl:r,device:l,support:c}=e,d=!!n.nested,h="on"===t?"addEventListener":"removeEventListener",u=t;if(c.touch){const t=!("touchstart"!==a.start||!c.passiveListener||!n.passiveListeners)&&{passive:!0,capture:!1};o[h](a.start,e.onTouchStart,t),o[h](a.move,e.onTouchMove,c.passiveListener?{passive:!1,capture:d}:d),o[h](a.end,e.onTouchEnd,t),a.cancel&&o[h](a.cancel,e.onTouchEnd,t)}else o[h](a.start,e.onTouchStart,!1),i[h](a.move,e.onTouchMove,d),i[h](a.end,e.onTouchEnd,!1);(n.preventClicks||n.preventClicksPropagation)&&o[h]("click",e.onClick,!0),n.cssMode&&r[h]("scroll",e.onScroll),n.updateOnWindowResize?e[u](l.ios||l.android?"resize orientationchange observerUpdate":"resize observerUpdate",_,!0):e[u]("observerUpdate",_,!0)};const $=(e,t)=>e.grid&&t.grid&&t.grid.rows>1;var P={init:!0,direction:"horizontal",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:0,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,loopFillGroupWithBlank:!1,loopPreventsSlide:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"ax-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"ax-",slideClass:"ax-slide",slideBlankClass:"ax-slide-invisible-blank",slideActiveClass:"ax-slide-active",slideDuplicateActiveClass:"ax-slide-duplicate-active",slideVisibleClass:"ax-slide-visible",slideDuplicateClass:"ax-slide-duplicate",slideNextClass:"ax-slide-next",slideDuplicateNextClass:"ax-slide-duplicate-next",slidePrevClass:"ax-slide-prev",slideDuplicatePrevClass:"ax-slide-duplicate-prev",wrapperClass:"ax-wrapper",runCallbacksOnInit:!0,_emitClasses:!1};function z(e,t){return function(i){void 0===i&&(i={});const s=Object.keys(i)[0],n=i[s];"object"==typeof n&&null!==n?(["navigation","pagination","scrollbar"].indexOf(s)>=0&&!0===e[s]&&(e[s]={auto:!0}),s in e&&"enabled"in n?(!0===e[s]&&(e[s]={enabled:!0}),"object"!=typeof e[s]||"enabled"in e[s]||(e[s].enabled=!0),e[s]||(e[s]={enabled:!1}),g(t,i)):g(t,i)):g(t,i)}}const Y={eventsEmitter:D,update:{updateSize:function(){const e=this;let t,i;const s=e.$el;t=void 0!==e.params.width&&null!==e.params.width?e.params.width:s[0].clientWidth,i=void 0!==e.params.height&&null!==e.params.height?e.params.height:s[0].clientHeight,0===t&&e.isHorizontal()||0===i&&e.isVertical()||(t=t-parseInt(s.css("padding-left")||0,10)-parseInt(s.css("padding-right")||0,10),i=i-parseInt(s.css("padding-top")||0,10)-parseInt(s.css("padding-bottom")||0,10),Number.isNaN(t)&&(t=0),Number.isNaN(i)&&(i=0),Object.assign(e,{width:t,height:i,size:e.isHorizontal()?t:i}))},updateSlides:function(){const e=this;function t(t){return e.isHorizontal()?t:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[t]}function i(e,i){return parseFloat(e.getPropertyValue(t(i))||0)}const s=e.params,{$wrapperEl:n,size:a,rtlTranslate:o,wrongRTL:r}=e,l=e.virtual&&s.virtual.enabled,c=l?e.virtual.slides.length:e.slides.length,d=n.children(`.${e.params.slideClass}`),h=l?e.virtual.slides.length:d.length;let u=[];const p=[],m=[];let f=s.slidesOffsetBefore;"function"==typeof f&&(f=s.slidesOffsetBefore.call(e));let g=s.slidesOffsetAfter;"function"==typeof g&&(g=s.slidesOffsetAfter.call(e));const x=e.snapGrid.length,y=e.slidesGrid.length;let b=s.spaceBetween,w=-f,M=0,E=0;if(void 0===a)return;"string"==typeof b&&b.indexOf("%")>=0&&(b=parseFloat(b.replace("%",""))/100*a),e.virtualSize=-b,o?d.css({marginLeft:"",marginBottom:"",marginTop:""}):d.css({marginRight:"",marginBottom:"",marginTop:""}),s.centeredSlides&&s.cssMode&&(v(e.wrapperEl,"--swiper-centered-offset-before",""),v(e.wrapperEl,"--swiper-centered-offset-after",""));const S=s.grid&&s.grid.rows>1&&e.grid;let D;S&&e.grid.initSlides(h);const T="auto"===s.slidesPerView&&s.breakpoints&&Object.keys(s.breakpoints).filter(e=>void 0!==s.breakpoints[e].slidesPerView).length>0;for(let n=0;n<h;n+=1){D=0;const o=d.eq(n);if(S&&e.grid.updateSlide(n,o,h,t),"none"!==o.css("display")){if("auto"===s.slidesPerView){T&&(d[n].style[t("width")]="");const a=getComputedStyle(o[0]),r=o[0].style.transform,l=o[0].style.webkitTransform;if(r&&(o[0].style.transform="none"),l&&(o[0].style.webkitTransform="none"),s.roundLengths)D=e.isHorizontal()?o.outerWidth(!0):o.outerHeight(!0);else{const e=i(a,"width"),t=i(a,"padding-left"),s=i(a,"padding-right"),n=i(a,"margin-left"),r=i(a,"margin-right"),l=a.getPropertyValue("box-sizing");if(l&&"border-box"===l)D=e+n+r;else{const{clientWidth:i,offsetWidth:a}=o[0];D=e+t+s+n+r+(a-i)}}r&&(o[0].style.transform=r),l&&(o[0].style.webkitTransform=l),s.roundLengths&&(D=Math.floor(D))}else D=(a-(s.slidesPerView-1)*b)/s.slidesPerView,s.roundLengths&&(D=Math.floor(D)),d[n]&&(d[n].style[t("width")]=`${D}px`);d[n]&&(d[n].swiperSlideSize=D),m.push(D),s.centeredSlides?(w=w+D/2+M/2+b,0===M&&0!==n&&(w=w-a/2-b),0===n&&(w=w-a/2-b),Math.abs(w)<.001&&(w=0),s.roundLengths&&(w=Math.floor(w)),E%s.slidesPerGroup==0&&u.push(w),p.push(w)):(s.roundLengths&&(w=Math.floor(w)),(E-Math.min(e.params.slidesPerGroupSkip,E))%e.params.slidesPerGroup==0&&u.push(w),p.push(w),w=w+D+b),e.virtualSize+=D+b,M=D,E+=1}}if(e.virtualSize=Math.max(e.virtualSize,a)+g,o&&r&&("slide"===s.effect||"coverflow"===s.effect)&&n.css({width:`${e.virtualSize+s.spaceBetween}px`}),s.setWrapperSize&&n.css({[t("width")]:`${e.virtualSize+s.spaceBetween}px`}),S&&e.grid.updateWrapperSize(D,u,t),!s.centeredSlides){const t=[];for(let i=0;i<u.length;i+=1){let n=u[i];s.roundLengths&&(n=Math.floor(n)),u[i]<=e.virtualSize-a&&t.push(n)}u=t,Math.floor(e.virtualSize-a)-Math.floor(u[u.length-1])>1&&u.push(e.virtualSize-a)}if(0===u.length&&(u=[0]),0!==s.spaceBetween){const i=e.isHorizontal()&&o?"marginLeft":t("marginRight");d.filter((e,t)=>!s.cssMode||t!==d.length-1).css({[i]:`${b}px`})}if(s.centeredSlides&&s.centeredSlidesBounds){let e=0;m.forEach(t=>{e+=t+(s.spaceBetween?s.spaceBetween:0)}),e-=s.spaceBetween;const t=e-a;u=u.map(e=>e<0?-f:e>t?t+g:e)}if(s.centerInsufficientSlides){let e=0;if(m.forEach(t=>{e+=t+(s.spaceBetween?s.spaceBetween:0)}),e-=s.spaceBetween,e<a){const t=(a-e)/2;u.forEach((e,i)=>{u[i]=e-t}),p.forEach((e,i)=>{p[i]=e+t})}}if(Object.assign(e,{slides:d,snapGrid:u,slidesGrid:p,slidesSizesGrid:m}),s.centeredSlides&&s.cssMode&&!s.centeredSlidesBounds){v(e.wrapperEl,"--swiper-centered-offset-before",`${-u[0]}px`),v(e.wrapperEl,"--swiper-centered-offset-after",`${e.size/2-m[m.length-1]/2}px`);const t=-e.snapGrid[0],i=-e.slidesGrid[0];e.snapGrid=e.snapGrid.map(e=>e+t),e.slidesGrid=e.slidesGrid.map(e=>e+i)}if(h!==c&&e.emit("slidesLengthChange"),u.length!==x&&(e.params.watchOverflow&&e.checkOverflow(),e.emit("snapGridLengthChange")),p.length!==y&&e.emit("slidesGridLengthChange"),s.watchSlidesProgress&&e.updateSlidesOffset(),!(l||s.cssMode||"slide"!==s.effect&&"fade"!==s.effect)){const t=`${s.containerModifierClass}backface-hidden`,i=e.$el.hasClass(t);h<=s.maxBackfaceHiddenSlides?i||e.$el.addClass(t):i&&e.$el.removeClass(t)}},updateAutoHeight:function(e){const t=this,i=[],s=t.virtual&&t.params.virtual.enabled;let n,a=0;"number"==typeof e?t.setTransition(e):!0===e&&t.setTransition(t.params.speed);const o=e=>s?t.slides.filter(t=>parseInt(t.getAttribute("data-swiper-slide-index"),10)===e)[0]:t.slides.eq(e)[0];if("auto"!==t.params.slidesPerView&&t.params.slidesPerView>1)if(t.params.centeredSlides)t.visibleSlides.each(e=>{i.push(e)});else for(n=0;n<Math.ceil(t.params.slidesPerView);n+=1){const e=t.activeIndex+n;if(e>t.slides.length&&!s)break;i.push(o(e))}else i.push(o(t.activeIndex));for(n=0;n<i.length;n+=1)if(void 0!==i[n]){const e=i[n].offsetHeight;a=e>a?e:a}(a||0===a)&&t.$wrapperEl.css("height",`${a}px`)},updateSlidesOffset:function(){const e=this,t=e.slides;for(let i=0;i<t.length;i+=1)t[i].swiperSlideOffset=e.isHorizontal()?t[i].offsetLeft:t[i].offsetTop},updateSlidesProgress:function(e){void 0===e&&(e=this&&this.translate||0);const t=this,i=t.params,{slides:s,rtlTranslate:n,snapGrid:a}=t;if(0===s.length)return;void 0===s[0].swiperSlideOffset&&t.updateSlidesOffset();let o=-e;n&&(o=e),s.removeClass(i.slideVisibleClass),t.visibleSlidesIndexes=[],t.visibleSlides=[];for(let e=0;e<s.length;e+=1){const r=s[e];let l=r.swiperSlideOffset;i.cssMode&&i.centeredSlides&&(l-=s[0].swiperSlideOffset);const c=(o+(i.centeredSlides?t.minTranslate():0)-l)/(r.swiperSlideSize+i.spaceBetween),d=(o-a[0]+(i.centeredSlides?t.minTranslate():0)-l)/(r.swiperSlideSize+i.spaceBetween),h=-(o-l),u=h+t.slidesSizesGrid[e];(h>=0&&h<t.size-1||u>1&&u<=t.size||h<=0&&u>=t.size)&&(t.visibleSlides.push(r),t.visibleSlidesIndexes.push(e),s.eq(e).addClass(i.slideVisibleClass)),r.progress=n?-c:c,r.originalProgress=n?-d:d}t.visibleSlides=c(t.visibleSlides)},updateProgress:function(e){const t=this;if(void 0===e){const i=t.rtlTranslate?-1:1;e=t&&t.translate&&t.translate*i||0}const i=t.params,s=t.maxTranslate()-t.minTranslate();let{progress:n,isBeginning:a,isEnd:o}=t;const r=a,l=o;0===s?(n=0,a=!0,o=!0):(n=(e-t.minTranslate())/s,a=n<=0,o=n>=1),Object.assign(t,{progress:n,isBeginning:a,isEnd:o}),(i.watchSlidesProgress||i.centeredSlides&&i.autoHeight)&&t.updateSlidesProgress(e),a&&!r&&t.emit("reachBeginning toEdge"),o&&!l&&t.emit("reachEnd toEdge"),(r&&!a||l&&!o)&&t.emit("fromEdge"),t.emit("progress",n)},updateSlidesClasses:function(){const e=this,{slides:t,params:i,$wrapperEl:s,activeIndex:n,realIndex:a}=e,o=e.virtual&&i.virtual.enabled;let r;t.removeClass(`${i.slideActiveClass} ${i.slideNextClass} ${i.slidePrevClass} ${i.slideDuplicateActiveClass} ${i.slideDuplicateNextClass} ${i.slideDuplicatePrevClass}`),r=o?e.$wrapperEl.find(`.${i.slideClass}[data-swiper-slide-index="${n}"]`):t.eq(n),r.addClass(i.slideActiveClass),i.loop&&(r.hasClass(i.slideDuplicateClass)?s.children(`.${i.slideClass}:not(.${i.slideDuplicateClass})[data-swiper-slide-index="${a}"]`).addClass(i.slideDuplicateActiveClass):s.children(`.${i.slideClass}.${i.slideDuplicateClass}[data-swiper-slide-index="${a}"]`).addClass(i.slideDuplicateActiveClass));let l=r.nextAll(`.${i.slideClass}`).eq(0).addClass(i.slideNextClass);i.loop&&0===l.length&&(l=t.eq(0),l.addClass(i.slideNextClass));let c=r.prevAll(`.${i.slideClass}`).eq(0).addClass(i.slidePrevClass);i.loop&&0===c.length&&(c=t.eq(-1),c.addClass(i.slidePrevClass)),i.loop&&(l.hasClass(i.slideDuplicateClass)?s.children(`.${i.slideClass}:not(.${i.slideDuplicateClass})[data-swiper-slide-index="${l.attr("data-swiper-slide-index")}"]`).addClass(i.slideDuplicateNextClass):s.children(`.${i.slideClass}.${i.slideDuplicateClass}[data-swiper-slide-index="${l.attr("data-swiper-slide-index")}"]`).addClass(i.slideDuplicateNextClass),c.hasClass(i.slideDuplicateClass)?s.children(`.${i.slideClass}:not(.${i.slideDuplicateClass})[data-swiper-slide-index="${c.attr("data-swiper-slide-index")}"]`).addClass(i.slideDuplicatePrevClass):s.children(`.${i.slideClass}.${i.slideDuplicateClass}[data-swiper-slide-index="${c.attr("data-swiper-slide-index")}"]`).addClass(i.slideDuplicatePrevClass)),e.emitSlidesClasses()},updateActiveIndex:function(e){const t=this,i=t.rtlTranslate?t.translate:-t.translate,{slidesGrid:s,snapGrid:n,params:a,activeIndex:o,realIndex:r,snapIndex:l}=t;let c,d=e;if(void 0===d){for(let e=0;e<s.length;e+=1)void 0!==s[e+1]?i>=s[e]&&i<s[e+1]-(s[e+1]-s[e])/2?d=e:i>=s[e]&&i<s[e+1]&&(d=e+1):i>=s[e]&&(d=e);a.normalizeSlideIndex&&(d<0||void 0===d)&&(d=0)}if(n.indexOf(i)>=0)c=n.indexOf(i);else{const e=Math.min(a.slidesPerGroupSkip,d);c=e+Math.floor((d-e)/a.slidesPerGroup)}if(c>=n.length&&(c=n.length-1),d===o)return void(c!==l&&(t.snapIndex=c,t.emit("snapIndexChange")));const h=parseInt(t.slides.eq(d).attr("data-swiper-slide-index")||d,10);Object.assign(t,{snapIndex:c,realIndex:h,previousIndex:o,activeIndex:d}),t.emit("activeIndexChange"),t.emit("snapIndexChange"),r!==h&&t.emit("realIndexChange"),(t.initialized||t.params.runCallbacksOnInit)&&t.emit("slideChange")},updateClickedSlide:function(e){const t=this,i=t.params,s=c(e).closest(`.${i.slideClass}`)[0];let n,a=!1;if(s)for(let e=0;e<t.slides.length;e+=1)if(t.slides[e]===s){a=!0,n=e;break}if(!s||!a)return t.clickedSlide=void 0,void(t.clickedIndex=void 0);t.clickedSlide=s,t.virtual&&t.params.virtual.enabled?t.clickedIndex=parseInt(c(s).attr("data-swiper-slide-index"),10):t.clickedIndex=n,i.slideToClickedSlide&&void 0!==t.clickedIndex&&t.clickedIndex!==t.activeIndex&&t.slideToClickedSlide()}},translate:{getTranslate:function(e){void 0===e&&(e=this.isHorizontal()?"x":"y");const{params:t,rtlTranslate:i,translate:s,$wrapperEl:n}=this;if(t.virtualTranslate)return i?-s:s;if(t.cssMode)return s;let a=p(n[0],e);return i&&(a=-a),a||0},setTranslate:function(e,t){const i=this,{rtlTranslate:s,params:n,$wrapperEl:a,wrapperEl:o,progress:r}=i;let l,c=0,d=0;i.isHorizontal()?c=s?-e:e:d=e,n.roundLengths&&(c=Math.floor(c),d=Math.floor(d)),n.cssMode?o[i.isHorizontal()?"scrollLeft":"scrollTop"]=i.isHorizontal()?-c:-d:n.virtualTranslate||a.transform(`translate3d(${c}px, ${d}px, 0px)`),i.previousTranslate=i.translate,i.translate=i.isHorizontal()?c:d;const h=i.maxTranslate()-i.minTranslate();l=0===h?0:(e-i.minTranslate())/h,l!==r&&i.updateProgress(e),i.emit("setTranslate",i.translate,t)},minTranslate:function(){return-this.snapGrid[0]},maxTranslate:function(){return-this.snapGrid[this.snapGrid.length-1]},translateTo:function(e,t,i,s,n){void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===i&&(i=!0),void 0===s&&(s=!0);const a=this,{params:o,wrapperEl:r}=a;if(a.animating&&o.preventInteractionOnTransition)return!1;const l=a.minTranslate(),c=a.maxTranslate();let d;if(d=s&&e>l?l:s&&e<c?c:e,a.updateProgress(d),o.cssMode){const e=a.isHorizontal();if(0===t)r[e?"scrollLeft":"scrollTop"]=-d;else{if(!a.support.smoothScroll)return x({swiper:a,targetPosition:-d,side:e?"left":"top"}),!0;r.scrollTo({[e?"left":"top"]:-d,behavior:"smooth"})}return!0}return 0===t?(a.setTransition(0),a.setTranslate(d),i&&(a.emit("beforeTransitionStart",t,n),a.emit("transitionEnd"))):(a.setTransition(t),a.setTranslate(d),i&&(a.emit("beforeTransitionStart",t,n),a.emit("transitionStart")),a.animating||(a.animating=!0,a.onTranslateToWrapperTransitionEnd||(a.onTranslateToWrapperTransitionEnd=function(e){a&&!a.destroyed&&e.target===this&&(a.$wrapperEl[0].removeEventListener("transitionend",a.onTranslateToWrapperTransitionEnd),a.$wrapperEl[0].removeEventListener("webkitTransitionEnd",a.onTranslateToWrapperTransitionEnd),a.onTranslateToWrapperTransitionEnd=null,delete a.onTranslateToWrapperTransitionEnd,i&&a.emit("transitionEnd"))}),a.$wrapperEl[0].addEventListener("transitionend",a.onTranslateToWrapperTransitionEnd),a.$wrapperEl[0].addEventListener("webkitTransitionEnd",a.onTranslateToWrapperTransitionEnd))),!0}},transition:{setTransition:function(e,t){const i=this;i.params.cssMode||i.$wrapperEl.transition(e),i.emit("setTransition",e,t)},transitionStart:function(e,t){void 0===e&&(e=!0);const i=this,{params:s}=i;s.cssMode||(s.autoHeight&&i.updateAutoHeight(),T({swiper:i,runCallbacks:e,direction:t,step:"Start"}))},transitionEnd:function(e,t){void 0===e&&(e=!0);const{params:i}=this;this.animating=!1,i.cssMode||(this.setTransition(0),T({swiper:this,runCallbacks:e,direction:t,step:"End"}))}},slide:{slideTo:function(e,t,i,s,n){if(void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===i&&(i=!0),"number"!=typeof e&&"string"!=typeof e)throw new Error(`The 'index' argument cannot have type other than 'number' or 'string'. [${typeof e}] given.`);if("string"==typeof e){const t=parseInt(e,10);if(!isFinite(t))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=t}const a=this;let o=e;o<0&&(o=0);const{params:r,snapGrid:l,slidesGrid:c,previousIndex:d,activeIndex:h,rtlTranslate:u,wrapperEl:p,enabled:m}=a;if(a.animating&&r.preventInteractionOnTransition||!m&&!s&&!n)return!1;const f=Math.min(a.params.slidesPerGroupSkip,o);let g=f+Math.floor((o-f)/a.params.slidesPerGroup);g>=l.length&&(g=l.length-1),(h||r.initialSlide||0)===(d||0)&&i&&a.emit("beforeSlideChangeStart");const v=-l[g];if(a.updateProgress(v),r.normalizeSlideIndex)for(let e=0;e<c.length;e+=1){const t=-Math.floor(100*v),i=Math.floor(100*c[e]),s=Math.floor(100*c[e+1]);void 0!==c[e+1]?t>=i&&t<s-(s-i)/2?o=e:t>=i&&t<s&&(o=e+1):t>=i&&(o=e)}if(a.initialized&&o!==h){if(!a.allowSlideNext&&v<a.translate&&v<a.minTranslate())return!1;if(!a.allowSlidePrev&&v>a.translate&&v>a.maxTranslate()&&(h||0)!==o)return!1}let y;if(y=o>h?"next":o<h?"prev":"reset",u&&-v===a.translate||!u&&v===a.translate)return a.updateActiveIndex(o),r.autoHeight&&a.updateAutoHeight(),a.updateSlidesClasses(),"slide"!==r.effect&&a.setTranslate(v),"reset"!==y&&(a.transitionStart(i,y),a.transitionEnd(i,y)),!1;if(r.cssMode){const e=a.isHorizontal(),i=u?v:-v;if(0===t){const t=a.virtual&&a.params.virtual.enabled;t&&(a.wrapperEl.style.scrollSnapType="none",a._immediateVirtual=!0),p[e?"scrollLeft":"scrollTop"]=i,t&&requestAnimationFrame(()=>{a.wrapperEl.style.scrollSnapType="",a._swiperImmediateVirtual=!1})}else{if(!a.support.smoothScroll)return x({swiper:a,targetPosition:i,side:e?"left":"top"}),!0;p.scrollTo({[e?"left":"top"]:i,behavior:"smooth"})}return!0}return a.setTransition(t),a.setTranslate(v),a.updateActiveIndex(o),a.updateSlidesClasses(),a.emit("beforeTransitionStart",t,s),a.transitionStart(i,y),0===t?a.transitionEnd(i,y):a.animating||(a.animating=!0,a.onSlideToWrapperTransitionEnd||(a.onSlideToWrapperTransitionEnd=function(e){a&&!a.destroyed&&e.target===this&&(a.$wrapperEl[0].removeEventListener("transitionend",a.onSlideToWrapperTransitionEnd),a.$wrapperEl[0].removeEventListener("webkitTransitionEnd",a.onSlideToWrapperTransitionEnd),a.onSlideToWrapperTransitionEnd=null,delete a.onSlideToWrapperTransitionEnd,a.transitionEnd(i,y))}),a.$wrapperEl[0].addEventListener("transitionend",a.onSlideToWrapperTransitionEnd),a.$wrapperEl[0].addEventListener("webkitTransitionEnd",a.onSlideToWrapperTransitionEnd)),!0},slideToLoop:function(e,t,i,s){void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===i&&(i=!0);const n=this;let a=e;return n.params.loop&&(a+=n.loopedSlides),n.slideTo(a,t,i,s)},slideNext:function(e,t,i){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0);const s=this,{animating:n,enabled:a,params:o}=s;if(!a)return s;let r=o.slidesPerGroup;"auto"===o.slidesPerView&&1===o.slidesPerGroup&&o.slidesPerGroupAuto&&(r=Math.max(s.slidesPerViewDynamic("current",!0),1));const l=s.activeIndex<o.slidesPerGroupSkip?1:r;if(o.loop){if(n&&o.loopPreventsSlide)return!1;s.loopFix(),s._clientLeft=s.$wrapperEl[0].clientLeft}return o.rewind&&s.isEnd?s.slideTo(0,e,t,i):s.slideTo(s.activeIndex+l,e,t,i)},slidePrev:function(e,t,i){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0);const s=this,{params:n,animating:a,snapGrid:o,slidesGrid:r,rtlTranslate:l,enabled:c}=s;if(!c)return s;if(n.loop){if(a&&n.loopPreventsSlide)return!1;s.loopFix(),s._clientLeft=s.$wrapperEl[0].clientLeft}function d(e){return e<0?-Math.floor(Math.abs(e)):Math.floor(e)}const h=d(l?s.translate:-s.translate),u=o.map(e=>d(e));let p=o[u.indexOf(h)-1];if(void 0===p&&n.cssMode){let e;o.forEach((t,i)=>{h>=t&&(e=i)}),void 0!==e&&(p=o[e>0?e-1:e])}let m=0;if(void 0!==p&&(m=r.indexOf(p),m<0&&(m=s.activeIndex-1),"auto"===n.slidesPerView&&1===n.slidesPerGroup&&n.slidesPerGroupAuto&&(m=m-s.slidesPerViewDynamic("previous",!0)+1,m=Math.max(m,0))),n.rewind&&s.isBeginning){const n=s.params.virtual&&s.params.virtual.enabled&&s.virtual?s.virtual.slides.length-1:s.slides.length-1;return s.slideTo(n,e,t,i)}return s.slideTo(m,e,t,i)},slideReset:function(e,t,i){return void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),this.slideTo(this.activeIndex,e,t,i)},slideToClosest:function(e,t,i,s){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),void 0===s&&(s=.5);const n=this;let a=n.activeIndex;const o=Math.min(n.params.slidesPerGroupSkip,a),r=o+Math.floor((a-o)/n.params.slidesPerGroup),l=n.rtlTranslate?n.translate:-n.translate;if(l>=n.snapGrid[r]){const e=n.snapGrid[r];l-e>(n.snapGrid[r+1]-e)*s&&(a+=n.params.slidesPerGroup)}else{const e=n.snapGrid[r-1];l-e<=(n.snapGrid[r]-e)*s&&(a-=n.params.slidesPerGroup)}return a=Math.max(a,0),a=Math.min(a,n.slidesGrid.length-1),n.slideTo(a,e,t,i)},slideToClickedSlide:function(){const e=this,{params:t,$wrapperEl:i}=e,s="auto"===t.slidesPerView?e.slidesPerViewDynamic():t.slidesPerView;let n,a=e.clickedIndex;if(t.loop){if(e.animating)return;n=parseInt(c(e.clickedSlide).attr("data-swiper-slide-index"),10),t.centeredSlides?a<e.loopedSlides-s/2||a>e.slides.length-e.loopedSlides+s/2?(e.loopFix(),a=i.children(`.${t.slideClass}[data-swiper-slide-index="${n}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),h(()=>{e.slideTo(a)})):e.slideTo(a):a>e.slides.length-s?(e.loopFix(),a=i.children(`.${t.slideClass}[data-swiper-slide-index="${n}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),h(()=>{e.slideTo(a)})):e.slideTo(a)}else e.slideTo(a)}},loop:{loopCreate:function(){const e=this,t=s(),{params:i,$wrapperEl:n}=e,a=n.children().length>0?c(n.children()[0].parentNode):n;a.children(`.${i.slideClass}.${i.slideDuplicateClass}`).remove();let o=a.children(`.${i.slideClass}`);if(i.loopFillGroupWithBlank){const e=i.slidesPerGroup-o.length%i.slidesPerGroup;if(e!==i.slidesPerGroup){for(let s=0;s<e;s+=1){const e=c(t.createElement("div")).addClass(`${i.slideClass} ${i.slideBlankClass}`);a.append(e)}o=a.children(`.${i.slideClass}`)}}"auto"!==i.slidesPerView||i.loopedSlides||(i.loopedSlides=o.length),e.loopedSlides=Math.ceil(parseFloat(i.loopedSlides||i.slidesPerView,10)),e.loopedSlides+=i.loopAdditionalSlides,e.loopedSlides>o.length&&(e.loopedSlides=o.length);const r=[],l=[];o.each((t,i)=>{const s=c(t);i<e.loopedSlides&&l.push(t),i<o.length&&i>=o.length-e.loopedSlides&&r.push(t),s.attr("data-swiper-slide-index",i)});for(let e=0;e<l.length;e+=1)a.append(c(l[e].cloneNode(!0)).addClass(i.slideDuplicateClass));for(let e=r.length-1;e>=0;e-=1)a.prepend(c(r[e].cloneNode(!0)).addClass(i.slideDuplicateClass))},loopFix:function(){const e=this;e.emit("beforeLoopFix");const{activeIndex:t,slides:i,loopedSlides:s,allowSlidePrev:n,allowSlideNext:a,snapGrid:o,rtlTranslate:r}=e;let l;e.allowSlidePrev=!0,e.allowSlideNext=!0;const c=-o[t]-e.getTranslate();if(t<s){l=i.length-3*s+t,l+=s,e.slideTo(l,0,!1,!0)&&0!==c&&e.setTranslate((r?-e.translate:e.translate)-c)}else if(t>=i.length-s){l=-i.length+t+s,l+=s,e.slideTo(l,0,!1,!0)&&0!==c&&e.setTranslate((r?-e.translate:e.translate)-c)}e.allowSlidePrev=n,e.allowSlideNext=a,e.emit("loopFix")},loopDestroy:function(){const{$wrapperEl:e,params:t,slides:i}=this;e.children(`.${t.slideClass}.${t.slideDuplicateClass},.${t.slideClass}.${t.slideBlankClass}`).remove(),i.removeAttr("data-swiper-slide-index")}},grabCursor:{setGrabCursor:function(e){if(this.support.touch||!this.params.simulateTouch||this.params.watchOverflow&&this.isLocked||this.params.cssMode)return;const t="container"===this.params.touchEventsTarget?this.el:this.wrapperEl;t.style.cursor="move",t.style.cursor=e?"grabbing":"grab"},unsetGrabCursor:function(){this.support.touch||this.params.watchOverflow&&this.isLocked||this.params.cssMode||(this["container"===this.params.touchEventsTarget?"el":"wrapperEl"].style.cursor="")}},events:{attachEvents:function(){const e=this,t=s(),{params:i,support:n}=e;e.onTouchStart=C.bind(e),e.onTouchMove=L.bind(e),e.onTouchEnd=A.bind(e),i.cssMode&&(e.onScroll=k.bind(e)),e.onClick=I.bind(e),n.touch&&!N&&(t.addEventListener("touchstart",O),N=!0),j(e,"on")},detachEvents:function(){j(this,"off")}},breakpoints:{setBreakpoint:function(){const e=this,{activeIndex:t,initialized:i,loopedSlides:s=0,params:n,$el:a}=e,o=n.breakpoints;if(!o||o&&0===Object.keys(o).length)return;const r=e.getBreakpoint(o,e.params.breakpointsBase,e.el);if(!r||e.currentBreakpoint===r)return;const l=(r in o?o[r]:void 0)||e.originalParams,c=$(e,n),d=$(e,l),h=n.enabled;c&&!d?(a.removeClass(`${n.containerModifierClass}grid ${n.containerModifierClass}grid-column`),e.emitContainerClasses()):!c&&d&&(a.addClass(`${n.containerModifierClass}grid`),(l.grid.fill&&"column"===l.grid.fill||!l.grid.fill&&"column"===n.grid.fill)&&a.addClass(`${n.containerModifierClass}grid-column`),e.emitContainerClasses());const u=l.direction&&l.direction!==n.direction,p=n.loop&&(l.slidesPerView!==n.slidesPerView||u);u&&i&&e.changeDirection(),g(e.params,l);const m=e.params.enabled;Object.assign(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),h&&!m?e.disable():!h&&m&&e.enable(),e.currentBreakpoint=r,e.emit("_beforeBreakpoint",l),p&&i&&(e.loopDestroy(),e.loopCreate(),e.updateSlides(),e.slideTo(t-s+e.loopedSlides,0,!1)),e.emit("breakpoint",l)},getBreakpoint:function(e,t,i){if(void 0===t&&(t="window"),!e||"container"===t&&!i)return;let s=!1;const n=a(),o="window"===t?n.innerHeight:i.clientHeight,r=Object.keys(e).map(e=>{if("string"==typeof e&&0===e.indexOf("@")){const t=parseFloat(e.substr(1));return{value:o*t,point:e}}return{value:e,point:e}});r.sort((e,t)=>parseInt(e.value,10)-parseInt(t.value,10));for(let e=0;e<r.length;e+=1){const{point:a,value:o}=r[e];"window"===t?n.matchMedia(`(min-width: ${o}px)`).matches&&(s=a):o<=i.clientWidth&&(s=a)}return s||"max"}},checkOverflow:{checkOverflow:function(){const e=this,{isLocked:t,params:i}=e,{slidesOffsetBefore:s}=i;if(s){const t=e.slides.length-1,i=e.slidesGrid[t]+e.slidesSizesGrid[t]+2*s;e.isLocked=e.size>i}else e.isLocked=1===e.snapGrid.length;!0===i.allowSlideNext&&(e.allowSlideNext=!e.isLocked),!0===i.allowSlidePrev&&(e.allowSlidePrev=!e.isLocked),t&&t!==e.isLocked&&(e.isEnd=!1),t!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock")}},classes:{addClasses:function(){const{classNames:e,params:t,rtl:i,$el:s,device:n,support:a}=this,o=function(e,t){const i=[];return e.forEach(e=>{"object"==typeof e?Object.keys(e).forEach(s=>{e[s]&&i.push(t+s)}):"string"==typeof e&&i.push(t+e)}),i}(["initialized",t.direction,{"pointer-events":!a.touch},{"free-mode":this.params.freeMode&&t.freeMode.enabled},{autoheight:t.autoHeight},{rtl:i},{grid:t.grid&&t.grid.rows>1},{"grid-column":t.grid&&t.grid.rows>1&&"column"===t.grid.fill},{android:n.android},{ios:n.ios},{"css-mode":t.cssMode},{centered:t.cssMode&&t.centeredSlides},{"watch-progress":t.watchSlidesProgress}],t.containerModifierClass);e.push(...o),s.addClass([...e].join(" ")),this.emitContainerClasses()},removeClasses:function(){const{$el:e,classNames:t}=this;e.removeClass(t.join(" ")),this.emitContainerClasses()}},images:{loadImage:function(e,t,i,s,n,o){const r=a();let l;function d(){o&&o()}c(e).parent("picture")[0]||e.complete&&n?d():t?(l=new r.Image,l.onload=d,l.onerror=d,s&&(l.sizes=s),i&&(l.srcset=i),t&&(l.src=t)):d()},preloadImages:function(){const e=this;function t(){null!=e&&e&&!e.destroyed&&(void 0!==e.imagesLoaded&&(e.imagesLoaded+=1),e.imagesLoaded===e.imagesToLoad.length&&(e.params.updateOnImagesReady&&e.update(),e.emit("imagesReady")))}e.imagesToLoad=e.$el.find("img");for(let i=0;i<e.imagesToLoad.length;i+=1){const s=e.imagesToLoad[i];e.loadImage(s,s.currentSrc||s.getAttribute("src"),s.srcset||s.getAttribute("srcset"),s.sizes||s.getAttribute("sizes"),!0,t)}}}},q={};class B{constructor(){let e,t;for(var i=arguments.length,s=new Array(i),n=0;n<i;n++)s[n]=arguments[n];if(1===s.length&&s[0].constructor&&"Object"===Object.prototype.toString.call(s[0]).slice(8,-1)?t=s[0]:[e,t]=s,t||(t={}),t=g({},t),e&&!t.el&&(t.el=e),t.el&&c(t.el).length>1){const e=[];return c(t.el).each(i=>{const s=g({},t,{el:i});e.push(new B(s))}),e}const a=this;a.__swiper__=!0,a.support=M(),a.device=E({userAgent:t.userAgent}),a.browser=S(),a.eventsListeners={},a.eventsAnyListeners=[],a.modules=[...a.__modules__],t.modules&&Array.isArray(t.modules)&&a.modules.push(...t.modules);const o={};a.modules.forEach(e=>{e({swiper:a,extendParams:z(t,o),on:a.on.bind(a),once:a.once.bind(a),off:a.off.bind(a),emit:a.emit.bind(a)})});const r=g({},P,o);return a.params=g({},r,q,t),a.params=axDataset(t.el,a.params),"string"==typeof t.el?(".ax-prev"==a.params.navigation.prevEl&&(a.params.navigation.prevEl=document.querySelector(t.el+" .ax-prev")),".ax-next"==a.params.navigation.nextEl&&(a.params.navigation.nextEl=document.querySelector(t.el+" .ax-next"))):(".ax-prev"==a.params.navigation.prevEl&&(a.params.navigation.prevEl=t.el.querySelector(".ax-prev")),".ax-next"==a.params.navigation.nextEl&&(a.params.navigation.nextEl=t.el.querySelector(".ax-next"))),a.originalParams=g({},a.params),a.passedParams=g({},t),a.params&&a.params.on&&Object.keys(a.params.on).forEach(e=>{a.on(e,a.params.on[e])}),a.params&&a.params.onAny&&a.onAny(a.params.onAny),a.$=c,Object.assign(a,{enabled:a.params.enabled,el:e,classNames:[],slides:c(),slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:()=>"horizontal"===a.params.direction,isVertical:()=>"vertical"===a.params.direction,activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,allowSlideNext:a.params.allowSlideNext,allowSlidePrev:a.params.allowSlidePrev,touchEvents:function(){const e=["touchstart","touchmove","touchend","touchcancel"],t=["pointerdown","pointermove","pointerup"];return a.touchEventsTouch={start:e[0],move:e[1],end:e[2],cancel:e[3]},a.touchEventsDesktop={start:t[0],move:t[1],end:t[2]},a.support.touch||!a.params.simulateTouch?a.touchEventsTouch:a.touchEventsDesktop}(),touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:a.params.focusableElements,lastClickTime:u(),clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,isTouchEvent:void 0,startMoving:void 0},allowClick:!0,allowTouchMove:a.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),a.emit("_swiper"),a.params.init&&a.init(),a}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,t){e=Math.min(Math.max(e,0),1);const i=this.minTranslate(),s=(this.maxTranslate()-i)*e+i;this.translateTo(s,void 0===t?0:t),this.updateActiveIndex(),this.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=e.el.className.split(" ").filter(t=>0===t.indexOf("ax")||0===t.indexOf(e.params.containerModifierClass));e.emit("_containerClasses",t.join(" "))}getSlideClasses(e){const t=this;return t.destroyed?"":e.className.split(" ").filter(e=>0===e.indexOf("ax-slide")||0===e.indexOf(t.params.slideClass)).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=[];e.slides.each(i=>{const s=e.getSlideClasses(i);t.push({slideEl:i,classNames:s}),e.emit("_slideClass",i,s)}),e.emit("_slideClasses",t)}slidesPerViewDynamic(e,t){void 0===e&&(e="current"),void 0===t&&(t=!1);const{params:i,slides:s,slidesGrid:n,slidesSizesGrid:a,size:o,activeIndex:r}=this;let l=1;if(i.centeredSlides){let e,t=s[r].swiperSlideSize;for(let i=r+1;i<s.length;i+=1)s[i]&&!e&&(t+=s[i].swiperSlideSize,l+=1,t>o&&(e=!0));for(let i=r-1;i>=0;i-=1)s[i]&&!e&&(t+=s[i].swiperSlideSize,l+=1,t>o&&(e=!0))}else if("current"===e)for(let e=r+1;e<s.length;e+=1){(t?n[e]+a[e]-n[r]<o:n[e]-n[r]<o)&&(l+=1)}else for(let e=r-1;e>=0;e-=1){n[r]-n[e]<o&&(l+=1)}return l}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:t,params:i}=e;function s(){const t=e.rtlTranslate?-1*e.translate:e.translate,i=Math.min(Math.max(t,e.maxTranslate()),e.minTranslate());e.setTranslate(i),e.updateActiveIndex(),e.updateSlidesClasses()}let n;i.breakpoints&&e.setBreakpoint(),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.params.freeMode&&e.params.freeMode.enabled?(s(),e.params.autoHeight&&e.updateAutoHeight()):(n=("auto"===e.params.slidesPerView||e.params.slidesPerView>1)&&e.isEnd&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),n||s()),i.watchOverflow&&t!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,t){void 0===t&&(t=!0);const i=this,s=i.params.direction;return e||(e="horizontal"===s?"vertical":"horizontal"),e===s||"horizontal"!==e&&"vertical"!==e?i:(i.$el.removeClass(`${i.params.containerModifierClass}${s}`).addClass(`${i.params.containerModifierClass}${e}`),i.emitContainerClasses(),i.params.direction=e,i.slides.each(t=>{"vertical"===e?t.style.width="":t.style.height=""}),i.emit("changeDirection"),t&&i.update(),i)}mount(e){const t=this;if(t.mounted)return!0;const i=c(e||t.params.el);if(!(e=i[0]))return!1;e.swiper=t;const n=()=>`.${(t.params.wrapperClass||"").trim().split(" ").join(".")}`;let a=(()=>{if(e&&e.shadowRoot&&e.shadowRoot.querySelector){const t=c(e.shadowRoot.querySelector(n()));return t.children=e=>i.children(e),t}return i.children(n())})();if(0===a.length&&t.params.createElements){const e=s().createElement("div");a=c(e),e.className=t.params.wrapperClass,i.append(e),i.children(`.${t.params.slideClass}`).each(e=>{a.append(e)})}return Object.assign(t,{$el:i,el:e,$wrapperEl:a,wrapperEl:a[0],mounted:!0,rtl:"rtl"===e.dir.toLowerCase()||"rtl"===i.css("direction"),rtlTranslate:"horizontal"===t.params.direction&&("rtl"===e.dir.toLowerCase()||"rtl"===i.css("direction")),wrongRTL:"-webkit-box"===a.css("display")}),!0}init(e){const t=this;return t.initialized?t:!1===t.mount(e)?t:(t.emit("beforeInit"),t.params.breakpoints&&t.setBreakpoint(),t.addClasses(),t.params.loop&&t.loopCreate(),t.updateSize(),t.updateSlides(),t.params.watchOverflow&&t.checkOverflow(),t.params.grabCursor&&t.enabled&&t.setGrabCursor(),t.params.preloadImages&&t.preloadImages(),t.params.loop?t.slideTo(t.params.initialSlide+t.loopedSlides,0,t.params.runCallbacksOnInit,!1,!0):t.slideTo(t.params.initialSlide,0,t.params.runCallbacksOnInit,!1,!0),t.attachEvents(),t.initialized=!0,t.emit("init"),t.emit("afterInit"),t)}destroy(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0);const i=this,{params:s,$el:n,$wrapperEl:a,slides:o}=i;return void 0===i.params||i.destroyed?null:(i.emit("beforeDestroy"),i.initialized=!1,i.detachEvents(),s.loop&&i.loopDestroy(),t&&(i.removeClasses(),n.removeAttr("style"),a.removeAttr("style"),o&&o.length&&o.removeClass([s.slideVisibleClass,s.slideActiveClass,s.slideNextClass,s.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")),i.emit("destroy"),Object.keys(i.eventsListeners).forEach(e=>{i.off(e)}),!1!==e&&(i.$el[0].swiper=null,function(e){const t=e;Object.keys(t).forEach(e=>{try{t[e]=null}catch(e){}try{delete t[e]}catch(e){}})}(i)),i.destroyed=!0,null)}static extendDefaults(e){g(q,e)}static get extendedDefaults(){return q}static get defaults(){return P}static installModule(e){B.prototype.__modules__||(B.prototype.__modules__=[]);const t=B.prototype.__modules__;"function"==typeof e&&t.indexOf(e)<0&&t.push(e)}static use(e){return Array.isArray(e)?(e.forEach(e=>B.installModule(e)),B):(B.installModule(e),B)}}function H(e,t,i,n){const a=s();return e.params.createElements&&Object.keys(n).forEach(s=>{if(!i[s]&&!0===i.auto){let o=e.$el.children(`.${n[s]}`)[0];o||(o=a.createElement("div"),o.className=n[s],e.$el.append(o)),i[s]=o,t[s]=o}}),i}function F(e){return void 0===e&&(e=""),`.${e.trim().replace(/([\.:!\/])/g,"\\$1").replace(/ /g,".")}`}function R(e){const t=this,{$wrapperEl:i,params:s}=t;if(s.loop&&t.loopDestroy(),"object"==typeof e&&"length"in e)for(let t=0;t<e.length;t+=1)e[t]&&i.append(e[t]);else i.append(e);s.loop&&t.loopCreate(),s.observer||t.update()}function V(e){const t=this,{params:i,$wrapperEl:s,activeIndex:n}=t;i.loop&&t.loopDestroy();let a=n+1;if("object"==typeof e&&"length"in e){for(let t=0;t<e.length;t+=1)e[t]&&s.prepend(e[t]);a=n+e.length}else s.prepend(e);i.loop&&t.loopCreate(),i.observer||t.update(),t.slideTo(a,0,!1)}function G(e,t){const i=this,{$wrapperEl:s,params:n,activeIndex:a}=i;let o=a;n.loop&&(o-=i.loopedSlides,i.loopDestroy(),i.slides=s.children(`.${n.slideClass}`));const r=i.slides.length;if(e<=0)return void i.prependSlide(t);if(e>=r)return void i.appendSlide(t);let l=o>e?o+1:o;const c=[];for(let t=r-1;t>=e;t-=1){const e=i.slides.eq(t);e.remove(),c.unshift(e)}if("object"==typeof t&&"length"in t){for(let e=0;e<t.length;e+=1)t[e]&&s.append(t[e]);l=o>e?o+t.length:o}else s.append(t);for(let e=0;e<c.length;e+=1)s.append(c[e]);n.loop&&i.loopCreate(),n.observer||i.update(),n.loop?i.slideTo(l+i.loopedSlides,0,!1):i.slideTo(l,0,!1)}function U(e){const t=this,{params:i,$wrapperEl:s,activeIndex:n}=t;let a=n;i.loop&&(a-=t.loopedSlides,t.loopDestroy(),t.slides=s.children(`.${i.slideClass}`));let o,r=a;if("object"==typeof e&&"length"in e){for(let i=0;i<e.length;i+=1)o=e[i],t.slides[o]&&t.slides.eq(o).remove(),o<r&&(r-=1);r=Math.max(r,0)}else o=e,t.slides[o]&&t.slides.eq(o).remove(),o<r&&(r-=1),r=Math.max(r,0);i.loop&&t.loopCreate(),i.observer||t.update(),i.loop?t.slideTo(r+t.loopedSlides,0,!1):t.slideTo(r,0,!1)}function W(){const e=this,t=[];for(let i=0;i<e.slides.length;i+=1)t.push(i);e.removeSlide(t)}function X(e){const{effect:t,swiper:i,on:s,setTranslate:n,setTransition:a,overwriteParams:o,perspective:r,recreateShadows:l,getEffectParams:c}=e;let d;s("beforeInit",()=>{if(i.params.effect!==t)return;i.classNames.push(`${i.params.containerModifierClass}${t}`),r&&r()&&i.classNames.push(`${i.params.containerModifierClass}3d`);const e=o?o():{};Object.assign(i.params,e),Object.assign(i.originalParams,e)}),s("setTranslate",()=>{i.params.effect===t&&n()}),s("setTransition",(e,s)=>{i.params.effect===t&&a(s)}),s("transitionEnd",()=>{if(i.params.effect===t&&l){if(!c||!c().slideShadows)return;i.slides.each(e=>{i.$(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").remove()}),l()}}),s("virtualUpdate",()=>{i.params.effect===t&&(i.slides.length||(d=!0),requestAnimationFrame(()=>{d&&i.slides&&i.slides.length&&(n(),d=!1)}))})}function Q(e,t){return e.transformEl?t.find(e.transformEl).css({"backface-visibility":"hidden","-webkit-backface-visibility":"hidden"}):t}function K(e){let{swiper:t,duration:i,transformEl:s,allSlides:n}=e;const{slides:a,activeIndex:o,$wrapperEl:r}=t;if(t.params.virtualTranslate&&0!==i){let e,i=!1;e=n?s?a.find(s):a:s?a.eq(o).find(s):a.eq(o),e.transitionEnd(()=>{if(i)return;if(!t||t.destroyed)return;i=!0,t.animating=!1;const e=["webkitTransitionEnd","transitionend"];for(let t=0;t<e.length;t+=1)r.trigger(e[t])})}}function J(e,t,i){const s=`swiper-slide-shadow${i?`-${i}`:""}`,n=e.transformEl?t.find(e.transformEl):t;let a=n.children(`.${s}`);return a.length||(a=c(`<div class="swiper-slide-shadow${i?`-${i}`:""}"></div>`),n.append(a)),a}Object.keys(Y).forEach(e=>{Object.keys(Y[e]).forEach(t=>{B.prototype[t]=Y[e][t]})}),B.use([function(e){let{swiper:t,on:i,emit:s}=e;const n=a();let o=null,r=null;const l=()=>{t&&!t.destroyed&&t.initialized&&(s("beforeResize"),s("resize"))},c=()=>{t&&!t.destroyed&&t.initialized&&s("orientationchange")};i("init",()=>{t.params.resizeObserver&&void 0!==n.ResizeObserver?t&&!t.destroyed&&t.initialized&&(o=new ResizeObserver(e=>{r=n.requestAnimationFrame(()=>{const{width:i,height:s}=t;let n=i,a=s;e.forEach(e=>{let{contentBoxSize:i,contentRect:s,target:o}=e;o&&o!==t.el||(n=s?s.width:(i[0]||i).inlineSize,a=s?s.height:(i[0]||i).blockSize)}),n===i&&a===s||l()})}),o.observe(t.el)):(n.addEventListener("resize",l),n.addEventListener("orientationchange",c))}),i("destroy",()=>{r&&n.cancelAnimationFrame(r),o&&o.unobserve&&t.el&&(o.unobserve(t.el),o=null),n.removeEventListener("resize",l),n.removeEventListener("orientationchange",c)})},function(e){let{swiper:t,extendParams:i,on:s,emit:n}=e;const o=[],r=a(),l=function(e,t){void 0===t&&(t={});const i=new(r.MutationObserver||r.WebkitMutationObserver)(e=>{if(1===e.length)return void n("observerUpdate",e[0]);const t=function(){n("observerUpdate",e[0])};r.requestAnimationFrame?r.requestAnimationFrame(t):r.setTimeout(t,0)});i.observe(e,{attributes:void 0===t.attributes||t.attributes,childList:void 0===t.childList||t.childList,characterData:void 0===t.characterData||t.characterData}),o.push(i)};i({observer:!1,observeParents:!1,observeSlideChildren:!1}),s("init",()=>{if(t.params.observer){if(t.params.observeParents){const e=t.$el.parents();for(let t=0;t<e.length;t+=1)l(e[t])}l(t.$el[0],{childList:t.params.observeSlideChildren}),l(t.$wrapperEl[0],{attributes:!1})}}),s("destroy",()=>{o.forEach(e=>{e.disconnect()}),o.splice(0,o.length)})}]);const Z=[function(e){let t,{swiper:i,extendParams:s,on:n,emit:a}=e;function o(e,t){const s=i.params.virtual;if(s.cache&&i.virtual.cache[t])return i.virtual.cache[t];const n=s.renderSlide?c(s.renderSlide.call(i,e,t)):c(`<div class="${i.params.slideClass}" data-swiper-slide-index="${t}">${e}</div>`);return n.attr("data-swiper-slide-index")||n.attr("data-swiper-slide-index",t),s.cache&&(i.virtual.cache[t]=n),n}function r(e){const{slidesPerView:t,slidesPerGroup:s,centeredSlides:n}=i.params,{addSlidesBefore:r,addSlidesAfter:l}=i.params.virtual,{from:c,to:d,slides:h,slidesGrid:u,offset:p}=i.virtual;i.params.cssMode||i.updateActiveIndex();const m=i.activeIndex||0;let f,g,v;f=i.rtlTranslate?"right":i.isHorizontal()?"left":"top",n?(g=Math.floor(t/2)+s+l,v=Math.floor(t/2)+s+r):(g=t+(s-1)+l,v=s+r);const x=Math.max((m||0)-v,0),y=Math.min((m||0)+g,h.length-1),b=(i.slidesGrid[x]||0)-(i.slidesGrid[0]||0);function w(){i.updateSlides(),i.updateProgress(),i.updateSlidesClasses(),i.lazy&&i.params.lazy.enabled&&i.lazy.load(),a("virtualUpdate")}if(Object.assign(i.virtual,{from:x,to:y,offset:b,slidesGrid:i.slidesGrid}),c===x&&d===y&&!e)return i.slidesGrid!==u&&b!==p&&i.slides.css(f,`${b}px`),i.updateProgress(),void a("virtualUpdate");if(i.params.virtual.renderExternal)return i.params.virtual.renderExternal.call(i,{offset:b,from:x,to:y,slides:function(){const e=[];for(let t=x;t<=y;t+=1)e.push(h[t]);return e}()}),void(i.params.virtual.renderExternalUpdate?w():a("virtualUpdate"));const M=[],E=[];if(e)i.$wrapperEl.find(`.${i.params.slideClass}`).remove();else for(let e=c;e<=d;e+=1)(e<x||e>y)&&i.$wrapperEl.find(`.${i.params.slideClass}[data-swiper-slide-index="${e}"]`).remove();for(let t=0;t<h.length;t+=1)t>=x&&t<=y&&(void 0===d||e?E.push(t):(t>d&&E.push(t),t<c&&M.push(t)));E.forEach(e=>{i.$wrapperEl.append(o(h[e],e))}),M.sort((e,t)=>t-e).forEach(e=>{i.$wrapperEl.prepend(o(h[e],e))}),i.$wrapperEl.children(".swiper-slide").css(f,`${b}px`),w()}s({virtual:{enabled:!1,slides:[],cache:!0,renderSlide:null,renderExternal:null,renderExternalUpdate:!0,addSlidesBefore:0,addSlidesAfter:0}}),i.virtual={cache:{},from:void 0,to:void 0,slides:[],offset:0,slidesGrid:[]},n("beforeInit",()=>{i.params.virtual.enabled&&(i.virtual.slides=i.params.virtual.slides,i.classNames.push(`${i.params.containerModifierClass}virtual`),i.params.watchSlidesProgress=!0,i.originalParams.watchSlidesProgress=!0,i.params.initialSlide||r())}),n("setTranslate",()=>{i.params.virtual.enabled&&(i.params.cssMode&&!i._immediateVirtual?(clearTimeout(t),t=setTimeout(()=>{r()},100)):r())}),n("init update resize",()=>{i.params.virtual.enabled&&i.params.cssMode&&v(i.wrapperEl,"--swiper-virtual-size",`${i.virtualSize}px`)}),Object.assign(i.virtual,{appendSlide:function(e){if("object"==typeof e&&"length"in e)for(let t=0;t<e.length;t+=1)e[t]&&i.virtual.slides.push(e[t]);else i.virtual.slides.push(e);r(!0)},prependSlide:function(e){const t=i.activeIndex;let s=t+1,n=1;if(Array.isArray(e)){for(let t=0;t<e.length;t+=1)e[t]&&i.virtual.slides.unshift(e[t]);s=t+e.length,n=e.length}else i.virtual.slides.unshift(e);if(i.params.virtual.cache){const e=i.virtual.cache,t={};Object.keys(e).forEach(i=>{const s=e[i],a=s.attr("data-swiper-slide-index");a&&s.attr("data-swiper-slide-index",parseInt(a,10)+n),t[parseInt(i,10)+n]=s}),i.virtual.cache=t}r(!0),i.slideTo(s,0)},removeSlide:function(e){if(null==e)return;let t=i.activeIndex;if(Array.isArray(e))for(let s=e.length-1;s>=0;s-=1)i.virtual.slides.splice(e[s],1),i.params.virtual.cache&&delete i.virtual.cache[e[s]],e[s]<t&&(t-=1),t=Math.max(t,0);else i.virtual.slides.splice(e,1),i.params.virtual.cache&&delete i.virtual.cache[e],e<t&&(t-=1),t=Math.max(t,0);r(!0),i.slideTo(t,0)},removeAllSlides:function(){i.virtual.slides=[],i.params.virtual.cache&&(i.virtual.cache={}),r(!0),i.slideTo(0,0)},update:r})},function(e){let{swiper:t,extendParams:i,on:n,emit:o}=e;const r=s(),l=a();function d(e){if(!t.enabled)return;const{rtlTranslate:i}=t;let s=e;s.originalEvent&&(s=s.originalEvent);const n=s.keyCode||s.charCode,a=t.params.keyboard.pageUpDown,c=a&&33===n,d=a&&34===n,h=37===n,u=39===n,p=38===n,m=40===n;if(!t.allowSlideNext&&(t.isHorizontal()&&u||t.isVertical()&&m||d))return!1;if(!t.allowSlidePrev&&(t.isHorizontal()&&h||t.isVertical()&&p||c))return!1;if(!(s.shiftKey||s.altKey||s.ctrlKey||s.metaKey||r.activeElement&&r.activeElement.nodeName&&("input"===r.activeElement.nodeName.toLowerCase()||"textarea"===r.activeElement.nodeName.toLowerCase()))){if(t.params.keyboard.onlyInViewport&&(c||d||h||u||p||m)){let e=!1;if(t.$el.parents(`.${t.params.slideClass}`).length>0&&0===t.$el.parents(`.${t.params.slideActiveClass}`).length)return;const s=t.$el,n=s[0].clientWidth,a=s[0].clientHeight,o=l.innerWidth,r=l.innerHeight,c=t.$el.offset();i&&(c.left-=t.$el[0].scrollLeft);const d=[[c.left,c.top],[c.left+n,c.top],[c.left,c.top+a],[c.left+n,c.top+a]];for(let t=0;t<d.length;t+=1){const i=d[t];if(i[0]>=0&&i[0]<=o&&i[1]>=0&&i[1]<=r){if(0===i[0]&&0===i[1])continue;e=!0}}if(!e)return}t.isHorizontal()?((c||d||h||u)&&axPreventDefault(s),((d||u)&&!i||(c||h)&&i)&&t.slideNext(),((c||h)&&!i||(d||u)&&i)&&t.slidePrev()):((c||d||p||m)&&axPreventDefault(s),(d||m)&&t.slideNext(),(c||p)&&t.slidePrev()),o("keyPress",n)}}function h(){t.keyboard.enabled||(c(r).on("keydown",d),t.keyboard.enabled=!0)}function u(){t.keyboard.enabled&&(c(r).off("keydown",d),t.keyboard.enabled=!1)}t.keyboard={enabled:!1},i({keyboard:{enabled:!1,onlyInViewport:!0,pageUpDown:!0}}),n("init",()=>{t.params.keyboard.enabled&&h()}),n("destroy",()=>{t.keyboard.enabled&&u()}),Object.assign(t.keyboard,{enable:h,disable:u})},function(e){let{swiper:t,extendParams:i,on:s,emit:n}=e;const o=a();let r;i({mousewheel:{enabled:!1,releaseOnEdges:!1,invert:!1,forceToAxis:!1,sensitivity:1,eventsTarget:"container",thresholdDelta:null,thresholdTime:null}}),t.mousewheel={enabled:!1};let l,d=u();const p=[];function m(){t.enabled&&(t.mouseEntered=!0)}function f(){t.enabled&&(t.mouseEntered=!1)}function g(e){return!(t.params.mousewheel.thresholdDelta&&e.delta<t.params.mousewheel.thresholdDelta)&&(!(t.params.mousewheel.thresholdTime&&u()-d<t.params.mousewheel.thresholdTime)&&(e.delta>=6&&u()-d<60||(e.direction<0?t.isEnd&&!t.params.loop||t.animating||(t.slideNext(),n("scroll",e.raw)):t.isBeginning&&!t.params.loop||t.animating||(t.slidePrev(),n("scroll",e.raw)),d=(new o.Date).getTime(),!1)))}function v(e){let i=e,s=!0;if(!t.enabled)return;const a=t.params.mousewheel;t.params.cssMode&&axPreventDefault(i);let o=t.$el;if("container"!==t.params.mousewheel.eventsTarget&&(o=c(t.params.mousewheel.eventsTarget)),!t.mouseEntered&&!o[0].contains(i.target)&&!a.releaseOnEdges)return!0;i.originalEvent&&(i=i.originalEvent);let d=0;const m=t.rtlTranslate?-1:1,f=function(e){let t=0,i=0,s=0,n=0;return"detail"in e&&(i=e.detail),"wheelDelta"in e&&(i=-e.wheelDelta/120),"wheelDeltaY"in e&&(i=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=i,i=0),s=10*t,n=10*i,"deltaY"in e&&(n=e.deltaY),"deltaX"in e&&(s=e.deltaX),e.shiftKey&&!s&&(s=n,n=0),(s||n)&&e.deltaMode&&(1===e.deltaMode?(s*=40,n*=40):(s*=800,n*=800)),s&&!t&&(t=s<1?-1:1),n&&!i&&(i=n<1?-1:1),{spinX:t,spinY:i,pixelX:s,pixelY:n}}(i);if(a.forceToAxis)if(t.isHorizontal()){if(!(Math.abs(f.pixelX)>Math.abs(f.pixelY)))return!0;d=-f.pixelX*m}else{if(!(Math.abs(f.pixelY)>Math.abs(f.pixelX)))return!0;d=-f.pixelY}else d=Math.abs(f.pixelX)>Math.abs(f.pixelY)?-f.pixelX*m:-f.pixelY;if(0===d)return!0;a.invert&&(d=-d);let v=t.getTranslate()+d*a.sensitivity;if(v>=t.minTranslate()&&(v=t.minTranslate()),v<=t.maxTranslate()&&(v=t.maxTranslate()),s=!!t.params.loop||!(v===t.minTranslate()||v===t.maxTranslate()),s&&t.params.nested&&i.stopPropagation(),t.params.freeMode&&t.params.freeMode.enabled){const e={time:u(),delta:Math.abs(d),direction:Math.sign(d)},s=l&&e.time<l.time+500&&e.delta<=l.delta&&e.direction===l.direction;if(!s){l=void 0,t.params.loop&&t.loopFix();let o=t.getTranslate()+d*a.sensitivity;const c=t.isBeginning,u=t.isEnd;if(o>=t.minTranslate()&&(o=t.minTranslate()),o<=t.maxTranslate()&&(o=t.maxTranslate()),t.setTransition(0),t.setTranslate(o),t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses(),(!c&&t.isBeginning||!u&&t.isEnd)&&t.updateSlidesClasses(),t.params.freeMode.sticky){clearTimeout(r),r=void 0,p.length>=15&&p.shift();const i=p.length?p[p.length-1]:void 0,s=p[0];if(p.push(e),i&&(e.delta>i.delta||e.direction!==i.direction))p.splice(0);else if(p.length>=15&&e.time-s.time<500&&s.delta-e.delta>=1&&e.delta<=6){const i=d>0?.8:.2;l=e,p.splice(0),r=h(()=>{t.slideToClosest(t.params.speed,!0,void 0,i)},0)}r||(r=h(()=>{l=e,p.splice(0),t.slideToClosest(t.params.speed,!0,void 0,.5)},500))}if(s||n("scroll",i),t.params.autoplay&&t.params.autoplayDisableOnInteraction&&t.autoplay.stop(),o===t.minTranslate()||o===t.maxTranslate())return!0}}else{const i={time:u(),delta:Math.abs(d),direction:Math.sign(d),raw:e};p.length>=2&&p.shift();const s=p.length?p[p.length-1]:void 0;if(p.push(i),s?(i.direction!==s.direction||i.delta>s.delta||i.time>s.time+150)&&g(i):g(i),function(e){const i=t.params.mousewheel;if(e.direction<0){if(t.isEnd&&!t.params.loop&&i.releaseOnEdges)return!0}else if(t.isBeginning&&!t.params.loop&&i.releaseOnEdges)return!0;return!1}(i))return!0}return axPreventDefault(i),!1}function x(e){let i=t.$el;"container"!==t.params.mousewheel.eventsTarget&&(i=c(t.params.mousewheel.eventsTarget)),i[e]("mouseenter",m),i[e]("mouseleave",f),i[e]("wheel",v)}function y(){return t.params.cssMode?(t.wrapperEl.removeEventListener("wheel",v),!0):!t.mousewheel.enabled&&(x("on"),t.mousewheel.enabled=!0,!0)}function b(){return t.params.cssMode?(t.wrapperEl.addEventListener(event,v),!0):!!t.mousewheel.enabled&&(x("off"),t.mousewheel.enabled=!1,!0)}s("init",()=>{!t.params.mousewheel.enabled&&t.params.cssMode&&b(),t.params.mousewheel.enabled&&y()}),s("destroy",()=>{t.params.cssMode&&y(),t.mousewheel.enabled&&b()}),Object.assign(t.mousewheel,{enable:y,disable:b})},function(e){let{swiper:t,extendParams:i,on:s,emit:n}=e;function a(e){let i;return e&&(i=c(e),t.params.uniqueNavElements&&"string"==typeof e&&i.length>1&&1===t.$el.find(e).length&&(i=t.$el.find(e))),i}function o(e,i){const s=t.params.navigation;e&&e.length>0&&(e[i?"addClass":"removeClass"](s.disabledClass),e[0]&&"BUTTON"===e[0].tagName&&(e[0].disabled=i),t.params.watchOverflow&&t.enabled&&e[t.isLocked?"addClass":"removeClass"](s.lockClass))}function r(){if(t.params.loop)return;const{$nextEl:e,$prevEl:i}=t.navigation;o(i,t.isBeginning&&!t.params.rewind),o(e,t.isEnd&&!t.params.rewind)}function l(e){axPreventDefault(e),(!t.isBeginning||t.params.loop||t.params.rewind)&&t.slidePrev()}function d(e){axPreventDefault(e),(!t.isEnd||t.params.loop||t.params.rewind)&&t.slideNext()}function h(){const e=t.params.navigation;if(t.params.navigation=H(t,t.originalParams.navigation,t.params.navigation,{nextEl:"ax-next",prevEl:"ax-prev"}),!e.nextEl&&!e.prevEl)return;const i=a(e.nextEl),s=a(e.prevEl);i&&i.length>0&&i.on("click",d),s&&s.length>0&&s.on("click",l),Object.assign(t.navigation,{$nextEl:i,nextEl:i&&i[0],$prevEl:s,prevEl:s&&s[0]}),t.enabled||(i&&i.addClass(e.lockClass),s&&s.addClass(e.lockClass))}function u(){const{$nextEl:e,$prevEl:i}=t.navigation;e&&e.length&&(e.off("click",d),e.removeClass(t.params.navigation.disabledClass)),i&&i.length&&(i.off("click",l),i.removeClass(t.params.navigation.disabledClass))}i({navigation:{nextEl:".ax-next",prevEl:".ax-prev",hideOnClick:!1,disabledClass:"ax-disabled",hiddenClass:"ax-hidden",lockClass:"ax-lock"}}),t.navigation={nextEl:null,$nextEl:null,prevEl:null,$prevEl:null},s("init",()=>{h(),r()}),s("toEdge fromEdge lock unlock",()=>{r()}),s("destroy",()=>{u()}),s("enable disable",()=>{const{$nextEl:e,$prevEl:i}=t.navigation;e&&e[t.enabled?"removeClass":"addClass"](t.params.navigation.lockClass),i&&i[t.enabled?"removeClass":"addClass"](t.params.navigation.lockClass)}),s("click",(e,i)=>{const{$nextEl:s,$prevEl:a}=t.navigation,o=i.target;if(t.params.navigation.hideOnClick&&!c(o).is(a)&&!c(o).is(s)){if(t.pagination&&t.params.pagination&&t.params.pagination.clickable&&(t.pagination.el===o||t.pagination.el.contains(o)))return;let e;s?e=s.hasClass(t.params.navigation.hiddenClass):a&&(e=a.hasClass(t.params.navigation.hiddenClass)),n(!0===e?"navigationShow":"navigationHide"),s&&s.toggleClass(t.params.navigation.hiddenClass),a&&a.toggleClass(t.params.navigation.hiddenClass)}}),Object.assign(t.navigation,{update:r,init:h,destroy:u})},function(e){let{swiper:t,extendParams:i,on:s,emit:n}=e;const a="ax-pages";let o;i({pagination:{el:"."+a,bulletElement:"i",clickable:!0,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:e=>e,formatFractionTotal:e=>e,bulletClass:`${a}-bullet`,bulletActiveClass:`${a}-bullet-active`,modifierClass:`${a}-`,currentClass:`${a}-current`,totalClass:`${a}-total`,hiddenClass:`${a}-hidden`,progressbarFillClass:`${a}-progressbar-fill`,progressbarOppositeClass:`${a}-progressbar-opposite`,clickableClass:`${a}-clickable`,lockClass:`${a}-lock`,horizontalClass:`${a}-horizontal`,verticalClass:`${a}-vertical`}}),t.pagination={el:null,$el:null,bullets:[]};let r=0;function l(){return!t.params.pagination.el||!t.pagination.el||!t.pagination.$el||0===t.pagination.$el.length}function d(e,i){const{bulletActiveClass:s}=t.params.pagination;e[i]().addClass(`${s}-${i}`)[i]().addClass(`${s}-${i}-${i}`)}function h(){const e=t.rtl,i=t.params.pagination;if(l())return;const s=t.virtual&&t.params.virtual.enabled?t.virtual.slides.length:t.slides.length,a=t.pagination.$el;let h;const u=t.params.loop?Math.ceil((s-2*t.loopedSlides)/t.params.slidesPerGroup):t.snapGrid.length;if(t.params.loop?(h=Math.ceil((t.activeIndex-t.loopedSlides)/t.params.slidesPerGroup),h>s-1-2*t.loopedSlides&&(h-=s-2*t.loopedSlides),h>u-1&&(h-=u),h<0&&"bullets"!==t.params.paginationType&&(h=u+h)):h=void 0!==t.snapIndex?t.snapIndex:t.activeIndex||0,"bullets"===i.type&&t.pagination.bullets&&t.pagination.bullets.length>0){const s=t.pagination.bullets;let n,l,u;if(i.dynamicBullets&&(o=s.eq(0)[t.isHorizontal()?"outerWidth":"outerHeight"](!0),a.css(t.isHorizontal()?"width":"height",`${o*(i.dynamicMainBullets+4)}px`),i.dynamicMainBullets>1&&void 0!==t.previousIndex&&(r+=h-(t.previousIndex-t.loopedSlides||0),r>i.dynamicMainBullets-1?r=i.dynamicMainBullets-1:r<0&&(r=0)),n=Math.max(h-r,0),l=n+(Math.min(s.length,i.dynamicMainBullets)-1),u=(l+n)/2),s.removeClass(["","-next","-next-next","-prev","-prev-prev","-main"].map(e=>`${i.bulletActiveClass}${e}`).join(" ")),a.length>1)s.each(e=>{const t=c(e),s=t.index();s===h&&t.addClass(i.bulletActiveClass),i.dynamicBullets&&(s>=n&&s<=l&&t.addClass(`${i.bulletActiveClass}-main`),s===n&&d(t,"prev"),s===l&&d(t,"next"))});else{const e=s.eq(h),a=e.index();if(e.addClass(i.bulletActiveClass),i.dynamicBullets){const e=s.eq(n),o=s.eq(l);for(let e=n;e<=l;e+=1)s.eq(e).addClass(`${i.bulletActiveClass}-main`);if(t.params.loop)if(a>=s.length){for(let e=i.dynamicMainBullets;e>=0;e-=1)s.eq(s.length-e).addClass(`${i.bulletActiveClass}-main`);s.eq(s.length-i.dynamicMainBullets-1).addClass(`${i.bulletActiveClass}-prev`)}else d(e,"prev"),d(o,"next");else d(e,"prev"),d(o,"next")}}if(i.dynamicBullets){const n=Math.min(s.length,i.dynamicMainBullets+4),a=(o*n-o)/2-u*o,r=e?"right":"left";s.css(t.isHorizontal()?r:"top",`${a}px`)}}if("fraction"===i.type&&(a.find(F(i.currentClass)).text(i.formatFractionCurrent(h+1)),a.find(F(i.totalClass)).text(i.formatFractionTotal(u))),"progressbar"===i.type){let e;e=i.progressbarOpposite?t.isHorizontal()?"vertical":"horizontal":t.isHorizontal()?"horizontal":"vertical";const s=(h+1)/u;let n=1,o=1;"horizontal"===e?n=s:o=s,a.find(F(i.progressbarFillClass)).transform(`translate3d(0,0,0) scaleX(${n}) scaleY(${o})`).transition(t.params.speed)}"custom"===i.type&&i.renderCustom?(a.html(i.renderCustom(t,h+1,u)),n("paginationRender",a[0])):n("paginationUpdate",a[0]),t.params.watchOverflow&&t.enabled&&a[t.isLocked?"addClass":"removeClass"](i.lockClass)}function u(){const e=t.params.pagination;if(l())return;const i=t.virtual&&t.params.virtual.enabled?t.virtual.slides.length:t.slides.length,s=t.pagination.$el;let a="";if("bullets"===e.type){let n=t.params.loop?Math.ceil((i-2*t.loopedSlides)/t.params.slidesPerGroup):t.snapGrid.length;t.params.freeMode&&t.params.freeMode.enabled&&!t.params.loop&&n>i&&(n=i);for(let i=0;i<n;i+=1)e.renderBullet?a+=e.renderBullet.call(t,i,e.bulletClass):a+=`<${e.bulletElement} class="${e.bulletClass}"></${e.bulletElement}>`;s.html(a),t.pagination.bullets=s.find(F(e.bulletClass))}"fraction"===e.type&&(a=e.renderFraction?e.renderFraction.call(t,e.currentClass,e.totalClass):`<span class="${e.currentClass}"></span>`+" / "+`<span class="${e.totalClass}"></span>`,s.html(a)),"progressbar"===e.type&&(a=e.renderProgressbar?e.renderProgressbar.call(t,e.progressbarFillClass):`<span class="${e.progressbarFillClass}"></span>`,s.html(a)),"custom"!==e.type&&n("paginationRender",t.pagination.$el[0])}function p(){t.params.pagination=H(t,t.originalParams.pagination,t.params.pagination,{el:"ax-pages"});const e=t.params.pagination;if(!e.el)return;let i=c(e.el);0!==i.length&&(t.params.uniqueNavElements&&"string"==typeof e.el&&i.length>1&&(i=t.$el.find(e.el),i.length>1&&(i=i.filter(e=>c(e).parents(".swiper")[0]===t.el))),"bullets"===e.type&&e.clickable&&i.addClass(e.clickableClass),i.addClass(e.modifierClass+e.type),i.addClass(t.isHorizontal()?e.horizontalClass:e.verticalClass),"bullets"===e.type&&e.dynamicBullets&&(i.addClass(`${e.modifierClass}${e.type}-dynamic`),r=0,e.dynamicMainBullets<1&&(e.dynamicMainBullets=1)),"progressbar"===e.type&&e.progressbarOpposite&&i.addClass(e.progressbarOppositeClass),e.clickable&&i.on("click",F(e.bulletClass),(function(e){axPreventDefault(e);let i=c(this).index()*t.params.slidesPerGroup;t.params.loop&&(i+=t.loopedSlides),t.slideTo(i)})),Object.assign(t.pagination,{$el:i,el:i[0]}),t.enabled||i.addClass(e.lockClass))}function m(){const e=t.params.pagination;if(l())return;const i=t.pagination.$el;i.removeClass(e.hiddenClass),i.removeClass(e.modifierClass+e.type),i.removeClass(t.isHorizontal()?e.horizontalClass:e.verticalClass),t.pagination.bullets&&t.pagination.bullets.removeClass&&t.pagination.bullets.removeClass(e.bulletActiveClass),e.clickable&&i.off("click",F(e.bulletClass))}s("init",()=>{p(),u(),h()}),s("activeIndexChange",()=>{t.params.loop?h():void 0===t.snapIndex&&h()}),s("snapIndexChange",()=>{t.params.loop||h()}),s("slidesLengthChange",()=>{t.params.loop&&(u(),h())}),s("snapGridLengthChange",()=>{t.params.loop||(u(),h())}),s("destroy",()=>{m()}),s("enable disable",()=>{const{$el:e}=t.pagination;e&&e[t.enabled?"removeClass":"addClass"](t.params.pagination.lockClass)}),s("lock unlock",()=>{h()}),s("click",(e,i)=>{const s=i.target,{$el:a}=t.pagination;if(t.params.pagination.el&&t.params.pagination.hideOnClick&&a.length>0&&!c(s).hasClass(t.params.pagination.bulletClass)){if(t.navigation&&(t.navigation.nextEl&&s===t.navigation.nextEl||t.navigation.prevEl&&s===t.navigation.prevEl))return;const e=a.hasClass(t.params.pagination.hiddenClass);n(!0===e?"paginationShow":"paginationHide"),a.toggleClass(t.params.pagination.hiddenClass)}}),Object.assign(t.pagination,{render:u,update:h,init:p,destroy:m})},function(e){let{swiper:t,extendParams:i,on:n,emit:a}=e;const o=s();let r,l,d,u,p=!1,m=null,f=null;function g(){if(!t.params.scrollbar.el||!t.scrollbar.el)return;const{scrollbar:e,rtlTranslate:i,progress:s}=t,{$dragEl:n,$el:a}=e,o=t.params.scrollbar;let r=l,c=(d-l)*s;i?(c=-c,c>0?(r=l-c,c=0):-c+l>d&&(r=d+c)):c<0?(r=l+c,c=0):c+l>d&&(r=d-c),t.isHorizontal()?(n.transform(`translate3d(${c}px, 0, 0)`),n[0].style.width=`${r}px`):(n.transform(`translate3d(0px, ${c}px, 0)`),n[0].style.height=`${r}px`),o.hide&&(clearTimeout(m),a[0].style.opacity=1,m=setTimeout(()=>{a[0].style.opacity=0,a.transition(400)},1e3))}function v(){if(!t.params.scrollbar.el||!t.scrollbar.el)return;const{scrollbar:e}=t,{$dragEl:i,$el:s}=e;i[0].style.width="",i[0].style.height="",d=t.isHorizontal()?s[0].offsetWidth:s[0].offsetHeight,u=t.size/(t.virtualSize+t.params.slidesOffsetBefore-(t.params.centeredSlides?t.snapGrid[0]:0)),l="auto"===t.params.scrollbar.dragSize?d*u:parseInt(t.params.scrollbar.dragSize,10),t.isHorizontal()?i[0].style.width=`${l}px`:i[0].style.height=`${l}px`,s[0].style.display=u>=1?"none":"",t.params.scrollbar.hide&&(s[0].style.opacity=0),t.params.watchOverflow&&t.enabled&&e.$el[t.isLocked?"addClass":"removeClass"](t.params.scrollbar.lockClass)}function x(e){return t.isHorizontal()?"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].clientX:e.clientX:"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].clientY:e.clientY}function y(e){const{scrollbar:i,rtlTranslate:s}=t,{$el:n}=i;let a;a=(x(e)-n.offset()[t.isHorizontal()?"left":"top"]-(null!==r?r:l/2))/(d-l),a=Math.max(Math.min(a,1),0),s&&(a=1-a);const o=t.minTranslate()+(t.maxTranslate()-t.minTranslate())*a;t.updateProgress(o),t.setTranslate(o),t.updateActiveIndex(),t.updateSlidesClasses()}function b(e){const i=t.params.scrollbar,{scrollbar:s,$wrapperEl:n}=t,{$el:o,$dragEl:l}=s;p=!0,r=e.target===l[0]||e.target===l?x(e)-e.target.getBoundingClientRect()[t.isHorizontal()?"left":"top"]:null,axPreventDefault(e),e.stopPropagation(),n.transition(100),l.transition(100),y(e),clearTimeout(f),o.transition(0),i.hide&&o.css("opacity",1),t.params.cssMode&&t.$wrapperEl.css("scroll-snap-type","none"),a("scrollbarDragStart",e)}function w(e){const{scrollbar:i,$wrapperEl:s}=t,{$el:n,$dragEl:o}=i;p&&(axPreventDefault(e),y(e),s.transition(0),n.transition(0),o.transition(0),a("scrollbarDragMove",e))}function M(e){const i=t.params.scrollbar,{scrollbar:s,$wrapperEl:n}=t,{$el:o}=s;p&&(p=!1,t.params.cssMode&&(t.$wrapperEl.css("scroll-snap-type",""),n.transition("")),i.hide&&(clearTimeout(f),f=h(()=>{o.css("opacity",0),o.transition(400)},1e3)),a("scrollbarDragEnd",e),i.snapOnRelease&&t.slideToClosest())}function E(e){const{scrollbar:i,touchEventsTouch:s,touchEventsDesktop:n,params:a,support:r}=t,l=i.$el[0],c=!(!r.passiveListener||!a.passiveListeners)&&{passive:!1,capture:!1},d=!(!r.passiveListener||!a.passiveListeners)&&{passive:!0,capture:!1};if(!l)return;const h="on"===e?"addEventListener":"removeEventListener";r.touch?(l[h](s.start,b,c),l[h](s.move,w,c),l[h](s.end,M,d)):(l[h](n.start,b,c),o[h](n.move,w,c),o[h](n.end,M,d))}function S(){const{scrollbar:e,$el:i}=t;t.params.scrollbar=H(t,t.originalParams.scrollbar,t.params.scrollbar,{el:"ax-scrollbar"});const s=t.params.scrollbar;if(!s.el)return;let n=c(s.el);t.params.uniqueNavElements&&"string"==typeof s.el&&n.length>1&&1===i.find(s.el).length&&(n=i.find(s.el));let a=n.find(`.${t.params.scrollbar.dragClass}`);0===a.length&&(a=c(`<div class="${t.params.scrollbar.dragClass}"></div>`),n.append(a)),Object.assign(e,{$el:n,el:n[0],$dragEl:a,dragEl:a[0]}),s.draggable&&t.params.scrollbar.el&&E("on"),n&&n[t.enabled?"removeClass":"addClass"](t.params.scrollbar.lockClass)}function D(){t.params.scrollbar.el&&E("off")}i({scrollbar:{el:".ax-scrollbar",dragSize:"auto",hide:!0,draggable:!0,snapOnRelease:!0,lockClass:"ax-scrollbar-lock",dragClass:"ax-scrollbar-drag"}}),t.scrollbar={el:null,dragEl:null,$el:null,$dragEl:null},n("init",()=>{S(),v(),g()}),n("update resize observerUpdate lock unlock",()=>{v()}),n("setTranslate",()=>{g()}),n("setTransition",(e,i)=>{!function(e){t.params.scrollbar.el&&t.scrollbar.el&&t.scrollbar.$dragEl.transition(e)}(i)}),n("enable disable",()=>{const{$el:e}=t.scrollbar;e&&e[t.enabled?"removeClass":"addClass"](t.params.scrollbar.lockClass)}),n("destroy",()=>{D()}),Object.assign(t.scrollbar,{updateSize:v,setTranslate:g,init:S,destroy:D})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({parallax:{enabled:!1}});const n=(e,i)=>{const{rtl:s}=t,n=c(e),a=s?-1:1,o=n.attr("data-swiper-parallax")||"0";let r=n.attr("data-swiper-parallax-x"),l=n.attr("data-swiper-parallax-y");const d=n.attr("data-swiper-parallax-scale"),h=n.attr("data-swiper-parallax-opacity");if(r||l?(r=r||"0",l=l||"0"):t.isHorizontal()?(r=o,l="0"):(l=o,r="0"),r=r.indexOf("%")>=0?`${parseInt(r,10)*i*a}%`:`${r*i*a}px`,l=l.indexOf("%")>=0?`${parseInt(l,10)*i}%`:`${l*i}px`,null!=h){const e=h-(h-1)*(1-Math.abs(i));n[0].style.opacity=e}if(null==d)n.transform(`translate3d(${r}, ${l}, 0px)`);else{const e=d-(d-1)*(1-Math.abs(i));n.transform(`translate3d(${r}, ${l}, 0px) scale(${e})`)}},a=()=>{const{$el:e,slides:i,progress:s,snapGrid:a}=t;e.children("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each(e=>{n(e,s)}),i.each((e,i)=>{let o=e.progress;t.params.slidesPerGroup>1&&"auto"!==t.params.slidesPerView&&(o+=Math.ceil(i/2)-s*(a.length-1)),o=Math.min(Math.max(o,-1),1),c(e).find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each(e=>{n(e,o)})})};s("beforeInit",()=>{t.params.parallax.enabled&&(t.params.watchSlidesProgress=!0,t.originalParams.watchSlidesProgress=!0)}),s("init",()=>{t.params.parallax.enabled&&a()}),s("setTranslate",()=>{t.params.parallax.enabled&&a()}),s("setTransition",(e,i)=>{t.params.parallax.enabled&&function(e){void 0===e&&(e=t.params.speed);const{$el:i}=t;i.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each(t=>{const i=c(t);let s=parseInt(i.attr("data-swiper-parallax-duration"),10)||e;0===e&&(s=0),i.transition(s)})}(i)})},function(e){let{swiper:t,extendParams:i,on:s,emit:n}=e;const o=a();i({zoom:{enabled:!1,maxRatio:3,minRatio:1,toggle:!0,containerClass:"ax-zoom",zoomedSlideClass:"ax-slide-zoomed"}}),t.zoom={enabled:!1};let r,l,d,h=1,u=!1;const m={$slideEl:void 0,slideWidth:void 0,slideHeight:void 0,$imageEl:void 0,$imageWrapEl:void 0,maxRatio:3},f={isTouched:void 0,isMoved:void 0,currentX:void 0,currentY:void 0,minX:void 0,minY:void 0,maxX:void 0,maxY:void 0,width:void 0,height:void 0,startX:void 0,startY:void 0,touchesStart:{},touchesCurrent:{}},g={x:void 0,y:void 0,prevPositionX:void 0,prevPositionY:void 0,prevTime:void 0};let v=1;function x(e){if(e.targetTouches.length<2)return 1;const t=e.targetTouches[0].pageX,i=e.targetTouches[0].pageY,s=e.targetTouches[1].pageX,n=e.targetTouches[1].pageY;return Math.sqrt((s-t)**2+(n-i)**2)}function y(e){const i=t.support,s=t.params.zoom;if(l=!1,d=!1,!i.gestures){if("touchstart"!==e.type||"touchstart"===e.type&&e.targetTouches.length<2)return;l=!0,m.scaleStart=x(e)}m.$slideEl&&m.$slideEl.length||(m.$slideEl=c(e.target).closest(`.${t.params.slideClass}`),0===m.$slideEl.length&&(m.$slideEl=t.slides.eq(t.activeIndex)),m.$imageEl=m.$slideEl.find(`.${s.containerClass}`).eq(0).find("picture, img, svg, canvas, .swiper-zoom-target").eq(0),m.$imageWrapEl=m.$imageEl.parent(`.${s.containerClass}`),m.maxRatio=m.$imageWrapEl.attr("data-swiper-zoom")||s.maxRatio,0!==m.$imageWrapEl.length)?(m.$imageEl&&m.$imageEl.transition(0),u=!0):m.$imageEl=void 0}function b(e){const i=t.support,s=t.params.zoom,n=t.zoom;if(!i.gestures){if("touchmove"!==e.type||"touchmove"===e.type&&e.targetTouches.length<2)return;d=!0,m.scaleMove=x(e)}m.$imageEl&&0!==m.$imageEl.length?(i.gestures?n.scale=e.scale*h:n.scale=m.scaleMove/m.scaleStart*h,n.scale>m.maxRatio&&(n.scale=m.maxRatio-1+(n.scale-m.maxRatio+1)**.5),n.scale<s.minRatio&&(n.scale=s.minRatio+1-(s.minRatio-n.scale+1)**.5),m.$imageEl.transform(`translate3d(0,0,0) scale(${n.scale})`)):"gesturechange"===e.type&&y(e)}function w(e){const i=t.device,s=t.support,n=t.params.zoom,a=t.zoom;if(!s.gestures){if(!l||!d)return;if("touchend"!==e.type||"touchend"===e.type&&e.changedTouches.length<2&&!i.android)return;l=!1,d=!1}m.$imageEl&&0!==m.$imageEl.length&&(a.scale=Math.max(Math.min(a.scale,m.maxRatio),n.minRatio),m.$imageEl.transition(t.params.speed).transform(`translate3d(0,0,0) scale(${a.scale})`),h=a.scale,u=!1,1===a.scale&&(m.$slideEl=void 0))}function M(e){const i=t.zoom;if(!m.$imageEl||0===m.$imageEl.length)return;if(t.allowClick=!1,!f.isTouched||!m.$slideEl)return;f.isMoved||(f.width=m.$imageEl[0].offsetWidth,f.height=m.$imageEl[0].offsetHeight,f.startX=p(m.$imageWrapEl[0],"x")||0,f.startY=p(m.$imageWrapEl[0],"y")||0,m.slideWidth=m.$slideEl[0].offsetWidth,m.slideHeight=m.$slideEl[0].offsetHeight,m.$imageWrapEl.transition(0));const s=f.width*i.scale,n=f.height*i.scale;if(!(s<m.slideWidth&&n<m.slideHeight)){if(f.minX=Math.min(m.slideWidth/2-s/2,0),f.maxX=-f.minX,f.minY=Math.min(m.slideHeight/2-n/2,0),f.maxY=-f.minY,f.touchesCurrent.x="touchmove"===e.type?e.targetTouches[0].pageX:e.pageX,f.touchesCurrent.y="touchmove"===e.type?e.targetTouches[0].pageY:e.pageY,!f.isMoved&&!u){if(t.isHorizontal()&&(Math.floor(f.minX)===Math.floor(f.startX)&&f.touchesCurrent.x<f.touchesStart.x||Math.floor(f.maxX)===Math.floor(f.startX)&&f.touchesCurrent.x>f.touchesStart.x))return void(f.isTouched=!1);if(!t.isHorizontal()&&(Math.floor(f.minY)===Math.floor(f.startY)&&f.touchesCurrent.y<f.touchesStart.y||Math.floor(f.maxY)===Math.floor(f.startY)&&f.touchesCurrent.y>f.touchesStart.y))return void(f.isTouched=!1)}e.cancelable&&axPreventDefault(e),e.stopPropagation(),f.isMoved=!0,f.currentX=f.touchesCurrent.x-f.touchesStart.x+f.startX,f.currentY=f.touchesCurrent.y-f.touchesStart.y+f.startY,f.currentX<f.minX&&(f.currentX=f.minX+1-(f.minX-f.currentX+1)**.8),f.currentX>f.maxX&&(f.currentX=f.maxX-1+(f.currentX-f.maxX+1)**.8),f.currentY<f.minY&&(f.currentY=f.minY+1-(f.minY-f.currentY+1)**.8),f.currentY>f.maxY&&(f.currentY=f.maxY-1+(f.currentY-f.maxY+1)**.8),g.prevPositionX||(g.prevPositionX=f.touchesCurrent.x),g.prevPositionY||(g.prevPositionY=f.touchesCurrent.y),g.prevTime||(g.prevTime=Date.now()),g.x=(f.touchesCurrent.x-g.prevPositionX)/(Date.now()-g.prevTime)/2,g.y=(f.touchesCurrent.y-g.prevPositionY)/(Date.now()-g.prevTime)/2,Math.abs(f.touchesCurrent.x-g.prevPositionX)<2&&(g.x=0),Math.abs(f.touchesCurrent.y-g.prevPositionY)<2&&(g.y=0),g.prevPositionX=f.touchesCurrent.x,g.prevPositionY=f.touchesCurrent.y,g.prevTime=Date.now(),m.$imageWrapEl.transform(`translate3d(${f.currentX}px, ${f.currentY}px,0)`)}}function E(){const e=t.zoom;m.$slideEl&&t.previousIndex!==t.activeIndex&&(m.$imageEl&&m.$imageEl.transform("translate3d(0,0,0) scale(1)"),m.$imageWrapEl&&m.$imageWrapEl.transform("translate3d(0,0,0)"),e.scale=1,h=1,m.$slideEl=void 0,m.$imageEl=void 0,m.$imageWrapEl=void 0)}function S(e){const i=t.zoom,s=t.params.zoom;if(m.$slideEl||(e&&e.target&&(m.$slideEl=c(e.target).closest(`.${t.params.slideClass}`)),m.$slideEl||(t.params.virtual&&t.params.virtual.enabled&&t.virtual?m.$slideEl=t.$wrapperEl.children(`.${t.params.slideActiveClass}`):m.$slideEl=t.slides.eq(t.activeIndex)),m.$imageEl=m.$slideEl.find(`.${s.containerClass}`).eq(0).find("picture, img, svg, canvas, .swiper-zoom-target").eq(0),m.$imageWrapEl=m.$imageEl.parent(`.${s.containerClass}`)),!m.$imageEl||0===m.$imageEl.length||!m.$imageWrapEl||0===m.$imageWrapEl.length)return;let n,a,r,l,d,u,p,g,v,x,y,b,w,M,E,S,D,T;t.params.cssMode&&(t.wrapperEl.style.overflow="hidden",t.wrapperEl.style.touchAction="none"),m.$slideEl.addClass(`${s.zoomedSlideClass}`),void 0===f.touchesStart.x&&e?(n="touchend"===e.type?e.changedTouches[0].pageX:e.pageX,a="touchend"===e.type?e.changedTouches[0].pageY:e.pageY):(n=f.touchesStart.x,a=f.touchesStart.y),i.scale=m.$imageWrapEl.attr("data-swiper-zoom")||s.maxRatio,h=m.$imageWrapEl.attr("data-swiper-zoom")||s.maxRatio,e?(D=m.$slideEl[0].offsetWidth,T=m.$slideEl[0].offsetHeight,r=m.$slideEl.offset().left+o.scrollX,l=m.$slideEl.offset().top+o.scrollY,d=r+D/2-n,u=l+T/2-a,v=m.$imageEl[0].offsetWidth,x=m.$imageEl[0].offsetHeight,y=v*i.scale,b=x*i.scale,w=Math.min(D/2-y/2,0),M=Math.min(T/2-b/2,0),E=-w,S=-M,p=d*i.scale,g=u*i.scale,p<w&&(p=w),p>E&&(p=E),g<M&&(g=M),g>S&&(g=S)):(p=0,g=0),m.$imageWrapEl.transition(300).transform(`translate3d(${p}px, ${g}px,0)`),m.$imageEl.transition(300).transform(`translate3d(0,0,0) scale(${i.scale})`)}function D(){const e=t.zoom,i=t.params.zoom;m.$slideEl||(t.params.virtual&&t.params.virtual.enabled&&t.virtual?m.$slideEl=t.$wrapperEl.children(`.${t.params.slideActiveClass}`):m.$slideEl=t.slides.eq(t.activeIndex),m.$imageEl=m.$slideEl.find(`.${i.containerClass}`).eq(0).find("picture, img, svg, canvas, .swiper-zoom-target").eq(0),m.$imageWrapEl=m.$imageEl.parent(`.${i.containerClass}`)),m.$imageEl&&0!==m.$imageEl.length&&m.$imageWrapEl&&0!==m.$imageWrapEl.length&&(t.params.cssMode&&(t.wrapperEl.style.overflow="",t.wrapperEl.style.touchAction=""),e.scale=1,h=1,m.$imageWrapEl.transition(300).transform("translate3d(0,0,0)"),m.$imageEl.transition(300).transform("translate3d(0,0,0) scale(1)"),m.$slideEl.removeClass(`${i.zoomedSlideClass}`),m.$slideEl=void 0)}function T(e){const i=t.zoom;i.scale&&1!==i.scale?D():S(e)}function C(){const e=t.support;return{passiveListener:!("touchstart"!==t.touchEvents.start||!e.passiveListener||!t.params.passiveListeners)&&{passive:!0,capture:!1},activeListenerWithCapture:!e.passiveListener||{passive:!1,capture:!0}}}function L(){return`.${t.params.slideClass}`}function A(e){const{passiveListener:i}=C(),s=L();t.$wrapperEl[e]("gesturestart",s,y,i),t.$wrapperEl[e]("gesturechange",s,b,i),t.$wrapperEl[e]("gestureend",s,w,i)}function _(){r||(r=!0,A("on"))}function I(){r&&(r=!1,A("off"))}function k(){const e=t.zoom;if(e.enabled)return;e.enabled=!0;const i=t.support,{passiveListener:s,activeListenerWithCapture:n}=C(),a=L();i.gestures?(t.$wrapperEl.on(t.touchEvents.start,_,s),t.$wrapperEl.on(t.touchEvents.end,I,s)):"touchstart"===t.touchEvents.start&&(t.$wrapperEl.on(t.touchEvents.start,a,y,s),t.$wrapperEl.on(t.touchEvents.move,a,b,n),t.$wrapperEl.on(t.touchEvents.end,a,w,s),t.touchEvents.cancel&&t.$wrapperEl.on(t.touchEvents.cancel,a,w,s)),t.$wrapperEl.on(t.touchEvents.move,`.${t.params.zoom.containerClass}`,M,n)}function N(){const e=t.zoom;if(!e.enabled)return;const i=t.support;e.enabled=!1;const{passiveListener:s,activeListenerWithCapture:n}=C(),a=L();i.gestures?(t.$wrapperEl.off(t.touchEvents.start,_,s),t.$wrapperEl.off(t.touchEvents.end,I,s)):"touchstart"===t.touchEvents.start&&(t.$wrapperEl.off(t.touchEvents.start,a,y,s),t.$wrapperEl.off(t.touchEvents.move,a,b,n),t.$wrapperEl.off(t.touchEvents.end,a,w,s),t.touchEvents.cancel&&t.$wrapperEl.off(t.touchEvents.cancel,a,w,s)),t.$wrapperEl.off(t.touchEvents.move,`.${t.params.zoom.containerClass}`,M,n)}Object.defineProperty(t.zoom,"scale",{get:()=>v,set(e){if(v!==e){const t=m.$imageEl?m.$imageEl[0]:void 0,i=m.$slideEl?m.$slideEl[0]:void 0;n("zoomChange",e,t,i)}v=e}}),s("init",()=>{t.params.zoom.enabled&&k()}),s("destroy",()=>{N()}),s("touchStart",(e,i)=>{t.zoom.enabled&&function(e){const i=t.device;m.$imageEl&&0!==m.$imageEl.length&&(f.isTouched||(i.android&&e.cancelable&&axPreventDefault(e),f.isTouched=!0,f.touchesStart.x="touchstart"===e.type?e.targetTouches[0].pageX:e.pageX,f.touchesStart.y="touchstart"===e.type?e.targetTouches[0].pageY:e.pageY))}(i)}),s("touchEnd",(e,i)=>{t.zoom.enabled&&function(){const e=t.zoom;if(!m.$imageEl||0===m.$imageEl.length)return;if(!f.isTouched||!f.isMoved)return f.isTouched=!1,void(f.isMoved=!1);f.isTouched=!1,f.isMoved=!1;let i=300,s=300;const n=g.x*i,a=f.currentX+n,o=g.y*s,r=f.currentY+o;0!==g.x&&(i=Math.abs((a-f.currentX)/g.x)),0!==g.y&&(s=Math.abs((r-f.currentY)/g.y));const l=Math.max(i,s);f.currentX=a,f.currentY=r;const c=f.width*e.scale,d=f.height*e.scale;f.minX=Math.min(m.slideWidth/2-c/2,0),f.maxX=-f.minX,f.minY=Math.min(m.slideHeight/2-d/2,0),f.maxY=-f.minY,f.currentX=Math.max(Math.min(f.currentX,f.maxX),f.minX),f.currentY=Math.max(Math.min(f.currentY,f.maxY),f.minY),m.$imageWrapEl.transition(l).transform(`translate3d(${f.currentX}px, ${f.currentY}px,0)`)}()}),s("doubleTap",(e,i)=>{!t.animating&&t.params.zoom.enabled&&t.zoom.enabled&&t.params.zoom.toggle&&T(i)}),s("transitionEnd",()=>{t.zoom.enabled&&t.params.zoom.enabled&&E()}),s("slideChange",()=>{t.zoom.enabled&&t.params.zoom.enabled&&t.params.cssMode&&E()}),Object.assign(t.zoom,{enable:k,disable:N,in:S,out:D,toggle:T})},function(e){let{swiper:t,extendParams:i,on:s,emit:n}=e;i({lazy:{checkInView:!1,enabled:!1,loadPrevNext:!1,loadPrevNextAmount:1,loadOnTransitionStart:!1,scrollingElement:"",elementClass:"ax-lazy",loadingClass:"ax-lazy-loading",loadedClass:"ax-lazy-loaded",preloaderClass:"ax-loading"}}),t.lazy={};let o=!1,r=!1;function l(e,i){void 0===i&&(i=!0);const s=t.params.lazy;if(void 0===e)return;if(0===t.slides.length)return;const a=t.virtual&&t.params.virtual.enabled?t.$wrapperEl.children(`.${t.params.slideClass}[data-swiper-slide-index="${e}"]`):t.slides.eq(e),o=a.find(`.${s.elementClass}:not(.${s.loadedClass}):not(.${s.loadingClass})`);!a.hasClass(s.elementClass)||a.hasClass(s.loadedClass)||a.hasClass(s.loadingClass)||o.push(a[0]),0!==o.length&&o.each(e=>{const o=c(e);o.addClass(s.loadingClass);const r=o.attr("data-background"),d=o.attr("data-src"),h=o.attr("data-srcset"),u=o.attr("data-sizes"),p=o.parent("picture");t.loadImage(o[0],d||r,h,u,!1,()=>{if(null!=t&&t&&(!t||t.params)&&!t.destroyed){if(r?(o.css("background-image",`url("${r}")`),o.removeAttr("data-background")):(h&&(o.attr("srcset",h),o.removeAttr("data-srcset")),u&&(o.attr("sizes",u),o.removeAttr("data-sizes")),p.length&&p.children("source").each(e=>{const t=c(e);t.attr("data-srcset")&&(t.attr("srcset",t.attr("data-srcset")),t.removeAttr("data-srcset"))}),d&&(o.attr("src",d),o.removeAttr("data-src"))),o.addClass(s.loadedClass).removeClass(s.loadingClass),a.find(`.${s.preloaderClass}`).remove(),t.params.loop&&i){const e=a.attr("data-swiper-slide-index");if(a.hasClass(t.params.slideDuplicateClass)){l(t.$wrapperEl.children(`[data-swiper-slide-index="${e}"]:not(.${t.params.slideDuplicateClass})`).index(),!1)}else{l(t.$wrapperEl.children(`.${t.params.slideDuplicateClass}[data-swiper-slide-index="${e}"]`).index(),!1)}}n("lazyImageReady",a[0],o[0]),t.params.autoHeight&&t.updateAutoHeight()}}),n("lazyImageLoad",a[0],o[0])})}function d(){const{$wrapperEl:e,params:i,slides:s,activeIndex:n}=t,a=t.virtual&&i.virtual.enabled,o=i.lazy;let d=i.slidesPerView;function h(t){if(a){if(e.children(`.${i.slideClass}[data-swiper-slide-index="${t}"]`).length)return!0}else if(s[t])return!0;return!1}function u(e){return a?c(e).attr("data-swiper-slide-index"):c(e).index()}if("auto"===d&&(d=0),r||(r=!0),t.params.watchSlidesProgress)e.children(`.${i.slideVisibleClass}`).each(e=>{l(a?c(e).attr("data-swiper-slide-index"):c(e).index())});else if(d>1)for(let e=n;e<n+d;e+=1)h(e)&&l(e);else l(n);if(o.loadPrevNext)if(d>1||o.loadPrevNextAmount&&o.loadPrevNextAmount>1){const e=o.loadPrevNextAmount,t=d,i=Math.min(n+t+Math.max(e,t),s.length),a=Math.max(n-Math.max(t,e),0);for(let e=n+d;e<i;e+=1)h(e)&&l(e);for(let e=a;e<n;e+=1)h(e)&&l(e)}else{const t=e.children(`.${i.slideNextClass}`);t.length>0&&l(u(t));const s=e.children(`.${i.slidePrevClass}`);s.length>0&&l(u(s))}}function h(){const e=a();if(!t||t.destroyed)return;const i=t.params.lazy.scrollingElement?c(t.params.lazy.scrollingElement):c(e),s=i[0]===e,n=s?e.innerWidth:i[0].offsetWidth,r=s?e.innerHeight:i[0].offsetHeight,l=t.$el.offset(),{rtlTranslate:u}=t;let p=!1;u&&(l.left-=t.$el[0].scrollLeft);const m=[[l.left,l.top],[l.left+t.width,l.top],[l.left,l.top+t.height],[l.left+t.width,l.top+t.height]];for(let e=0;e<m.length;e+=1){const t=m[e];if(t[0]>=0&&t[0]<=n&&t[1]>=0&&t[1]<=r){if(0===t[0]&&0===t[1])continue;p=!0}}const f=!("touchstart"!==t.touchEvents.start||!t.support.passiveListener||!t.params.passiveListeners)&&{passive:!0,capture:!1};p?(d(),i.off("scroll",h,f)):o||(o=!0,i.on("scroll",h,f))}s("beforeInit",()=>{t.params.lazy.enabled&&t.params.preloadImages&&(t.params.preloadImages=!1)}),s("init",()=>{t.params.lazy.enabled&&(t.params.lazy.checkInView?h():d())}),s("scroll",()=>{t.params.freeMode&&t.params.freeMode.enabled&&!t.params.freeMode.sticky&&d()}),s("scrollbarDragMove resize _freeModeNoMomentumRelease",()=>{t.params.lazy.enabled&&(t.params.lazy.checkInView?h():d())}),s("transitionStart",()=>{t.params.lazy.enabled&&(t.params.lazy.loadOnTransitionStart||!t.params.lazy.loadOnTransitionStart&&!r)&&(t.params.lazy.checkInView?h():d())}),s("transitionEnd",()=>{t.params.lazy.enabled&&!t.params.lazy.loadOnTransitionStart&&(t.params.lazy.checkInView?h():d())}),s("slideChange",()=>{const{lazy:e,cssMode:i,watchSlidesProgress:s,touchReleaseOnEdges:n,resistanceRatio:a}=t.params;e.enabled&&(i||s&&(n||0===a))&&d()}),Object.assign(t.lazy,{load:d,loadInSlide:l})},function(e){let{swiper:t,extendParams:i,on:s}=e;function n(e,t){const i=function(){let e,t,i;return(s,n)=>{for(t=-1,e=s.length;e-t>1;)i=e+t>>1,s[i]<=n?t=i:e=i;return e}}();let s,n;return this.x=e,this.y=t,this.lastIndex=e.length-1,this.interpolate=function(e){return e?(n=i(this.x,e),s=n-1,(e-this.x[s])*(this.y[n]-this.y[s])/(this.x[n]-this.x[s])+this.y[s]):0},this}function a(){t.controller.control&&t.controller.spline&&(t.controller.spline=void 0,delete t.controller.spline)}i({controller:{control:void 0,inverse:!1,by:"slide"}}),t.controller={control:void 0},s("beforeInit",()=>{t.controller.control=t.params.controller.control}),s("update",()=>{a()}),s("resize",()=>{a()}),s("observerUpdate",()=>{a()}),s("setTranslate",(e,i,s)=>{t.controller.control&&t.controller.setTranslate(i,s)}),s("setTransition",(e,i,s)=>{t.controller.control&&t.controller.setTransition(i,s)}),Object.assign(t.controller,{setTranslate:function(e,i){const s=t.controller.control;let a,o;const r=t.constructor;function l(e){const i=t.rtlTranslate?-t.translate:t.translate;"slide"===t.params.controller.by&&(!function(e){t.controller.spline||(t.controller.spline=t.params.loop?new n(t.slidesGrid,e.slidesGrid):new n(t.snapGrid,e.snapGrid))}(e),o=-t.controller.spline.interpolate(-i)),o&&"container"!==t.params.controller.by||(a=(e.maxTranslate()-e.minTranslate())/(t.maxTranslate()-t.minTranslate()),o=(i-t.minTranslate())*a+e.minTranslate()),t.params.controller.inverse&&(o=e.maxTranslate()-o),e.updateProgress(o),e.setTranslate(o,t),e.updateActiveIndex(),e.updateSlidesClasses()}if(Array.isArray(s))for(let e=0;e<s.length;e+=1)s[e]!==i&&s[e]instanceof r&&l(s[e]);else s instanceof r&&i!==s&&l(s)},setTransition:function(e,i){const s=t.constructor,n=t.controller.control;let a;function o(i){i.setTransition(e,t),0!==e&&(i.transitionStart(),i.params.autoHeight&&h(()=>{i.updateAutoHeight()}),i.$wrapperEl.transitionEnd(()=>{n&&(i.params.loop&&"slide"===t.params.controller.by&&i.loopFix(),i.transitionEnd())}))}if(Array.isArray(n))for(a=0;a<n.length;a+=1)n[a]!==i&&n[a]instanceof s&&o(n[a]);else n instanceof s&&i!==n&&o(n)}})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({a11y:{enabled:!0,notificationClass:"ax-notification",prevSlideMessage:"涓婁竴涓�",nextSlideMessage:"涓嬩竴涓�",firstSlideMessage:"杩欐槸绗竴涓�",lastSlideMessage:"杩欐槸鏈�鍚庝竴涓�",paginationBulletMessage:"璺宠浆鍒扮{{index}}椤�",slideLabelMessage:"绗瑊{index}}/{{slidesLength}}椤�",containerMessage:null,containerRoleDescriptionMessage:null,itemRoleDescriptionMessage:null,slideRole:"group",id:null}});let n=null;function a(e){const t=n;0!==t.length&&(t.html(""),t.html(e))}function o(e){e.attr("tabIndex","0")}function r(e){e.attr("tabIndex","-1")}function l(e,t){e.attr("role",t)}function d(e,t){e.attr("aria-roledescription",t)}function h(e,t){e.attr("aria-label",t)}function u(e){e.attr("aria-disabled",!0)}function p(e){e.attr("aria-disabled",!1)}function m(e){if(13!==e.keyCode&&32!==e.keyCode)return;const i=t.params.a11y,s=c(e.target);t.navigation&&t.navigation.$nextEl&&s.is(t.navigation.$nextEl)&&(t.isEnd&&!t.params.loop||t.slideNext(),t.isEnd?a(i.lastSlideMessage):a(i.nextSlideMessage)),t.navigation&&t.navigation.$prevEl&&s.is(t.navigation.$prevEl)&&(t.isBeginning&&!t.params.loop||t.slidePrev(),t.isBeginning?a(i.firstSlideMessage):a(i.prevSlideMessage)),t.pagination&&s.is(F(t.params.pagination.bulletClass))&&s[0].click()}function f(){return t.pagination&&t.pagination.bullets&&t.pagination.bullets.length}function g(){return f()&&t.params.pagination.clickable}const v=(e,t,i)=>{o(e),"BUTTON"!==e[0].tagName&&(l(e,"button"),e.on("keydown",m)),h(e,i),function(e,t){e.attr("aria-controls",t)}(e,t)},x=e=>{const i=e.target.closest(`.${t.params.slideClass}`);if(!i||!t.slides.includes(i))return;const s=t.slides.indexOf(i)===t.activeIndex,n=t.params.watchSlidesProgress&&t.visibleSlides&&t.visibleSlides.includes(i);s||n||t.slideTo(t.slides.indexOf(i),0)};function y(){const e=t.params.a11y;t.$el.append(n);const i=t.$el;e.containerRoleDescriptionMessage&&d(i,e.containerRoleDescriptionMessage),e.containerMessage&&h(i,e.containerMessage);const s=t.$wrapperEl,a=e.id||s.attr("id")||`ax-wrapper-${o=16,void 0===o&&(o=16),"x".repeat(o).replace(/x/g,()=>Math.round(16*Math.random()).toString(16))}`;var o;const r=t.params.autoplay&&t.params.autoplay.enabled?"off":"polite";var u;u=a,s.attr("id",u),function(e,t){e.attr("aria-live",t)}(s,r),e.itemRoleDescriptionMessage&&d(c(t.slides),e.itemRoleDescriptionMessage),l(c(t.slides),e.slideRole);const p=t.params.loop?t.slides.filter(e=>!e.classList.contains(t.params.slideDuplicateClass)).length:t.slides.length;let f,y;t.slides.each((i,s)=>{const n=c(i),a=t.params.loop?parseInt(n.attr("data-swiper-slide-index"),10):s;h(n,e.slideLabelMessage.replace(/\{\{index\}\}/,a+1).replace(/\{\{slidesLength\}\}/,p))}),t.navigation&&t.navigation.$nextEl&&(f=t.navigation.$nextEl),t.navigation&&t.navigation.$prevEl&&(y=t.navigation.$prevEl),f&&f.length&&v(f,a,e.nextSlideMessage),y&&y.length&&v(y,a,e.prevSlideMessage),g()&&t.pagination.$el.on("keydown",F(t.params.pagination.bulletClass),m),t.$el.on("focus",x,!0)}s("beforeInit",()=>{n=c(`<span class="${t.params.a11y.notificationClass}" aria-live="assertive" aria-atomic="true"></span>`)}),s("afterInit",()=>{t.params.a11y.enabled&&y()}),s("fromEdge toEdge afterInit lock unlock",()=>{t.params.a11y.enabled&&function(){if(t.params.loop||t.params.rewind||!t.navigation)return;const{$nextEl:e,$prevEl:i}=t.navigation;i&&i.length>0&&(t.isBeginning?(u(i),r(i)):(p(i),o(i))),e&&e.length>0&&(t.isEnd?(u(e),r(e)):(p(e),o(e)))}()}),s("paginationUpdate",()=>{t.params.a11y.enabled&&function(){const e=t.params.a11y;f()&&t.pagination.bullets.each(i=>{const s=c(i);t.params.pagination.clickable&&(o(s),t.params.pagination.renderBullet||(l(s,"button"),h(s,e.paginationBulletMessage.replace(/\{\{index\}\}/,s.index()+1)))),s.is(`.${t.params.pagination.bulletActiveClass}`)?s.attr("aria-current","true"):s.removeAttr("aria-current")})}()}),s("destroy",()=>{t.params.a11y.enabled&&function(){let e,i;n&&n.length>0&&n.remove(),t.navigation&&t.navigation.$nextEl&&(e=t.navigation.$nextEl),t.navigation&&t.navigation.$prevEl&&(i=t.navigation.$prevEl),e&&e.off("keydown",m),i&&i.off("keydown",m),g()&&t.pagination.$el.off("keydown",F(t.params.pagination.bulletClass),m),t.$el.off("focus",x,!0)}()})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({history:{enabled:!1,root:"",replaceState:!1,key:"slides"}});let n=!1,o={};const r=e=>e.toString().replace(/\s+/g,"-").replace(/[^\w-]+/g,"").replace(/--+/g,"-").replace(/^-+/,"").replace(/-+$/,""),l=e=>{const t=a();let i;i=e?new URL(e):t.location;const s=i.pathname.slice(1).split("/").filter(e=>""!==e),n=s.length;return{key:s[n-2],value:s[n-1]}},c=(e,i)=>{const s=a();if(!n||!t.params.history.enabled)return;let o;o=t.params.url?new URL(t.params.url):s.location;const l=t.slides.eq(i);let c=r(l.attr("data-history"));if(t.params.history.root.length>0){let i=t.params.history.root;"/"===i[i.length-1]&&(i=i.slice(0,i.length-1)),c=`${i}/${e}/${c}`}else o.pathname.includes(e)||(c=`${e}/${c}`);const d=s.history.state;d&&d.value===c||(t.params.history.replaceState?s.history.replaceState({value:c},null,c):s.history.pushState({value:c},null,c))},d=(e,i,s)=>{if(i)for(let n=0,a=t.slides.length;n<a;n+=1){const a=t.slides.eq(n);if(r(a.attr("data-history"))===i&&!a.hasClass(t.params.slideDuplicateClass)){const i=a.index();t.slideTo(i,e,s)}}else t.slideTo(0,e,s)},h=()=>{o=l(t.params.url),d(t.params.speed,t.paths.value,!1)};s("init",()=>{t.params.history.enabled&&(()=>{const e=a();if(t.params.history){if(!e.history||!e.history.pushState)return t.params.history.enabled=!1,void(t.params.hashNavigation.enabled=!0);n=!0,o=l(t.params.url),(o.key||o.value)&&(d(0,o.value,t.params.runCallbacksOnInit),t.params.history.replaceState||e.addEventListener("popstate",h))}})()}),s("destroy",()=>{t.params.history.enabled&&(()=>{const e=a();t.params.history.replaceState||e.removeEventListener("popstate",h)})()}),s("transitionEnd _freeModeNoMomentumRelease",()=>{n&&c(t.params.history.key,t.activeIndex)}),s("slideChange",()=>{n&&t.params.cssMode&&c(t.params.history.key,t.activeIndex)})},function(e){let{swiper:t,extendParams:i,emit:n,on:o}=e,r=!1;const l=s(),d=a();i({hashNavigation:{enabled:!1,replaceState:!1,watchState:!1}});const h=()=>{n("hashChange");const e=l.location.hash.replace("#","");if(e!==t.slides.eq(t.activeIndex).attr("data-hash")){const i=t.$wrapperEl.children(`.${t.params.slideClass}[data-hash="${e}"]`).index();if(void 0===i)return;t.slideTo(i)}},u=()=>{if(r&&t.params.hashNavigation.enabled)if(t.params.hashNavigation.replaceState&&d.history&&d.history.replaceState)d.history.replaceState(null,null,`#${t.slides.eq(t.activeIndex).attr("data-hash")}`||""),n("hashSet");else{const e=t.slides.eq(t.activeIndex),i=e.attr("data-hash")||e.attr("data-history");l.location.hash=i||"",n("hashSet")}};o("init",()=>{t.params.hashNavigation.enabled&&(()=>{if(!t.params.hashNavigation.enabled||t.params.history&&t.params.history.enabled)return;r=!0;const e=l.location.hash.replace("#","");if(e){const i=0;for(let s=0,n=t.slides.length;s<n;s+=1){const n=t.slides.eq(s);if((n.attr("data-hash")||n.attr("data-history"))===e&&!n.hasClass(t.params.slideDuplicateClass)){const e=n.index();t.slideTo(e,i,t.params.runCallbacksOnInit,!0)}}}t.params.hashNavigation.watchState&&c(d).on("hashchange",h)})()}),o("destroy",()=>{t.params.hashNavigation.enabled&&t.params.hashNavigation.watchState&&c(d).off("hashchange",h)}),o("transitionEnd _freeModeNoMomentumRelease",()=>{r&&u()}),o("slideChange",()=>{r&&t.params.cssMode&&u()})},function(e){let t,{swiper:i,extendParams:n,on:a,emit:o}=e;function r(){const e=i.slides.eq(i.activeIndex);let s=i.params.autoplay.delay;e.attr("data-swiper-autoplay")&&(s=e.attr("data-swiper-autoplay")||i.params.autoplay.delay),clearTimeout(t),t=h(()=>{let e;i.params.autoplay.reverseDirection?i.params.loop?(i.loopFix(),e=i.slidePrev(i.params.speed,!0,!0),o("autoplay")):i.isBeginning?i.params.autoplay.stopOnLastSlide?c():(e=i.slideTo(i.slides.length-1,i.params.speed,!0,!0),o("autoplay")):(e=i.slidePrev(i.params.speed,!0,!0),o("autoplay")):i.params.loop?(i.loopFix(),e=i.slideNext(i.params.speed,!0,!0),o("autoplay")):i.isEnd?i.params.autoplay.stopOnLastSlide?c():(e=i.slideTo(0,i.params.speed,!0,!0),o("autoplay")):(e=i.slideNext(i.params.speed,!0,!0),o("autoplay")),i.params.cssMode&&i.autoplay.running?r():!1===e&&r()},s)}function l(){return void 0===t&&(!i.autoplay.running&&(i.autoplay.running=!0,o("autoplayStart"),r(),!0))}function c(){return!!i.autoplay.running&&(void 0!==t&&(t&&(clearTimeout(t),t=void 0),i.autoplay.running=!1,o("autoplayStop"),!0))}function d(e){i.autoplay.running&&(i.autoplay.paused||(t&&clearTimeout(t),i.autoplay.paused=!0,0!==e&&i.params.autoplay.waitForTransition?["transitionend","webkitTransitionEnd"].forEach(e=>{i.$wrapperEl[0].addEventListener(e,p)}):(i.autoplay.paused=!1,r())))}function u(){const e=s();"hidden"===e.visibilityState&&i.autoplay.running&&d(),"visible"===e.visibilityState&&i.autoplay.paused&&(r(),i.autoplay.paused=!1)}function p(e){i&&!i.destroyed&&i.$wrapperEl&&e.target===i.$wrapperEl[0]&&(["transitionend","webkitTransitionEnd"].forEach(e=>{i.$wrapperEl[0].removeEventListener(e,p)}),i.autoplay.paused=!1,i.autoplay.running?r():c())}function m(){i.params.autoplay.disableOnInteraction?c():(o("autoplayPause"),d()),["transitionend","webkitTransitionEnd"].forEach(e=>{i.$wrapperEl[0].removeEventListener(e,p)})}function f(){i.params.autoplay.disableOnInteraction||(i.autoplay.paused=!1,o("autoplayResume"),r())}i.autoplay={running:!1,paused:!1},n({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!0,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}}),a("init",()=>{if(i.params.autoplay.enabled){l(),s().addEventListener("visibilitychange",u),i.params.autoplay.pauseOnMouseEnter&&(i.$el.on("mouseenter",m),i.$el.on("mouseleave",f))}}),a("beforeTransitionStart",(e,t,s)=>{i.autoplay.running&&(s||!i.params.autoplay.disableOnInteraction?i.autoplay.pause(t):c())}),a("sliderFirstMove",()=>{i.autoplay.running&&(i.params.autoplay.disableOnInteraction?c():d())}),a("touchEnd",()=>{i.params.cssMode&&i.autoplay.paused&&!i.params.autoplay.disableOnInteraction&&r()}),a("destroy",()=>{i.$el.off("mouseenter",m),i.$el.off("mouseleave",f),i.autoplay.running&&c(),s().removeEventListener("visibilitychange",u)}),Object.assign(i.autoplay,{pause:d,run:r,start:l,stop:c})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({thumbs:{swiper:null,multipleActiveThumbs:!0,autoScrollOffset:0,slideThumbActiveClass:"ax-slide-thumb-active",thumbsContainerClass:"ax-thumbs"}});let n=!1,a=!1;function o(){const e=t.thumbs.swiper;if(!e||e.destroyed)return;const i=e.clickedIndex,s=e.clickedSlide;if(s&&c(s).hasClass(t.params.thumbs.slideThumbActiveClass))return;if(null==i)return;let n;if(n=e.params.loop?parseInt(c(e.clickedSlide).attr("data-swiper-slide-index"),10):i,t.params.loop){let e=t.activeIndex;t.slides.eq(e).hasClass(t.params.slideDuplicateClass)&&(t.loopFix(),t._clientLeft=t.$wrapperEl[0].clientLeft,e=t.activeIndex);const i=t.slides.eq(e).prevAll(`[data-swiper-slide-index="${n}"]`).eq(0).index(),s=t.slides.eq(e).nextAll(`[data-swiper-slide-index="${n}"]`).eq(0).index();n=void 0===i?s:void 0===s?i:s-e<e-i?s:i}t.slideTo(n)}function r(){const{thumbs:e}=t.params;if(n)return!1;n=!0;const i=t.constructor;if(e.swiper instanceof i)t.thumbs.swiper=e.swiper,Object.assign(t.thumbs.swiper.originalParams,{watchSlidesProgress:!0,slideToClickedSlide:!1}),Object.assign(t.thumbs.swiper.params,{watchSlidesProgress:!0,slideToClickedSlide:!1});else if(m(e.swiper)){const s=Object.assign({},e.swiper);Object.assign(s,{watchSlidesProgress:!0,slideToClickedSlide:!1}),t.thumbs.swiper=new i(s),a=!0}return t.thumbs.swiper.$el.addClass(t.params.thumbs.thumbsContainerClass),t.thumbs.swiper.on("tap",o),!0}function l(e){const i=t.thumbs.swiper;if(!i||i.destroyed)return;const s="auto"===i.params.slidesPerView?i.slidesPerViewDynamic():i.params.slidesPerView,n=t.params.thumbs.autoScrollOffset,a=n&&!i.params.loop;if(t.realIndex!==i.realIndex||a){let o,r,l=i.activeIndex;if(i.params.loop){i.slides.eq(l).hasClass(i.params.slideDuplicateClass)&&(i.loopFix(),i._clientLeft=i.$wrapperEl[0].clientLeft,l=i.activeIndex);const e=i.slides.eq(l).prevAll(`[data-swiper-slide-index="${t.realIndex}"]`).eq(0).index(),s=i.slides.eq(l).nextAll(`[data-swiper-slide-index="${t.realIndex}"]`).eq(0).index();o=void 0===e?s:void 0===s?e:s-l==l-e?i.params.slidesPerGroup>1?s:l:s-l<l-e?s:e,r=t.activeIndex>t.previousIndex?"next":"prev"}else o=t.realIndex,r=o>t.previousIndex?"next":"prev";a&&(o+="next"===r?n:-1*n),i.visibleSlidesIndexes&&i.visibleSlidesIndexes.indexOf(o)<0&&(i.params.centeredSlides?o=o>l?o-Math.floor(s/2)+1:o+Math.floor(s/2)-1:o>l&&i.params.slidesPerGroup,i.slideTo(o,e?0:void 0))}let o=1;const r=t.params.thumbs.slideThumbActiveClass;if(t.params.slidesPerView>1&&!t.params.centeredSlides&&(o=t.params.slidesPerView),t.params.thumbs.multipleActiveThumbs||(o=1),o=Math.floor(o),i.slides.removeClass(r),i.params.loop||i.params.virtual&&i.params.virtual.enabled)for(let e=0;e<o;e+=1)i.$wrapperEl.children(`[data-swiper-slide-index="${t.realIndex+e}"]`).addClass(r);else for(let e=0;e<o;e+=1)i.slides.eq(t.realIndex+e).addClass(r)}t.thumbs={swiper:null},s("beforeInit",()=>{const{thumbs:e}=t.params;e&&e.swiper&&(r(),l(!0))}),s("slideChange update resize observerUpdate",()=>{l()}),s("setTransition",(e,i)=>{const s=t.thumbs.swiper;s&&!s.destroyed&&s.setTransition(i)}),s("beforeDestroy",()=>{const e=t.thumbs.swiper;e&&!e.destroyed&&a&&e.destroy()}),Object.assign(t.thumbs,{init:r,update:l})},function(e){let{swiper:t,extendParams:i,emit:s,once:n}=e;i({freeMode:{enabled:!1,momentum:!0,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,momentumVelocityRatio:1,sticky:!1,minimumVelocity:.02}}),Object.assign(t,{freeMode:{onTouchStart:function(){const e=t.getTranslate();t.setTranslate(e),t.setTransition(0),t.touchEventsData.velocities.length=0,t.freeMode.onTouchEnd({currentPos:t.rtl?t.translate:-t.translate})},onTouchMove:function(){const{touchEventsData:e,touches:i}=t;0===e.velocities.length&&e.velocities.push({position:i[t.isHorizontal()?"startX":"startY"],time:e.touchStartTime}),e.velocities.push({position:i[t.isHorizontal()?"currentX":"currentY"],time:u()})},onTouchEnd:function(e){let{currentPos:i}=e;const{params:a,$wrapperEl:o,rtlTranslate:r,snapGrid:l,touchEventsData:c}=t,d=u()-c.touchStartTime;if(i<-t.minTranslate())t.slideTo(t.activeIndex);else if(i>-t.maxTranslate())t.slides.length<l.length?t.slideTo(l.length-1):t.slideTo(t.slides.length-1);else{if(a.freeMode.momentum){if(c.velocities.length>1){const e=c.velocities.pop(),i=c.velocities.pop(),s=e.position-i.position,n=e.time-i.time;t.velocity=s/n,t.velocity/=2,Math.abs(t.velocity)<a.freeMode.minimumVelocity&&(t.velocity=0),(n>150||u()-e.time>300)&&(t.velocity=0)}else t.velocity=0;t.velocity*=a.freeMode.momentumVelocityRatio,c.velocities.length=0;let e=1e3*a.freeMode.momentumRatio;const i=t.velocity*e;let d=t.translate+i;r&&(d=-d);let h,p=!1;const m=20*Math.abs(t.velocity)*a.freeMode.momentumBounceRatio;let f;if(d<t.maxTranslate())a.freeMode.momentumBounce?(d+t.maxTranslate()<-m&&(d=t.maxTranslate()-m),h=t.maxTranslate(),p=!0,c.allowMomentumBounce=!0):d=t.maxTranslate(),a.loop&&a.centeredSlides&&(f=!0);else if(d>t.minTranslate())a.freeMode.momentumBounce?(d-t.minTranslate()>m&&(d=t.minTranslate()+m),h=t.minTranslate(),p=!0,c.allowMomentumBounce=!0):d=t.minTranslate(),a.loop&&a.centeredSlides&&(f=!0);else if(a.freeMode.sticky){let e;for(let t=0;t<l.length;t+=1)if(l[t]>-d){e=t;break}d=Math.abs(l[e]-d)<Math.abs(l[e-1]-d)||"next"===t.swipeDirection?l[e]:l[e-1],d=-d}if(f&&n("transitionEnd",()=>{t.loopFix()}),0!==t.velocity){if(e=r?Math.abs((-d-t.translate)/t.velocity):Math.abs((d-t.translate)/t.velocity),a.freeMode.sticky){const i=Math.abs((r?-d:d)-t.translate),s=t.slidesSizesGrid[t.activeIndex];e=i<s?a.speed:i<2*s?1.5*a.speed:2.5*a.speed}}else if(a.freeMode.sticky)return void t.slideToClosest();a.freeMode.momentumBounce&&p?(t.updateProgress(h),t.setTransition(e),t.setTranslate(d),t.transitionStart(!0,t.swipeDirection),t.animating=!0,o.transitionEnd(()=>{t&&!t.destroyed&&c.allowMomentumBounce&&(s("momentumBounce"),t.setTransition(a.speed),setTimeout(()=>{t.setTranslate(h),o.transitionEnd(()=>{t&&!t.destroyed&&t.transitionEnd()})},0))})):t.velocity?(s("_freeModeNoMomentumRelease"),t.updateProgress(d),t.setTransition(e),t.setTranslate(d),t.transitionStart(!0,t.swipeDirection),t.animating||(t.animating=!0,o.transitionEnd(()=>{t&&!t.destroyed&&t.transitionEnd()}))):t.updateProgress(d),t.updateActiveIndex(),t.updateSlidesClasses()}else{if(a.freeMode.sticky)return void t.slideToClosest();a.freeMode&&s("_freeModeNoMomentumRelease")}(!a.freeMode.momentum||d>=a.longSwipesMs)&&(t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses())}}}})},function(e){let t,i,s,{swiper:n,extendParams:a}=e;a({grid:{rows:1,fill:"column"}}),n.grid={initSlides:e=>{const{slidesPerView:a}=n.params,{rows:o,fill:r}=n.params.grid;i=t/o,s=Math.floor(e/o),t=Math.floor(e/o)===e/o?e:Math.ceil(e/o)*o,"auto"!==a&&"row"===r&&(t=Math.max(t,a*o))},updateSlide:(e,a,o,r)=>{const{slidesPerGroup:l,spaceBetween:c}=n.params,{rows:d,fill:h}=n.params.grid;let u,p,m;if("row"===h&&l>1){const i=Math.floor(e/(l*d)),s=e-d*l*i,n=0===i?l:Math.min(Math.ceil((o-i*d*l)/d),l);m=Math.floor(s/n),p=s-m*n+i*l,u=p+m*t/d,a.css({"-webkit-order":u,order:u})}else"column"===h?(p=Math.floor(e/d),m=e-p*d,(p>s||p===s&&m===d-1)&&(m+=1,m>=d&&(m=0,p+=1))):(m=Math.floor(e/i),p=e-m*i);a.css(r("margin-top"),0!==m?c&&`${c}px`:"")},updateWrapperSize:(e,i,s)=>{const{spaceBetween:a,centeredSlides:o,roundLengths:r}=n.params,{rows:l}=n.params.grid;if(n.virtualSize=(e+a)*t,n.virtualSize=Math.ceil(n.virtualSize/l)-a,n.$wrapperEl.css({[s("width")]:`${n.virtualSize+a}px`}),o){i.splice(0,i.length);const e=[];for(let t=0;t<i.length;t+=1){let s=i[t];r&&(s=Math.floor(s)),i[t]<n.virtualSize+i[0]&&e.push(s)}i.push(...e)}}}},function(e){let{swiper:t}=e;Object.assign(t,{appendSlide:R.bind(t),prependSlide:V.bind(t),addSlide:G.bind(t),removeSlide:U.bind(t),removeAllSlides:W.bind(t)})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({fadeEffect:{crossFade:!1,transformEl:null}}),X({effect:"fade",swiper:t,on:s,setTranslate:()=>{const{slides:e}=t,i=t.params.fadeEffect;for(let s=0;s<e.length;s+=1){const e=t.slides.eq(s);let n=-e[0].swiperSlideOffset;t.params.virtualTranslate||(n-=t.translate);let a=0;t.isHorizontal()||(a=n,n=0);const o=t.params.fadeEffect.crossFade?Math.max(1-Math.abs(e[0].progress),0):1+Math.min(Math.max(e[0].progress,-1),0);Q(i,e).css({opacity:o}).transform(`translate3d(${n}px, ${a}px, 0px)`)}},setTransition:e=>{const{transformEl:i}=t.params.fadeEffect;(i?t.slides.find(i):t.slides).transition(e),K({swiper:t,duration:e,transformEl:i,allSlides:!0})},overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({cubeEffect:{slideShadows:!0,shadow:!0,shadowOffset:20,shadowScale:.94}});const n=(e,t,i)=>{let s=i?e.find(".swiper-slide-shadow-left"):e.find(".swiper-slide-shadow-top"),n=i?e.find(".swiper-slide-shadow-right"):e.find(".swiper-slide-shadow-bottom");0===s.length&&(s=c(`<div class="swiper-slide-shadow-${i?"left":"top"}"></div>`),e.append(s)),0===n.length&&(n=c(`<div class="swiper-slide-shadow-${i?"right":"bottom"}"></div>`),e.append(n)),s.length&&(s[0].style.opacity=Math.max(-t,0)),n.length&&(n[0].style.opacity=Math.max(t,0))};X({effect:"cube",swiper:t,on:s,setTranslate:()=>{const{$el:e,$wrapperEl:i,slides:s,width:a,height:o,rtlTranslate:r,size:l,browser:d}=t,h=t.params.cubeEffect,u=t.isHorizontal(),p=t.virtual&&t.params.virtual.enabled;let m,f=0;h.shadow&&(u?(m=i.find(".swiper-cube-shadow"),0===m.length&&(m=c('<div class="swiper-cube-shadow"></div>'),i.append(m)),m.css({height:`${a}px`})):(m=e.find(".swiper-cube-shadow"),0===m.length&&(m=c('<div class="swiper-cube-shadow"></div>'),e.append(m))));for(let e=0;e<s.length;e+=1){const t=s.eq(e);let i=e;p&&(i=parseInt(t.attr("data-swiper-slide-index"),10));let a=90*i,o=Math.floor(a/360);r&&(a=-a,o=Math.floor(-a/360));const c=Math.max(Math.min(t[0].progress,1),-1);let d=0,m=0,g=0;i%4==0?(d=4*-o*l,g=0):(i-1)%4==0?(d=0,g=4*-o*l):(i-2)%4==0?(d=l+4*o*l,g=l):(i-3)%4==0&&(d=-l,g=3*l+4*l*o),r&&(d=-d),u||(m=d,d=0);const v=`rotateX(${u?0:-a}deg) rotateY(${u?a:0}deg) translate3d(${d}px, ${m}px, ${g}px)`;c<=1&&c>-1&&(f=90*i+90*c,r&&(f=90*-i-90*c)),t.transform(v),h.slideShadows&&n(t,c,u)}if(i.css({"-webkit-transform-origin":`50% 50% -${l/2}px`,"transform-origin":`50% 50% -${l/2}px`}),h.shadow)if(u)m.transform(`translate3d(0px, ${a/2+h.shadowOffset}px, ${-a/2}px) rotateX(90deg) rotateZ(0deg) scale(${h.shadowScale})`);else{const e=Math.abs(f)-90*Math.floor(Math.abs(f)/90),t=1.5-(Math.sin(2*e*Math.PI/360)/2+Math.cos(2*e*Math.PI/360)/2),i=h.shadowScale,s=h.shadowScale/t,n=h.shadowOffset;m.transform(`scale3d(${i}, 1, ${s}) translate3d(0px, ${o/2+n}px, ${-o/2/s}px) rotateX(-90deg)`)}const g=d.isSafari||d.isWebView?-l/2:0;i.transform(`translate3d(0px,0,${g}px) rotateX(${t.isHorizontal()?0:f}deg) rotateY(${t.isHorizontal()?-f:0}deg)`),i[0].style.setProperty("--swiper-cube-translate-z",`${g}px`)},setTransition:e=>{const{$el:i,slides:s}=t;s.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),t.params.cubeEffect.shadow&&!t.isHorizontal()&&i.find(".swiper-cube-shadow").transition(e)},recreateShadows:()=>{const e=t.isHorizontal();t.slides.each(t=>{const i=Math.max(Math.min(t.progress,1),-1);n(c(t),i,e)})},getEffectParams:()=>t.params.cubeEffect,perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,resistanceRatio:0,spaceBetween:0,centeredSlides:!1,virtualTranslate:!0})})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({flipEffect:{slideShadows:!0,limitRotation:!0,transformEl:null}});const n=(e,i,s)=>{let n=t.isHorizontal()?e.find(".swiper-slide-shadow-left"):e.find(".swiper-slide-shadow-top"),a=t.isHorizontal()?e.find(".swiper-slide-shadow-right"):e.find(".swiper-slide-shadow-bottom");0===n.length&&(n=J(s,e,t.isHorizontal()?"left":"top")),0===a.length&&(a=J(s,e,t.isHorizontal()?"right":"bottom")),n.length&&(n[0].style.opacity=Math.max(-i,0)),a.length&&(a[0].style.opacity=Math.max(i,0))};X({effect:"flip",swiper:t,on:s,setTranslate:()=>{const{slides:e,rtlTranslate:i}=t,s=t.params.flipEffect;for(let a=0;a<e.length;a+=1){const o=e.eq(a);let r=o[0].progress;t.params.flipEffect.limitRotation&&(r=Math.max(Math.min(o[0].progress,1),-1));const l=o[0].swiperSlideOffset;let c=-180*r,d=0,h=t.params.cssMode?-l-t.translate:-l,u=0;t.isHorizontal()?i&&(c=-c):(u=h,h=0,d=-c,c=0),o[0].style.zIndex=-Math.abs(Math.round(r))+e.length,s.slideShadows&&n(o,r,s);const p=`translate3d(${h}px, ${u}px, 0px) rotateX(${d}deg) rotateY(${c}deg)`;Q(s,o).transform(p)}},setTransition:e=>{const{transformEl:i}=t.params.flipEffect;(i?t.slides.find(i):t.slides).transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),K({swiper:t,duration:e,transformEl:i})},recreateShadows:()=>{const e=t.params.flipEffect;t.slides.each(i=>{const s=c(i);let a=s[0].progress;t.params.flipEffect.limitRotation&&(a=Math.max(Math.min(i.progress,1),-1)),n(s,a,e)})},getEffectParams:()=>t.params.flipEffect,perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({coverflowEffect:{rotate:50,stretch:0,depth:100,scale:1,modifier:1,slideShadows:!0,transformEl:null}}),X({effect:"coverflow",swiper:t,on:s,setTranslate:()=>{const{width:e,height:i,slides:s,slidesSizesGrid:n}=t,a=t.params.coverflowEffect,o=t.isHorizontal(),r=t.translate,l=o?e/2-r:i/2-r,c=o?a.rotate:-a.rotate,d=a.depth;for(let e=0,t=s.length;e<t;e+=1){const t=s.eq(e),i=n[e],r=(l-t[0].swiperSlideOffset-i/2)/i,h="function"==typeof a.modifier?a.modifier(r):r*a.modifier;let u=o?c*h:0,p=o?0:c*h,m=-d*Math.abs(h),f=a.stretch;"string"==typeof f&&-1!==f.indexOf("%")&&(f=parseFloat(a.stretch)/100*i);let g=o?0:f*h,v=o?f*h:0,x=1-(1-a.scale)*Math.abs(h);Math.abs(v)<.001&&(v=0),Math.abs(g)<.001&&(g=0),Math.abs(m)<.001&&(m=0),Math.abs(u)<.001&&(u=0),Math.abs(p)<.001&&(p=0),Math.abs(x)<.001&&(x=0);const y=`translate3d(${v}px,${g}px,${m}px)  rotateX(${p}deg) rotateY(${u}deg) scale(${x})`;if(Q(a,t).transform(y),t[0].style.zIndex=1-Math.abs(Math.round(h)),a.slideShadows){let e=o?t.find(".swiper-slide-shadow-left"):t.find(".swiper-slide-shadow-top"),i=o?t.find(".swiper-slide-shadow-right"):t.find(".swiper-slide-shadow-bottom");0===e.length&&(e=J(a,t,o?"left":"top")),0===i.length&&(i=J(a,t,o?"right":"bottom")),e.length&&(e[0].style.opacity=h>0?h:0),i.length&&(i[0].style.opacity=-h>0?-h:0)}}},setTransition:e=>{const{transformEl:i}=t.params.coverflowEffect;(i?t.slides.find(i):t.slides).transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e)},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0})})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({creativeEffect:{transformEl:null,limitProgress:1,shadowPerProgress:!1,progressMultiplier:1,perspective:!0,prev:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1},next:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1}}});const n=e=>"string"==typeof e?e:`${e}px`;X({effect:"creative",swiper:t,on:s,setTranslate:()=>{const{slides:e,$wrapperEl:i,slidesSizesGrid:s}=t,a=t.params.creativeEffect,{progressMultiplier:o}=a,r=t.params.centeredSlides;if(r){const e=s[0]/2-t.params.slidesOffsetBefore||0;i.transform(`translateX(calc(50% - ${e}px))`)}for(let i=0;i<e.length;i+=1){const s=e.eq(i),l=s[0].progress,c=Math.min(Math.max(s[0].progress,-a.limitProgress),a.limitProgress);let d=c;r||(d=Math.min(Math.max(s[0].originalProgress,-a.limitProgress),a.limitProgress));const h=s[0].swiperSlideOffset,u=[t.params.cssMode?-h-t.translate:-h,0,0],p=[0,0,0];let m=!1;t.isHorizontal()||(u[1]=u[0],u[0]=0);let f={translate:[0,0,0],rotate:[0,0,0],scale:1,opacity:1};c<0?(f=a.next,m=!0):c>0&&(f=a.prev,m=!0),u.forEach((e,t)=>{u[t]=`calc(${e}px + (${n(f.translate[t])} * ${Math.abs(c*o)}))`}),p.forEach((e,t)=>{p[t]=f.rotate[t]*Math.abs(c*o)}),s[0].style.zIndex=-Math.abs(Math.round(l))+e.length;const g=u.join(", "),v=`rotateX(${p[0]}deg) rotateY(${p[1]}deg) rotateZ(${p[2]}deg)`,x=d<0?`scale(${1+(1-f.scale)*d*o})`:`scale(${1-(1-f.scale)*d*o})`,y=d<0?1+(1-f.opacity)*d*o:1-(1-f.opacity)*d*o,b=`translate3d(${g}) ${v} ${x}`;if(m&&f.shadow||!m){let e=s.children(".swiper-slide-shadow");if(0===e.length&&f.shadow&&(e=J(a,s)),e.length){const t=a.shadowPerProgress?c*(1/a.limitProgress):c;e[0].style.opacity=Math.min(Math.max(Math.abs(t),0),1)}}const w=Q(a,s);w.transform(b).css({opacity:y}),f.origin&&w.css("transform-origin",f.origin)}},setTransition:e=>{const{transformEl:i}=t.params.creativeEffect;(i?t.slides.find(i):t.slides).transition(e).find(".swiper-slide-shadow").transition(e),K({swiper:t,duration:e,transformEl:i,allSlides:!0})},perspective:()=>t.params.creativeEffect.perspective,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:i,on:s}=e;i({cardsEffect:{slideShadows:!0,transformEl:null,rotate:!0}}),X({effect:"cards",swiper:t,on:s,setTranslate:()=>{const{slides:e,activeIndex:i}=t,s=t.params.cardsEffect,{startTranslate:n,isTouched:a}=t.touchEventsData,o=t.translate;for(let r=0;r<e.length;r+=1){const l=e.eq(r),c=l[0].progress,d=Math.min(Math.max(c,-4),4);let h=l[0].swiperSlideOffset;t.params.centeredSlides&&!t.params.cssMode&&t.$wrapperEl.transform(`translateX(${t.minTranslate()}px)`),t.params.centeredSlides&&t.params.cssMode&&(h-=e[0].swiperSlideOffset);let u=t.params.cssMode?-h-t.translate:-h,p=0;const m=-100*Math.abs(d);let f=1,g=-2*d,v=8-.75*Math.abs(d);const x=t.virtual&&t.params.virtual.enabled?t.virtual.from+r:r,y=(x===i||x===i-1)&&d>0&&d<1&&(a||t.params.cssMode)&&o<n,b=(x===i||x===i+1)&&d<0&&d>-1&&(a||t.params.cssMode)&&o>n;if(y||b){const e=(1-Math.abs((Math.abs(d)-.5)/.5))**.5;g+=-28*d*e,f+=-.5*e,v+=96*e,p=`${-25*e*Math.abs(d)}%`}if(u=d<0?`calc(${u}px + (${v*Math.abs(d)}%))`:d>0?`calc(${u}px + (-${v*Math.abs(d)}%))`:`${u}px`,!t.isHorizontal()){const e=p;p=u,u=e}const w=d<0?`${1+(1-f)*d}`:`${1-(1-f)*d}`,M=`\n          translate3d(${u}, ${p}, ${m}px)\n          rotateZ(${s.rotate?g:0}deg)\n          scale(${w})\n        `;if(s.slideShadows){let e=l.find(".swiper-slide-shadow");0===e.length&&(e=J(s,l)),e.length&&(e[0].style.opacity=Math.min(Math.max((Math.abs(d)-.5)/.5,0),1))}l[0].style.zIndex=-Math.abs(Math.round(c))+e.length,Q(s,l).transform(M)}},setTransition:e=>{const{transformEl:i}=t.params.cardsEffect;(i?t.slides.find(i):t.slides).transition(e).find(".swiper-slide-shadow").transition(e),K({swiper:t,duration:e,transformEl:i})},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!t.params.cssMode})})}];return B.use(Z),B}));
-/*!a
- * 鎻掍欢锛氱伅绠辩敾寤婏紱浣跨敤鏂规硶锛歛xLightbox('#id',{鍙傛暟})
- */
-const axLightboxs=[];class axLightbox{constructor(e,t){this.options=axExtend({src:"",gallery:!0,download:!1,autoplay:!1,thumb:{show:!1,placement:"bottom",row:1},zoom:!0,share:!1,btnClass:"ax-lightbox-open",index:0},e,t);this.handlers={},this.data=[],this.closeArea=[],this.zoomIn=!1,this.button=t?axIdToDom(t):null,this.referName=""}init(){let e=this;this.data=axCreateData(this.options.src,["src","cover","caption","type"],"figure",["media","cover","caption","type"],["","","","image"],(function(e){e.forEach(e=>{e.cover||"image"!=e.type||(e.cover=e.media),e.cover=e.cover?e.cover:axImage.imgNone})})),this.setAttribute(),this.createBox(),this.createSlide(),this.data.length>1&&(this.prev=axStrToDom('<span class="ax-prev ax-light"></span>'),this.next=axStrToDom('<span class="ax-next ax-light"></span>'),this.swiper.appendChild(this.prev),this.swiper.appendChild(this.next));let t={zoom:this.options.zoom,lazy:!0,keyboard:!0,mousewheel:!0,initialSlide:this.options.index||0,pagination:{el:this.options.gallery?this.targetDom.querySelector(".ax-pages"):null,type:"fraction"},thumbs:{swiper:""},on:{touchStart:function(e,t){e.el.classList.add("ax-grabbing")},touchEnd:function(e,t){e.el.classList.remove("ax-grabbing")},zoomChange:function(t,i){i>1?e.zoomIn=!0:setTimeout((function(){e.zoomIn=!1}),100)}}},i={lazy:!0,spaceBetween:4,slidesPerView:"auto",mousewheel:!0,grid:{rows:this.options.thumb.row},watchSlidesProgress:!0};return this.options.gallery&&this.options.thumb&&(this.stage.insertAdjacentElement("afterend",this.createThumb()),this.insThumb=new axSwiper(this.thumb.querySelector(".ax-swiper"),i),t.thumbs.swiper=this.insThumb,this.btnList.onclick=function(){e.targetDom.classList.toggle("ax-thumb-hide")}),this.options.thumb.show||this.targetDom.classList.add("ax-thumb-hide"),this.options.autoplay&&(t.autoplay={delay:5e3,stopOnLastSlide:!1,disableOnInteraction:!0}),this.insSwiper=new axSwiper(this.swiper,t),document.body.appendChild(this.targetDom),this.data.length>1&&this.options.thumb.row&&this.options.thumb.row>1&&(this.thumb.querySelector(".ax-swiper").style.height=axHeight(this.thumb.querySelector(".ax-slide"),"outer")*this.options.thumb.row+i.spaceBetween*(this.options.thumb.row-1)+"px"),this.options.gallery||this.insSwiper.disable(),axPreventScroll(this.targetDom),this.targetDom.querySelectorAll("[close]").forEach(t=>{t.addEventListener("click",(function(){e.hide()}),!1)}),this.options.zoom&&(this.btnZoom.onclick=function(){this.classList.contains("ax-icon-zoomin")?e.insSwiper.zoom.in():e.insSwiper.zoom.out()}),this.options.download&&("image"!=this.data[this.insSwiper.activeIndex].type?(this.btnDownload.href="###",this.btnDownload.classList.add("ax-disabled"),this.btnDownload.removeAttribute("download"),this.btnDownload.removeAttribute("target")):(this.btnDownload.href=this.data[this.insSwiper.activeIndex].media,this.btnDownload.classList.remove("ax-disabled"),this.btnDownload.setAttribute("download",""),this.btnDownload.setAttribute("target","_blank"))),this.options.zoom&&("image"!=this.data[this.insSwiper.activeIndex].type?(this.btnZoom.classList.add("ax-disabled"),this.insSwiper.zoom.disable()):(this.btnZoom.classList.remove("ax-disabled"),this.insSwiper.zoom.enable())),this.options.share&&("image"!=this.data[this.insSwiper.activeIndex].type?this.btnShare.classList.add("ax-disabled"):this.btnShare.classList.remove("ax-disabled")),this.insSwiper.on("slideChangeTransitionEnd",(function(){e.options.download&&("image"!=e.data[this.activeIndex].type?(e.btnDownload.href="###",e.btnDownload.classList.add("ax-disabled"),e.btnDownload.removeAttribute("download"),e.btnDownload.removeAttribute("target")):(e.btnDownload.href=e.data[this.activeIndex].media,e.btnDownload.classList.remove("ax-disabled"),e.btnDownload.setAttribute("download",""),e.btnDownload.setAttribute("target","_blank"))),e.options.zoom&&("image"!=e.data[this.activeIndex].type?(e.btnZoom.classList.add("ax-disabled"),e.insSwiper.zoom.disable()):(e.btnZoom.classList.remove("ax-disabled"),e.btnZoom.classList.remove("ax-icon-zoomout"),e.btnZoom.classList.add("ax-icon-zoomin"),e.insSwiper.zoom.enable())),e.options.share&&("image"!=e.data[this.activeIndex].type?e.btnShare.classList.add("ax-disabled"):e.btnShare.classList.remove("ax-disabled")),e.targetDom.querySelectorAll("video,audio").forEach(e=>{e.pause()}),e.zoomIn=!1})),this.insSwiper.on("zoomChange",(function(t,i){i>1?(e.btnZoom.classList.remove("ax-icon-zoomin"),e.btnZoom.classList.add("ax-icon-zoomout")):(e.btnZoom.classList.remove("ax-icon-zoomout"),e.btnZoom.classList.add("ax-icon-zoomin"))})),"init"in this.handlers&&this.emit("init",""),this}overlayClose(e){this.closeArea=[];let t=this,i=!0,s=!0,n=!0;return t.prev&&(i=axIsOutside(e,t.prev)),t.closeArea.push(i),t.next&&(s=axIsOutside(e,t.next)),t.closeArea.push(s),n=!t.options.thumb||axIsOutside(e,t.thumb),t.closeArea.push(n),t.swiperWrapper.querySelectorAll(".ax-media").forEach(i=>{let s=i.firstElementChild;t.closeArea.push(axIsOutside(e,s))}),t.swiperWrapper.querySelectorAll(".ax-caption")&&t.swiperWrapper.querySelectorAll(".ax-caption").forEach(i=>{t.closeArea.push(axIsOutside(e,i))}),t.closeArea.push(axIsOutside(e,t.operate)),t.closeArea.push(axIsOutside(e,t.pages)),this.closeArea}createSlide(){this.data.forEach(e=>{let t=null,i=null;var s,n;t=axStrToDom((s=e.media,(n=e.type)&&"video"==n?`\n                <div class="ax-slide">\n                    <div class="ax-media">\n                        <video controls><source src="${s}" type="video/mp4"></video>\n                    </div>\n                </div>\n                `:n&&"iframe"==n?`\n                <div class="ax-slide">\n                    <div class="ax-media">\n                        <iframe src="${s}" frameborder="0" width="100%" height="100%"></iframe>\n                    </div>\n                </div>\n                `:n&&"text"==n?("#"==s.substr(0,1)&&(s=document.querySelector(s).innerHTML),`\n                <div class="ax-slide">\n                    <div class="ax-media">\n                        <div class="ax-text">${s}</div>\n                    </div>\n                </div>\n                `):`\n                <div class="ax-slide">\n                    <div class="ax-media ax-zoom">\n                        <img data-src="${s}" class="ax-lazy" />\n                        <span class="ax-loading ax-white"><i></i></span>\n                    </div>\n                </div>\n                `)),i=e.caption?axStrToDom(`<div class="ax-caption">${e.caption}</div>`):null,i&&t.appendChild(i),this.swiperWrapper.appendChild(t)})}createThumb(){return this.thumb=axStrToDom('<div class="ax-thumb"><div class="ax-swiper"><div class="ax-wrapper"></div></div></div>'),this.thumbWrapper=this.thumb.querySelector(".ax-wrapper"),this.data.forEach(e=>{let t=axStrToDom(`\n            <div class="ax-slide">\n                <img data-src="${e.cover}" class="ax-lazy" />\n                <span class="ax-loading ax-white"><i></i></span>\n            </div>\n            `);this.thumbWrapper.appendChild(t)}),this.thumb}createBox(){let e=`\n        <div class="ax-lightbox" id="${axCreateId("lightbox")}">\n        <div class="ax-overlay"></div>\n        <div class="ax-tools">\n            <div class="ax-pages"></div>\n            <div class="ax-operate"><i class="ax-iconfont ax-icon-close" close></i></div>\n        </div>\n        <div class="ax-stage">\n            <div class="ax-swiper">\n                <div class="ax-wrapper">\n                </div>\n            </div>\n        </div>\n    </div>\n      `;this.targetDom=axStrToDom(e),this.tools=this.targetDom.querySelector(".ax-tools"),this.pages=this.targetDom.querySelector(".ax-pages"),this.operate=this.targetDom.querySelector(".ax-operate"),this.stage=this.targetDom.querySelector(".ax-stage"),this.swiper=this.stage.querySelector(".ax-swiper"),this.swiperWrapper=this.swiper.querySelector(".ax-wrapper"),this.createBtn()}createBtn(){this.btnShare=axStrToDom('<i class="ax-iconfont ax-icon-share-f" share></i>'),this.btnDownload=axStrToDom('<a href="###" class="ax-iconfont ax-icon-download" target="_blank" download></a>'),this.btnZoom=axStrToDom('<i class="ax-iconfont ax-icon-zoomin" zoom></i>'),this.btnList=axStrToDom('<i class="ax-iconfont ax-icon-list" list></i>'),this.options.thumb&&this.operate.insertAdjacentElement("afterbegin",this.btnList),this.options.download&&this.operate.insertAdjacentElement("afterbegin",this.btnDownload),this.options.zoom&&this.operate.insertAdjacentElement("afterbegin",this.btnZoom),this.options.share&&this.operate.insertAdjacentElement("afterbegin",this.btnShare)}setAttribute(){for(let e=0,t=this.data.length;e<t;e++){!this.data[e].hasOwnProperty("type")||"iframe"!=this.data[e].type&&"video"!=this.data[e].type&&"text"!=this.data[e].type||(this.options.thumb=!1);break}this.data.length<2&&this.options.thumb}update(e,t){return this.options=axExtend(this.options,e),this.init(),"update"in this.handlers&&this.emit("update",""),t&&t.call(this),this}show(e){let t=this;return"show"in this.handlers&&this.emit("show",""),this.targetDom.style.visibility="visible",this.targetDom.classList.add("ax-show"),this.button&&this.button.classList.add(this.options.btnClass),e&&e.call(this),"shown"in this.handlers&&this.emit("shown",""),t.targetDom.onclick=function(e){t.overlayClose(e),t.closeArea.some((function(e){return 0==e}))||t.zoomIn||t.hide()},this}hide(e){let t=this;return"hide"in this.handlers&&this.emit("hide",""),this.button&&this.button.classList.remove(this.options.btnClass),this.targetDom.classList.remove("ax-show"),t.targetDom.addEventListener("transitionend",(function(){t.targetDom.remove()}),!1),this.targetDom.querySelectorAll("video,audio").forEach(e=>{e.pause()}),e&&e.call(this),"hidden"in this.handlers&&this.emit("hidden",""),this}on(e,t){return axAddPlan(e,t,this),this}emit(e,...t){axExePlan(e,this,...t)}off(e,t){return axDelPlan(e,t,this),this}}(()=>{let e=e=>{let t=axIdToDom(e),i=[{}],s=t.nodeName;return"A"==s?t.hasAttribute("href")&&-1==t.getAttribute("href").indexOf("##")&&(i[0].media=t.getAttribute("href"),i[0].cover=t.getAttribute("href")):"IMG"==s&&t.hasAttribute("src")&&(i[0].media=t.getAttribute("src"),i[0].cover=t.getAttribute("src")),t.hasAttribute("type")?i[0].type=t.getAttribute("type"):i[0].type="image",t.hasAttribute("title")?i[0].caption=t.getAttribute("title"):t.hasAttribute("alt")?i[0].caption=t.getAttribute("alt"):i[0].caption="",i},t=[];document.querySelectorAll("[axLightbox]").forEach(i=>{let s=i.getAttribute("axLightbox");if(s){let n=[];n=i.getAttribute("data-src")?axCreateData(i.getAttribute("data-src"),["src","cover","caption","type"],"figure",["media","cover","caption","type"],["","","","image"],(function(e){e.forEach(e=>{e.cover||"image"!=e.type||(e.cover=e.media),e.cover=e.cover?e.cover:axImage.imgNone})})):e(i),axIsEmpty(t)?t.push({name:s,data:n}):(t.forEach(e=>{e.name==s&&e.data.push(...n)}),t.some(e=>e.name==s)||t.push({name:s,data:n}))}}),t.forEach(e=>{let t={},i=new axLightbox({src:e.data});t.name=e.name,t.instance=i,i.referName=t.name,axLightboxs.push(t)}),document.querySelectorAll("[axLightbox]").forEach(t=>{let i=t.getAttribute("axLightbox");i?t.onclick=e=>{axPreventDefault(e),axLightboxs.forEach(e=>{e.name==i&&axInstance(axLightboxs,i).init().show()})}:t.getAttribute("data-src")?t.onclick=e=>{axPreventDefault(e),new axLightbox("",t).init().show()}:t.onclick=i=>{axPreventDefault(i),new axLightbox({src:e(t)}).init().show()}})})(),
-/*!
-*椤圭洰鎵�闇�鐨勭珛鍗虫墽琛岀殑浠g爜鐗囨锛岄伩鍏嶆薄鏌撳叏灞�鍙橀噺
-*/
-(()=>{const e=document.querySelectorAll(".ax-alert");for(let t=0;t<e.length;t++)e[t].querySelector(".ax-close")&&e[t].querySelector(".ax-close").addEventListener("click",()=>{e[t].style.display="none"},!1);const t=document.querySelectorAll(".ax-tag");for(let e=0;e<t.length;e++)t[e].querySelector("i,s")&&t[e].querySelector("i,s").addEventListener("click",()=>{t[e].style.display="none"},!1);const i=document.querySelectorAll(".ax-pos-left");for(let e=0;e<i.length;e++){let t=i[e];"INPUT"!=t.nextElementSibling.nodeName&&"TEXTAREA"!=t.nextElementSibling.nodeName||(t.nextElementSibling.style.paddingLeft=`${axWidth(t,"outer")}px`)}window.addEventListener("resize",()=>{for(let e=0;e<i.length;e++){let t=i[e];"INPUT"!=t.nextElementSibling.nodeName&&"TEXTAREA"!=t.nextElementSibling.nodeName||(t.nextElementSibling.style.paddingLeft=`${axWidth(t,"outer")}px`)}},!1);const s=document.querySelectorAll(".ax-pos-right .ax-val-none");for(let e=0;e<s.length;e++){let t=s[e];t&&t.addEventListener("click",(function(){let e=this.parentElement.previousElementSibling,t=this.parentElement.parentElement.querySelector(".ax-fast-list");"INPUT"!=e.nodeName&&"TEXTAREA"!=e.nodeName||(e.value=""),t&&axSlideUp(t)}),!1)}const n=document.querySelectorAll(".ax-panel");for(let e=0;e<n.length;e++){let t=n[e],i=axChildren(t,".ax-panel-header")[0],s=axChildren(t,".ax-panel-body")[0],a=i?i.querySelector(".ax-panel-close"):null;a&&a.addEventListener("click",(function(){"none"==getComputedStyle(s).display||"0px"==getComputedStyle(s).height?(this.classList.remove("ax-deg180"),axSlideDown(s)):(this.classList.add("ax-deg180"),axSlideUp(s))}),!1)}const a=document.querySelectorAll(".ax-box");for(let e=0;e<a.length;e++){let t=a[e],i=axChildren(t,".ax-box-header")[0],s=axChildren(t,".ax-box-body")[0],n=i?i.querySelector(".ax-box-close"):null;axChildren(i,".ax-des")||i.classList.add("ax-simple"),n&&n.addEventListener("click",(function(){"none"==getComputedStyle(s).display||"0px"==getComputedStyle(s).height?(this.classList.remove("ax-deg180"),axSlideDown(s)):(this.classList.add("ax-deg180"),axSlideUp(s))}),!1)}const o=document.querySelectorAll(".ax-list-select");for(let e=0;e<o.length;e++){let t=o[e],i=t.querySelectorAll(".ax-info-block");for(let e=0;e<i.length;e++){let s=i[e],n=s.querySelector("input"),a=document.createElement("div");a.classList.add("ax-mask"),s.appendChild(a);let o=s.querySelector(".ax-mask");n.disabled?s.classList.add("ax-disabled"):n.checked?s.classList.add("ax-active"):s.classList.remove("ax-active");let r=t.querySelectorAll("input:not(:disabled)").length,l=t.querySelectorAll("input:checked:not(:disabled)").length,c="group-select-"+t.querySelector("input").getAttribute("name"),d=document.querySelector("input[type='radio'][value='1'][name="+c+"]"),h=document.querySelector("input[type='radio'][value='0'][name="+c+"]"),u=document.querySelector("input[type='radio'][name="+c+"]"),p=document.querySelector("input[type='checkbox'][name="+c+"]"),m=document.querySelectorAll("input[name="+c+"]");if("0"==l?(d&&(d.checked=!1),h&&(h.checked=!0)):(l=r)?(h&&(d.checked=!1),d&&(h.checked=!0)):u&&(u.checked=!1),"checkbox"!=n.getAttribute("type")||n.disabled)"radio"!=n.getAttribute("type")||n.disabled?s.classList.remove("ax-active"):o.addEventListener("click",(function(){let e=axSiblings(s,"",".ax-info-block");for(let t=0;t<e.length;t++)e[t].querySelector("input").checked=!1,e[t].classList.remove("ax-active");n.checked=!0,s.classList.add("ax-active")}),!1);else{let e=()=>{let e=t.querySelectorAll("input:checked:not(:disabled)").length;"0"==e?(d&&(d.checked=!1),h&&(h.checked=!0)):r!=e?m&&m.forEach(e=>{e.checked=!1}):(p&&(p.checked=!0),d&&(d.checked=!0))};o.addEventListener("click",()=>{n.checked?(n.checked=!1,s.classList.remove("ax-active")):(n.checked=!0,s.classList.add("ax-active")),e()},!1)}}}const r=document.querySelectorAll('input[name^="group-select-"]');for(let e=0;e<r.length;e++){let t=r[e],i=t.getAttribute("name").replace("group-select-",""),s=document.querySelectorAll("input[name="+i+"]:not(:disabled)");if("checkbox"==t.getAttribute("type")&&t.checked)for(let e=0;e<s.length;e++)s[e].checked=!0,s[e].closest(".ax-info-block").classList.add("ax-active");else if("radio"==t.getAttribute("type")&&t.checked&&"1"==t.getAttribute("value"))for(let e=0;e<s.length;e++)s[e].checked=!0,s[e].closest(".ax-info-block").classList.add("ax-active");t.addEventListener("click",(function(){if("1"==this.getAttribute("value")&&this.checked)for(let e=0;e<s.length;e++)s[e].checked=!0,s[e].closest(".ax-info-block").classList.add("ax-active");else for(let e=0;e<s.length;e++)s[e].checked=!1,s[e].closest(".ax-info-block").classList.remove("ax-active")}),!1)}const l=document.querySelectorAll(".ax-overflow");for(let e=0;e<l.length;e++){let t=l[e],i=axChildren(t.querySelector(".ax-inner")),s=0;for(let e=0;e<i.length;e++)parseInt(getComputedStyle(i[e]).width)>s&&(s=parseInt(getComputedStyle(i[e]).width));parseInt(getComputedStyle(t).width)<s?t.classList.add("ax-done"):t.classList.remove("ax-done"),t.querySelector(".ax-inner").onscroll=()=>{s-parseInt(getComputedStyle(t).width)-this.scrollLeft<44?t.classList.remove("ax-done"):t.classList.add("ax-done")}}const c=document.querySelectorAll(".ax-scrollnav-v");for(let e=0;e<c.length;e++){let t=c[e],i=t.querySelector(".ax-close");i&&i.addEventListener("click",()=>{t.classList.contains("ax-hide")?(t.classList.remove("ax-hide"),Cookies.set("scrollnav","show",{expires:365e3,path:"/"})):(t.classList.add("ax-hide"),Cookies.set("scrollnav","hide",{expires:365e3,path:"/"}))},!1),"hide"===Cookies.get("scrollnav")?t.classList.add("ax-hide"):t.classList.remove("ax-hide")}const d=document.querySelectorAll(".ax-backtop");for(let e=0;e<d.length;e++){let t=d[e],i=axChildren(t,".ax-item");for(let e=0;e<i.length;e++)i[e]&&(i[e].onmouseenter=function(){this.classList.add("ax-active"),this.querySelector(".ax-text")&&axFadeIn(this.querySelector(".ax-text"))},i[e].onmouseleave=function(){this.classList.remove("ax-active"),this.querySelector(".ax-text")&&axFadeOut(this.querySelector(".ax-text"))})}const h=document.querySelectorAll(".ax-totop");for(let e=0;e<h.length;e++)h[e].addEventListener("click",(function(){axScrollTo()}),!1);const u=document.querySelectorAll(".ax-lazy");for(let e=0;e<u.length;e++)axOffset(u[e]).top>window.innerHeight&&u[e].classList.add("ax-hide");const p=document.querySelectorAll(".ax-ripple");for(let e=0;e<p.length;e++){let t=p[e],i=axWidth(t,"inner"),s=axHeight(t,"inner"),n=Math.max(i,s);t.addEventListener("click",(function(e){let i=e.clientX-(axOffset(this).left-document.documentElement.scrollLeft),s=e.clientY-(axOffset(this).top-document.documentElement.scrollTop),a=axAddElem("u",{style:`left: ${i}px;top: ${s}px; width: ${n}px;height: ${n}px`});t.appendChild(a),setTimeout(()=>{a.parentNode.removeChild(a)},800)}),!1)}window.axDodge=(e,t)=>{let i=(e=axIdToDom(e)).querySelector("input,textarea");return t?(e.classList.add("ax-active"),i.value=t):(e.classList.remove("ax-active"),i.value=t),e};const m=document.querySelectorAll(".ax-dodge");for(let e=0;e<m.length;e++){let t=m[e],i=t.querySelector("input,textarea"),s=i.getAttribute("placeholder"),n=document.createElement("label");s?(n.innerHTML=s,i.setAttribute("placeholder","")):n.innerHTML="璇疯緭鍏�...",t.appendChild(n),i.onfocus=function(){t.classList.add("ax-active")},i.onblur=function(){this.value?t.classList.add("ax-active"):t.classList.remove("ax-active")},i.classList.contains("ax-lg")&&t.classList.add("ax-lg"),n.onclick=function(){i.focus()}}const f=document.querySelectorAll(".ax-file");for(let e=0;e<f.length;e++){let t=f[e],i=t.getAttribute("data-text"),s=t.getAttribute("data-placeholder"),n=t.querySelector("input[type=file]");i||t.classList.add("ax-simple"),n.classList.contains("ax-xs")?t.classList.add("ax-xs"):n.classList.contains("ax-sm")?t.classList.add("ax-sm"):n.classList.contains("ax-lg")&&t.classList.add("ax-lg"),n.addEventListener("change",(function(){t.classList.add("ax-active"),t.setAttribute("data-placeholder",this.value.replace(/.*(\/|\\)/,"")),this.value||(t.setAttribute("data-placeholder",s),t.classList.remove("ax-active"))}),!1),n.onfocus=()=>{t.classList.add("ax-focus")},n.onblur=()=>{t.classList.remove("ax-focus")}}window.addEventListener("scroll",()=>{if(document.documentElement.scrollTop>=400)for(let e=0;e<h.length;e++)h[e].querySelector("a")&&h[e].querySelector("a").classList.add("ax-show");else for(let e=0;e<h.length;e++)h[e].querySelector("a")&&h[e].querySelector("a").classList.remove("ax-show");for(let e=0;e<u.length;e++)axOffset(u[e]).top<document.documentElement.scrollTop+window.innerHeight&&(u[e].classList.remove("ax-hide"),u[e].classList.add("ax-show"))},!1)})();
\ No newline at end of file
diff --git a/fzzy-igdss-web/src/main/resources/static/css/style.css b/fzzy-igdss-web/src/main/resources/static/css/style.css
index d52deed..e6d43fe 100644
--- a/fzzy-igdss-web/src/main/resources/static/css/style.css
+++ b/fzzy-igdss-web/src/main/resources/static/css/style.css
@@ -7043,7 +7043,7 @@
 	height: calc(100% - 110px);
 	overflow: hidden;
 	width: 100%;
-	height: 100%;
+/*	height: 100%;*/
 	left: 0px;
 	position: absolute;
 	top: 0px;
@@ -7057,7 +7057,8 @@
 }
 
 .navbar-minimalize>.fa,.nav.navbar-right>li>a, .nav.navbar-left>li>a {
-    color: #5a5e66;
+    /* color: #5a5e66;*/
+    color: #fff;
 }
 
 .navbar, .skin-blue .navbar {
diff --git a/fzzy-igdss-web/src/main/resources/static/login/css/layui.css b/fzzy-igdss-web/src/main/resources/static/login/css/layui.css
new file mode 100644
index 0000000..f2a4cf3
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/css/layui.css
@@ -0,0 +1 @@
+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,h4{font-weight:700}h5,h6{font-weight:500;font-size:100%}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;border-bottom:1px solid #eee;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-clear-space{word-spacing:-5px}.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=282);src:url(../font/iconfont.eot?v=282#iefix) format('embedded-opentype'),url(../font/iconfont.woff2?v=282) format('woff2'),url(../font/iconfont.woff?v=282) format('woff'),url(../font/iconfont.ttf?v=282) format('truetype'),url(../font/iconfont.svg?v=282#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-leaf:before{content:"\e701"}.layui-icon-folder:before{content:"\eabe"}.layui-icon-folder-open:before{content:"\eac1"}.layui-icon-gitee:before{content:"\e69b"}.layui-icon-github:before{content:"\e6a7"}.layui-icon-disabled:before{content:"\e6cc"}.layui-icon-moon:before{content:"\e6c2"}.layui-icon-error:before{content:"\e693"}.layui-icon-success:before{content:"\e697"}.layui-icon-question:before{content:"\e699"}.layui-icon-lock:before{content:"\e69a"}.layui-icon-eye:before{content:"\e695"}.layui-icon-eye-invisible:before{content:"\e696"}.layui-icon-backspace:before{content:"\e694"}.layui-icon-tips-fill:before{content:"\eb2e"}.layui-icon-test:before{content:"\e692"}.layui-icon-clear:before{content:"\e788"}.layui-icon-heart-fill:before{content:"\e68f"}.layui-icon-light:before{content:"\e748"}.layui-icon-music:before{content:"\e690"}.layui-icon-time:before{content:"\e68d"}.layui-icon-ie:before{content:"\e7bb"}.layui-icon-firefox:before{content:"\e686"}.layui-icon-at:before{content:"\e687"}.layui-icon-bluetooth:before{content:"\e689"}.layui-icon-chrome:before{content:"\e68a"}.layui-icon-edge:before{content:"\e68b"}.layui-icon-heart:before{content:"\e68c"}.layui-icon-key:before{content:"\e683"}.layui-icon-android:before{content:"\e684"}.layui-icon-mike:before{content:"\e6dc"}.layui-icon-mute:before{content:"\e685"}.layui-icon-gift:before{content:"\e627"}.layui-icon-windows:before{content:"\e67f"}.layui-icon-ios:before{content:"\e680"}.layui-icon-logout:before{content:"\e682"}.layui-icon-wifi:before{content:"\e7e0"}.layui-icon-rss:before{content:"\e808"}.layui-icon-email:before{content:"\e618"}.layui-icon-reduce-circle:before{content:"\e616"}.layui-icon-transfer:before{content:"\e691"}.layui-icon-service:before{content:"\e626"}.layui-icon-addition:before{content:"\e624"}.layui-icon-subtraction:before{content:"\e67e"}.layui-icon-slider:before{content:"\e714"}.layui-icon-print:before{content:"\e66d"}.layui-icon-export:before{content:"\e67d"}.layui-icon-cols:before{content:"\e610"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-screen-restore:before{content:"\e758"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-username:before{content:"\e66f"}.layui-icon-password:before{content:"\e673"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-auz:before{content:"\e672"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-tips:before{content:"\e702"}.layui-icon-note:before{content:"\e66e"}.layui-icon-senior:before{content:"\e674"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-notice:before{content:"\e667"}.layui-icon-console:before{content:"\e665"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-set:before{content:"\e716"}.layui-icon-template:before{content:"\e663"}.layui-icon-app:before{content:"\e653"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-home:before{content:"\e68e"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-more:before{content:"\e65f"}.layui-icon-camera:before{content:"\e660"}.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-read:before{content:"\e705"}.layui-icon-location:before{content:"\e715"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-return:before{content:"\e65c"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-fire:before{content:"\e756"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-cart:before{content:"\e657"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-next:before{content:"\e65b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-user:before{content:"\e770"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-component:before{content:"\e857"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-pause:before{content:"\e651"}.layui-icon-play:before{content:"\e652"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-voice:before{content:"\e688"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-link:before{content:"\e64c"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-share:before{content:"\e641"}.layui-icon-edit:before{content:"\e642"}.layui-icon-delete:before{content:"\e640"}.layui-icon-engine:before{content:"\e628"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-table:before{content:"\e62d"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-water:before{content:"\e636"}.layui-icon-date:before{content:"\e637"}.layui-icon-layer:before{content:"\e638"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-form:before{content:"\e63c"}.layui-icon-file:before{content:"\e621"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-404:before{content:"\e61c"}.layui-icon-about:before{content:"\e60b"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-down:before{content:"\e61a"}.layui-icon-up:before{content:"\e619"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-search:before{content:"\e615"}.layui-icon-friends:before{content:"\e612"}.layui-icon-group:before{content:"\e613"}.layui-icon-reply-fill:before{content:"\e611"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-log:before{content:"\e60e"}.layui-icon-list:before{content:"\e60a"}.layui-icon-release:before{content:"\e609"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-ok:before{content:"\e605"}.layui-icon-help:before{content:"\e607"}.layui-icon-chat:before{content:"\e606"}.layui-icon-top:before{content:"\e604"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-star:before{content:"\e600"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-ok-circle:before{content:"\1005"}.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:#23292e}.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:#16baaa;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-xl1,.layui-col-xl10,.layui-col-xl11,.layui-col-xl12,.layui-col-xl2,.layui-col-xl3,.layui-col-xl4,.layui-col-xl5,.layui-col-xl6,.layui-col-xl7,.layui-col-xl8,.layui-col-xl9,.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%}}@media screen and (min-width:1400px){.layui-container{width:1330px}.layui-hide-xl{display:none!important}.layui-show-xl-block{display:block!important}.layui-show-xl-inline{display:inline!important}.layui-show-xl-inline-block{display:inline-block!important}.layui-col-xl1,.layui-col-xl10,.layui-col-xl11,.layui-col-xl12,.layui-col-xl2,.layui-col-xl3,.layui-col-xl4,.layui-col-xl5,.layui-col-xl6,.layui-col-xl7,.layui-col-xl8,.layui-col-xl9{float:left}.layui-col-xl1{width:8.33333333%}.layui-col-xl2{width:16.66666667%}.layui-col-xl3{width:25%}.layui-col-xl4{width:33.33333333%}.layui-col-xl5{width:41.66666667%}.layui-col-xl6{width:50%}.layui-col-xl7{width:58.33333333%}.layui-col-xl8{width:66.66666667%}.layui-col-xl9{width:75%}.layui-col-xl10{width:83.33333333%}.layui-col-xl11{width:91.66666667%}.layui-col-xl12{width:100%}.layui-col-xl-offset1{margin-left:8.33333333%}.layui-col-xl-offset2{margin-left:16.66666667%}.layui-col-xl-offset3{margin-left:25%}.layui-col-xl-offset4{margin-left:33.33333333%}.layui-col-xl-offset5{margin-left:41.66666667%}.layui-col-xl-offset6{margin-left:50%}.layui-col-xl-offset7{margin-left:58.33333333%}.layui-col-xl-offset8{margin-left:66.66666667%}.layui-col-xl-offset9{margin-left:75%}.layui-col-xl-offset10{margin-left:83.33333333%}.layui-col-xl-offset11{margin-left:91.66666667%}.layui-col-xl-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-col-space32{margin:-16px}.layui-col-space32>*{padding:16px}.layui-padding-1{padding:4px!important}.layui-padding-2{padding:8px!important}.layui-padding-3{padding:16px!important}.layui-padding-4{padding:32px!important}.layui-padding-5{padding:48px!important}.layui-margin-1{margin:4px!important}.layui-margin-2{margin:8px!important}.layui-margin-3{margin:16px!important}.layui-margin-4{margin:32px!important}.layui-margin-5{margin:48px!important}.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.8;border-left:5px solid #16b777;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}.layui-field-title{margin:16px 0;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:#16b777;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 #f8f8f8;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-scrollbar-hide{overflow:hidden!important}.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:#16baaa!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-purple{background-color:#a233c6!important;color:#fff!important}.layui-bg-black{background-color:#2f363c!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-input-split,.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:#16baaa!important;color:#16baaa!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-purple{border-width:1px;border-style:solid;border-color:#a233c6!important;color:#a233c6!important}.layui-border-black{border-width:1px;border-style:solid;border-color:#2f363c!important;color:#2f363c!important}hr.layui-border-black,hr.layui-border-blue,hr.layui-border-cyan,hr.layui-border-green,hr.layui-border-orange,hr.layui-border-purple,hr.layui-border-red{border-width:0 0 1px}.layui-timeline-item:before{background-color:#eee}.layui-text{line-height:1.8;font-size:14px}.layui-text h1,.layui-text h2,.layui-text h3,.layui-text h4,.layui-text h5,.layui-text h6{color:#3a3a3a}.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 ol,.layui-text ul{padding-left: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 a:not(.layui-btn){color:#01aaed}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text blockquote:not(.layui-elem-quote){padding:5px 15px;border-left:5px solid #eee}.layui-text pre>code:not(.layui-code){padding:15px;font-family:"Courier New",Consolas,"Lucida Console"}.layui-font-12{font-size:12px!important}.layui-font-13{font-size:13px!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-22{font-size:22px!important}.layui-font-24{font-size:24px!important}.layui-font-26{font-size:26px!important}.layui-font-28{font-size:28px!important}.layui-font-30{font-size:30px!important}.layui-font-32{font-size:32px!important}.layui-font-red{color:#ff5722!important}.layui-font-orange{color:#ffb800!important}.layui-font-green{color:#16baaa!important}.layui-font-cyan{color:#2f4056!important}.layui-font-blue{color:#01aaed!important}.layui-font-purple{color:#a233c6!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:#16baaa;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{word-spacing:-5px}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px;word-spacing:normal}.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:#16baaa;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:#16b777}.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:#16baaa}.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:#d2d2d2!important}.layui-input:focus,.layui-textarea:focus{border-color:#16b777!important;box-shadow:0 0 0 3px rgba(22,183,119,.08)}.layui-textarea{position:relative;min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-input[disabled],.layui-textarea[disabled]{background-color:#fafafa}.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{position:relative;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;box-shadow:0 0 0 3px rgba(255,87,34,.08)}.layui-input-prefix,.layui-input-split,.layui-input-suffix,.layui-input-suffix .layui-input-affix{position:absolute;right:0;top:0;padding:0 10px;width:35px;height:100%;text-align:center;transition:all .3s;box-sizing:border-box}.layui-input-prefix{left:0;border-radius:2px 0 0 2px}.layui-input-suffix{right:0;border-radius:0 2px 2px 0}.layui-input-split{border-width:1px;border-style:solid}.layui-input-prefix .layui-icon,.layui-input-split .layui-icon,.layui-input-suffix .layui-icon{position:relative;font-size:16px;color:#5f5f5f;transition:all .3s}.layui-input-group{position:relative;display:table;box-sizing:border-box}.layui-input-group>*{display:table-cell;vertical-align:middle;position:relative}.layui-input-group .layui-input{padding-right:15px}.layui-input-group>.layui-input-prefix{width:auto;border-right:0}.layui-input-group>.layui-input-suffix{width:auto;border-left:0}.layui-input-group .layui-input-split{white-space:nowrap}.layui-input-wrap{position:relative;line-height:38px}.layui-input-wrap .layui-input{padding-right:35px}.layui-input-wrap .layui-input::-ms-clear,.layui-input-wrap .layui-input::-ms-reveal{display:none}.layui-input-wrap .layui-input-prefix+.layui-input,.layui-input-wrap .layui-input-prefix~* .layui-input{padding-left:35px}.layui-input-wrap .layui-input-split+.layui-input,.layui-input-wrap .layui-input-split~* .layui-input{padding-left:45px}.layui-input-wrap .layui-input-prefix~.layui-form-select{position:static}.layui-input-wrap .layui-input-prefix,.layui-input-wrap .layui-input-split,.layui-input-wrap .layui-input-suffix{pointer-events:none}.layui-input-wrap .layui-input:hover+.layui-input-split{border-color:#d2d2d2}.layui-input-wrap .layui-input:focus+.layui-input-split{border-color:#16b777}.layui-input-wrap .layui-input.layui-form-danger:focus+.layui-input-split{border-color:#ff5722}.layui-input-wrap .layui-input-prefix.layui-input-split{border-width:0;border-right-width:1px}.layui-input-wrap .layui-input-suffix.layui-input-split{border-width:0;border-left-width:1px}.layui-input-affix{line-height:38px}.layui-input-suffix .layui-input-affix{right:auto;left:-35px}.layui-input-affix .layui-icon{color:rgba(0,0,0,.8);pointer-events:auto!important;cursor:pointer}.layui-input-affix .layui-icon-clear{color:rgba(0,0,0,.3)}.layui-input-affix .layui-icon:hover{color:rgba(0,0,0,.6)}.layui-input-wrap .layui-input-number{width:24px;padding:0}.layui-input-wrap .layui-input-number .layui-icon{position:absolute;right:0;width:100%;height:50%;line-height:normal;font-size:12px}.layui-input-wrap .layui-input-number .layui-icon:before{position:absolute;left:50%;top:50%;margin-top:-6px;margin-left:-6px}.layui-input-wrap .layui-input-number .layui-icon-up{top:0;border-bottom:1px solid #eee}.layui-input-wrap .layui-input-number .layui-icon-down{bottom:0}.layui-input-wrap .layui-input-number .layui-icon:hover{font-weight:700}.layui-input-wrap .layui-input[type=number]::-webkit-inner-spin-button,.layui-input-wrap .layui-input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none!important}.layui-input-wrap .layui-input[type=number]{-moz-appearance:textfield}.layui-input-wrap .layui-input[type=number].layui-input-number-out-of-range{color:#ff5722}.layui-form-select{position:relative;color:#5f5f5f}.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:#f8f8f8;-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:#f8f8f8;color:#16b777;font-weight:700}.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>div{padding:0 11px;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>div>.layui-icon{line-height:normal}.layui-form-checkbox:hover>div{background-color:#c2c2c2}.layui-form-checkbox>i{position:absolute;right:0;top:0;width:30px;height:100%;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;color:rgba(255,255,255,0);font-size:20px;text-align:center;box-sizing:border-box}.layui-form-checkbox:hover>i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#16b777}.layui-form-checked:hover>div,.layui-form-checked>div{background-color:#16b777}.layui-form-checked:hover>i,.layui-form-checked>i{color:#16b777}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox.layui-checkbox-disabled>div{background-color:#eee!important}.layui-form [lay-checkbox]{display:none}.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:24px;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary]>div{margin-top:-1px;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:14px;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:#16b777;color:#fff}.layui-form-checked[lay-skin=primary]>i{border-color:#16b777!important;background-color:#16b777;color:#fff}.layui-checkbox-disabled[lay-skin=primary]>div{background:0 0!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-checkbox[lay-skin=primary]>.layui-icon-indeterminate{border-color:#16b777}.layui-form-checkbox[lay-skin=primary]>.layui-icon-indeterminate:before{content:'';display:inline-block;vertical-align:middle;position:relative;width:50%;height:1px;margin:-1px auto 0;background-color:#16b777}.layui-form-switch{position:relative;display:inline-block;vertical-align:middle;height:24px;line-height:22px;min-width:44px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;box-sizing:border-box;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>div{position:relative;top:0;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:#16b777;background-color:#16b777}.layui-form-onswitch>i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch>div{margin-left:0;margin-right:21px;color:#fff!important}.layui-checkbox-disabled{border-color:#eee!important}.layui-checkbox-disabled>div{color:#c2c2c2!important}.layui-checkbox-disabled>i{border-color:#eee!important}.layui-checkbox-disabled:hover>i{color:#fff!important}.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:#16b777}.layui-radio-disabled>i{color:#eee!important}.layui-radio-disabled>*{color:#c2c2c2!important}.layui-form [lay-radio]{display:none}.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-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[data-page]{color:#333}.layui-laypage a{text-decoration:none!important;cursor:pointer}.layui-laypage a:hover{color:#16baaa}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.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:#16baaa}.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:#16baaa!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;clear:both}.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:600}.layui-table-mend{background-color:#fff}.layui-table-click,.layui-table-hover,.layui-table[lay-even] tbody tr:nth-child(even){background-color:#f8f8f8}.layui-table-checked{background-color:#dbfbf0}.layui-table-checked.layui-table-click,.layui-table-checked.layui-table-hover{background-color:#abf8dd}.layui-table td,.layui-table th,.layui-table-col-set,.layui-table-fixed-r,.layui-table-grid-down,.layui-table-header,.layui-table-mend,.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-left:11px;padding-right:11px}.layui-table[lay-data],.layui-table[lay-options]{display:none}.layui-table-box{position:relative;overflow:hidden}.layui-table-view{clear:both}.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 [lay-event],.layui-table-view .layui-table th.layui-unselect .layui-table-cell span{cursor:pointer}.layui-table-view .layui-table td,.layui-table-view .layui-table th span{cursor:default}.layui-table-view .layui-table td[data-edit]{cursor:text}.layui-table-view .layui-table td[data-edit]:hover:after{position:absolute;left:0;top:0;width:100%;height:100%;box-sizing:border-box;border:1px solid #16b777;pointer-events:none;content:""}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px;line-height:16px}.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:199}.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;z-index:399;padding:5px 0!important;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;margin:0!important;line-height:30px;list-style-type:none!important;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:#f8f8f8}.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-form-checkbox[lay-skin=primary]>div{padding-left:24px}.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;border-width:0;border-left-width:1px}.layui-table-tool{position:relative;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{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:189;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:#16b777!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}.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:24px;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;font-size:14px}.layui-table-grid-down:hover{background-color:#fbfbfb}.layui-table-expanded{height:95px}.layui-table-expanded .layui-table-cell,.layui-table-view .layui-table[lay-size=lg] .layui-table-expanded .layui-table-cell,.layui-table-view .layui-table[lay-size=sm] .layui-table-expanded .layui-table-cell{height:auto;max-height:94px;white-space:normal;text-overflow:clip}.layui-table-cell-c{position:absolute;bottom:-10px;right:50%;margin-right:-9px;width:20px;height:20px;line-height:18px;cursor:pointer;text-align:center;background-color:#fff;border:1px solid #eee;border-radius:50%;z-index:1000;transition:.3s all;font-size:14px}.layui-table-cell-c:hover{border-color:#16b777}.layui-table-expanded td:hover .layui-table-cell{overflow:auto}.layui-table-main>.layui-table>tbody>tr:last-child>td>.layui-table-cell-c{bottom:0}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-table-tree-nodeIcon{max-width:20px}.layui-table-tree-nodeIcon>*{width:100%}.layui-table-tree-flexIcon,.layui-table-tree-nodeIcon{margin-right:2px}.layui-table-tree-flexIcon{cursor:pointer}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-list{margin:11px 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:#16baaa}.layui-upload-drag[lay-over]{border-color:#16baaa}.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,.layui-menu-body-title a{padding:5px 15px;color:initial}.layui-menu li{position:relative;margin:0 0 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:#f8f8f8}.layui-menu li.layui-disabled,.layui-menu li.layui-disabled *{background:0 0!important;color:#d2d2d2!important;cursor:not-allowed!important}.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:38px}.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>.layui-menu-body-title>.layui-icon-down{transform:rotate(180deg)}.layui-menu .layui-menu-item-up>.layui-menu-body-title>.layui-icon-up{transform:rotate(-180deg)}.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:#f8f8f8!important;color:#16b777}.layui-menu .layui-menu-item-checked a,.layui-menu .layui-menu-item-checked2 a{color:#16b777}.layui-menu .layui-menu-item-checked:after{position:absolute;right:-1px;top:0;bottom:0;border-right:3px solid #16b777;content:""}.layui-menu-body-title{position:relative;margin:-5px -15px;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:15px;top:50%;margin-top:-6px;line-height:normal;font-size:14px;transition:all .2s;-webkit-transition:all .2s}.layui-menu-body-title>.layui-icon:hover{transition:all .3s}.layui-menu-body-title>.layui-icon-right{right:14px}.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:#16b777}.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-dropdown-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px");position:fixed;_position:absolute;pointer-events:auto}.layui-nav{position:relative;padding:0 15px;background-color:#2f363c;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;margin-top:0;list-style:none;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:3px;background-color:#16b777;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;text-decoration:none}.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;box-sizing:border-box}.layui-nav .layui-nav-child a{color:#5f5f5f;color:rgba(0,0,0,.8)}.layui-nav .layui-nav-child a:hover{background-color:#f8f8f8;color:rgba(0,0,0,.8)}.layui-nav-child dd{margin:1px 0;position:relative}.layui-nav-child dd.layui-this{background-color:#f8f8f8;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.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:#16baaa;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:#16baaa}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;background:0 0;background-color:rgba(0,0,0,.3);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 a:hover{background:0 0;color:#fff}.layui-nav-itemed>.layui-nav-child,.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-nav-tree.layui-bg-gray a,.layui-nav.layui-bg-gray .layui-nav-item a{color:#373737;color:rgba(0,0,0,.8)}.layui-nav-tree.layui-bg-gray .layui-nav-itemed>a{color:#000!important}.layui-nav.layui-bg-gray .layui-this a{color:#16b777}.layui-nav-tree.layui-bg-gray .layui-nav-child{padding-left:11px;background:0 0}.layui-nav-tree.layui-bg-gray .layui-nav-child dd.layui-this,.layui-nav-tree.layui-bg-gray .layui-nav-child dd.layui-this a,.layui-nav-tree.layui-bg-gray .layui-this,.layui-nav-tree.layui-bg-gray .layui-this>a{background:0 0!important;color:#16b777!important;font-weight:700}.layui-nav-tree.layui-bg-gray .layui-nav-bar{background-color:#16b777}.layui-breadcrumb{visibility:hidden;font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#16b777!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 .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 .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 .layui-tab-title li{position:relative;line-height:40px;min-width:65px;margin:0;padding:0 15px;text-align:center;cursor:pointer}.layui-tab .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:#16baaa}.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 #16b777}.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:#16b777}.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:#16b777;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 ul 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 ul li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind ul 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:16px;bottom:16px;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{display:block;position:relative;padding:15px;line-height:20px;border:1px solid #eee;border-left-width:6px;background-color:#fff;color:#333;font-family:"Courier New",Consolas,"Lucida Console";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 11px;border-bottom-width:1px}.layui-transfer-search{position:relative;padding:11px;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%;line-height:normal;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:#16b777;border-color:#16b777;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;margin-top:0!important;padding:0 11px;list-style-type:none!important}.layui-transfer-data li:hover{background-color:#f8f8f8;transition:.5s all}.layui-transfer-data .layui-none{padding:15px 11px;text-align:center;color:#999}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:11px 6px 11px 0;font-size:0}.layui-rate li{margin-top:0!important}.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,.layui-rate-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:38px;height:38px;border:1px solid #eee;padding:5px;border-radius:2px;line-height:24px;display:inline-block;cursor:pointer;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-colorpicker:hover{border-color:#d2d2d2}.layui-colorpicker.layui-colorpicker-lg{width:44px;height:44px;line-height:30px}.layui-colorpicker.layui-colorpicker-sm{width:30px;height:30px;line-height:20px;padding:3px}.layui-colorpicker.layui-colorpicker-xs{width:22px;height:22px;line-height:16px;padding:1px}.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;-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;box-sizing:border-box}.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;padding-right:21px}.layui-slider-input-btn i:hover{color:#16baaa}.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:26px;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:14px;line-height:12px;width:14px;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;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}html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-wrap{font-size:13px;font-family:"Courier New",Consolas,"Lucida Console"}.layui-code-view{display:block;position:relative;padding:0!important;border:1px solid #eee;border-left-width:6px;background-color:#fff;color:#333}.layui-code-view pre{margin:0!important}.layui-code-header{position:relative;z-index:3;padding:0 11px;height:40px;line-height:40px;border-bottom:1px solid #eee;background-color:#fafafa;font-size:12px}.layui-code-header>.layui-code-header-about{position:absolute;right:11px;top:0;color:#b7b7b7}.layui-code-header-about>a{padding-left:10px}.layui-code-wrap{position:relative;display:block;z-index:1;margin:0!important;padding:11px 0!important;overflow-x:hidden;overflow-y:auto}.layui-code-line{position:relative;line-height:19px;margin:0!important}.layui-code-line-number{position:absolute;left:0;top:0;padding:0 8px;min-width:45px;height:100%;text-align:right;user-select:none;white-space:nowrap;overflow:hidden}.layui-code-line-content{padding:0 11px;word-wrap:break-word;white-space:pre-wrap}.layui-code-ln-mode>.layui-code-wrap>.layui-code-line{padding-left:45px}.layui-code-ln-side{position:absolute;left:0;top:0;bottom:0;z-index:0;width:45px;border-right:1px solid #eee;border-color:rgb(126 122 122 / 15%);background-color:#fafafa;pointer-events:none}.layui-code-nowrap>.layui-code-wrap{overflow:auto}.layui-code-nowrap>.layui-code-wrap>.layui-code-line>.layui-code-line-content{white-space:pre;word-wrap:normal}.layui-code-nowrap>.layui-code-ln-side{border-right-width:0!important;background:0 0!important}.layui-code-fixbar{position:absolute;top:8px;right:11px;padding-right:45px;z-index:5}.layui-code-fixbar>span{position:absolute;right:0;top:0;padding:0 8px;color:#777;transition:all .3s}.layui-code-fixbar>span:hover{color:#16b777}.layui-code-copy{display:none;cursor:pointer}.layui-code-preview>.layui-code-view>.layui-code-fixbar .layui-code-copy{display:none!important}.layui-code-view:hover>.layui-code-fixbar .layui-code-copy{display:block}.layui-code-view:hover>.layui-code-fixbar .layui-code-lang-marker{display:none}.layui-code-theme-dark,.layui-code-theme-dark>.layui-code-header{border-color:rgb(126 122 122 / 15%);background-color:#1f1f1f}.layui-code-theme-dark{border-width:1px;color:#ccc}.layui-code-theme-dark>.layui-code-ln-side{border-right-color:#2a2a2a;background:0 0;color:#6e7681}.layui-code textarea{display:none}.layui-code-preview>.layui-code,.layui-code-preview>.layui-code-view{margin:0}.layui-code-preview>.layui-tab{position:relative;z-index:1;margin-bottom:0}.layui-code-preview>.layui-tab>.layui-tab-title{border-width:0}.layui-code-preview .layui-code-item{display:none}.layui-code-item-preview{position:relative;padding:16px}.layui-code-item-preview>iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:none}.layui-code-tools{position:absolute;right:11px;top:8px;line-height:normal}.layui-code-tools>i{display:inline-block;margin-left:6px;padding:3px;cursor:pointer}.layui-code-tools>i.layui-icon-file-b{color:#999}.layui-code-tools>i:hover{color:#16b777}.layui-code-full{position:fixed;left:0;top:0;z-index:1111111;width:100%;height:100%;background-color:#fff}.layui-code-full .layui-code-item{width:100%!important;border-width:0!important;border-top-width:1px!important}.layui-code-full .layui-code-item,.layui-code-full .layui-code-view,.layui-code-full .layui-code-wrap{height:calc(100vh - 51px)!important;box-sizing:border-box}.layui-code-full .layui-code-item-preview{overflow:auto}.layui-code-view.layui-code-hl{line-height:20px!important;border-left-width:1px}.layui-code-view.layui-code-hl>.layui-code-ln-side{background-color:transparent}.layui-code-theme-dark.layui-code-hl,.layui-code-theme-dark.layui-code-hl>.layui-code-ln-side{border-color:rgb(126 122 122 / 15%)}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:99999999;margin:5px 0;border-radius:2px;font-size:14px;line-height:normal;-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}.layui-laydate-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px");position:fixed;_position:absolute;pointer-events:auto}@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:0;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:#16b777}.layui-laydate-footer span.layui-laydate-preview{cursor:default;border-color:transparent!important}.layui-laydate-footer span.layui-laydate-preview:hover{color:#777}.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;border-radius:0}.laydate-footer-btns span:first-child{border-radius:2px 0 0 2px}.laydate-footer-btns span:last-child{border-radius:0 2px 2px 0}.layui-laydate-shortcut{width:80px;padding:6px 0;display:inline-block;vertical-align:top;overflow:auto;max-height:276px;text-align:center}.layui-laydate-shortcut+.layui-laydate-main{display:inline-block;border-left:1px solid #e2e2e2}.layui-laydate-shortcut>li{padding:5px 8px;cursor:pointer;line-height:18px}.layui-laydate .layui-laydate-list{position:absolute;left:0;top:0;width:100%;height:100%;padding:10px;box-sizing:border-box;background-color:#fff}.layui-laydate .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;list-style:none}.layui-laydate .laydate-month-list>li{width:25%;margin:17px 0}.laydate-time-list{display:table}.layui-laydate .laydate-time-list>li{display:table-cell;height:100%;margin:0;line-height:normal;cursor:default}.layui-laydate .laydate-time-list p{position:relative;top:-4px;margin:0;line-height:29px}.layui-laydate .laydate-time-list ol{height:181px;overflow:hidden}.layui-laydate .laydate-time-list>li:hover ol{overflow-y:auto}.layui-laydate .laydate-time-list ol li{width:130%;padding-left:33px;height:30px;line-height:30px;text-align:left;cursor:pointer}.layui-laydate .laydate-time-list-hide-1 ol li{padding-left:53px}.layui-laydate .laydate-time-list-hide-2 ol li{padding-left:117px}.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;max-width:50%}.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-range.layui-laydate-linkage .laydate-main-list-0 .laydate-next-m,.layui-laydate-range.layui-laydate-linkage .laydate-main-list-0 .laydate-next-y,.layui-laydate-range.layui-laydate-linkage .laydate-main-list-1 .laydate-prev-m,.layui-laydate-range.layui-laydate-linkage .laydate-main-list-1 .laydate-prev-y{display:none}.layui-laydate,.layui-laydate-hint{border:1px solid #d2d2d2;box-shadow:0 2px 4px rgba(0,0,0,.12);background-color:#fff;color:#777}.layui-laydate-header{border-bottom:1px solid #e2e2e2}.layui-laydate-header i:hover,.layui-laydate-header span:hover{color:#16b777}.layui-laydate-content{border-top:none 0;border-bottom:none 0}.layui-laydate-content th{color:#333}.layui-laydate-content td{color:#777}.layui-laydate-content td.laydate-day-now{color:#16b777}.layui-laydate-content td.laydate-day-now:after{content:'';position:absolute;width:100%;height:30px;left:0;top:0;border:1px solid #16b777;box-sizing:border-box}.layui-laydate-linkage .layui-laydate-content td.laydate-selected>div{background-color:#00f7de}.layui-laydate-linkage .laydate-selected:hover>div{background-color:#00f7de!important}.layui-laydate-content td.laydate-selected:after,.layui-laydate-content td:hover:after{content:none}.layui-laydate-content td>div:hover,.layui-laydate-list li:hover,.layui-laydate-shortcut>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}.layui-laydate-linkage .laydate-selected.laydate-day-next>div,.layui-laydate-linkage .laydate-selected.laydate-day-prev>div{background-color:#f8f8f8!important}.layui-laydate-footer{border-top:1px solid #e2e2e2}.layui-laydate-hint{color:#ff5722}.laydate-day-mark::after{background-color:#16b777}.layui-laydate-content td.layui-this .laydate-day-mark::after{display:none}.layui-laydate-footer span[lay-type=date]{color:#16b777}.layui-laydate .layui-this,.layui-laydate .layui-this>div{background-color:#16baaa!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}.layui-laydate-content td>div{padding:7px 0;height:100%}.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:#16baaa}.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}.layui-laydate-linkage.laydate-theme-grid .laydate-selected,.layui-laydate-linkage.laydate-theme-grid .laydate-selected:hover{background-color:#f2f2f2!important;color:#16baaa!important}.layui-laydate-linkage.laydate-theme-grid .laydate-selected.laydate-day-next,.layui-laydate-linkage.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}.laydate-theme-grid .layui-laydate-content td>div{height:29px;margin-top:-1px}.laydate-theme-circle .layui-laydate-content td.layui-this>div,.laydate-theme-circle .layui-laydate-content td>div{width:28px;height:28px;line-height:28px;border-radius:14px;margin:0 4px;padding:0}.layui-laydate.laydate-theme-circle .layui-laydate-content table td.layui-this{background-color:transparent!important}.laydate-theme-grid.laydate-theme-circle .layui-laydate-content td>div{margin:0 3.5px}.laydate-theme-fullpanel .layui-laydate-main{width:526px}.laydate-theme-fullpanel .layui-laydate-list{width:252px;left:272px}.laydate-theme-fullpanel .laydate-set-ym span{display:none}.laydate-theme-fullpanel .laydate-time-show .laydate-set-ym span[lay-type=month],.laydate-theme-fullpanel .laydate-time-show .laydate-set-ym span[lay-type=year],.laydate-theme-fullpanel .laydate-time-show .layui-laydate-header .layui-icon{display:inline-block!important}.laydate-theme-fullpanel .laydate-btns-time{display:none}.laydate-theme-fullpanel .laydate-time-list-hide-1 ol li{padding-left:49px}.laydate-theme-fullpanel .laydate-time-list-hide-2 ol li{padding-left:107px}html #layuicss-layer{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{opacity:0;transition:opacity .35s cubic-bezier(.34,.69,.1,1);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-btn a,.layui-layer-setwin span{display:inline-block;vertical-align:middle;*display:inline;*zoom:1}.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}}@keyframes layer-slide-down{from{transform:translate3d(0,-100%,0)}to{transform:translate3d(0,0,0)}}@keyframes layer-slide-down-out{from{transform:translate3d(0,0,0)}to{transform:translate3d(0,-100%,0)}}.layer-anim-slide-down{animation-name:layer-slide-down}.layer-anim-slide-down-out{animation-name:layer-slide-down-out}@keyframes layer-slide-left{from{transform:translate3d(100%,0,0)}to{transform:translate3d(0,0,0)}}@keyframes layer-slide-left-out{from{transform:translate3d(0,0,0)}to{transform:translate3d(100%,0,0)}}.layer-anim-slide-left{animation-name:layer-slide-left}.layer-anim-slide-left-out{animation-name:layer-slide-left-out}@keyframes layer-slide-up{from{transform:translate3d(0,100%,0)}to{transform:translate3d(0,0,0)}}@keyframes layer-slide-up-out{from{transform:translate3d(0,0,0)}to{transform:translate3d(0,100%,0)}}.layer-anim-slide-up{animation-name:layer-slide-up}.layer-anim-slide-up-out{animation-name:layer-slide-up-out}@keyframes layer-slide-right{from{transform:translate3d(-100%,0,0)}to{transform:translate3d(0,0,0)}}@keyframes layer-slide-right-out{from{transform:translate3d(0,0,0)}to{transform:translate3d(-100%,0,0)}}.layer-anim-slide-right{animation-name:layer-slide-right}.layer-anim-slide-right-out{animation-name:layer-slide-right-out}.layui-layer-title{padding:0 81px 0 16px;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:16px;font-size:0;line-height:initial}.layui-layer-setwin span{position:relative;width:16px;height:16px;line-height:18px;margin-left:10px;text-align:center;font-size:16px;cursor:pointer;color:#000;_overflow:hidden;box-sizing:border-box}.layui-layer-setwin .layui-layer-min:before{content:'';position:absolute;width:12px;border-bottom:1px solid #2e2d3c;left:50%;top:50%;margin:-.5px 0 0 -6px;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover:before{background-color:#2d93ca}.layui-layer-setwin .layui-layer-max:after,.layui-layer-setwin .layui-layer-max:before{content:'';position:absolute;left:50%;top:50%;z-index:1;width:9px;height:9px;margin:-5px 0 0 -5px;border:1px solid #2e2d3c}.layui-layer-setwin .layui-layer-max:hover:after,.layui-layer-setwin .layui-layer-max:hover:before{border-color:#2d93ca}.layui-layer-setwin .layui-layer-min:hover:before{background-color:#2d93ca}.layui-layer-setwin .layui-layer-maxmin:after,.layui-layer-setwin .layui-layer-maxmin:before{width:7px;height:7px;margin:-3px 0 0 -3px;background-color:#fff}.layui-layer-setwin .layui-layer-maxmin:after{z-index:0;margin:-5px 0 0 -1px}.layui-layer-setwin .layui-layer-close{cursor:pointer}.layui-layer-setwin .layui-layer-close:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2{position:absolute;right:-28px;top:-28px;color:#fff;background-color:#787878;padding:3px;border:3px solid;width:28px;height:28px;font-size:16px;font-weight:bolder;border-radius:50%;margin-left:0;*right:-18px;_display:none}.layui-layer-setwin .layui-layer-close2:hover{opacity:unset;background-color:#3888f6}.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:30px;line-height:30px;margin:5px 5px 0;padding:0 16px;border:1px solid #dedede;background-color:#fff;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none;box-sizing:border-box}.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:transparent;background-color:#1e9fff;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:240px}.layui-layer-dialog .layui-layer-content{position:relative;padding:16px;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-face{position:absolute;top:18px;left:16px;color:#959595;font-size:32px;_left:-40px}.layui-layer-dialog .layui-layer-content .layui-icon-tips{color:#f39b12}.layui-layer-dialog .layui-layer-content .layui-icon-success{color:#16b777}.layui-layer-dialog .layui-layer-content .layui-icon-error{top:19px;color:#ff5722}.layui-layer-dialog .layui-layer-content .layui-icon-question{color:#ffb800}.layui-layer-dialog .layui-layer-content .layui-icon-lock{color:#787878}.layui-layer-dialog .layui-layer-content .layui-icon-face-cry{color:#ff5722}.layui-layer-dialog .layui-layer-content .layui-icon-face-smile{color:#16b777}.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-close{color:#fff}.layui-layer-hui .layui-layer-content{padding:11px 24px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:18px 24px 18px 58px;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:76px;height:38px;line-height:38px;text-align:center}.layui-layer-loading-icon{font-size:38px;color:#959595}.layui-layer-loading2{text-align:center}.layui-layer-loading-2{position:relative;height:38px}.layui-layer-loading-2:after,.layui-layer-loading-2:before{content:'';position:absolute;left:50%;top:50%;width:38px;height:38px;margin:-19px 0 0 -19px;border-radius:50%;border:3px solid #d2d2d2;box-sizing:border-box}.layui-layer-loading-2:after{border-color:transparent;border-left-color:#1e9fff}.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 .layui-layer-title{background:#4476a7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;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-lan .layui-layer-setwin .layui-icon,.layui-layer-molv .layui-layer-setwin .layui-icon{color:#fff}.layui-layer-win10{border:1px solid #aaa;box-shadow:1px 1px 6px rgba(0,0,0,.3);border-radius:none}.layui-layer-win10 .layui-layer-title{height:32px;line-height:32px;padding-left:8px;border-bottom:none;font-size:12px}.layui-layer-win10 .layui-layer-setwin{right:0;top:0}.layui-layer-win10 .layui-layer-setwin span{margin-left:0;width:32px;height:32px;padding:8px}.layui-layer-win10.layui-layer-page .layui-layer-setwin span{width:38px}.layui-layer-win10 .layui-layer-setwin span:hover{background-color:#e5e5e5}.layui-layer-win10 .layui-layer-setwin span.layui-icon-close:hover{background-color:#e81123;color:#fff}.layui-layer-win10.layui-layer-dialog .layui-layer-content{padding:8px 16px 32px;color:#0033bc}.layui-layer-win10.layui-layer-dialog .layui-layer-padding{padding-top:18px;padding-left:58px}.layui-layer-win10 .layui-layer-btn{padding:5px 5px 10px;border-top:1px solid #dfdfdf;background-color:#f0f0f0}.layui-layer-win10 .layui-layer-btn a{height:20px;line-height:18px;background-color:#e1e1e1;border-color:#adadad;color:#000;font-size:12px;transition:all .3s}.layui-layer-win10 .layui-layer-btn a:hover{border-color:#2a8edd;background-color:#e5f1fb}.layui-layer-win10 .layui-layer-btn .layui-layer-btn0{border-color:#0078d7}.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:16px}.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;display:inline-block;vertical-align:top;border-left:1px solid transparent;border-right:1px solid transparent;min-width:80px;max-width:300px;padding:0 16px;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-color:#eee;border-right-color:#eee;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left-color:transparent}.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:visible;text-align:center}.layui-layer-photos .layer-layer-photos-main img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-photos-next,.layui-layer-photos-prev{position:fixed;top:50%;width:52px;height:52px;line-height:52px;margin-top:-26px;cursor:pointer;font-size:52px;color:#717171}.layui-layer-photos-prev{left:32px}.layui-layer-photos-next{right:32px}.layui-layer-photos-next:hover,.layui-layer-photos-prev:hover{color:#959595}.layui-layer-photos-toolbar{position:fixed;left:0;right:0;bottom:0;width:100%;height:52px;line-height:52px;background-color:#000\9;filter:Alpha(opacity=60);background-color:rgba(0,0,0,.32);color:#fff;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;font-size:0}.layui-layer-photos-toolbar>*{display:inline-block;vertical-align:top;padding:0 16px;font-size:12px;color:#fff;*display:inline;*zoom:1}.layui-layer-photos-toolbar *{font-size:12px}.layui-layer-photos-header{top:0;bottom:auto}.layui-layer-photos-header>span{cursor:pointer}.layui-layer-photos-header>span:hover{background-color:rgba(51,51,51,.32)}.layui-layer-photos-header .layui-icon{font-size:18px}.layui-layer-photos-footer>h3{max-width:65%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-layer-photos-footer a:hover{text-decoration:underline}.layui-layer-photos-footer em{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}
\ No newline at end of file
diff --git a/fzzy-igdss-web/src/main/resources/static/login/css/login.css b/fzzy-igdss-web/src/main/resources/static/login/css/login.css
new file mode 100644
index 0000000..0459419
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/css/login.css
@@ -0,0 +1,245 @@
+@charset "utf-8";
+
+/*-----------------
+  Author:xxxq
+  update:2020
+ -------------------*/
+body {
+	font-family: "寰蒋闆呴粦", Arial, sans-serif;
+	font-size: 14px;
+	background: #252f3b;
+	position: relative;
+	overflow: hidden;
+}
+
+i,em{
+	font-style: normal;
+}
+
+.i-icon{
+	display: inline-block;
+	width: 24px;
+	height: 24px;
+	position: relative;
+}
+
+.login-logo img,
+.login2-ewm-img img,
+.i-icon img,
+.login-tab-span img,
+.login-yzm-btn img{
+	width: 120%;
+	height: 120%;
+	vertical-align: top;
+}
+.login2-body{
+	background: url(../../login/images/login2-bg.png) center top no-repeat;
+	background-size: 100% 100%;
+}
+.i-container{
+	width: 100%;
+	min-width: 1340px;
+	margin-left: auto;
+	margin-right: auto;
+	position: relative;
+	height: 100vh;
+	overflow: hidden;
+}
+.login-logo{
+	width: 200px;
+	height: 80px;
+	position: absolute;
+	left: 35px;
+	top: 25px;
+	z-index: 9;
+}
+.login-tit{
+	height: 96px;
+	text-align: center;
+	margin: 5% 0 2%;
+}
+.login-tit img{
+	height: 100%;
+	max-width: 90%;
+}
+.login2-ewm{
+	text-align: right;
+	position: absolute;
+	right: 1.5%;
+	z-index: 999;
+	top: 25px;
+}
+.login2-ewm h3{
+	line-height: 36px;
+	color: #fff;
+	font-size: 22px;
+}
+.login2-ewm h3 i{
+	width: 36px;
+	height: 36px;
+	margin-right: 3px;
+}
+.login2-ewm-img{
+	padding: 12px;
+	width: 9%;
+	position: absolute;
+	right: 1.5%;
+	top: 71px;
+	background: #fff;
+	max-width: 176px;
+	max-height: 176px;
+	-webkit-border-radius: 10px;
+	-moz-border-radius: 10px;
+	border-radius: 10px;
+	z-index: 999;
+	-webkit-box-shadow: 0 8px 10px 5px rgba(46,203,255,0.3);
+	-moz-box-shadow: 0 8px 10px 5px rgba(46,203,255,0.3);
+	box-shadow: 0 8px 10px 5px rgba(46,203,255,0.3);
+}
+.login-left{
+	text-align: center;
+}
+.login-leftbox{
+	width: 70%;
+	position: relative;
+	top: -30px;
+	left: 2%;
+	margin: auto;
+}
+.login-leftimg{
+	position: absolute;
+	z-index: 9;
+}
+.login-leftbg,
+.login-leftimg{
+	width: 100%;
+}
+.login-right,
+.login-con{
+	position: relative;
+}
+.login-box{
+	background: #fff;
+	-webkit-border-radius: 8px;
+	-moz-border-radius: 8px;
+	border-radius: 8px;
+	width: 330px;
+	padding: 0 6%;
+	height: 500px;
+	position: absolute;
+	left: -5px;
+	top: 50%;
+	z-index: 9;
+	overflow: hidden;
+}
+.login2-box-tit{
+	height: 44px;
+	text-align: center;
+	margin-top: 30px;
+}
+.login2-box-tit img{
+	height: 100%;
+}
+.login-box .layui-tab{
+	margin: 0;
+	width: 330px;
+}
+.login-box .layui-tab-content{
+	padding: 0;
+}
+
+.login-tab-2{
+	width: 330px;
+	margin: 0 auto;
+	padding-top: 15px;
+}
+
+.login-tab-2 .layui-form-item{
+	height: 38px;
+	padding: 16px 0;
+	border-bottom: 1px  solid #ddd;
+	margin-bottom: 0px;
+	margin-top: 10px;
+}
+
+.login-tab-2 .layui-input-block{
+	margin-left: 40px;
+}
+
+
+.login-tab-2 .layui-form-label{
+	width: 40px;
+	padding: 0;
+}
+
+.login-tab-2 .layui-form-label i{
+	float: left;
+	margin: 7px 0;
+}
+
+.login-tab-2 .layui-input{
+	border: 0;
+	padding-left: 0;
+	font-size: 18px;
+}
+
+.login-tab-2 .login-btnbox{
+	margin-left: 0;
+	-webkit-border-radius: 5px;
+	-moz-border-radius: 5px;
+	border-radius: 5px;
+	overflow: hidden;
+	margin-top: 50px;
+}
+
+.login-tab-2 .login-btnbox .login-btn{
+	width: 100%;
+	height: 50px;
+	font-size: 20px;
+	line-height: 50px;
+	background: #53adce;
+}
+
+.login-yzm-btn{
+	width: 74px;
+	height: 28px;
+	position: absolute;
+	right: 0;
+	top: 50%;
+	margin-top: -14px;
+	z-index: 9;
+}
+
+
+.login-copy{
+	height: 30px;
+	position: fixed;
+	bottom: 3%;
+	width: 100%;
+	text-align: center;
+}
+
+.login-copy p{
+	line-height: 30px;
+	color: #fff;
+	font-size: 16px;
+}
+
+
+
+input::-webkit-input-placeholder,
+input::-webkit-input-placeholder{
+    color:#c3c3c3;
+}
+input::-moz-placeholder,
+input::-moz-placeholder{   /* Mozilla Firefox 19+ */
+    color:#c3c3c3;
+}
+input:-moz-placeholder,
+input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
+    color:#c3c3c3;
+}
+input:-ms-input-placeholder,
+input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
+    color:#c3c3c3;
+}
\ No newline at end of file
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/i-body1.png b/fzzy-igdss-web/src/main/resources/static/login/images/i-body1.png
new file mode 100644
index 0000000..58abb13
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/i-body1.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/icon-pw.png b/fzzy-igdss-web/src/main/resources/static/login/images/icon-pw.png
new file mode 100644
index 0000000..92af02c
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/icon-pw.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/icon-user.png b/fzzy-igdss-web/src/main/resources/static/login/images/icon-user.png
new file mode 100644
index 0000000..a9add4f
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/icon-user.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/icon-yzm.png b/fzzy-igdss-web/src/main/resources/static/login/images/icon-yzm.png
new file mode 100644
index 0000000..691a3fc
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/icon-yzm.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/login-app-code.png b/fzzy-igdss-web/src/main/resources/static/login/images/login-app-code.png
new file mode 100644
index 0000000..a27e39f
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/login-app-code.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/images/login-left.jpg b/fzzy-igdss-web/src/main/resources/static/login/images/login-left.jpg
similarity index 100%
rename from fzzy-igdss-web/src/main/resources/static/axui/images/login-left.jpg
rename to fzzy-igdss-web/src/main/resources/static/login/images/login-left.jpg
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/login-titimg2.png b/fzzy-igdss-web/src/main/resources/static/login/images/login-titimg2.png
new file mode 100644
index 0000000..11cee8c
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/login-titimg2.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/login2-bg.png b/fzzy-igdss-web/src/main/resources/static/login/images/login2-bg.png
new file mode 100644
index 0000000..442cd46
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/login2-bg.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/login2-box-tit.png b/fzzy-igdss-web/src/main/resources/static/login/images/login2-box-tit.png
new file mode 100644
index 0000000..494c6ac
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/login2-box-tit.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/login2-left-bg.png b/fzzy-igdss-web/src/main/resources/static/login/images/login2-left-bg.png
new file mode 100644
index 0000000..db99316
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/login2-left-bg.png
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/login/images/login2-left.gif b/fzzy-igdss-web/src/main/resources/static/login/images/login2-left.gif
new file mode 100644
index 0000000..f1122da
--- /dev/null
+++ b/fzzy-igdss-web/src/main/resources/static/login/images/login2-left.gif
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/images/yanzhengma.jpg b/fzzy-igdss-web/src/main/resources/static/login/images/yanzhengma.jpg
similarity index 100%
rename from fzzy-igdss-web/src/main/resources/static/axui/images/yanzhengma.jpg
rename to fzzy-igdss-web/src/main/resources/static/login/images/yanzhengma.jpg
Binary files differ
diff --git a/fzzy-igdss-web/src/main/resources/static/axui/loginAndRegister.js b/fzzy-igdss-web/src/main/resources/static/login/loginAndRegister.js
similarity index 100%
rename from fzzy-igdss-web/src/main/resources/static/axui/loginAndRegister.js
rename to fzzy-igdss-web/src/main/resources/static/login/loginAndRegister.js
diff --git a/fzzy-igdss-web/src/main/resources/templates/login.html b/fzzy-igdss-web/src/main/resources/templates/login.html
index d6e0b88..dc37e14 100644
--- a/fzzy-igdss-web/src/main/resources/templates/login.html
+++ b/fzzy-igdss-web/src/main/resources/templates/login.html
@@ -3,75 +3,222 @@
 <head>
     <meta charset="utf-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
-    <title th:text="${sysName}">鏅烘収绮簱绠$悊绯荤粺</title>
-    <meta name="description" content="鑻ヤ緷鍚庡彴绠$悊妗嗘灦">
-    <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
-    <link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
-    <link href="../static/css/style.min.css" th:href="@{/css/style.min.css}" rel="stylesheet"/>
-    <link href="../static/css/login.min.css" th:href="@{/css/login.min.css}" rel="stylesheet"/>
-    <link href="../static/ruoyi/css/ry-ui.css" th:href="@{/ruoyi/css/ry-ui.css?v=4.7.8}" rel="stylesheet"/>
+    <title>鏅烘収绮簱缁煎悎绠$悊骞冲彴</title>
+    <meta name="description" content="涓撴敞浜庡姩鍔涚幆澧冪洃鎺�,鏅烘収绮簱,鑳芥簮绠$悊,鐜繚鏁版嵁閲囬泦,鐗╄仈缃戠綉鍏崇瓑浜у搧鐨勭爺鍙戝拰鐢熶骇,鎻愪緵鍥戒骇鍖栫墿鑱旂綉瑙e喅鏂规">
+
+    <link rel="shortcut icon" th:href="@{/favicon.ico}"/>
+    <link rel="stylesheet" th:href="@{/login/css/layui.css}"/>
+    <link rel="stylesheet" th:href="@{/login/css/login.css}"/>
     <!-- 360娴忚鍣ㄦ�ラ�熸ā寮� -->
     <meta name="renderer" content="webkit">
     <!-- 閬垮厤IE浣跨敤鍏煎妯″紡 -->
     <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <link rel="shortcut icon" href="../static/favicon.ico" th:href="@{favicon.ico}"/>
-    <style type="text/css">label.error { position:inherit;  }</style>
+    <style type="text/css">
+        .login-yzm-btn {
+            width: 80px;
+            height: 38px;
+            margin-top: -20px;
+        }
+
+        .dis-none {
+            display: none;
+        }
+
+        .css-hand {
+            cursor: pointer
+        }
+
+        .compatible {
+            height: 25px;
+            border-radius: 3px;
+            padding: 0 5px;
+        }
+
+        /** 寮瑰嚭妗咰SS**/
+        .mask {
+            background-color: rgba(0, 0, 0, 0.2);
+            width: 100%;
+            height: 100%;
+            position: fixed;
+            top: 0;
+            left: 0;
+            z-index: 999;
+        }
+
+        .prompt_box {
+            width: 400px;
+            height: 200px;
+            background: #ffffff;
+            border-radius: 6px;
+            position: fixed;
+            top: 25%;
+            left: 50%;
+            margin-left: -200px;
+            overflow: hidden;
+        }
+
+        .prompt_box .prompt_title {
+            height: 40px;
+            line-height: 40px;
+            padding-left: 20px;
+            border-bottom: 2px solid #53adce;
+            background: #e6e6e6;
+            position: relative;
+        }
+
+        .prompt_box .prompt_title h3 {
+            font-size: 16px;
+            color: #333333;
+            margin-top: 0;
+        }
+
+        .prompt_box .prompt_cont {
+            position: relative;
+            height: 158px;
+        }
+
+        .prompt_box .prompt_cont .prompt_text {
+            line-height: 140px;
+            padding-left: 100px;
+            font-size: 16px;
+        }
+
+        .prompt_box .prompt_cont .prompt_sure {
+            position: absolute;
+            right: 20px;
+            bottom: 34px;
+            width: 80px;
+            height: 36px;
+            background: #53adce;
+            border-radius: 5px;
+            color: #ffffff;
+            font-size: 14px;
+            line-height: 36px;
+            text-align: center;
+            cursor: pointer;
+        }
+
+        .hide {
+            display: none;
+        }
+
+        .show {
+            display: block;
+        }
+    </style>
     <script>
         if(window.top!==window.self){alert('鏈櫥褰曟垨鐧诲綍瓒呮椂銆傝閲嶆柊鐧诲綍');window.top.location=window.location};
     </script>
 </head>
-<body class="signin">
-    <div class="signinpanel">
-        <div class="row">
-            <div class="col-sm-7">
-                <div class="signin-info">
-                    <div class="logopanel m-b">
-                        <h1><img alt="[ 椋庢鑷磋繙 ]" th:src="@{/logo-sm.png}"></h1>
-                    </div>
-                    <div class="m-b"></div>
-                    <h4>娆㈣繋浣跨敤 <strong>椋庢鑷磋繙 鍚庡彴绠$悊绯荤粺</strong></h4>
-                    <ul class="m-b">
-                        <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> SpringBoot</li>
-                        <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Mybatis</li>
-                        <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Shiro</li>
-                        <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Thymeleaf</li>
-                        <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Bootstrap</li>
-                    </ul>
-                    <strong th:if="${isAllowRegister}">杩樻病鏈夎处鍙凤紵 <a th:href="@{/register}">绔嬪嵆娉ㄥ唽&raquo;</a></strong>
-                </div>
-            </div>
-            <div class="col-sm-5">
-                <form id="signupForm" autocomplete="off">
-                    <h4 class="no-margins">鐧诲綍锛�</h4>
-                    <p class="m-t-md">涔橀鐮存氮椋庢鍔� 琛岀ǔ鑷磋繙鍚柊绋�</p>
-                    <input type="text"     name="username" class="form-control uname"     placeholder="鐢ㄦ埛鍚�" value="admin"    />
-                    <input type="password" name="password" class="form-control pword"     placeholder="瀵嗙爜"   value="admin123" />
-					<div class="row m-t" th:if="${captchaEnabled==true}">
-						<div class="col-xs-6">
-						    <input type="text" name="validateCode" class="form-control code" placeholder="楠岃瘉鐮�" maxlength="5" />
-						</div>
-						<div class="col-xs-6">
-							<a href="javascript:void(0);" title="鐐瑰嚮鏇存崲楠岃瘉鐮�">
-								<img th:src="@{/captcha/captchaImage(type=${captchaType})}" class="imgcode" width="85%"/>
-							</a>
-						</div>
-					</div>
-                    <div class="checkbox-custom" th:if="${isRemembered}" th:classappend="${captchaEnabled==false} ? 'm-t'">
-				        <input type="checkbox" id="rememberme" name="rememberme"> <label for="rememberme">璁颁綇鎴�</label>
-				    </div>
-                    <button class="btn btn-success btn-block" id="btnSubmit" data-loading="姝e湪楠岃瘉鐧诲綍锛岃绋嶅��...">鐧诲綍</button>
-                </form>
+<body class="login-body login2-body">
+<div class="i-container">
+    <!--浼佷笟lOGO-->
+    <div class="login-logo">
+
+    </div>
+
+    <!--鎵嬫満APP-->
+    <div class="login2-ewm css-hand">
+        <h3>
+            <i class="i-icon"><img th:src="@{/login/images/login-app-code.png}"/></i>涓嬭浇APP
+        </h3>
+    </div>
+
+    <div class="login2-ewm-img dis-none" id="ewm">
+        <img th:src="@{/login/images/login-app-code.png}"/>
+    </div>
+
+    <h1 class="login-tit">
+        <img th:src="@{/login/images/login-titimg2.png}"/>
+    </h1>
+
+    <div class="layui-row login-con">
+        <div class="layui-col-md7 login-left">
+            <div class="login-leftbox">
+                <img th:src="@{/login/images/login2-left.gif}"
+                     class="login-leftimg"/>
+                <img
+                        th:src="@{/login/images/login2-left-bg.png}" class="login-leftbg"/>
             </div>
         </div>
-        <div class="signup-footer">
-            <div class="pull-left">
-                Copyright 漏 2019-2024 FZZY-GF All Rights Reserved. <br>
+        <div class="layui-col-md5 login-right">
+            <div class="login-box">
+
+                <div class="layui-tab">
+
+                    <h3 class="login2-box-tit">
+                        <img th:src="@{/login/images/login2-box-tit.png}"/>
+                    </h3>
+
+                    <div class="layui-tab-content">
+
+                        <div class="layui-tab-item layui-show">
+                            <div class="login-tab-2">
+
+                                <form class="layui-form" id="signupForm">
+
+                                    <div class="layui-form-item">
+                                        <label class="layui-form-label"> <i class="i-icon"><img
+                                                th:src="@{/login/images/icon-user.png}"/></i>
+                                        </label>
+                                        <div class="layui-input-block">
+                                            <input type="text" name="username" required
+                                                   lay-verify="required" placeholder="璇峰湪姝よ緭鍏ョ敤鎴峰悕"
+                                                   autocomplete="off" class="layui-input" value="">
+                                        </div>
+                                    </div>
+                                    <div class="layui-form-item">
+                                        <label class="layui-form-label"> <i class="i-icon"><img
+                                                th:src="@{/login/images/icon-pw.png}"/></i>
+                                        </label>
+                                        <div class="layui-input-block">
+                                            <input type="password" name="password" required
+                                                   lay-verify="required" placeholder="璇峰湪姝よ緭鍏ュ瘑鐮�"
+                                                   autocomplete="off" class="layui-input" value="">
+                                        </div>
+                                    </div>
+                                    <div class="layui-form-item">
+                                        <label class="layui-form-label"> <i class="i-icon">
+                                            <img th:src="@{/login/images/icon-yzm.png}"/></i>
+                                        </label>
+                                        <div class="layui-input-block" th:if="${captchaEnabled==true}">
+                                            <input type="text" name="validateCode" value="" required
+                                                   lay-verify="required" placeholder="璇峰湪姝よ緭鍏ラ獙璇佺爜"
+                                                   autocomplete="off" class="layui-input" style="width: 60%;">
+                                            <a href="javascript:void(0);" title="鐐瑰嚮鏇存崲楠岃瘉鐮�" class="login-yzm-btn">
+                                                <img class="imgcode" th:src="@{/captcha/captchaImage(type=${captchaType})}"/>
+                                            </a>
+                                        </div>
+                                    </div>
+                                    <div style="display: none" class="checkbox-custom" th:if="${isRemembered}" th:classappend="${captchaEnabled==false} ? 'm-t'">
+                                        <input type="checkbox" id="rememberme" name="rememberme"> <label for="rememberme">璁颁綇鎴�</label>
+                                    </div>
+                                    <div class="layui-input-block login-btnbox">
+                                        <button class="layui-btn login-btn" id="btnSubmit" data-loading="姝e湪楠岃瘉鐧诲綍锛岃绋嶅��...">鐧诲綍
+                                        </button>
+                                    </div>
+
+                                </form>
+
+                            </div>
+                            <!--login-tab-2 end-->
+                        </div>
+                    </div>
+                </div>
+
             </div>
+            <!--login-box end-->
         </div>
     </div>
-<script th:inline="javascript"> var ctx = [[@{/}]]; var captchaType = [[${captchaType}]]; </script>
-<!--[if lte IE 8]><script>window.location.href=ctx+'html/ie.html';</script><![endif]-->
-<!-- 鍏ㄥ眬js -->
+    <div class="login-copy">
+        <p>Copyright 漏 2019-2026 鏅烘収绮簱缁煎悎绠$悊骞冲彴&nbsp;|&nbsp;椋庢鑷磋繙淇℃伅鎶�鏈偂浠芥湁闄愬叕鍙�</p>
+    </div>
+</div>
+
+<script th:inline="javascript">
+    var ctx = [[@{/}]] ;
+    var captchaType = [[${captchaType}]];
+</script>
 <script src="../static/js/jquery.min.js" th:src="@{/js/jquery.min.js}"></script>
 <script src="../static/ajax/libs/validate/jquery.validate.min.js" th:src="@{/ajax/libs/validate/jquery.validate.min.js}"></script>
 <script src="../static/ajax/libs/layer-ruoyi/layer.min.js" th:src="@{/ajax/libs/layer-ruoyi/layer.min.js}"></script>
diff --git a/fzzy-igdss-web/src/main/resources/templates/login_new.html b/fzzy-igdss-web/src/main/resources/templates/login_new.html
deleted file mode 100644
index a52efe1..0000000
--- a/fzzy-igdss-web/src/main/resources/templates/login_new.html
+++ /dev/null
@@ -1,320 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-    <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
-    <meta name="apple-mobile-web-app-capable" content="yes" />
-    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
-    <meta name="apple-touch-fullscreen" content="yes"/>
-    <meta name="format-detection" content="email=no" />
-    <meta name="wap-font-scale"  content="no" />
-    <meta name="viewport" content="user-scalable=no, width=device-width" />
-    <meta content="telephone=no" name="format-detection" />
-    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title th:text="${sysName}">鏅烘収绮簱绠$悊绯荤粺</title>
-
-    <link href="../static/axui/css/ax.css" th:href="@{/axui/css/ax.css}" rel="stylesheet"/>
-    <link href="../static/axui/css/ax-response.css" th:href="@{/axui/css/ax-response.css}" rel="stylesheet"/>
-    <link href="../static/axui/css/main.css" th:href="@{/axui/css/main.css}" rel="stylesheet"/>
-    <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
-    <link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
-    <link href="../static/ruoyi/css/ry-ui.css" th:href="@{/ruoyi/css/ry-ui.css?v=4.7.8}" rel="stylesheet"/>
-    <link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
-    <script>
-        if(window.top!==window.self){alert('鏈櫥褰曟垨鐧诲綍瓒呮椂銆傝閲嶆柊鐧诲綍');window.top.location=window.location};
-    </script>
-    <style>
-        label.error {
-            position: relative !important;
-            right: 1px;
-            top: 10px;
-            color: #ef392b;
-            font-size: 12.5px;
-            z-index: 99;
-        }
-
-    </style>
-</head>
-
-<body class="ax-align-origin">
-
-
-<div class="login ax-shadow-cloud ax-radius-md">
-    <div class="ax-row ax-radius-md ax-split">
-        <div class="ax-col ax-col-14 ax-radius-left ax-radius-md cover"></div>
-        <div class="ax-col ax-col-10">
-            <div class="core">
-
-                <div class="ax-break"></div>
-
-                <div class="ax-tab" axTab>
-
-                    <ul class="ax-row ax-tab-nav ax-menu-tab">
-                        <a href="###" class="ax-item">鐧诲綍璐﹀彿</a>
-                        <a th:if="${isAllowRegister}" href="###" class="ax-item">娉ㄥ唽鏂扮敤鎴�</a>
-                        <a href="###" class="ax-item">鐭俊鐧诲綍</a>
-                        <li class="ax-col"></li>
-                    </ul>
-
-                    <ul class="ax-tab-content">
-                        <li>
-                            <form id="signupForm" autocomplete="off">
-
-                                <div class="ax-break"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width: 2.4rem;"><i class="ax-iconfont ax-icon-me-f"></i></span><input name="username" value="admin" placeholder="杈撳叆鐧诲綍鍚嶇О" type="text"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span></div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-lock-f"></i></span>
-                                                <input name="password" placeholder="杈撳叆瀵嗙爜" type="password"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input">
-                                                <div class="ax-row">
-                                                    <div class="ax-flex-block">
-                                                        <span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-shield-f"></i></span>
-                                                        <input name="validateCode" placeholder="杈撳叆楠岃瘉鐮�..." value="" type="text"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span>
-                                                    </div>
-                                                    <div class="col-xs-5">
-                                                        <a href="javascript:void(0);" title="鐐瑰嚮鏇存崲楠岃瘉鐮�">
-                                                            <img th:src="@{/captcha/captchaImage(type=${captchaType})}" class="imgcode" width="83%"/>
-                                                        </a>
-                                                    </div>
-                                                </div>
-                                            </div>
-
-                                        </div>
-                                    </div>
-                                </div>
-
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input">
-                                                <div class="ax-row">
-                                                    <div class="ax-flex-block">
-                                                        <div  th:if="${isRemembered}" th:classappend="${captchaEnabled==false} ? 'm-t'">
-                                                            <label class="ax-checkbox"><input name="free-agree" value="0" checked="" type="checkbox"><span>璁颁綇瀵嗙爜</span></label>
-                                                        </div>
-                                                    </div>
-                                                    <a href="###" class="ax-form-txt ax-color-ignore">蹇樿浜嗗瘑鐮侊紵</a>
-                                                </div>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-flex-block">
-                                            <div class="ax-form-input"><button id="btnSubmit" class="ax-btn ax-primary ax-full" data-loading="姝e湪楠岃瘉鐧诲綍锛岃绋嶅��...">鐧诲綍</button></div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-
-                            </form>
-                        </li>
-                        <li>
-                            <form id="registerForm" autocomplete="off">
-
-                                <div class="ax-break"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width: 2.4rem;"><i class="ax-iconfont ax-icon-me-f"></i></span><input name="registerUsername" placeholder="杈撳叆鍚嶇О" type="text"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span></div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-lock-f"></i></span>
-                                                <input name="registerPassword" placeholder="杈撳叆瀵嗙爜" type="password"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-lock-f"></i></span>
-                                                <input name="confirmRegisterPassword" placeholder="鍐嶆杈撳叆瀵嗙爜" type="password"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input">
-                                                <div class="ax-row">
-                                                    <div class="ax-flex-block">
-                                                        <span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-shield-f"></i></span>
-                                                        <input name="registerValidateCode" placeholder="杈撳叆楠岃瘉鐮�..." value="" type="text"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span>
-                                                    </div>
-                                                    <div class="col-xs-5">
-                                                        <a href="javascript:void(0);" title="鐐瑰嚮鏇存崲楠岃瘉鐮�">
-                                                            <img th:src="@{/captcha/captchaImage(type=${captchaType})}" class="imgcode" width="83%"/>
-                                                        </a>
-                                                    </div>
-                                                </div>
-                                            </div>
-
-                                        </div>
-                                    </div>
-                                </div>
-
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input">
-                                                <div class="ax-row">
-                                                    <div class="ax-flex-block">
-                                                        <label class="ax-checkbox"><input name="free-agree" value="0" checked="" type="checkbox"><span>娉ㄥ唽鎴愬姛鍚庣珛鍗崇櫥褰�</span></label>
-                                                    </div>
-                                                    <a th:href="@{/login}" class="ax-form-txt ax-color-primary">鏈夎处鍙凤紵绔嬪嵆鐧诲綍</a>
-                                                </div>
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-flex-block">
-                                            <div class="ax-form-input"><button id="btnSubmitRegister" class="ax-btn ax-primary ax-full">娉ㄥ唽</button></div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-
-                            </form>
-                        </li>
-                        <!--鐭俊鐧诲綍-->
-                        <li>
-                            <form id="messageLoginForm" autocomplete="off">
-
-                                <div class="ax-break"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width: 2.4rem;"><i class="ax-iconfont ax-icon-telephone-f"></i></span>
-                                                <input name="phoneNumber" placeholder="璇疯緭鍏ユ墜鏈哄彿" type="text"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span></div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-form-con">
-                                            <div class="ax-form-input"><span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-lock-f"></i></span>
-                                                <div class="ax-row">
-                                                    <div class="ax-flex-block">
-                                                        <span class="ax-pos-left" style="width:2.4rem;"><i class="ax-iconfont ax-icon-shield-f"></i></span><input name="phoneNumberValidateCode" placeholder="璇疯緭鍏ラ獙璇佺爜" value="" type="text"><span class="ax-pos-right"><a href="###" class="ax-iconfont ax-icon-close ax-val-none"></a></span>
-                                                    </div>
-                                                    <div class="col-xs-5">
-                                                        <a href="###" id="sendMessageCode" class="ax-form-txt ax-color-ignore" onclick="sendMsgCode()" style="color: #0c64eb">鑾峰彇楠岃瘉鐮�</a>
-                                                        <a id="secondShow"  class="ax-form-txt ax-color-ignore" href="javascript:;" style="color: #0c64eb;text-decoration: none;"></a>
-                                                    </div>
-                                                </div>
-
-                                            </div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break-md"></div>
-
-                                <div class="ax-form-group">
-                                    <div class="ax-flex-row">
-                                        <div class="ax-flex-block">
-                                            <div class="ax-form-input"><button id="btnMessageLogin" class="ax-btn ax-primary ax-full" data-loading="姝e湪鐧诲綍楠岃瘉,璇风◢鍊�...">鐧诲綍</button></div>
-                                        </div>
-                                    </div>
-                                </div>
-
-                                <div class="ax-break"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-                                <div class="ax-break ax-hide-tel"></div>
-
-                            </form>
-                        </li>
-                    </ul>
-                </div>
-            </div>
-        </div>
-    </div>
-</div>
-
-<!--姝f枃缁撴潫-->
-
-<div class="footer">
-    Copyright 漏 2019-2025 FZZY-GF All Rights Reserved. <br>
-</div>
-
-<script th:inline="javascript"> var ctx = [[@{/}]]; var captchaType = [[${captchaType}]]; </script>
-<!--[if lte IE 8]>
-<script>window.location.href = ctx + 'html/ie.html';</script><![endif]-->
-<script src="../static/axui/js/ax.min.js" th:src="@{/axui/js/ax.min.js}" type="text/javascript"></script>
-<script src="../static/js/jquery.min.js" th:src="@{/js/jquery.min.js}"></script>
-<script src="../static/ajax/libs/validate/jquery.validate.min.js" th:src="@{/ajax/libs/validate/jquery.validate.min.js}"></script>
-<script src="../static/ajax/libs/layer-ruoyi/layer.min.js" th:src="@{/ajax/libs/layer-ruoyi/layer.min.js}"></script>
-<script src="../static/ajax/libs/blockUI/jquery.blockUI.js" th:src="@{/ajax/libs/blockUI/jquery.blockUI.js}"></script>
-<script src="../static/ruoyi/js/ry-ui.js" th:src="@{/ruoyi/js/ry-ui.js?v=4.7.8}"></script>
-<script src="../static/axui/loginAndRegister.js" th:src="@{/axui/loginAndRegister.js}"></script>
-
-
-</body>
-
-</html>
\ No newline at end of file

--
Gitblit v1.9.3