@import url(theme.css);
/*标签格式化*/
*, ::after, ::before {box-sizing: border-box;}
html {font-family: sans-serif;line-height: 1.15;-webkit-text-size-adjust: 100%;-webkit-tap-highlight-color: transparent;}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {display: block;}
h1, h2, h3, h4, h5, h6, p, span, div, ul, li {margin: 0;padding: 0;font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;list-style: none;}
.hr {min-width: 32px;border-radius: 16px;border: 2px solid var(--type-primary);margin: 0;}
hr {border-top: 1px solid var(--border);border-bottom: 0;}
body {margin: 0;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";line-height: 1.5;color: var(--gray-10);text-align: left;background-color: var(--gray-1);}
/*全局样式*/
.font-weight-light {font-weight: 300 !important;}
.font-weight-lighter {font-weight: lighter !important;}
.font-weight-normal {font-weight: 400 !important;}
.font-weight-bold {font-weight: 700 !important;}
.font-weight-bolder {font-weight: bolder !important;}
.font-italic {font-style: italic !important;}
.text-white {color: var(--gray-1) !important;}
.text-white-50 {color: rgba(255, 255, 255, 0.5) !important;}
.text-gray-fafafa {color: var(--gray-2) !important;}
.text-gray-f6f6f6 {color: var(--gray-3) !important;}
.text-gray-f2f2f2 {color: var(--gray-4) !important;}
.text-gray-eee {color: var(--gray-5) !important;}
.text-gray-999 {color: var(--gray-6) !important;}
.text-tips, .text-gray-888 {color: var(--gray-7) !important;}
.text-muted, .text-gray-666 {color: var(--gray-8) !important;}
.text-gray-333 {color: var(--gray-9) !important;}
.text-gray-262626 {color: var(--gray-10) !important;}
.text-gray-1f1f1f {color: var(--gray-11) !important;}
.text-gray-141414 {color: var(--gray-12) !important;}
.text-black {color: var(--gray-13) !important;}
.text-black-50 {color: rgba(0, 0, 0, 0.5) !important;}
.text-title {color: var(--title) !important;}
.text-secondary {color: var(--secondary) !important;}
.text-disable {color: var(--disable) !important;}
.text-primary {color: var(--type-primary) !important;}
.text-primary:focus, .text-primary:hover {color: var(--type-primary-dark) !important;}
.text-success {color: var(--type-success) !important;}
.text-success:focus, .text-success:hover {color: var(--type-success-dark) !important;}
.text-info {color: var(--type-info) !important;}
.text-info:focus, .text-info:hover {color: var(--type-info-dark) !important;}
.text-warning {color: var(--type-warning) !important;}
.text-warning:focus, .text-warning:hover {color: var(--type-warning-dark) !important;}
.text-danger {color: var(--type-danger) !important;}
.text-danger:focus, .text-danger:hover {color: var(--type-danger-dark) !important;}
.text-left {text-align: left !important;}
.text-center {text-align: center !important;}
.text-right {text-align: right !important;}
.text-overflow-1 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;overflow: hidden;}
.text-overflow-2 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;overflow: hidden;}
.text-overflow-3 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;overflow: hidden;}
.text-overflow-4 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 4;-webkit-box-orient: vertical;overflow: hidden;}
.text-overflow-5 {text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 5;-webkit-box-orient: vertical;overflow: hidden;}
.text-underline {text-decoration: underline;}
.text-overline {text-decoration: overline;}
.text-through {text-decoration: line-through;}
.text-decoration-none {text-decoration: none !important;}
.text-hide {color: transparent;text-shadow: none;background-color: transparent;border: 0;}
.text-break {word-wrap: break-word !important;}
.img-fluid {max-width: 100%;height: auto;}
/*简写*/
.overflow-hiden {overflow: hidden !important;}
/*去色*/
.filter {-webkit-filter: grayscale(100%) brightness(2);-moz-filter: grayscale(100%) brightness(2);-ms-filter: grayscale(100%) brightness(2);-o-filter: grayscale(100%) brightness(2);filter: grayscale(100%) brightness(2);filter: gray;}
/*边框*/
.border {border: 1px solid var(--border) !important;}
.border-top {border-top: 1px solid var(--border) !important;}
.border-right {border-right: 1px solid var(--border) !important;}
.border-bottom {border-bottom: 1px solid var(--border) !important;}
.border-left {border-left: 1px solid var(--border) !important;}
.border-0 {border: 0 !important;}
.border-top-0 {border-top: 0 !important;}
.border-right-0 {border-right: 0 !important;}
.border-bottom-0 {border-bottom: 0 !important;}
.border-left-0 {border-left: 0 !important;}
.border-white {border: 2px solid var(--gray-1) !important;}
/*圆角*/
.rounded-top {border-top-left-radius: 8px !important;border-top-right-radius: 8px !important;}
.rounded-right {border-top-right-radius: 8px !important;border-bottom-right-radius: 8px !important;}
.rounded-bottom {border-bottom-right-radius: 8px !important;border-bottom-left-radius: 8px !important;}
.rounded-left {border-top-left-radius: 8px !important;border-bottom-left-radius: 8px !important;}
.rounded-sm {border-radius: 8px !important;overflow: hidden;}
.rounded-md, .rounded {border-radius: 4.8px !important;overflow: hidden;}
.rounded-lg {border-radius: 9.6px !important;overflow: hidden;}
.rounded-xl {border-radius: 16px !important;overflow: hidden;}
.rounded-circle {border-radius: 50% !important;overflow: hidden;}
.rounded-pill {border-radius: 800px !important;overflow: hidden;}
.rounded-0 {border-radius: 0 !important;}
/*浮动*/
.float-left {float: left !important;}
.float-right {float: right !important;}
.float-none {float: none !important;}
/*清除浮动*/
.clearfix::after {display: block;clear: both;content: '';}
/*投影*/
.box-shadow-0 {box-shadow: 0;}
.box-shadow-sm {box-shadow: 0px 2px 10px rgba(153, 153, 153, 0.25);}
.box-shadow-md, .box-shadow {box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);}
.box-shadow-lg {box-shadow: 0px 2px 50px rgba(153, 153, 153, 0.25);}
/*背景色*/
.bg-primary {background-color: var(--type-primary) !important;}
.bg-secondary {background-color: var(--type-secondary) !important;}
.bg-success {background-color: var(--type-success) !important;}
.bg-info {background-color: var(--type-info) !important;}
.bg-warning {background-color: var(--type-warning) !important;}
.bg-danger {background-color: var(--type-danger) !important;}
.bg-light {background-color: var(--gray-3) !important;}
.bg-dark {background-color: var(--gray-9) !important;}
.bg-black {background-color: var(--gray-10) !important;}
.bg-white {background-color: var(--gray-1) !important;}
.bg-mask {background-color: var(--mask) !important;}
.bg-transparent {background-color: transparent !important;}
/*行高*/
.line-height-1 {line-height: 1 !important;}
.line-height-sm {line-height: 1.3 !important;}
.line-height, .line-height-md {line-height: 1.5 !important;}
.line-height-lg {line-height: 1.8 !important;}
.line-height-xl {line-height: 2 !important;}
/*弹性宽度*/
.wy-w-auto {width: auto !important;}
.wy-w-50 {width: 50%;}
.wy-w-75 {width: 75%;}
.wy-w-100 {width: 100%;}
.wy-vw-50 {width: 50vw;}
.wy-vw-75 {width: 75vw;}
.wy-vw-100 {width: 100vw;}
/*固定宽度*/
.wy-wd-20 {width: 20px;}
.wy-wd-36 {width: 36px;}
.wy-wd-50 {width: 50px;}
.wy-wd-60 {width: 60px;}
.wy-wd-70 {width: 70px;}
.wy-wd-80 {width: 80px;}
.wy-wd-100 {width: 100px;}
.wy-wd-120 {width: 120px;}
.wy-wd-150 {width: 150px;}
.wy-wd-200 {width: 200px;}
.wy-wd-300 {width: 300px;}
.wy-wd-360 {max-width: 360px;width: 100%;}
.wy-wd-520 {width: 520px;}
.wy-wd-1040 {width: 1040px;}
/*固定比例*/
.wy-ratio-16-10 {padding-top: calc(50% / 16 * 10);padding-bottom: calc(50% / 16 * 10);}
.wy-ratio-16-9 {padding-top: calc(50% / 16 * 9);padding-bottom: calc(50% / 16 * 9);}
.wy-ratio-4-3 {padding-top: calc(50% / 4 * 3);padding-bottom: calc(50% / 4 * 3);}
.wy-ratio-3-2 {padding-top: calc(50% / 3 * 2);padding-bottom: calc(50% / 3 * 2);}
.wy-ratio-375-667 {padding-top: calc(50% / 375 * 667);padding-bottom: calc(50% / 375 * 667);}
.wy-ratio-375-570 {padding-top: calc(50% / 375 * 570);padding-bottom: calc(50% / 375 * 570);}
.wy-ratio-1-1 {max-width: 100%;width: 100%;height: 0;padding-bottom: 50%;padding-top: 50%;}
[class*="wy-ratio-"] {max-width: 100%;width: 100%;height: 0;display: flex;align-items: center;justify-content: center;overflow: hidden;}
/*弹性高度*/
.wy-h-50 {height: 50%;}
.wy-h-75 {height: 75%;}
.wy-h-100 {height: 100%;}
.wy-vh-50 {height: 50vh;}
.wy-vh-75 {height: 75vh;}
.wy-vh-100 {height: 100vh;}
/*定位*/
.wy-fixed {position: fixed !important;}
.wy-relative, .wy-rela {position: relative !important;}
.wy-absolute, .wy-abso {position: absolute !important;}
.wy-pos-top-0, .wy-pos-t-0 {top: 0;}
.wy-pos-right-0, .wy-pos-r-0 {right: 0;}
.wy-pos-bottom-0, .wy-pos-b-0 {bottom: 0;}
.wy-pos-left-0, .wy-pos-l-0 {left: 0;}
.wy-pos-top-100, .wy-pos-t-100 {top: 100%;}
.wy-pos-right-100, .wy-pos-r-100 {right: 100%;}
.wy-pos-bottom-100, .wy-pos-b-100 {bottom: 100%;}
.wy-pos-left-100, .wy-pos-l-100 {left: 100%;}
.wy-abso-center, .wy-abso-C {top: 50%;left: 50%;transform: translateX(-50%) translateY(-50%);}
.wy-abso-horizontal, .wy-abso-H {left: 50%;transform: translateX(-50%);}
.wy-abso-vertical, .wy-abso-V {top: 50%;transform: translateY(-50%);}
.wy-z-index-n1 {z-index: -1;}
.wy-z-index-n9 {z-index: -9;}
.wy-z-index-9 {z-index: 9;}
.wy-z-index-999 {z-index: 999;}
/*布局*/
.wy-d-none {display: none !important;}
.wy-d-inline {display: inline !important;}
.wy-d-inline-block {display: inline-block !important;}
.wy-d-block {display: block !important;}
.wy-d-grid {display: grid !important;}
.wy-d-table {display: table !important;}
.wy-flex {display: flex;flex-direction: row;align-items: center;}
.wy-flex-wrap {flex-wrap: wrap;}
.wy-flex-nowrap {flex-wrap: nowrap;}
.wy-flex-grow-0 {-ms-flex-positive: 0 !important;flex-grow: 0 !important;}
.wy-flex-grow-1 {-ms-flex-positive: 1 !important;flex-grow: 1 !important;}
.wy-flex-shrink-0 {-ms-flex-negative: 0 !important;flex-shrink: 0 !important;}
.wy-flex-shrink-1 {-ms-flex-negative: 1 !important;flex-shrink: 1 !important;}
.wy-col-center {align-items: center;}
.wy-col-top {align-items: flex-start;}
.wy-col-bottom {align-items: flex-end;}
.wy-col-baseline {align-items: baseline;}
.wy-row-center {justify-content: center;}
.wy-row-left {justify-content: flex-start;}
.wy-row-right {justify-content: flex-end;}
.wy-row-between {justify-content: space-between;}
.wy-row-around {justify-content: space-around;}
.wy-flex-col {display: flex;flex-direction: column;}
.wy-flex-none {flex: none;}
.wy-flex-1 {flex: 1;}
.wy-flex-2 {flex: 2;}
.wy-flex-3 {flex: 3;}
.wy-flex-4 {flex: 4;}
.wy-flex-5 {flex: 5;}
.wy-flex-6 {flex: 6;}
.wy-flex-7 {flex: 7;}
.wy-flex-8 {flex: 8;}
.wy-flex-9 {flex: 9;}
.wy-flex-10 {flex: 10;}
.wy-flex-11 {flex: 11;}
.wy-flex-12 {flex: 12;}
.wy-self-start {align-self: flex-start;}
.wy-self-end {align-self: flex-end;}
.wy-self-stretch {align-self: stretch;}
/*内外边距start*/
.wy-mx-auto {margin: 0 auto !important;}
.wy-m-0 {margin: 0px !important;}
.wy-p-0 {padding: 0px !important;}
.wy-m-1 {margin: 1px !important;}
.wy-p-1 {padding: 1px !important;}
.wy-m-2 {margin: 2px !important;}
.wy-p-2 {padding: 2px !important;}
.wy-m-3 {margin: 3px !important;}
.wy-p-3 {padding: 3px !important;}
.wy-m-4 {margin: 4px !important;}
.wy-p-4 {padding: 4px !important;}
.wy-m-5 {margin: 5px !important;}
.wy-p-5 {padding: 5px !important;}
.wy-m-6 {margin: 6px !important;}
.wy-p-6 {padding: 6px !important;}
.wy-m-7 {margin: 7px !important;}
.wy-p-7 {padding: 7px !important;}
.wy-m-8 {margin: 8px !important;}
.wy-p-8 {padding: 8px !important;}
.wy-m-9 {margin: 9px !important;}
.wy-p-9 {padding: 9px !important;}
.wy-m-10 {margin: 10px !important;}
.wy-p-10 {padding: 10px !important;}
.wy-m-11 {margin: 11px !important;}
.wy-p-11 {padding: 11px !important;}
.wy-m-12 {margin: 12px !important;}
.wy-p-12 {padding: 12px !important;}
.wy-m-13 {margin: 13px !important;}
.wy-p-13 {padding: 13px !important;}
.wy-m-14 {margin: 14px !important;}
.wy-p-14 {padding: 14px !important;}
.wy-m-15 {margin: 15px !important;}
.wy-p-15 {padding: 15px !important;}
.wy-m-16 {margin: 16px !important;}
.wy-p-16 {padding: 16px !important;}
.wy-m-17 {margin: 17px !important;}
.wy-p-17 {padding: 17px !important;}
.wy-m-18 {margin: 18px !important;}
.wy-p-18 {padding: 18px !important;}
.wy-m-19 {margin: 19px !important;}
.wy-p-19 {padding: 19px !important;}
.wy-m-20 {margin: 20px !important;}
.wy-p-20 {padding: 20px !important;}
.wy-m-21 {margin: 21px !important;}
.wy-p-21 {padding: 21px !important;}
.wy-m-22 {margin: 22px !important;}
.wy-p-22 {padding: 22px !important;}
.wy-m-23 {margin: 23px !important;}
.wy-p-23 {padding: 23px !important;}
.wy-m-24 {margin: 24px !important;}
.wy-p-24 {padding: 24px !important;}
.wy-m-25 {margin: 25px !important;}
.wy-p-25 {padding: 25px !important;}
.wy-m-26 {margin: 26px !important;}
.wy-p-26 {padding: 26px !important;}
.wy-m-27 {margin: 27px !important;}
.wy-p-27 {padding: 27px !important;}
.wy-m-28 {margin: 28px !important;}
.wy-p-28 {padding: 28px !important;}
.wy-m-29 {margin: 29px !important;}
.wy-p-29 {padding: 29px !important;}
.wy-m-30 {margin: 30px !important;}
.wy-p-30 {padding: 30px !important;}
.wy-m-31 {margin: 31px !important;}
.wy-p-31 {padding: 31px !important;}
.wy-m-32 {margin: 32px !important;}
.wy-p-32 {padding: 32px !important;}
.wy-m-33 {margin: 33px !important;}
.wy-p-33 {padding: 33px !important;}
.wy-m-34 {margin: 34px !important;}
.wy-p-34 {padding: 34px !important;}
.wy-m-35 {margin: 35px !important;}
.wy-p-35 {padding: 35px !important;}
.wy-m-36 {margin: 36px !important;}
.wy-p-36 {padding: 36px !important;}
.wy-m-37 {margin: 37px !important;}
.wy-p-37 {padding: 37px !important;}
.wy-m-38 {margin: 38px !important;}
.wy-p-38 {padding: 38px !important;}
.wy-m-39 {margin: 39px !important;}
.wy-p-39 {padding: 39px !important;}
.wy-m-40 {margin: 40px !important;}
.wy-p-40 {padding: 40px !important;}
.wy-m-41 {margin: 41px !important;}
.wy-p-41 {padding: 41px !important;}
.wy-m-42 {margin: 42px !important;}
.wy-p-42 {padding: 42px !important;}
.wy-m-43 {margin: 43px !important;}
.wy-p-43 {padding: 43px !important;}
.wy-m-44 {margin: 44px !important;}
.wy-p-44 {padding: 44px !important;}
.wy-m-45 {margin: 45px !important;}
.wy-p-45 {padding: 45px !important;}
.wy-m-46 {margin: 46px !important;}
.wy-p-46 {padding: 46px !important;}
.wy-m-47 {margin: 47px !important;}
.wy-p-47 {padding: 47px !important;}
.wy-m-48 {margin: 48px !important;}
.wy-p-48 {padding: 48px !important;}
.wy-m-49 {margin: 49px !important;}
.wy-p-49 {padding: 49px !important;}
.wy-m-50 {margin: 50px !important;}
.wy-p-50 {padding: 50px !important;}
.wy-m-51 {margin: 51px !important;}
.wy-p-51 {padding: 51px !important;}
.wy-m-52 {margin: 52px !important;}
.wy-p-52 {padding: 52px !important;}
.wy-m-53 {margin: 53px !important;}
.wy-p-53 {padding: 53px !important;}
.wy-m-54 {margin: 54px !important;}
.wy-p-54 {padding: 54px !important;}
.wy-m-55 {margin: 55px !important;}
.wy-p-55 {padding: 55px !important;}
.wy-m-56 {margin: 56px !important;}
.wy-p-56 {padding: 56px !important;}
.wy-m-57 {margin: 57px !important;}
.wy-p-57 {padding: 57px !important;}
.wy-m-58 {margin: 58px !important;}
.wy-p-58 {padding: 58px !important;}
.wy-m-59 {margin: 59px !important;}
.wy-p-59 {padding: 59px !important;}
.wy-m-60 {margin: 60px !important;}
.wy-p-60 {padding: 60px !important;}
.wy-ml-0, .wy-mx-0 {margin-left: 0px !important;}
.wy-pl-0, .wy-px-0 {padding-left: 0px !important;}
.wy-ml-1, .wy-mx-1 {margin-left: 1px !important;}
.wy-pl-1, .wy-px-1 {padding-left: 1px !important;}
.wy-ml-2, .wy-mx-2 {margin-left: 2px !important;}
.wy-pl-2, .wy-px-2 {padding-left: 2px !important;}
.wy-ml-3, .wy-mx-3 {margin-left: 3px !important;}
.wy-pl-3, .wy-px-3 {padding-left: 3px !important;}
.wy-ml-4, .wy-mx-4 {margin-left: 4px !important;}
.wy-pl-4, .wy-px-4 {padding-left: 4px !important;}
.wy-ml-5, .wy-mx-5 {margin-left: 5px !important;}
.wy-pl-5, .wy-px-5 {padding-left: 5px !important;}
.wy-ml-6, .wy-mx-6 {margin-left: 6px !important;}
.wy-pl-6, .wy-px-6 {padding-left: 6px !important;}
.wy-ml-7, .wy-mx-7 {margin-left: 7px !important;}
.wy-pl-7, .wy-px-7 {padding-left: 7px !important;}
.wy-ml-8, .wy-mx-8 {margin-left: 8px !important;}
.wy-pl-8, .wy-px-8 {padding-left: 8px !important;}
.wy-ml-9, .wy-mx-9 {margin-left: 9px !important;}
.wy-pl-9, .wy-px-9 {padding-left: 9px !important;}
.wy-ml-10, .wy-mx-10 {margin-left: 10px !important;}
.wy-pl-10, .wy-px-10 {padding-left: 10px !important;}
.wy-ml-11, .wy-mx-11 {margin-left: 11px !important;}
.wy-pl-11, .wy-px-11 {padding-left: 11px !important;}
.wy-ml-12, .wy-mx-12 {margin-left: 12px !important;}
.wy-pl-12, .wy-px-12 {padding-left: 12px !important;}
.wy-ml-13, .wy-mx-13 {margin-left: 13px !important;}
.wy-pl-13, .wy-px-13 {padding-left: 13px !important;}
.wy-ml-14, .wy-mx-14 {margin-left: 14px !important;}
.wy-pl-14, .wy-px-14 {padding-left: 14px !important;}
.wy-ml-15, .wy-mx-15 {margin-left: 15px !important;}
.wy-pl-15, .wy-px-15 {padding-left: 15px !important;}
.wy-ml-16, .wy-mx-16 {margin-left: 16px !important;}
.wy-pl-16, .wy-px-16 {padding-left: 16px !important;}
.wy-ml-17, .wy-mx-17 {margin-left: 17px !important;}
.wy-pl-17, .wy-px-17 {padding-left: 17px !important;}
.wy-ml-18, .wy-mx-18 {margin-left: 18px !important;}
.wy-pl-18, .wy-px-18 {padding-left: 18px !important;}
.wy-ml-19, .wy-mx-19 {margin-left: 19px !important;}
.wy-pl-19, .wy-px-19 {padding-left: 19px !important;}
.wy-ml-20, .wy-mx-20 {margin-left: 20px !important;}
.wy-pl-20, .wy-px-20 {padding-left: 20px !important;}
.wy-ml-21, .wy-mx-21 {margin-left: 21px !important;}
.wy-pl-21, .wy-px-21 {padding-left: 21px !important;}
.wy-ml-22, .wy-mx-22 {margin-left: 22px !important;}
.wy-pl-22, .wy-px-22 {padding-left: 22px !important;}
.wy-ml-23, .wy-mx-23 {margin-left: 23px !important;}
.wy-pl-23, .wy-px-23 {padding-left: 23px !important;}
.wy-ml-24, .wy-mx-24 {margin-left: 24px !important;}
.wy-pl-24, .wy-px-24 {padding-left: 24px !important;}
.wy-ml-25, .wy-mx-25 {margin-left: 25px !important;}
.wy-pl-25, .wy-px-25 {padding-left: 25px !important;}
.wy-ml-26, .wy-mx-26 {margin-left: 26px !important;}
.wy-pl-26, .wy-px-26 {padding-left: 26px !important;}
.wy-ml-27, .wy-mx-27 {margin-left: 27px !important;}
.wy-pl-27, .wy-px-27 {padding-left: 27px !important;}
.wy-ml-28, .wy-mx-28 {margin-left: 28px !important;}
.wy-pl-28, .wy-px-28 {padding-left: 28px !important;}
.wy-ml-29, .wy-mx-29 {margin-left: 29px !important;}
.wy-pl-29, .wy-px-29 {padding-left: 29px !important;}
.wy-ml-30, .wy-mx-30 {margin-left: 30px !important;}
.wy-pl-30, .wy-px-30 {padding-left: 30px !important;}
.wy-ml-31, .wy-mx-31 {margin-left: 31px !important;}
.wy-pl-31, .wy-px-31 {padding-left: 31px !important;}
.wy-ml-32, .wy-mx-32 {margin-left: 32px !important;}
.wy-pl-32, .wy-px-32 {padding-left: 32px !important;}
.wy-ml-33, .wy-mx-33 {margin-left: 33px !important;}
.wy-pl-33, .wy-px-33 {padding-left: 33px !important;}
.wy-ml-34, .wy-mx-34 {margin-left: 34px !important;}
.wy-pl-34, .wy-px-34 {padding-left: 34px !important;}
.wy-ml-35, .wy-mx-35 {margin-left: 35px !important;}
.wy-pl-35, .wy-px-35 {padding-left: 35px !important;}
.wy-ml-36, .wy-mx-36 {margin-left: 36px !important;}
.wy-pl-36, .wy-px-36 {padding-left: 36px !important;}
.wy-ml-37, .wy-mx-37 {margin-left: 37px !important;}
.wy-pl-37, .wy-px-37 {padding-left: 37px !important;}
.wy-ml-38, .wy-mx-38 {margin-left: 38px !important;}
.wy-pl-38, .wy-px-38 {padding-left: 38px !important;}
.wy-ml-39, .wy-mx-39 {margin-left: 39px !important;}
.wy-pl-39, .wy-px-39 {padding-left: 39px !important;}
.wy-ml-40, .wy-mx-40 {margin-left: 40px !important;}
.wy-pl-40, .wy-px-40 {padding-left: 40px !important;}
.wy-ml-41, .wy-mx-41 {margin-left: 41px !important;}
.wy-pl-41, .wy-px-41 {padding-left: 41px !important;}
.wy-ml-42, .wy-mx-42 {margin-left: 42px !important;}
.wy-pl-42, .wy-px-42 {padding-left: 42px !important;}
.wy-ml-43, .wy-mx-43 {margin-left: 43px !important;}
.wy-pl-43, .wy-px-43 {padding-left: 43px !important;}
.wy-ml-44, .wy-mx-44 {margin-left: 44px !important;}
.wy-pl-44, .wy-px-44 {padding-left: 44px !important;}
.wy-ml-45, .wy-mx-45 {margin-left: 45px !important;}
.wy-pl-45, .wy-px-45 {padding-left: 45px !important;}
.wy-ml-46, .wy-mx-46 {margin-left: 46px !important;}
.wy-pl-46, .wy-px-46 {padding-left: 46px !important;}
.wy-ml-47, .wy-mx-47 {margin-left: 47px !important;}
.wy-pl-47, .wy-px-47 {padding-left: 47px !important;}
.wy-ml-48, .wy-mx-48 {margin-left: 48px !important;}
.wy-pl-48, .wy-px-48 {padding-left: 48px !important;}
.wy-ml-49, .wy-mx-49 {margin-left: 49px !important;}
.wy-pl-49, .wy-px-49 {padding-left: 49px !important;}
.wy-ml-50, .wy-mx-50 {margin-left: 50px !important;}
.wy-pl-50, .wy-px-50 {padding-left: 50px !important;}
.wy-ml-51, .wy-mx-51 {margin-left: 51px !important;}
.wy-pl-51, .wy-px-51 {padding-left: 51px !important;}
.wy-ml-52, .wy-mx-52 {margin-left: 52px !important;}
.wy-pl-52, .wy-px-52 {padding-left: 52px !important;}
.wy-ml-53, .wy-mx-53 {margin-left: 53px !important;}
.wy-pl-53, .wy-px-53 {padding-left: 53px !important;}
.wy-ml-54, .wy-mx-54 {margin-left: 54px !important;}
.wy-pl-54, .wy-px-54 {padding-left: 54px !important;}
.wy-ml-55, .wy-mx-55 {margin-left: 55px !important;}
.wy-pl-55, .wy-px-55 {padding-left: 55px !important;}
.wy-ml-56, .wy-mx-56 {margin-left: 56px !important;}
.wy-pl-56, .wy-px-56 {padding-left: 56px !important;}
.wy-ml-57, .wy-mx-57 {margin-left: 57px !important;}
.wy-pl-57, .wy-px-57 {padding-left: 57px !important;}
.wy-ml-58, .wy-mx-58 {margin-left: 58px !important;}
.wy-pl-58, .wy-px-58 {padding-left: 58px !important;}
.wy-ml-59, .wy-mx-59 {margin-left: 59px !important;}
.wy-pl-59, .wy-px-59 {padding-left: 59px !important;}
.wy-ml-60, .wy-mx-60 {margin-left: 60px !important;}
.wy-pl-60, .wy-px-60 {padding-left: 60px !important;}
.wy-mr-0, .wy-mx-0 {margin-right: 0px !important;}
.wy-pr-0, .wy-px-0 {padding-right: 0px !important;}
.wy-mr-1, .wy-mx-1 {margin-right: 1px !important;}
.wy-pr-1, .wy-px-1 {padding-right: 1px !important;}
.wy-mr-2, .wy-mx-2 {margin-right: 2px !important;}
.wy-pr-2, .wy-px-2 {padding-right: 2px !important;}
.wy-mr-3, .wy-mx-3 {margin-right: 3px !important;}
.wy-pr-3, .wy-px-3 {padding-right: 3px !important;}
.wy-mr-4, .wy-mx-4 {margin-right: 4px !important;}
.wy-pr-4, .wy-px-4 {padding-right: 4px !important;}
.wy-mr-5, .wy-mx-5 {margin-right: 5px !important;}
.wy-pr-5, .wy-px-5 {padding-right: 5px !important;}
.wy-mr-6, .wy-mx-6 {margin-right: 6px !important;}
.wy-pr-6, .wy-px-6 {padding-right: 6px !important;}
.wy-mr-7, .wy-mx-7 {margin-right: 7px !important;}
.wy-pr-7, .wy-px-7 {padding-right: 7px !important;}
.wy-mr-8, .wy-mx-8 {margin-right: 8px !important;}
.wy-pr-8, .wy-px-8 {padding-right: 8px !important;}
.wy-mr-9, .wy-mx-9 {margin-right: 9px !important;}
.wy-pr-9, .wy-px-9 {padding-right: 9px !important;}
.wy-mr-10, .wy-mx-10 {margin-right: 10px !important;}
.wy-pr-10, .wy-px-10 {padding-right: 10px !important;}
.wy-mr-11, .wy-mx-11 {margin-right: 11px !important;}
.wy-pr-11, .wy-px-11 {padding-right: 11px !important;}
.wy-mr-12, .wy-mx-12 {margin-right: 12px !important;}
.wy-pr-12, .wy-px-12 {padding-right: 12px !important;}
.wy-mr-13, .wy-mx-13 {margin-right: 13px !important;}
.wy-pr-13, .wy-px-13 {padding-right: 13px !important;}
.wy-mr-14, .wy-mx-14 {margin-right: 14px !important;}
.wy-pr-14, .wy-px-14 {padding-right: 14px !important;}
.wy-mr-15, .wy-mx-15 {margin-right: 15px !important;}
.wy-pr-15, .wy-px-15 {padding-right: 15px !important;}
.wy-mr-16, .wy-mx-16 {margin-right: 16px !important;}
.wy-pr-16, .wy-px-16 {padding-right: 16px !important;}
.wy-mr-17, .wy-mx-17 {margin-right: 17px !important;}
.wy-pr-17, .wy-px-17 {padding-right: 17px !important;}
.wy-mr-18, .wy-mx-18 {margin-right: 18px !important;}
.wy-pr-18, .wy-px-18 {padding-right: 18px !important;}
.wy-mr-19, .wy-mx-19 {margin-right: 19px !important;}
.wy-pr-19, .wy-px-19 {padding-right: 19px !important;}
.wy-mr-20, .wy-mx-20 {margin-right: 20px !important;}
.wy-pr-20, .wy-px-20 {padding-right: 20px !important;}
.wy-mr-21, .wy-mx-21 {margin-right: 21px !important;}
.wy-pr-21, .wy-px-21 {padding-right: 21px !important;}
.wy-mr-22, .wy-mx-22 {margin-right: 22px !important;}
.wy-pr-22, .wy-px-22 {padding-right: 22px !important;}
.wy-mr-23, .wy-mx-23 {margin-right: 23px !important;}
.wy-pr-23, .wy-px-23 {padding-right: 23px !important;}
.wy-mr-24, .wy-mx-24 {margin-right: 24px !important;}
.wy-pr-24, .wy-px-24 {padding-right: 24px !important;}
.wy-mr-25, .wy-mx-25 {margin-right: 25px !important;}
.wy-pr-25, .wy-px-25 {padding-right: 25px !important;}
.wy-mr-26, .wy-mx-26 {margin-right: 26px !important;}
.wy-pr-26, .wy-px-26 {padding-right: 26px !important;}
.wy-mr-27, .wy-mx-27 {margin-right: 27px !important;}
.wy-pr-27, .wy-px-27 {padding-right: 27px !important;}
.wy-mr-28, .wy-mx-28 {margin-right: 28px !important;}
.wy-pr-28, .wy-px-28 {padding-right: 28px !important;}
.wy-mr-29, .wy-mx-29 {margin-right: 29px !important;}
.wy-pr-29, .wy-px-29 {padding-right: 29px !important;}
.wy-mr-30, .wy-mx-30 {margin-right: 30px !important;}
.wy-pr-30, .wy-px-30 {padding-right: 30px !important;}
.wy-mr-31, .wy-mx-31 {margin-right: 31px !important;}
.wy-pr-31, .wy-px-31 {padding-right: 31px !important;}
.wy-mr-32, .wy-mx-32 {margin-right: 32px !important;}
.wy-pr-32, .wy-px-32 {padding-right: 32px !important;}
.wy-mr-33, .wy-mx-33 {margin-right: 33px !important;}
.wy-pr-33, .wy-px-33 {padding-right: 33px !important;}
.wy-mr-34, .wy-mx-34 {margin-right: 34px !important;}
.wy-pr-34, .wy-px-34 {padding-right: 34px !important;}
.wy-mr-35, .wy-mx-35 {margin-right: 35px !important;}
.wy-pr-35, .wy-px-35 {padding-right: 35px !important;}
.wy-mr-36, .wy-mx-36 {margin-right: 36px !important;}
.wy-pr-36, .wy-px-36 {padding-right: 36px !important;}
.wy-mr-37, .wy-mx-37 {margin-right: 37px !important;}
.wy-pr-37, .wy-px-37 {padding-right: 37px !important;}
.wy-mr-38, .wy-mx-38 {margin-right: 38px !important;}
.wy-pr-38, .wy-px-38 {padding-right: 38px !important;}
.wy-mr-39, .wy-mx-39 {margin-right: 39px !important;}
.wy-pr-39, .wy-px-39 {padding-right: 39px !important;}
.wy-mr-40, .wy-mx-40 {margin-right: 40px !important;}
.wy-pr-40, .wy-px-40 {padding-right: 40px !important;}
.wy-mr-41, .wy-mx-41 {margin-right: 41px !important;}
.wy-pr-41, .wy-px-41 {padding-right: 41px !important;}
.wy-mr-42, .wy-mx-42 {margin-right: 42px !important;}
.wy-pr-42, .wy-px-42 {padding-right: 42px !important;}
.wy-mr-43, .wy-mx-43 {margin-right: 43px !important;}
.wy-pr-43, .wy-px-43 {padding-right: 43px !important;}
.wy-mr-44, .wy-mx-44 {margin-right: 44px !important;}
.wy-pr-44, .wy-px-44 {padding-right: 44px !important;}
.wy-mr-45, .wy-mx-45 {margin-right: 45px !important;}
.wy-pr-45, .wy-px-45 {padding-right: 45px !important;}
.wy-mr-46, .wy-mx-46 {margin-right: 46px !important;}
.wy-pr-46, .wy-px-46 {padding-right: 46px !important;}
.wy-mr-47, .wy-mx-47 {margin-right: 47px !important;}
.wy-pr-47, .wy-px-47 {padding-right: 47px !important;}
.wy-mr-48, .wy-mx-48 {margin-right: 48px !important;}
.wy-pr-48, .wy-px-48 {padding-right: 48px !important;}
.wy-mr-49, .wy-mx-49 {margin-right: 49px !important;}
.wy-pr-49, .wy-px-49 {padding-right: 49px !important;}
.wy-mr-50, .wy-mx-50 {margin-right: 50px !important;}
.wy-pr-50, .wy-px-50 {padding-right: 50px !important;}
.wy-mr-51, .wy-mx-51 {margin-right: 51px !important;}
.wy-pr-51, .wy-px-51 {padding-right: 51px !important;}
.wy-mr-52, .wy-mx-52 {margin-right: 52px !important;}
.wy-pr-52, .wy-px-52 {padding-right: 52px !important;}
.wy-mr-53, .wy-mx-53 {margin-right: 53px !important;}
.wy-pr-53, .wy-px-53 {padding-right: 53px !important;}
.wy-mr-54, .wy-mx-54 {margin-right: 54px !important;}
.wy-pr-54, .wy-px-54 {padding-right: 54px !important;}
.wy-mr-55, .wy-mx-55 {margin-right: 55px !important;}
.wy-pr-55, .wy-px-55 {padding-right: 55px !important;}
.wy-mr-56, .wy-mx-56 {margin-right: 56px !important;}
.wy-pr-56, .wy-px-56 {padding-right: 56px !important;}
.wy-mr-57, .wy-mx-57 {margin-right: 57px !important;}
.wy-pr-57, .wy-px-57 {padding-right: 57px !important;}
.wy-mr-58, .wy-mx-58 {margin-right: 58px !important;}
.wy-pr-58, .wy-px-58 {padding-right: 58px !important;}
.wy-mr-59, .wy-mx-59 {margin-right: 59px !important;}
.wy-pr-59, .wy-px-59 {padding-right: 59px !important;}
.wy-mr-60, .wy-mx-60 {margin-right: 60px !important;}
.wy-pr-60, .wy-px-60 {padding-right: 60px !important;}
.wy-mt-0, .wy-my-0 {margin-top: 0px !important;}
.wy-pt-0, .wy-py-0 {padding-top: 0px !important;}
.wy-mt-1, .wy-my-1 {margin-top: 1px !important;}
.wy-pt-1, .wy-py-1 {padding-top: 1px !important;}
.wy-mt-2, .wy-my-2 {margin-top: 2px !important;}
.wy-pt-2, .wy-py-2 {padding-top: 2px !important;}
.wy-mt-3, .wy-my-3 {margin-top: 3px !important;}
.wy-pt-3, .wy-py-3 {padding-top: 3px !important;}
.wy-mt-4, .wy-my-4 {margin-top: 4px !important;}
.wy-pt-4, .wy-py-4 {padding-top: 4px !important;}
.wy-mt-5, .wy-my-5 {margin-top: 5px !important;}
.wy-pt-5, .wy-py-5 {padding-top: 5px !important;}
.wy-mt-6, .wy-my-6 {margin-top: 6px !important;}
.wy-pt-6, .wy-py-6 {padding-top: 6px !important;}
.wy-mt-7, .wy-my-7 {margin-top: 7px !important;}
.wy-pt-7, .wy-py-7 {padding-top: 7px !important;}
.wy-mt-8, .wy-my-8 {margin-top: 8px !important;}
.wy-pt-8, .wy-py-8 {padding-top: 8px !important;}
.wy-mt-9, .wy-my-9 {margin-top: 9px !important;}
.wy-pt-9, .wy-py-9 {padding-top: 9px !important;}
.wy-mt-10, .wy-my-10 {margin-top: 10px !important;}
.wy-pt-10, .wy-py-10 {padding-top: 10px !important;}
.wy-mt-11, .wy-my-11 {margin-top: 11px !important;}
.wy-pt-11, .wy-py-11 {padding-top: 11px !important;}
.wy-mt-12, .wy-my-12 {margin-top: 12px !important;}
.wy-pt-12, .wy-py-12 {padding-top: 12px !important;}
.wy-mt-13, .wy-my-13 {margin-top: 13px !important;}
.wy-pt-13, .wy-py-13 {padding-top: 13px !important;}
.wy-mt-14, .wy-my-14 {margin-top: 14px !important;}
.wy-pt-14, .wy-py-14 {padding-top: 14px !important;}
.wy-mt-15, .wy-my-15 {margin-top: 15px !important;}
.wy-pt-15, .wy-py-15 {padding-top: 15px !important;}
.wy-mt-16, .wy-my-16 {margin-top: 16px !important;}
.wy-pt-16, .wy-py-16 {padding-top: 16px !important;}
.wy-mt-17, .wy-my-17 {margin-top: 17px !important;}
.wy-pt-17, .wy-py-17 {padding-top: 17px !important;}
.wy-mt-18, .wy-my-18 {margin-top: 18px !important;}
.wy-pt-18, .wy-py-18 {padding-top: 18px !important;}
.wy-mt-19, .wy-my-19 {margin-top: 19px !important;}
.wy-pt-19, .wy-py-19 {padding-top: 19px !important;}
.wy-mt-20, .wy-my-20 {margin-top: 20px !important;}
.wy-pt-20, .wy-py-20 {padding-top: 20px !important;}
.wy-mt-21, .wy-my-21 {margin-top: 21px !important;}
.wy-pt-21, .wy-py-21 {padding-top: 21px !important;}
.wy-mt-22, .wy-my-22 {margin-top: 22px !important;}
.wy-pt-22, .wy-py-22 {padding-top: 22px !important;}
.wy-mt-23, .wy-my-23 {margin-top: 23px !important;}
.wy-pt-23, .wy-py-23 {padding-top: 23px !important;}
.wy-mt-24, .wy-my-24 {margin-top: 24px !important;}
.wy-pt-24, .wy-py-24 {padding-top: 24px !important;}
.wy-mt-25, .wy-my-25 {margin-top: 25px !important;}
.wy-pt-25, .wy-py-25 {padding-top: 25px !important;}
.wy-mt-26, .wy-my-26 {margin-top: 26px !important;}
.wy-pt-26, .wy-py-26 {padding-top: 26px !important;}
.wy-mt-27, .wy-my-27 {margin-top: 27px !important;}
.wy-pt-27, .wy-py-27 {padding-top: 27px !important;}
.wy-mt-28, .wy-my-28 {margin-top: 28px !important;}
.wy-pt-28, .wy-py-28 {padding-top: 28px !important;}
.wy-mt-29, .wy-my-29 {margin-top: 29px !important;}
.wy-pt-29, .wy-py-29 {padding-top: 29px !important;}
.wy-mt-30, .wy-my-30 {margin-top: 30px !important;}
.wy-pt-30, .wy-py-30 {padding-top: 30px !important;}
.wy-mt-31, .wy-my-31 {margin-top: 31px !important;}
.wy-pt-31, .wy-py-31 {padding-top: 31px !important;}
.wy-mt-32, .wy-my-32 {margin-top: 32px !important;}
.wy-pt-32, .wy-py-32 {padding-top: 32px !important;}
.wy-mt-33, .wy-my-33 {margin-top: 33px !important;}
.wy-pt-33, .wy-py-33 {padding-top: 33px !important;}
.wy-mt-34, .wy-my-34 {margin-top: 34px !important;}
.wy-pt-34, .wy-py-34 {padding-top: 34px !important;}
.wy-mt-35, .wy-my-35 {margin-top: 35px !important;}
.wy-pt-35, .wy-py-35 {padding-top: 35px !important;}
.wy-mt-36, .wy-my-36 {margin-top: 36px !important;}
.wy-pt-36, .wy-py-36 {padding-top: 36px !important;}
.wy-mt-37, .wy-my-37 {margin-top: 37px !important;}
.wy-pt-37, .wy-py-37 {padding-top: 37px !important;}
.wy-mt-38, .wy-my-38 {margin-top: 38px !important;}
.wy-pt-38, .wy-py-38 {padding-top: 38px !important;}
.wy-mt-39, .wy-my-39 {margin-top: 39px !important;}
.wy-pt-39, .wy-py-39 {padding-top: 39px !important;}
.wy-mt-40, .wy-my-40 {margin-top: 40px !important;}
.wy-pt-40, .wy-py-40 {padding-top: 40px !important;}
.wy-mt-41, .wy-my-41 {margin-top: 41px !important;}
.wy-pt-41, .wy-py-41 {padding-top: 41px !important;}
.wy-mt-42, .wy-my-42 {margin-top: 42px !important;}
.wy-pt-42, .wy-py-42 {padding-top: 42px !important;}
.wy-mt-43, .wy-my-43 {margin-top: 43px !important;}
.wy-pt-43, .wy-py-43 {padding-top: 43px !important;}
.wy-mt-44, .wy-my-44 {margin-top: 44px !important;}
.wy-pt-44, .wy-py-44 {padding-top: 44px !important;}
.wy-mt-45, .wy-my-45 {margin-top: 45px !important;}
.wy-pt-45, .wy-py-45 {padding-top: 45px !important;}
.wy-mt-46, .wy-my-46 {margin-top: 46px !important;}
.wy-pt-46, .wy-py-46 {padding-top: 46px !important;}
.wy-mt-47, .wy-my-47 {margin-top: 47px !important;}
.wy-pt-47, .wy-py-47 {padding-top: 47px !important;}
.wy-mt-48, .wy-my-48 {margin-top: 48px !important;}
.wy-pt-48, .wy-py-48 {padding-top: 48px !important;}
.wy-mt-49, .wy-my-49 {margin-top: 49px !important;}
.wy-pt-49, .wy-py-49 {padding-top: 49px !important;}
.wy-mt-50, .wy-my-50 {margin-top: 50px !important;}
.wy-pt-50, .wy-py-50 {padding-top: 50px !important;}
.wy-mt-51, .wy-my-51 {margin-top: 51px !important;}
.wy-pt-51, .wy-py-51 {padding-top: 51px !important;}
.wy-mt-52, .wy-my-52 {margin-top: 52px !important;}
.wy-pt-52, .wy-py-52 {padding-top: 52px !important;}
.wy-mt-53, .wy-my-53 {margin-top: 53px !important;}
.wy-pt-53, .wy-py-53 {padding-top: 53px !important;}
.wy-mt-54, .wy-my-54 {margin-top: 54px !important;}
.wy-pt-54, .wy-py-54 {padding-top: 54px !important;}
.wy-mt-55, .wy-my-55 {margin-top: 55px !important;}
.wy-pt-55, .wy-py-55 {padding-top: 55px !important;}
.wy-mt-56, .wy-my-56 {margin-top: 56px !important;}
.wy-pt-56, .wy-py-56 {padding-top: 56px !important;}
.wy-mt-57, .wy-my-57 {margin-top: 57px !important;}
.wy-pt-57, .wy-py-57 {padding-top: 57px !important;}
.wy-mt-58, .wy-my-58 {margin-top: 58px !important;}
.wy-pt-58, .wy-py-58 {padding-top: 58px !important;}
.wy-mt-59, .wy-my-59 {margin-top: 59px !important;}
.wy-pt-59, .wy-py-59 {padding-top: 59px !important;}
.wy-mt-60, .wy-my-60 {margin-top: 60px !important;}
.wy-pt-60, .wy-py-60 {padding-top: 60px !important;}
.wy-mb-0, .wy-my-0 {margin-bottom: 0px !important;}
.wy-pb-0, .wy-py-0 {padding-bottom: 0px !important;}
.wy-mb-1, .wy-my-1 {margin-bottom: 1px !important;}
.wy-pb-1, .wy-py-1 {padding-bottom: 1px !important;}
.wy-mb-2, .wy-my-2 {margin-bottom: 2px !important;}
.wy-pb-2, .wy-py-2 {padding-bottom: 2px !important;}
.wy-mb-3, .wy-my-3 {margin-bottom: 3px !important;}
.wy-pb-3, .wy-py-3 {padding-bottom: 3px !important;}
.wy-mb-4, .wy-my-4 {margin-bottom: 4px !important;}
.wy-pb-4, .wy-py-4 {padding-bottom: 4px !important;}
.wy-mb-5, .wy-my-5 {margin-bottom: 5px !important;}
.wy-pb-5, .wy-py-5 {padding-bottom: 5px !important;}
.wy-mb-6, .wy-my-6 {margin-bottom: 6px !important;}
.wy-pb-6, .wy-py-6 {padding-bottom: 6px !important;}
.wy-mb-7, .wy-my-7 {margin-bottom: 7px !important;}
.wy-pb-7, .wy-py-7 {padding-bottom: 7px !important;}
.wy-mb-8, .wy-my-8 {margin-bottom: 8px !important;}
.wy-pb-8, .wy-py-8 {padding-bottom: 8px !important;}
.wy-mb-9, .wy-my-9 {margin-bottom: 9px !important;}
.wy-pb-9, .wy-py-9 {padding-bottom: 9px !important;}
.wy-mb-10, .wy-my-10 {margin-bottom: 10px !important;}
.wy-pb-10, .wy-py-10 {padding-bottom: 10px !important;}
.wy-mb-11, .wy-my-11 {margin-bottom: 11px !important;}
.wy-pb-11, .wy-py-11 {padding-bottom: 11px !important;}
.wy-mb-12, .wy-my-12 {margin-bottom: 12px !important;}
.wy-pb-12, .wy-py-12 {padding-bottom: 12px !important;}
.wy-mb-13, .wy-my-13 {margin-bottom: 13px !important;}
.wy-pb-13, .wy-py-13 {padding-bottom: 13px !important;}
.wy-mb-14, .wy-my-14 {margin-bottom: 14px !important;}
.wy-pb-14, .wy-py-14 {padding-bottom: 14px !important;}
.wy-mb-15, .wy-my-15 {margin-bottom: 15px !important;}
.wy-pb-15, .wy-py-15 {padding-bottom: 15px !important;}
.wy-mb-16, .wy-my-16 {margin-bottom: 16px !important;}
.wy-pb-16, .wy-py-16 {padding-bottom: 16px !important;}
.wy-mb-17, .wy-my-17 {margin-bottom: 17px !important;}
.wy-pb-17, .wy-py-17 {padding-bottom: 17px !important;}
.wy-mb-18, .wy-my-18 {margin-bottom: 18px !important;}
.wy-pb-18, .wy-py-18 {padding-bottom: 18px !important;}
.wy-mb-19, .wy-my-19 {margin-bottom: 19px !important;}
.wy-pb-19, .wy-py-19 {padding-bottom: 19px !important;}
.wy-mb-20, .wy-my-20 {margin-bottom: 20px !important;}
.wy-pb-20, .wy-py-20 {padding-bottom: 20px !important;}
.wy-mb-21, .wy-my-21 {margin-bottom: 21px !important;}
.wy-pb-21, .wy-py-21 {padding-bottom: 21px !important;}
.wy-mb-22, .wy-my-22 {margin-bottom: 22px !important;}
.wy-pb-22, .wy-py-22 {padding-bottom: 22px !important;}
.wy-mb-23, .wy-my-23 {margin-bottom: 23px !important;}
.wy-pb-23, .wy-py-23 {padding-bottom: 23px !important;}
.wy-mb-24, .wy-my-24 {margin-bottom: 24px !important;}
.wy-pb-24, .wy-py-24 {padding-bottom: 24px !important;}
.wy-mb-25, .wy-my-25 {margin-bottom: 25px !important;}
.wy-pb-25, .wy-py-25 {padding-bottom: 25px !important;}
.wy-mb-26, .wy-my-26 {margin-bottom: 26px !important;}
.wy-pb-26, .wy-py-26 {padding-bottom: 26px !important;}
.wy-mb-27, .wy-my-27 {margin-bottom: 27px !important;}
.wy-pb-27, .wy-py-27 {padding-bottom: 27px !important;}
.wy-mb-28, .wy-my-28 {margin-bottom: 28px !important;}
.wy-pb-28, .wy-py-28 {padding-bottom: 28px !important;}
.wy-mb-29, .wy-my-29 {margin-bottom: 29px !important;}
.wy-pb-29, .wy-py-29 {padding-bottom: 29px !important;}
.wy-mb-30, .wy-my-30 {margin-bottom: 30px !important;}
.wy-pb-30, .wy-py-30 {padding-bottom: 30px !important;}
.wy-mb-31, .wy-my-31 {margin-bottom: 31px !important;}
.wy-pb-31, .wy-py-31 {padding-bottom: 31px !important;}
.wy-mb-32, .wy-my-32 {margin-bottom: 32px !important;}
.wy-pb-32, .wy-py-32 {padding-bottom: 32px !important;}
.wy-mb-33, .wy-my-33 {margin-bottom: 33px !important;}
.wy-pb-33, .wy-py-33 {padding-bottom: 33px !important;}
.wy-mb-34, .wy-my-34 {margin-bottom: 34px !important;}
.wy-pb-34, .wy-py-34 {padding-bottom: 34px !important;}
.wy-mb-35, .wy-my-35 {margin-bottom: 35px !important;}
.wy-pb-35, .wy-py-35 {padding-bottom: 35px !important;}
.wy-mb-36, .wy-my-36 {margin-bottom: 36px !important;}
.wy-pb-36, .wy-py-36 {padding-bottom: 36px !important;}
.wy-mb-37, .wy-my-37 {margin-bottom: 37px !important;}
.wy-pb-37, .wy-py-37 {padding-bottom: 37px !important;}
.wy-mb-38, .wy-my-38 {margin-bottom: 38px !important;}
.wy-pb-38, .wy-py-38 {padding-bottom: 38px !important;}
.wy-mb-39, .wy-my-39 {margin-bottom: 39px !important;}
.wy-pb-39, .wy-py-39 {padding-bottom: 39px !important;}
.wy-mb-40, .wy-my-40 {margin-bottom: 40px !important;}
.wy-pb-40, .wy-py-40 {padding-bottom: 40px !important;}
.wy-mb-41, .wy-my-41 {margin-bottom: 41px !important;}
.wy-pb-41, .wy-py-41 {padding-bottom: 41px !important;}
.wy-mb-42, .wy-my-42 {margin-bottom: 42px !important;}
.wy-pb-42, .wy-py-42 {padding-bottom: 42px !important;}
.wy-mb-43, .wy-my-43 {margin-bottom: 43px !important;}
.wy-pb-43, .wy-py-43 {padding-bottom: 43px !important;}
.wy-mb-44, .wy-my-44 {margin-bottom: 44px !important;}
.wy-pb-44, .wy-py-44 {padding-bottom: 44px !important;}
.wy-mb-45, .wy-my-45 {margin-bottom: 45px !important;}
.wy-pb-45, .wy-py-45 {padding-bottom: 45px !important;}
.wy-mb-46, .wy-my-46 {margin-bottom: 46px !important;}
.wy-pb-46, .wy-py-46 {padding-bottom: 46px !important;}
.wy-mb-47, .wy-my-47 {margin-bottom: 47px !important;}
.wy-pb-47, .wy-py-47 {padding-bottom: 47px !important;}
.wy-mb-48, .wy-my-48 {margin-bottom: 48px !important;}
.wy-pb-48, .wy-py-48 {padding-bottom: 48px !important;}
.wy-mb-49, .wy-my-49 {margin-bottom: 49px !important;}
.wy-pb-49, .wy-py-49 {padding-bottom: 49px !important;}
.wy-mb-50, .wy-my-50 {margin-bottom: 50px !important;}
.wy-pb-50, .wy-py-50 {padding-bottom: 50px !important;}
.wy-mb-51, .wy-my-51 {margin-bottom: 51px !important;}
.wy-pb-51, .wy-py-51 {padding-bottom: 51px !important;}
.wy-mb-52, .wy-my-52 {margin-bottom: 52px !important;}
.wy-pb-52, .wy-py-52 {padding-bottom: 52px !important;}
.wy-mb-53, .wy-my-53 {margin-bottom: 53px !important;}
.wy-pb-53, .wy-py-53 {padding-bottom: 53px !important;}
.wy-mb-54, .wy-my-54 {margin-bottom: 54px !important;}
.wy-pb-54, .wy-py-54 {padding-bottom: 54px !important;}
.wy-mb-55, .wy-my-55 {margin-bottom: 55px !important;}
.wy-pb-55, .wy-py-55 {padding-bottom: 55px !important;}
.wy-mb-56, .wy-my-56 {margin-bottom: 56px !important;}
.wy-pb-56, .wy-py-56 {padding-bottom: 56px !important;}
.wy-mb-57, .wy-my-57 {margin-bottom: 57px !important;}
.wy-pb-57, .wy-py-57 {padding-bottom: 57px !important;}
.wy-mb-58, .wy-my-58 {margin-bottom: 58px !important;}
.wy-pb-58, .wy-py-58 {padding-bottom: 58px !important;}
.wy-mb-59, .wy-my-59 {margin-bottom: 59px !important;}
.wy-pb-59, .wy-py-59 {padding-bottom: 59px !important;}
.wy-mb-60, .wy-my-60 {margin-bottom: 60px !important;}
.wy-pb-60, .wy-py-60 {padding-bottom: 60px !important;}
/*内外边距end*/
/*字号start*/
.wy-font-sm-12 {font-size: 12px !important;line-height: 20px !important;}
.wy-font-sm-13 {font-size: 13px !important;line-height: 21px !important;}
.wy-font-sm-14 {font-size: 14px !important;line-height: 22px !important;}
.wy-font-sm-15 {font-size: 15px !important;line-height: 23px !important;}
.wy-font-sm-16 {font-size: 16px !important;line-height: 24px !important;}
.wy-font-sm-17 {font-size: 17px !important;line-height: 25px !important;}
.wy-font-sm-18 {font-size: 18px !important;line-height: 26px !important;}
.wy-font-sm-19 {font-size: 19px !important;line-height: 27px !important;}
.wy-font-sm-20 {font-size: 20px !important;line-height: 28px !important;}
.wy-font-sm-21 {font-size: 21px !important;line-height: 29px !important;}
.wy-font-sm-22 {font-size: 22px !important;line-height: 30px !important;}
.wy-font-sm-23 {font-size: 23px !important;line-height: 31px !important;}
.wy-font-sm-24 {font-size: 24px !important;line-height: 32px !important;}
.wy-font-sm-25 {font-size: 25px !important;line-height: 33px !important;}
.wy-font-sm-26 {font-size: 26px !important;line-height: 34px !important;}
.wy-font-sm-27 {font-size: 27px !important;line-height: 35px !important;}
.wy-font-sm-28 {font-size: 28px !important;line-height: 36px !important;}
.wy-font-sm-29 {font-size: 29px !important;line-height: 37px !important;}
.wy-font-sm-30 {font-size: 30px !important;line-height: 38px !important;}
@media (min-width: 768px) {.wy-font-12 {font-size: 12px !important;line-height: 22px !important;}
	.wy-font-13 {font-size: 13px !important;line-height: 23px !important;}
	.wy-font-14 {font-size: 14px !important;line-height: 24px !important;}
	.wy-font-15 {font-size: 15px !important;line-height: 25px !important;}
	.wy-font-16 {font-size: 16px !important;line-height: 26px !important;}
	.wy-font-17 {font-size: 17px !important;line-height: 27px !important;}
	.wy-font-18 {font-size: 18px !important;line-height: 28px !important;}
	.wy-font-19 {font-size: 19px !important;line-height: 29px !important;}
	.wy-font-20 {font-size: 20px !important;line-height: 30px !important;}
	.wy-font-21 {font-size: 21px !important;line-height: 31px !important;}
	.wy-font-22 {font-size: 22px !important;line-height: 32px !important;}
	.wy-font-23 {font-size: 23px !important;line-height: 33px !important;}
	.wy-font-24 {font-size: 24px !important;line-height: 34px !important;}
	.wy-font-25 {font-size: 25px !important;line-height: 35px !important;}
	.wy-font-26 {font-size: 26px !important;line-height: 36px !important;}
	.wy-font-27 {font-size: 27px !important;line-height: 37px !important;}
	.wy-font-28 {font-size: 28px !important;line-height: 38px !important;}
	.wy-font-29 {font-size: 29px !important;line-height: 39px !important;}
	.wy-font-30 {font-size: 30px !important;line-height: 40px !important;}
	.wy-font-31 {font-size: 31px !important;line-height: 41px !important;}
	.wy-font-32 {font-size: 32px !important;line-height: 42px !important;}
	.wy-font-33 {font-size: 33px !important;line-height: 43px !important;}
	.wy-font-34 {font-size: 34px !important;line-height: 44px !important;}
}
@media (min-width: 992px) {.wy-font-lg-12 {font-size: 12px !important;line-height: 24px !important;}
	.wy-font-lg-13 {font-size: 13px !important;line-height: 25px !important;}
	.wy-font-lg-14 {font-size: 14px !important;line-height: 26px !important;}
	.wy-font-lg-15 {font-size: 15px !important;line-height: 27px !important;}
	.wy-font-lg-16 {font-size: 16px !important;line-height: 28px !important;}
	.wy-font-lg-17 {font-size: 17px !important;line-height: 29px !important;}
	.wy-font-lg-18 {font-size: 18px !important;line-height: 30px !important;}
	.wy-font-lg-19 {font-size: 19px !important;line-height: 31px !important;}
	.wy-font-lg-20 {font-size: 20px !important;line-height: 32px !important;}
	.wy-font-lg-21 {font-size: 21px !important;line-height: 33px !important;}
	.wy-font-lg-22 {font-size: 22px !important;line-height: 34px !important;}
	.wy-font-lg-23 {font-size: 23px !important;line-height: 35px !important;}
	.wy-font-lg-24 {font-size: 24px !important;line-height: 36px !important;}
	.wy-font-lg-25 {font-size: 25px !important;line-height: 37px !important;}
	.wy-font-lg-26 {font-size: 26px !important;line-height: 38px !important;}
	.wy-font-lg-27 {font-size: 27px !important;line-height: 39px !important;}
	.wy-font-lg-28 {font-size: 28px !important;line-height: 40px !important;}
	.wy-font-lg-29 {font-size: 29px !important;line-height: 41px !important;}
	.wy-font-lg-30 {font-size: 30px !important;line-height: 42px !important;}
	.wy-font-lg-31 {font-size: 31px !important;line-height: 43px !important;}
	.wy-font-lg-32 {font-size: 32px !important;line-height: 44px !important;}
	.wy-font-lg-33 {font-size: 33px !important;line-height: 45px !important;}
	.wy-font-lg-34 {font-size: 34px !important;line-height: 46px !important;}
	.wy-font-lg-35 {font-size: 35px !important;line-height: 47px !important;}
	.wy-font-lg-36 {font-size: 36px !important;line-height: 48px !important;}
	.wy-font-lg-37 {font-size: 37px !important;line-height: 49px !important;}
	.wy-font-lg-38 {font-size: 38px !important;line-height: 50px !important;}
	.wy-font-lg-39 {font-size: 39px !important;line-height: 51px !important;}
	.wy-font-lg-40 {font-size: 40px !important;line-height: 52px !important;}
}
/*字号end*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {margin-bottom: 8px;font-weight: 500;line-height: 1.2;}
input[type="search"]::-webkit-search-cancel-button {display: none;autocomplete: off;}
input[type="search"]::before {content: "\f002";position: absolute;right: 0;top: 0;width: 20px;height: 20px;font-size: 20px;line-height: 2;}
a {cursor: pointer;}
a:link {text-decoration: none;}
a:visited {text-decoration: none;color: inherit;}
a:hover {text-decoration: none;color: var(--type-primary);}
a:active, a {text-decoration: none;color: inherit;}
[tabindex="-1"]:focus:not(:focus-visible) {outline: 0 !important;}
[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {cursor: pointer;}
img {vertical-align: middle;border-style: none;}
table {box-shadow: -1px -1px 2px var(--border), 1px 1px 2px var(--border);border-radius: 5px;border-collapse: collapse;width: 100%;}
table th {color: var(--title);padding: 5px 10px;}
table tr:not(:last-child) {border-bottom: 1px solid var(--border);}
table td {color: var(--secondary);padding: 5px 15px;font-size: 16px;background-color: var(--background);}
@media (max-width: 800px) {table th {display: none;}
}
.overlay {pointer-events: none;}
.search {position: relative;}
.search>a {position: absolute;right: 0;color: var(--gray-6);padding: 1.5rem;}
.dividers {color: var(--dividers) !important;}
.background-disable {background: var(--disable) !important;}
.background {background-color: var(--background) !important;}
.table-header {background-color: var(--table-header) !important;}
/*图片展示*/
.wy-ratio-1-1 {padding-bottom: 50%;padding-top: 50%;}
.wy-ratio-3-2 {padding-top: calc(50% / 3 * 2);padding-bottom: calc(50% / 3 * 2);}
.wy-ratio-4-3 {padding-top: calc(50% / 4 * 3);padding-bottom: calc(50% / 4 * 3);}
.wy-ratio-16-9 {padding-top: calc(50% / 16 * 9);padding-bottom: calc(50% / 16 * 9);}
.wy-ratio-16-10 {padding-top: calc(50% / 16 * 10);padding-bottom: calc(50% / 16 * 10);}
.wy-ratio-642-975 {padding-top: calc(50% / 642 * 975);padding-bottom: calc(50% / 642 * 975);}
.wy-ratio-375-667 {padding-top: calc(50% / 375 * 667);padding-bottom: calc(50% / 375 * 667);}
.wy-ratio-375-812 {padding-top: calc(50% / 375 * 812);padding-bottom: calc(50% / 375 * 812);}
[class*="wy-ratio-"] {max-width: 100%;width: 100%;height: 0;display: flex;align-items: center;justify-content: center;overflow: hidden;}
/*tag标签*/
.wy-tag {border: 1px solid;border-radius: 4px;line-height: 1.5;padding: 0 5px;margin: 5px 0;margin-right: 5px;}
.wy-tag-outline-danger {border-color: var(--type-danger) !important;color: var(--type-danger) !important;}
.wy-tag-outline-warning {border-color: var(--type-warning) !important;color: var(--type-warning) !important;}
.wy-tag-outline-success {border-color: var(--type-success) !important;color: var(--type-success) !important;}
.wy-tag-danger {background: var(--type-danger) !important;color: white !important;}
.wy-tag-warning {background: var(--type-warning) !important;color: white !important;}
.wy-tag-success {background: var(--type-success) !important;color: white !important;}
/*栅格系统*/
.row {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;margin-right: -15px;margin-left: -15px;}
.no-gutters {margin-right: 0;margin-left: 0;}
.no-gutters>.col, .no-gutters>[class*=col-] {padding-right: 0;padding-left: 0;}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {position: relative;width: 100%;padding: 12px;}
.col {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;min-width: 0;max-width: 100%;}
.row-cols-1>* {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
.row-cols-2>* {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
.row-cols-3>* {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
.row-cols-4>* {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
.row-cols-5>* {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20%;}
.row-cols-6>* {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
.col-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100%;}
.col-1 {-ms-flex: 0 0 8.333333%;flex: 0 0 8.333333%;max-width: 8.333333%;}
.col-2 {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
.col-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
.col-4 {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
.col-5 {-ms-flex: 0 0 41.666667%;flex: 0 0 41.666667%;max-width: 41.666667%;}
.col-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
.col-7 {-ms-flex: 0 0 58.333333%;flex: 0 0 58.333333%;max-width: 58.333333%;}
.col-8 {-ms-flex: 0 0 66.666667%;flex: 0 0 66.666667%;max-width: 66.666667%;}
.col-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75%;}
.col-10 {-ms-flex: 0 0 83.333333%;flex: 0 0 83.333333%;max-width: 83.333333%;}
.col-11 {-ms-flex: 0 0 91.666667%;flex: 0 0 91.666667%;max-width: 91.666667%;}
.col-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
.order-first {-ms-flex-order: -1;order: -1;}
.order-last {-ms-flex-order: 13;order: 13;}
.order-0 {-ms-flex-order: 0;order: 0;}
.order-1 {-ms-flex-order: 1;order: 1;}
.order-2 {-ms-flex-order: 2;order: 2;}
.order-3 {-ms-flex-order: 3;order: 3;}
.order-4 {-ms-flex-order: 4;order: 4;}
.order-5 {-ms-flex-order: 5;order: 5;}
.order-6 {-ms-flex-order: 6;order: 6;}
.order-7 {-ms-flex-order: 7;order: 7;}
.order-8 {-ms-flex-order: 8;order: 8;}
.order-9 {-ms-flex-order: 9;order: 9;}
.order-10 {-ms-flex-order: 10;order: 10;}
.order-11 {-ms-flex-order: 11;order: 11;}
.order-12 {-ms-flex-order: 12;order: 12;}
.offset-1 {margin-left: 8.333333%;}
.offset-2 {margin-left: 16.666667%;}
.offset-3 {margin-left: 25%;}
.offset-4 {margin-left: 33.333333%;}
.offset-5 {margin-left: 41.666667%;}
.offset-6 {margin-left: 50%;}
.offset-7 {margin-left: 58.333333%;}
.offset-8 {margin-left: 66.666667%;}
.offset-9 {margin-left: 75%;}
.offset-10 {margin-left: 83.333333%;}
.offset-11 {margin-left: 91.666667%;}
@media (min-width: 576px) {.col-sm {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;min-width: 0;max-width: 100%;}
	.row-cols-sm-1>* {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.row-cols-sm-2>* {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.row-cols-sm-3>* {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.row-cols-sm-4>* {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.row-cols-sm-5>* {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20%;}
	.row-cols-sm-6>* {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-sm-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100%;}
	.col-sm-1 {-ms-flex: 0 0 8.333333%;flex: 0 0 8.333333%;max-width: 8.333333%;}
	.col-sm-2 {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-sm-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.col-sm-4 {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.col-sm-5 {-ms-flex: 0 0 41.666667%;flex: 0 0 41.666667%;max-width: 41.666667%;}
	.col-sm-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.col-sm-7 {-ms-flex: 0 0 58.333333%;flex: 0 0 58.333333%;max-width: 58.333333%;}
	.col-sm-8 {-ms-flex: 0 0 66.666667%;flex: 0 0 66.666667%;max-width: 66.666667%;}
	.col-sm-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75%;}
	.col-sm-10 {-ms-flex: 0 0 83.333333%;flex: 0 0 83.333333%;max-width: 83.333333%;}
	.col-sm-11 {-ms-flex: 0 0 91.666667%;flex: 0 0 91.666667%;max-width: 91.666667%;}
	.col-sm-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.order-sm-first {-ms-flex-order: -1;order: -1;}
	.order-sm-last {-ms-flex-order: 13;order: 13;}
	.order-sm-0 {-ms-flex-order: 0;order: 0;}
	.order-sm-1 {-ms-flex-order: 1;order: 1;}
	.order-sm-2 {-ms-flex-order: 2;order: 2;}
	.order-sm-3 {-ms-flex-order: 3;order: 3;}
	.order-sm-4 {-ms-flex-order: 4;order: 4;}
	.order-sm-5 {-ms-flex-order: 5;order: 5;}
	.order-sm-6 {-ms-flex-order: 6;order: 6;}
	.order-sm-7 {-ms-flex-order: 7;order: 7;}
	.order-sm-8 {-ms-flex-order: 8;order: 8;}
	.order-sm-9 {-ms-flex-order: 9;order: 9;}
	.order-sm-10 {-ms-flex-order: 10;order: 10;}
	.order-sm-11 {-ms-flex-order: 11;order: 11;}
	.order-sm-12 {-ms-flex-order: 12;order: 12;}
	.offset-sm-0 {margin-left: 0;}
	.offset-sm-1 {margin-left: 8.333333%;}
	.offset-sm-2 {margin-left: 16.666667%;}
	.offset-sm-3 {margin-left: 25%;}
	.offset-sm-4 {margin-left: 33.333333%;}
	.offset-sm-5 {margin-left: 41.666667%;}
	.offset-sm-6 {margin-left: 50%;}
	.offset-sm-7 {margin-left: 58.333333%;}
	.offset-sm-8 {margin-left: 66.666667%;}
	.offset-sm-9 {margin-left: 75%;}
	.offset-sm-10 {margin-left: 83.333333%;}
	.offset-sm-11 {margin-left: 91.666667%;}
}
@media (min-width: 768px) {.col-md {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;min-width: 0;max-width: 100%;}
	.row-cols-md-1>* {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.row-cols-md-2>* {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.row-cols-md-3>* {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.row-cols-md-4>* {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.row-cols-md-5>* {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20%;}
	.row-cols-md-6>* {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-md-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100%;}
	.col-md-1 {-ms-flex: 0 0 8.333333%;flex: 0 0 8.333333%;max-width: 8.333333%;}
	.col-md-2 {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-md-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.col-md-4 {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.col-md-5 {-ms-flex: 0 0 41.666667%;flex: 0 0 41.666667%;max-width: 41.666667%;}
	.col-md-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.col-md-7 {-ms-flex: 0 0 58.333333%;flex: 0 0 58.333333%;max-width: 58.333333%;}
	.col-md-8 {-ms-flex: 0 0 66.666667%;flex: 0 0 66.666667%;max-width: 66.666667%;}
	.col-md-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75%;}
	.col-md-10 {-ms-flex: 0 0 83.333333%;flex: 0 0 83.333333%;max-width: 83.333333%;}
	.col-md-11 {-ms-flex: 0 0 91.666667%;flex: 0 0 91.666667%;max-width: 91.666667%;}
	.col-md-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.order-md-first {-ms-flex-order: -1;order: -1;}
	.order-md-last {-ms-flex-order: 13;order: 13;}
	.order-md-0 {-ms-flex-order: 0;order: 0;}
	.order-md-1 {-ms-flex-order: 1;order: 1;}
	.order-md-2 {-ms-flex-order: 2;order: 2;}
	.order-md-3 {-ms-flex-order: 3;order: 3;}
	.order-md-4 {-ms-flex-order: 4;order: 4;}
	.order-md-5 {-ms-flex-order: 5;order: 5;}
	.order-md-6 {-ms-flex-order: 6;order: 6;}
	.order-md-7 {-ms-flex-order: 7;order: 7;}
	.order-md-8 {-ms-flex-order: 8;order: 8;}
	.order-md-9 {-ms-flex-order: 9;order: 9;}
	.order-md-10 {-ms-flex-order: 10;order: 10;}
	.order-md-11 {-ms-flex-order: 11;order: 11;}
	.order-md-12 {-ms-flex-order: 12;order: 12;}
	.offset-md-0 {margin-left: 0;}
	.offset-md-1 {margin-left: 8.333333%;}
	.offset-md-2 {margin-left: 16.666667%;}
	.offset-md-3 {margin-left: 25%;}
	.offset-md-4 {margin-left: 33.333333%;}
	.offset-md-5 {margin-left: 41.666667%;}
	.offset-md-6 {margin-left: 50%;}
	.offset-md-7 {margin-left: 58.333333%;}
	.offset-md-8 {margin-left: 66.666667%;}
	.offset-md-9 {margin-left: 75%;}
	.offset-md-10 {margin-left: 83.333333%;}
	.offset-md-11 {margin-left: 91.666667%;}
}
@media (min-width: 992px) {.col-lg {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;min-width: 0;max-width: 100%;}
	.row-cols-lg-1>* {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.row-cols-lg-2>* {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.row-cols-lg-3>* {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.row-cols-lg-4>* {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.row-cols-lg-5>* {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20%;}
	.row-cols-lg-6>* {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-lg-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100%;}
	.col-lg-1 {-ms-flex: 0 0 8.333333%;flex: 0 0 8.333333%;max-width: 8.333333%;}
	.col-lg-2 {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-lg-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.col-lg-4 {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.col-lg-5 {-ms-flex: 0 0 41.666667%;flex: 0 0 41.666667%;max-width: 41.666667%;}
	.col-lg-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.col-lg-7 {-ms-flex: 0 0 58.333333%;flex: 0 0 58.333333%;max-width: 58.333333%;}
	.col-lg-8 {-ms-flex: 0 0 66.666667%;flex: 0 0 66.666667%;max-width: 66.666667%;}
	.col-lg-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75%;}
	.col-lg-10 {-ms-flex: 0 0 83.333333%;flex: 0 0 83.333333%;max-width: 83.333333%;}
	.col-lg-11 {-ms-flex: 0 0 91.666667%;flex: 0 0 91.666667%;max-width: 91.666667%;}
	.col-lg-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.order-lg-first {-ms-flex-order: -1;order: -1;}
	.order-lg-last {-ms-flex-order: 13;order: 13;}
	.order-lg-0 {-ms-flex-order: 0;order: 0;}
	.order-lg-1 {-ms-flex-order: 1;order: 1;}
	.order-lg-2 {-ms-flex-order: 2;order: 2;}
	.order-lg-3 {-ms-flex-order: 3;order: 3;}
	.order-lg-4 {-ms-flex-order: 4;order: 4;}
	.order-lg-5 {-ms-flex-order: 5;order: 5;}
	.order-lg-6 {-ms-flex-order: 6;order: 6;}
	.order-lg-7 {-ms-flex-order: 7;order: 7;}
	.order-lg-8 {-ms-flex-order: 8;order: 8;}
	.order-lg-9 {-ms-flex-order: 9;order: 9;}
	.order-lg-10 {-ms-flex-order: 10;order: 10;}
	.order-lg-11 {-ms-flex-order: 11;order: 11;}
	.order-lg-12 {-ms-flex-order: 12;order: 12;}
	.offset-lg-0 {margin-left: 0;}
	.offset-lg-1 {margin-left: 8.333333%;}
	.offset-lg-2 {margin-left: 16.666667%;}
	.offset-lg-3 {margin-left: 25%;}
	.offset-lg-4 {margin-left: 33.333333%;}
	.offset-lg-5 {margin-left: 41.666667%;}
	.offset-lg-6 {margin-left: 50%;}
	.offset-lg-7 {margin-left: 58.333333%;}
	.offset-lg-8 {margin-left: 66.666667%;}
	.offset-lg-9 {margin-left: 75%;}
	.offset-lg-10 {margin-left: 83.333333%;}
	.offset-lg-11 {margin-left: 91.666667%;}
}
@media (min-width: 1200px) {.col-xl {-ms-flex-preferred-size: 0;flex-basis: 0;-ms-flex-positive: 1;flex-grow: 1;min-width: 0;max-width: 100%;}
	.row-cols-xl-1>* {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.row-cols-xl-2>* {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.row-cols-xl-3>* {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.row-cols-xl-4>* {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.row-cols-xl-5>* {-ms-flex: 0 0 20%;flex: 0 0 20%;max-width: 20%;}
	.row-cols-xl-6>* {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-xl-auto {-ms-flex: 0 0 auto;flex: 0 0 auto;width: auto;max-width: 100%;}
	.col-xl-1 {-ms-flex: 0 0 8.333333%;flex: 0 0 8.333333%;max-width: 8.333333%;}
	.col-xl-2 {-ms-flex: 0 0 16.666667%;flex: 0 0 16.666667%;max-width: 16.666667%;}
	.col-xl-3 {-ms-flex: 0 0 25%;flex: 0 0 25%;max-width: 25%;}
	.col-xl-4 {-ms-flex: 0 0 33.333333%;flex: 0 0 33.333333%;max-width: 33.333333%;}
	.col-xl-5 {-ms-flex: 0 0 41.666667%;flex: 0 0 41.666667%;max-width: 41.666667%;}
	.col-xl-6 {-ms-flex: 0 0 50%;flex: 0 0 50%;max-width: 50%;}
	.col-xl-7 {-ms-flex: 0 0 58.333333%;flex: 0 0 58.333333%;max-width: 58.333333%;}
	.col-xl-8 {-ms-flex: 0 0 66.666667%;flex: 0 0 66.666667%;max-width: 66.666667%;}
	.col-xl-9 {-ms-flex: 0 0 75%;flex: 0 0 75%;max-width: 75%;}
	.col-xl-10 {-ms-flex: 0 0 83.333333%;flex: 0 0 83.333333%;max-width: 83.333333%;}
	.col-xl-11 {-ms-flex: 0 0 91.666667%;flex: 0 0 91.666667%;max-width: 91.666667%;}
	.col-xl-12 {-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;}
	.order-xl-first {-ms-flex-order: -1;order: -1;}
	.order-xl-last {-ms-flex-order: 13;order: 13;}
	.order-xl-0 {-ms-flex-order: 0;order: 0;}
	.order-xl-1 {-ms-flex-order: 1;order: 1;}
	.order-xl-2 {-ms-flex-order: 2;order: 2;}
	.order-xl-3 {-ms-flex-order: 3;order: 3;}
	.order-xl-4 {-ms-flex-order: 4;order: 4;}
	.order-xl-5 {-ms-flex-order: 5;order: 5;}
	.order-xl-6 {-ms-flex-order: 6;order: 6;}
	.order-xl-7 {-ms-flex-order: 7;order: 7;}
	.order-xl-8 {-ms-flex-order: 8;order: 8;}
	.order-xl-9 {-ms-flex-order: 9;order: 9;}
	.order-xl-10 {-ms-flex-order: 10;order: 10;}
	.order-xl-11 {-ms-flex-order: 11;order: 11;}
	.order-xl-12 {-ms-flex-order: 12;order: 12;}
	.offset-xl-0 {margin-left: 0;}
	.offset-xl-1 {margin-left: 8.333333%;}
	.offset-xl-2 {margin-left: 16.666667%;}
	.offset-xl-3 {margin-left: 25%;}
	.offset-xl-4 {margin-left: 33.333333%;}
	.offset-xl-5 {margin-left: 41.666667%;}
	.offset-xl-6 {margin-left: 50%;}
	.offset-xl-7 {margin-left: 58.333333%;}
	.offset-xl-8 {margin-left: 66.666667%;}
	.offset-xl-9 {margin-left: 75%;}
	.offset-xl-10 {margin-left: 83.333333%;}
	.offset-xl-11 {margin-left: 91.666667%;}
}
/*button按钮*/
.btn-group {display: flex;justify-content: center;}
.btn-group-lg>.btn, .btn-group .btn-lg {padding: 8px 16px;font-size: 20px;line-height: 1.5;border-radius: 4.8px;}
.btn-group-sm>.btn, .btn-group .btn-sm {padding: 4px 8px;font-size: 14px;line-height: 1.5;border-radius: 3.2px;}
.btn {min-width: 50px;display: inline-block;font-weight: 400;color: var(--gray-10);text-align: center;vertical-align: middle;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;background-color: transparent;border: 1px solid transparent;font-size: 16px;margin: 4px 4px;padding: 10px 24px;line-height: 1.5;border-radius: 4px;transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
.btn:hover {color: var(--gray-10);text-decoration: none;}
.btn.focus, .btn:focus {outline: 0;}
.btn.disabled, .btn:disabled {opacity: 0.65;cursor: auto;pointer-events: none;}
.btn:not(:disabled):not(.disabled) {cursor: pointer;}
a.btn.disabled, fieldset:disabled a.btn {pointer-events: none;}
.btn-mid:before {content: "";display: inline-block;width: 1px;height: 100%;margin-left: -10px;vertical-align: middle;}
.btn-link {font-weight: 400;color: var(--type-primary);text-decoration: none;}
.btn-link:hover {color: var(--type-primary-dark);text-decoration: underline;}
.btn-link.focus, .btn-link:focus {text-decoration: underline;}
.btn-link.disabled, .btn-link:disabled {color: var(--gray-8);pointer-events: none;}
.btn-block {display: block;width: 100%;}
.btn-block+.btn-block {margin-top: 8px;}
@media (prefers-reduced-motion: reduce) {.btn {transition: none;}
}
.btn-primary {color: var(--gray-1);background-color: var(--type-primary) !important;border-color: var(--type-primary) !important;}
.btn-primary:hover {color: var(--gray-1);background-color: var(--type-primary-dark) !important;border-color: var(--type-primary-dark) !important;}
.btn-primary.focus, .btn-primary:focus {color: var(--gray-1);background-color: var(--type-primary) !important;border-color: var(--type-primary) !important;}
.btn-primary.disabled, .btn-primary:disabled {color: var(--gray-1);background-color: var(--type-primary) !important;border-color: var(--type-primary) !important;}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {color: var(--gray-1);background-color: var(--type-primary) !important;border-color: var(--type-primary) !important;}
.btn-secondary {color: var(--gray-1);background-color: var(--type-secondary) !important;border-color: var(--type-secondary) !important;}
.btn-secondary:hover {color: var(--gray-1);background-color: var(--type-secondary-dark) !important;border-color: var(--type-secondary-dark) !important;}
.btn-secondary.focus, .btn-secondary:focus {color: var(--gray-1);background-color: var(--type-secondary) !important;border-color: var(--type-secondary) !important;}
.btn-secondary.disabled, .btn-secondary:disabled {color: var(--gray-1);background-color: var(--type-secondary) !important;border-color: var(--type-secondary) !important;}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {color: var(--gray-1);background-color: var(--type-secondary) !important;border-color: var(--type-secondary) !important;}
.btn-success {color: var(--gray-1);background-color: var(--type-success) !important;border-color: var(--type-success) !important;}
.btn-success:hover {color: var(--gray-1);background-color: var(--type-success-dark) !important;border-color: var(--type-success-dark) !important;}
.btn-success.focus, .btn-success:focus {color: var(--gray-1);background-color: var(--type-success) !important;border-color: var(--type-success) !important;box-shadow: 0 0 0 3.2px rgba(72, 180, 97, 0.5);}
.btn-success.disabled, .btn-success:disabled {color: var(--gray-1);background-color: var(--type-success-disabled) !important;border-color: var(--type-success-disabled) !important;}
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle {color: var(--gray-1);background-color: var(--type-success) !important;border-color: var(--type-success) !important;}
.btn-info {color: var(--gray-1);background-color: var(--type-info) !important;border-color: var(--type-info) !important;}
.btn-info:hover {color: var(--gray-1);background-color: var(--type-info-dark) !important;border-color: var(--type-info-dark) !important;}
.btn-info.focus, .btn-info:focus {color: var(--gray-1);background-color: var(--type-info) !important;border-color: var(--type-info) !important;box-shadow: 0 0 0 3.2px rgba(58, 176, 195, 0.5);}
.btn-info.disabled, .btn-info:disabled {color: var(--gray-1);background-color: var(--type-info-disabled) !important;border-color: var(--type-info-disabled) !important;}
.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show>.btn-info.dropdown-toggle {color: var(--gray-1);background-color: var(--type-info) !important;border-color: var(--type-info) !important;}
.btn-warning {color: var(--gray-10);background-color: var(--type-warning) !important;border-color: var(--type-warning) !important;}
.btn-warning:hover {color: var(--gray-10);background-color: var(--type-warning-dark) !important;border-color: var(--type-warning-dark) !important;}
.btn-warning.focus, .btn-warning:focus {color: var(--gray-10);background-color: var(--type-warning) !important;border-color: var(--type-warning) !important;}
.btn-warning.disabled, .btn-warning:disabled {color: var(--gray-10);background-color: var(--type-warning-disabled) !important;border-color: var(--type-warning-disabled) !important;}
.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show>.btn-warning.dropdown-toggle {color: var(--gray-10);background-color: var(--type-warning) !important;border-color: var(--type-warning) !important;}
.btn-danger {color: var(--gray-10);background-color: var(--type-warning) !important;border-color: var(--type-warning) !important;}
.btn-danger:hover {color: var(--gray-10);background-color: var(--type-warning-dark) !important;border-color: var(--type-warning-dark) !important;}
.btn-danger.focus, .btn-danger:focus {color: var(--gray-10);background-color: var(--type-warning) !important;border-color: var(--type-warning) !important;}
.btn-danger.disabled, .btn-danger:disabled {color: var(--gray-10);background-color: var(--type-warning-disabled) !important;border-color: var(--type-warning-disabled) !important;}
.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show>.btn-danger.dropdown-toggle {color: var(--gray-10);background-color: var(--type-warning) !important;border-color: var(--type-warning) !important;}
.btn-light {color: var(--gray-6);background-color: var(--gray-1) !important;border-color: var(--gray-5) !important;}
.btn-light:hover {color: var(--gray-6);background-color: var(--gray-2) !important;border-color: var(--gray-6) !important;}
.btn-light.focus, .btn-light:focus {color: var(--gray-6);background-color: var(--gray-2) !important;border-color: var(--gray-6) !important;}
.btn-light.disabled, .btn-light:disabled {color: var(--gray-5);background-color: var(--gray-1) !important;border-color: var(--gray-1) !important;}
.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle {color: var(--gray-10);background-color: var(--gray-5) !important;border-color: var(--gray-5) !important;}
.btn-dark {color: var(--gray-1);background-color: var(--gray-9) !important;border-color: var(--gray-9) !important;}
.btn-dark:hover {color: var(--gray-1);background-color: var(--gray-10) !important;border-color: var(--gray-11) !important;}
.btn-dark.focus, .btn-dark:focus {color: var(--gray-1);background-color: var(--gray-10) !important;border-color: var(--gray-11) !important;}
.btn-dark.disabled, .btn-dark:disabled {color: var(--gray-1);background-color: var(--gray-9) !important;border-color: var(--gray-9) !important;}
.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show>.btn-dark.dropdown-toggle {color: var(--gray-1);background-color: var(--gray-11) !important;border-color: var(--gray-11) !important;}
.btn-outline-primary {color: var(--type-primary) !important;border-color: var(--type-primary) !important;}
.btn-outline-primary:hover {color: var(--gray-1) !important;background-color: var(--type-primary-dark) !important;border-color: var(--type-primary-dark) !important;}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {color: var(--type-primary-disabled) !important;background-color: transparent !important;}
.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle {color: var(--gray-1);background-color: var(--type-primary) !important;border-color: var(--type-primary) !important;}
.btn-outline-secondary {color: var(--type-secondary) !important;border-color: var(--type-secondary) !important;}
.btn-outline-secondary:hover {color: var(--gray-1) !important;background-color: var(--type-secondary-dark) !important;border-color: var(--type-secondary-dark) !important;}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {color: var(--type-secondary-disabled) !important;background-color: transparent !important;}
.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle {color: var(--gray-1);background-color: var(--type-secondary) !important;border-color: var(--type-secondary) !important;}
.btn-outline-success {color: var(--type-success);border-color: var(--type-success);}
.btn-outline-success:hover {color: var(--gray-1);background-color: var(--type-success-dark);border-color: var(--type-success-dark);}
.btn-outline-success.disabled, .btn-outline-success:disabled {color: var(--type-success-disabled);background-color: transparent;}
.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show>.btn-outline-success.dropdown-toggle {color: var(--gray-1);background-color: var(--type-success);border-color: var(--type-success);}
.btn-outline-info {color: var(--type-info);border-color: var(--type-info);}
.btn-outline-info:hover {color: var(--gray-1);background-color: var(--type-info-dark);border-color: var(--type-info-dark);}
.btn-outline-info.disabled, .btn-outline-info:disabled {color: var(--type-info-disabled);background-color: transparent;}
.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show>.btn-outline-info.dropdown-toggle {color: var(--gray-1);background-color: var(--type-info);border-color: var(--type-info);}
.btn-outline-warning {color: var(--type-warning);border-color: var(--type-warning);}
.btn-outline-warning:hover {color: var(--gray-10);background-color: var(--type-warning-dark);border-color: var(--type-warning-dark);}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {color: var(--type-warning-disabled);background-color: transparent;}
.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show>.btn-outline-warning.dropdown-toggle {color: var(--gray-10);background-color: var(--type-warning);border-color: var(--type-warning);}
.btn-outline-danger {color: var(--type-danger);border-color: var(--type-danger);}
.btn-outline-danger:hover {color: var(--gray-1);background-color: var(--type-danger-dark);border-color: var(--type-danger-dark);}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {color: var(--type-danger-disabled);background-color: transparent;}
.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show>.btn-outline-danger.dropdown-toggle {color: var(--gray-1);background-color: var(--type-danger);border-color: var(--type-danger);}
.btn-outline-light {color: var(--type-primary-light);border-color: var(--type-primary-light);}
.btn-outline-light:hover {color: var(--type-primary-dark);background-color: var(--type-primary-light);border-color: var(--type-primary-light);}
.btn-outline-light.disabled, .btn-outline-light:disabled {color: var(--type-primary-disabled);background-color: transparent;}
.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle {color: var(--gray-10);background-color: var(--type-primary-light);border-color: var(--type-primary-light);}
.btn-outline-dark {color: var(--gray-9);border-color: var(--gray-9);}
.btn-outline-dark:hover {color: var(--gray-1);background-color: var(--gray-9);border-color: var(--gray-9);}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {color: var(--gray-9);background-color: transparent;}
.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show>.btn-outline-dark.dropdown-toggle {color: var(--gray-1);background-color: var(--gray-9);border-color: var(--gray-9);}
@media (max-width: 800px) {.dropdowns .superClass>a {font-size: 30px;}
	.dropdowns .subclass>a {font-size: 28px;}
}
@media (max-width: 576px) {.wy-d-sm-none {display: none !important;}
	.wy-d-sm-block {display: block !important;}
}
@media (min-width: 768px) {.wy-d-md-none {display: none !important;}
	.wy-d-md-block {display: block !important;}
}
@media (min-width: 992px) {.wy-d-lg-none {display: none !important;}
	.wy-d-lg-block {display: block !important;}
}
@media (min-width: 1200px) {.wy-d-xl-none {display: none !important;}
	.wy-d-xl-block {display: block !important;}
}
/*其他效果类start*/
/*渐变过渡效果*/
.linear {background-image: linear-gradient(to bottom, var(--type-primary) 20%, #eee 20%);border-radius: 10px;position: relative;z-index: 0;}
.linear::before {content: '';position: absolute;left: 0;top: 0;right: 0;bottom: 0;background: linear-gradient(to bottom, #eee 20%, var(--type-primary) 20%);border-radius: 10px;opacity: 0;transition: opacity 0.75s;z-index: -1;}
.linear:hover::before {opacity: 1;}
/*渐变动画*/
.linearGradient {position: relative;overflow: hidden;color: var(--gray-1) !important;}
.linearGradient::before {content: "";position: absolute;top: -100%;left: -100%;bottom: -100%;right: -100%;background: linear-gradient(45deg, var(--type-primary) 0%, var(--type-secondary) 50%, var(--type-primary) 100%);background-size: 100% 100%;animation: bgposition 3s infinite linear alternate;z-index: -1;}
@keyframes bgposition {0% {transform: translate(30%, 30%);}
	35% {transform: translate(30%, -30%);}
	65% {transform: translate(-30%, -30%);}
	100% {transform: translate(-30%, 30%);}
}
/*弹窗modal*/
.modal {position: fixed;top: 0;left: 0;z-index: 1050;display: none;width: 100%;height: 100%;overflow: hidden;outline: 0;}
.modal-open .modal {overflow-x: hidden;overflow-y: auto;}
.modal-dialog {position: relative;top: 50%;width: auto;margin: 0 auto;pointer-events: none;}
.modal-title {margin-bottom: 0;line-height: 1.5;}
.modal-content {position: relative;display: -ms-flexbox;display: flex;-ms-flex-direction: column;flex-direction: column;width: 100%;pointer-events: auto;background-color: var(--gray-1);background-clip: padding-box;border: 1px solid rgba(0, 0, 0, 0.2);border-radius: 6px;outline: 0;}
.modal-header {display: -ms-flexbox;display: flex;-ms-flex-align: start;align-items: flex-start;-ms-flex-pack: justify;justify-content: space-between;padding: 16px 16px;border-bottom: 1px solid var(--border);border-top-left-radius: 4px;border-top-right-radius: 4px;}
.modal-header .close {float: right;font-weight: 700;line-height: 1;color: #000;text-shadow: 0 1px 0 var(--gray-1);opacity: 0.5;border: 0;background-color: transparent;padding: 16px 16px;margin: -16px -16px -16px auto;}
.modal-header .close span {font-size: 40px;}
.modal-body {position: relative;-ms-flex: 1 1 auto;flex: 1 1 auto;padding: 30px;height: calc(100vh - 220px);overflow-x: hidden;}
.modal-footer {display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-ms-flex-align: center;align-items: center;-ms-flex-pack: end;justify-content: flex-end;padding: 12px;border-top: 1px solid var(--border);border-bottom-right-radius: 4px;border-bottom-left-radius: 4px;}
.fade {transition: opacity 0.15s linear;}
.modal.fade .modal-dialog {transition: -webkit-transform 0.3s ease-out;transition: transform 0.3s ease-out;transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform: translate(0, -50%);transform: translate(0, -50%);}
.modal.show .modal-dialog {-webkit-transform: translateY(-50%);transform: translateY(-50%);}
@media (min-width: 567px) {.modal-dialog {max-width: 500px;}
}
@media (min-width: 800px) {.modal-dialog {max-width: 768px;}
}
@media (min-width: 1000px) {.modal-dialog {max-width: 900px;}
}
@media (min-width: 1200px) {.modal-dialog {max-width: 1100px;}
}
/*交互样式*/
.hover:hover {background-color: var(--mask);}
.superClass {position: relative;}
.superClass .subclass {position: absolute;display: none;}
.superClass.active .subclass {display: block !important;}
.tabContent .subContent {display: none;}
.subContent.active {display: block !important;}
/*计时器start*/
.counter {font-size: 64px;font-family: Impact, sans-serif;}
.danwei {position: absolute;margin: 10px;}
/*计时器end*/
/*图片炫光start*/
.glitter {display: block;position: relative;}
.glitter:before {content: "";position: absolute;width: 200px;height: 100%;top: 0;left: -150px;overflow: hidden;background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(50%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(255, 255, 255, 0)));background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);-webkit-transform: skewX(-25deg);-moz-transform: skewX(-25deg);}
.glitter:hover:before {left: 150%;transition: left 1s ease 0s;}
/*图片炫光end*/
/*点击涟漪效果start*/
.btn.ripple {font-size: 16px;}
.ripple {position: relative;cursor: pointer;display: inline-block;overflow: hidden;text-align: center;-webkit-tap-highlight-color: transparent;z-index: 1;}
.ripple>i {pointer-events: none;}
.ripple .ripple-animation {position: absolute;border-radius: 50%;width: 25px;height: 25px;opacity: 0;background: rgba(255, 255, 255, 0.3);transition: all 0.7s ease-out;transition-property: transform, opacity, -webkit-transform;-webkit-transform: scale(0);transform: scale(0);pointer-events: none;}
/*点击涟漪效果end*/
/*回到顶部start*/
.floatRight {position: fixed;right: 32px;z-index: 9;}
.floatBox {height: 64px;width: 70px;border-radius: 10%;margin-top: 8px;text-align: center;position: relative;transition: 0.3s;}
.floatBox.trial {background-color: var(--type-warning-light);border: 1px solid var(--type-warning-dark);}
.floatBox.trial a {color: var(--type-warning-dark);}
.floatBox.trial:hover {background-color: var(--type-warning);border: 1px solid var(--type-warning);}
.floatBox.trial:hover a {color: #fff;}
.floatBox.wechat {background-color: var(--type-success-light);border: 1px solid var(--type-success-dark);}
.floatBox.wechat a {color: var(--type-success-dark);}
.floatBox.wechat .show {display: none;}
.floatBox.wechat:hover {background-color: var(--type-success);border: 1px solid var(--type-success);}
.floatBox.wechat:hover a {color: #fff;}
.floatBox.wechat:hover .show {display: block;}
.floatBox.tel {background-color: #fff;border: 1px solid var(--type-danger);}
.floatBox.tel a {color: var(--type-danger);}
.floatBox.tel:hover {background-color: var(--type-danger);border: 1px solid var(--type-danger);}
.floatBox.tel:hover a {color: #fff;}
.goBack {cursor: pointer;padding-top: 25px;background-color: var(--gray-1);border: 1px solid var(--type-primary);overflow: hidden;}
.goBack:hover:before {top: 50%;transition: all 0.5s;}
.goBack:hover .box-in {visibility: hidden;}
.goBack:before {position: absolute;top: -50%;left: 50%;transform: translate(-50%, -50%);content: '回到顶部';width: 40px;color: var(--type-primary);font-weight: bold;line-height: 20px;}
.box-in {visibility: visible;display: inline-block;height: 24px;width: 24px;border: 3px solid black;border-color: var(--type-primary) transparent transparent var(--type-primary);transform: rotate(45deg);}
/*回到顶部end*/
/*特效1-移入图片上下滚动显示start*/
.wy-effects-1 {overflow: hidden;position: relative;width: 100%;height: 460px !important;}
[longFigure] {position: absolute;}
[effectContent] {position: absolute;top: -50%;left: 50%;transform: translateX(-50%) translateY(-50%);background: var(--mask);backdrop-filter: blur(5px);width: 70%;padding: 20px;border: 1px solid var(--gray-8);border-radius: 5px;transition: all 0.6s;transition-delay: 0.6s;-moz-transition-delay: 0.6s;
	/* Firefox 4 */
	-webkit-transition-delay: 0.6s;
	/* Safari 和 Chrome */
	-o-transition-delay: 0.6s;
	/* Opera */
}
.wy-effects-1:hover [effectContent] {top: 50%;}
/*特效1-移入图片上下滚动显示end*/
/*其他效果类end*/

/*!  JGSGaJ948lrIL4lDO1vnXBLAs01av3qWjfkdNw6QQi9MDvTkq7EfAeg65fJaRDtFKO6lBMDIw+UrYYJKlvbw9tBEMJwMwL3Fmplr7cpTUd1JWvg/xAuUpw==  */