@charset "UTF-8";
@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }
    50% {
        opacity: 1;
        transform: none
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes fadeInUp {
    0% {
        transform: translate3d(0, 40px, 0)
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes spin-animation {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes waveMove {
    0% {
        background-position: 0 100%
    }
    to {
        background-position: -20px 100%
    }
}

@keyframes fadeOut {
    0%, to {
        opacity: 1
    }
    10% {
        opacity: 0
    }
}

html, html[data-theme=dark] {
    --a-hover-color: var(--red);
    --header-bg-image: "/assets/images/tiles/endless-clouds.svg";
    --btn-color: var(--a-color);
    --btn-hover-color: #f00;
    --btn-active-color: #f00;
    --search-error-border-color: #f00;
    --popup-bg: rgb(22 25 37);
    --overlay-bg: rgba(36, 39, 59, 0.3)
}

html {
    --body-bg-color: #f6f6f6;
    --body-secondary-bg-color: #f3f3f3;
    --body-color: #212112;
    --body-secondary-color: #444;
    --body-info-color: #666;
    --theme-bg-color: #fff;
    --theme-bg-color-rgb: 255, 255, 255;
    --theme-secondary-bg-color: #f9f9f9;
    --border-color: #f0f0f0;
    --border-secondary-color: rgba(200, 200, 200, 0.4);
    --text-color-gray: rgba(0, 0, 0, 0.5);
    --a-color: #885E1B;
    --header-bg-color: #bd9237;
    --search-bg-color: #fdfaeb;
    --search-border-color: rgba(0, 0, 0, 0.2);
    --search-focus-border-color: #A27728;
    --btn-bg-color: var(--theme-bg-color);
    --btn-hover-bg-color: #f8f9fa;
    --btn-hover-border-color: #dee2e6;
    --btn-border-color: #e9ecef;
    --shadow-color: rgba(200, 200, 200, 0.3);
    --highlight-bg-color: #fdfbbc;
    --scrollbar-bg: rgba(66, 66, 66, 0.4);
    --shadow: rgba(0, 0, 0, 0.1);
    --theme: #885E1B;
    --mi-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96' fill='%23fff' stroke='%23ddd'%3E%3Cpath d='M96 0L0 96zM0 0l96 96z' stroke-dasharray='1,2'/%3E%3Cpath d='M0 48h96zM48 0v96z' stroke-dasharray='1,3'/%3E%3C/svg%3E") center no-repeat;
    --mi-bg-red: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96' fill='%23fff' fill-opacity='.5' stroke='red'%3E%3Cpath d='M96 0L0 96zM0 0l96 96z' stroke-dasharray='1,2'/%3E%3Cpath d='M0 48h96zM48 0v96z' stroke-dasharray='1,3'/%3E%3C/svg%3E") center no-repeat;
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    font-size: 16px
}

html[data-theme=dark] {
    --body-bg-color: #000;
    --body-secondary-bg-color: #181818;
    --body-info-color: #999;
    --body-color: #eee;
    --body-secondary-color: #aaa;
    --theme-bg-color: #222;
    --theme-bg-color-rgb: 34, 34, 34;
    --theme-secondary-bg-color: #2a2a2a;
    --border-color: #333;
    --border-secondary-color: rgba(99, 99, 99, 0.6);
    --a-color: #FBF4D8;
    --header-bg-color: #292929;
    --btn-bg-color: #444;
    --btn-hover-bg-color: #343a40;
    --btn-hover-border-color: #495057;
    --btn-border-color: #444;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --highlight-bg-color: rgba(255, 0, 0, 0.2);
    --search-bg-color: #222;
    --search-border-color: rgba(255, 255, 255, 0.2);
    --search-focus-border-color: #666;
    --scrollbar-bg: rgb(255 253 253 / 57%);
    --text-color-gray: rgba(255, 255, 255, 0.5);
    --mi-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96' fill='%23fff' stroke='%23555'%3E%3Cpath d='M96 0L0 96zM0 0l96 96z' stroke-dasharray='1,2'/%3E%3Cpath d='M0 48h96zM48 0v96z' stroke-dasharray='1,3'/%3E%3C/svg%3E") center no-repeat
}

html[data-theme=dark] .form-control {
    background-color: #111;
    color: #ccc;
    border-color: #444
}

@media (max-width: 549px) and (orientation: portrait) {
    html[panel-open] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0
    }
}

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1420px;
    --font-family-sans-serif: "PingFang SC", Microsoft YaHei, Helvetica, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

::after, ::before {
    box-sizing: border-box
}

body {
    margin: 0;
    position: relative;
    text-align: left;
    font-family: "PingFang SC", Microsoft YaHei, Helvetica, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--body-bg-color);
    color: var(--body-color)
}

figcaption, figure, footer, header, main, nav, section {
    display: block
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 10px
}

dl, ol, p, ul {
    margin-bottom: 1rem
}

p {
    margin-top: 0
}

ol ol, ol ul, ul ol, ul ul {
    margin-bottom: 0
}

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

figure {
    margin: 0 0 1rem
}

b, strong {
    font-weight: bolder
}

small {
    font-size: 80%
}

sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline
}

sup {
    top: -.5em
}

a, a:hover {
    text-decoration: none
}

a {
    color: #007bff;
    background-color: transparent;
    color: var(--a-color)
}

a:hover {
    color: #0056b3;
    color: var(--a-hover-color)
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

img, svg {
    vertical-align: middle
}

img {
    border-style: none;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges
}

svg {
    overflow: hidden
}

table {
    border-collapse: collapse
}

caption {
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

label {
    display: inline-block;
    margin-bottom: .5rem
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button, input, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

[type=button], [type=submit], button {
    -webkit-appearance: button
}

[type=button]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer
}

[type=button]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

textarea {
    overflow: auto;
    resize: vertical
}

progress {
    vertical-align: baseline
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

summary {
    display: list-item;
    cursor: pointer
}

[hidden] {
    display: none !important
}

* {
    outline: 0;
    box-sizing: border-box
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

dl, ol {
    margin-top: 0;
    margin-bottom: 0
}

a.primary {
    padding-bottom: 1px;
    text-align: center;
    color: red;
    border-bottom: 1px solid var(--a-hover-color)
}

a.primary:hover {
    color: var(--a-hover-color);
    padding-bottom: 4px;
    border-color: transparent;
    animation: waveMove 1s infinite linear;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath fill='none' stroke='%23ff3300' d='M0 3.5c5 0 5-3 10-3s5 3 10 3 5-3 10-3 5 3 10 3'/%3E%3C/svg%3E") repeat-x 0 100%;
    background-size: 20px auto
}

a.han:hover img, a.primary img[data-src$=".svg"] {
    filter: invert(20%) sepia(93%) saturate(4931%) hue-rotate(0deg) brightness(89%) contrast(130%) !important
}

a.red {
    color: red;
    text-decoration: underline
}

a.red:hover {
    color: #10892d
}

a[disabled] {
    pointer-events: none;
    cursor: default;
    opacity: .6
}

a.disabled {
    text-decoration: line-through
}

.breadcrumb ol::-webkit-scrollbar {
    display: none
}

.bi {
    display: inline-block;
    vertical-align: -.125em
}

.text-gray {
    color: var(--text-color-gray)
}

.show-more-container {
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height .2s linear
}

.show-more-container.open {
    max-height: none;
    overflow: auto
}

.show-more-container.open .show-more-toggle, .show-more-container.open::after {
    display: none
}

.show-more-container .show-more-toggle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    margin: 0 auto;
    padding-top: 44px;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--theme-bg-color) 50%, var(--theme-bg-color))
}

.show-more-container .show-more-toggle button {
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 30px;
    line-height: 1em
}

html[data-theme=dark] .han .zi-special img, html[data-theme=dark] .zi-icon .icon img[src$=".svg"], html[data-theme=dark] .zi-special img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1)
}

html[data-theme=dark] .zi-title-img img {
    filter: hue-rotate(150deg) invert(1)
}

html[data-theme=dark] .han img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1)
}

.scroll-x {
    --gap-x: 20px;
    margin: 0 calc(var(--gap-x) * -1);
    position: relative
}

.scroll-x:after, .scroll-x:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--gap-x);
    z-index: 1
}

.scroll-x:before {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--theme-bg-color))
}

.scroll-x:after {
    left: 0;
    background: linear-gradient(90deg, var(--theme-bg-color), transparent)
}

.scroll-x .wrap {
    padding: 10px var(--gap-x);
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: none
}

.scroll-x .wrap.scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: grabbing
}

.scroll-x .wrap.scroll-dragging a {
    pointer-events: none !important
}

@media (max-width: 991.98px) {
    .scroll-x {
        --gap-x: 15px
    }
}

a[data-feedback] {
    cursor: pointer
}

img:not([src]):not(.lazyload), img:not([src]):not(.zi-lazyload) {
    visibility: hidden
}

@media (min-width: 576px) and (max-width: 992px) {
    .container {
        max-width: calc(100% - 40px) !important
    }
}

.container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

@media (min-width: 1420px) {
    .container {
        max-width: 1380px
    }
}

.row {
    display: flex;
    flex-wrap: wrap
}

.row {
    margin-right: 0;
    margin-left: 0
}

.col {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0
}

.col-12 {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

select.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

select.form-control[size], textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

#qrCode2 > img, #qrcode img {
    width: 100%
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529;
    text-decoration: none
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.btn.disabled, .btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

a.btn.disabled {
    pointer-events: none
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary.focus, .btn-secondary:focus {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34
}

.btn-success.focus, .btn-success:focus {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430
}

.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b
}

.btn-info.focus, .btn-info:focus {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}

.btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.btn-danger.focus, .btn-danger:focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5)
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5)
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124
}

.btn-dark.focus, .btn-dark:focus {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger.focus, .btn-outline-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    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: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-sm {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.swjz-content .heading ~ p.extra {
    margin-top: .5rem
}

.collapse:not(.show) {
    display: none
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.input-group > .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0
}

.input-group > .form-control + .form-control {
    margin-left: -1px
}

.input-group > .form-control:focus {
    z-index: 3
}

.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group:not(.has-validation) > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-append, .input-group-prepend {
    display: flex
}

.input-group-append .btn, .input-group-prepend .btn {
    position: relative;
    z-index: 2
}

.input-group-append .btn:focus, .input-group-prepend .btn:focus {
    z-index: 3
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-append, .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .btn, .input-group-append .input-group-text + .input-group-text, .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-prepend .input-group-text + .input-group-text {
    margin-left: -1px
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-text input[type=checkbox], .input-group-text input[type=radio] {
    margin-top: 0
}

.input-group-sm > .form-control:not(textarea) {
    height: calc(1.5em + .5rem + 2px)
}

.input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn, .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none
    }
}

a.badge:focus, a.badge:hover {
    text-decoration: none
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

a.badge-primary:focus, a.badge-primary:hover {
    color: #fff;
    background-color: #0062cc
}

a.badge-primary.focus, a.badge-primary:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

a.badge-info:focus, a.badge-info:hover {
    color: #fff;
    background-color: #117a8b
}

a.badge-info.focus, a.badge-info:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff
}

.alert-primary hr {
    border-top-color: #9fcdff
}

.alert-primary .alert-link {
    color: #002752
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentcolor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border
}

@media (prefers-reduced-motion: reduce) {
    .spinner-border {
        animation-duration: 1.5s
    }
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: #0062cc !important
}

.bg-success {
    background-color: #28a745 !important
}

a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover {
    background-color: #1e7e34 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover {
    background-color: #bd2130 !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.d-flex {
    display: flex !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-between {
    justify-content: space-between !important
}

@media (min-width: 1200px) {
    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }
}

.float-right {
    float: right !important
}

.position-relative {
    position: relative !important
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.shadow-none {
    box-shadow: none !important
}

.w-100 {
    width: 100% !important
}

.m-0 {
    margin: 0 !important
}

.mt-0 {
    margin-top: 0 !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mr-1 {
    margin-right: 5px !important
}

.mb-1 {
    margin-bottom: 5px !important
}

.ml-1 {
    margin-left: 5px !important
}

.mt-2 {
    margin-top: 10px !important
}

.mr-2 {
    margin-right: 10px !important
}

.mb-2 {
    margin-bottom: 10px !important
}

.ml-2 {
    margin-left: 10px !important
}

.mt-3 {
    margin-top: 20px !important
}

.mr-3 {
    margin-right: 20px !important
}

.mb-3 {
    margin-bottom: 20px !important
}

.m-4 {
    margin: 30px !important
}

.mt-4 {
    margin-top: 30px !important
}

.mb-4 {
    margin-bottom: 30px !important
}

.pt-0 {
    padding-top: 0 !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: 5px !important
}

.pr-1 {
    padding-right: 5px !important
}

.py-1 {
    padding-bottom: 5px !important
}

.pl-1 {
    padding-left: 5px !important
}

.pt-2 {
    padding-top: 10px !important
}

.px-2 {
    padding-right: 10px !important
}

.pb-2 {
    padding-bottom: 10px !important
}

.px-2 {
    padding-left: 10px !important
}

.p-3 {
    padding: 20px !important
}

.pt-3 {
    padding-top: 20px !important
}

.pb-3 {
    padding-bottom: 20px !important
}

.pt-4 {
    padding-top: 30px !important
}

.pr-4 {
    padding-right: 30px !important
}

.pb-4 {
    padding-bottom: 30px !important
}

.pl-4 {
    padding-left: 30px !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.table-left td, .text-left {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:focus, a.text-primary:hover {
    color: #0056b3 !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:focus, a.text-info:hover {
    color: #0f6674 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:focus, a.text-danger:hover {
    color: #a71d2a !important
}

.visible {
    visibility: visible !important
}

.progress, .progress-bar {
    display: flex;
    overflow: hidden
}

.progress {
    height: 1rem;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef
}

.progress-bar {
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none
    }
}

@font-face {
    font-family: "pinyin";
    src: url(../fonts/pinyin.woff2) format("woff2"), url(../fonts/pinyin.woff) format("woff"), url(../fonts/pinyin.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "number";
    src: url(data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAAb8AA0AAAAADVAAAAalAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCUhEQCosAiQcLJgABNgIkA0YEIAWHQAdGG0gLUZRvUovsZ4KpMjojfHXzFC9poqkJHedRZyvx+ib+Lx+e39yf+4CJj1U1Y53EIqml9hL187ThV5qRhNH9LZzuqtzbAsEui7AIkzm7ebA/8SXJr5eLWpLSzAc4sMnAdwMc8Gx3yX/ZyL/2a/1UQ9F3JqHdMJ2Wb/d8F3FvPyEmnURINBEPWSw0S4EhVFqjRRjUszCSSjO+7UIACAD6hQFcALiVO1sg3cMcHxCAKcAeQCFYrBBsAAVgVVruxAHOfcUAOZBPwXpTpjVQuKSa/JM8oZ5u7po+O8WZrhRAAGC9QmrAM56lU1dUCRRTQivZImu5uCjIWr65w2WFt54vA5mJUkE2IFhDEoDsDUKaaYdXsJfJoH3h72G5Q4l9lq9OsAxCs8IZLACANQDwBTgBeQJ1AQCAbdoCBEElEj+HhVJP1+zHcLOlrUx5tFe0Y6i9qa0Dl2fJw+/Wiqey6h+wUJmLdgSc4Wn1UOuEOh3UItpAmCuEOU9rfBcKG6r+4WntKv6C2rZ8Ka2xF/9NGAljBHXTGFR9a2nN+aIQW9UGkMg5SqEaf3fX+6wJD3jaex9/ukKYy7TmYpKAq84igxni3Co1baohjEunkTAGWiPU0Zr9hJEYG88WtpllRoUuSsoWGwhsHdR6nhauYDdhPKIrwz2/whc1TVNqDWGZ6i05jBaUGYsmvGaiVGbFJagvVlUpmpWhr0BUvrMFh+FZaFWtISLniWTFEHICdcJaqRAk0Hyuqm9lczUuKnMNAUd4SI5KdAS7gUgPdahQr1dKilS0M2JdSYGJOo1wQMcYf6rVR8Q3zSRK7kN5Xk1EwdcR5gBhmmiml4MzPVF/VpHN0Tpw4nV/vXQ/cz63s7+1JCK0Jb1MUJrfFuPvJKv0a4sqmO9SIugNdq0bU5RRdnH6FQvzb6oBLj19LHhWOwW5bVwaempKiaiT0KQISqo6b454+YUQ9vyzIX4DXh60bYjv/PlRfvlejsj13ujutuzqJdTHFrktuXQVdQt84xeyIfySUfD3H6/PeAk2m6j5zeLa5vnyWjGih9fXi192yYM+T5wn6OzMKhNl9vtpbCuy/V9HZEeJ6ubs/X3Tut9XNszLCBwlRpzszsapil8l9zcfebjhWvuqpIaxtfyVtV1D5S2dfW3dkoa2WE1US01HVU2/vFVR2ZLfZN1iU5YZFBjE1HS0jV855/BV8CeY7hWaPJaulD7WS4dnK9cq3055q1ypfGuC1zuuqP04QlGiOrGfnNn5YPDGS6NXxJdXVlcLrNN3NyfmtHdof++eNGbKiFwZvws+AUMjRzYKhbVItFq59/r/Gzfo7hsvWXseWHKslB0UcuLU2b7z6b7la4+/WLNJOXTcCfmfq54wYqKio28i+HcPBb79e3WUX2aQxwHftw5UvbSxvjtpdogPol+pVh+8ueTvw0f+3Hvxw/QZf/26YAuzXrLKv8Iv5PCyu+OH9h2cuGjG2Zia2qDksoTS4GH9W2ZLu4unxAlbJKXili7E+dz6QVorliZW5XXPv/xi0cyr77J1t5dtlA3vrhf3jasV94xZ2TcGmg0pRaLOUlGKoLgqMa6oaiM/KOGndpz33bFmdPduKE+OcvA29fGu8yvMKeEn5oukAAAAARA4b/zF0GSR8uPyuDgObXYOlnNL13Rkf18LEDh2ZJ1hX8gRsFzARPmpWTUgB4B6APkD+VDWFJZ9wYg4QlsjuNpM2iZQ1VequkXZHqbU35R1Sn260dIiAGtJ2ACA4GDpMEh+rA4fCJ4tQGE7BSxuYQ5sllEKHPwwggmLjDmclpK7sJAeDKANECDszQEK1wFgSXYe2DwjFDh6oglMuKfN7Wh9meXv0mgGJ2lkGU+BKZbVZiDPKmu4wpyF8xQtUqcx2HkyJAmp5FnOaqH30hbasNMUXBLha6HcZRR4ORQ8N0mZw//WLXihX+DW5ScFzgMoVcWKGWqTieoIzuvi2BkNE8hUJcqZ2i2BJxJI7pc4lrvw8vIkSrhIkVUSqij++7hmkVHhkZFyx2WHhmZa85WRVrWCuQlCJzWfL7eh6C8nV+NwdJQm0XRQZ0aLEy+GJ/2WWGGkvBX6nMA/N05NCJ1lwv8kPvhhc3FUdHikul10XHyMZ3xsmNSvQ2xPxcACBIdphRyfSKVqSS8eS5T1XKkp2j0PisJ2bXS4Du1Q5fj8NWpzplhledJzfaS4JcBdaXuXLHAF1W6A+K4Y/jyesi8d8EV7As4Dl/yevykJ1rfHyaz8s9qwZceeA0dOnLlw5cYdAAAA) format("woff2"), url(data:font/woff;charset=utf-8;base64,d09GRgABAAAAAAmYAA0AAAAADUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAJXAAAABwAAAAcmDFkaUdERUYAAAl4AAAAHgAAAB4AKQAYT1MvMgAAAZwAAABIAAAAYELUaPVjbWFwAAACLAAAAF4AAAFSK34ltWdhc3AAAAlMAAAAEAAAABAAGAAhZ2x5ZgAAArQAAARqAAAFcJZd7AVoZWFkAAABMAAAADQAAAA2Jh+IV2hoZWEAAAFkAAAAIAAAACQK3QSnaG10eAAAAeQAAABGAAAARjXOBdBsb2NhAAACjAAAACYAAAAmDAUK1W1heHAAAAGEAAAAGAAAACAAFwA6bmFtZQAAByAAAAH3AAADwGsmvuxwb3N0AAAJGAAAADQAAABG/1EBOXjaY2BkYGAA4t3LzjrF89t8ZeDmYACBh27zbCH0/IsMAv83sSSxzgKq42BgAokCAEf3C4942mNgZGBgnfV/E8N5lssMAgwCLEkMQBEUIAgAeukEkHjaY2BkYGAQYrBkYGEAAUYGNAAACCMAUnjaY2Bmtmfaw8DKwMA6i9WYgYFRGkIzX2RIYxJiYGBi4GDADjx8FBQYQHAB66z/mxjOss5i8AMKM4LkmPcBeQxAOUYA8lELawQAAGQAAAAAAqoAAAH8AAAB0wBmA4cAEATTAHEBxwCLA3EAaAO2AGIEBgB7A/wAewPhAGYEHwCHA5YAZgPNAFwCHQCLAIsAAHjaY2BgYGaAYBkGRgYQ8AHyGMF8FgYDIM0BhExAWoHBmmHB//9glh6I9f/x/2v/k6G6wICRjQHOZQTpYWJABYwQqxCAhZWNnYOTi5uHl49fQJBhUAFmsnQBAJ4EDHwAAAAAAFYAVgBWAFYAagCKALcAywD9AUEBZgGlAdoB/QI+AmkCjQK4AAB42l1Ua0hbVxw/5948rMY2t3kV3zd3SciykSY3L42maMXNoTEL4ZKFEPQ2Cz5xdotdJiIi0hYH62PzQyd0uFeRIGIz8cMowiYtCBvSFQmtjFr2pB86GKVUc93/JnF2g3vPOZdz+b3O/3+QBMURIuek1xCJ5Ogl5EGIpWjKQFO0zuV2sXatRi2Ty2QatY4xOh3HnQ4jo5fL5CpxT6eDXblcxuhNJtiMk56958RPuVdm9dW+toEPXm32tVcEjZ97Xq7SnugINBw9dlTpKSn1UGWUwieXXnuesEtdf9Uqmd5OKx/o6mON8T5bO67qbPIoyltyJq/iaGNZSWmZjyp/7UhJKcIosf8MD+FKdAQht8OV16Y3JvwDfnguNnJcY1MohOA/JXg6J02IM8YgD8S55bjghkzkAjUWg4ciiOVKm8Epubsbs3np2kqpZJ6tp08gRKCR/ccSXppCZUgLCErE6BGlRKwdoTpIgGD0hEYt4YWdB1lhB9dkH+Ca3Ai2ZDKzVzNERtgROLyAa3A1viGE9+5ja3YLW4XNrSwomwE8LygDB5hSM3on5WDt2MtFIpyU2I11d0vm46KDXnBgAgV1CBnUDK0HA9hVDL/gp+BGjmk7aeIE5aAST/sCLSmjptV40h5du7ISE27hd7loNG6uJOYHB05zM0HW2sp9tnwlPZ/bAg5+/zEZAw4bEKrlYphwkADN2jVqLWsv0OW/C0vZi9Qkd/HynZvb/Q1cZCjeMxjudZjf6g/1BnvaVeoWMxvpS1+/TT7KJMK/rvyxGBvv7o4Mp3qTMYutJ5KKJ7r5QL15cmBqW/Q6Bl5XIRMdQkjNMJQaUqHFZOwaKEVxZMnVkCwtWPglfD4tIxVrgpbn8Z/vEK2JhKDAf4tjHgkczQGSRXTE0BQIPa5REwe2dFqd9n9mIH4IcCIilCTGNr77PZNNusNNKoWpvq//w/GRtribZkzuEBGKSEt44SO/IPz4rfA0/WYw3Gy1tV1NTl9obKJPnSTOxqBqEsA+CewaRIv8RD4s5M7XKbSMmJo8T12Il5z8OXPzHlZ9X+23Vf+Qag4sbSwNj/a8d/bt/hROr+2j37ayBH2jwmm2VG3eNTxZSUwkw1PT0+DzPCS2AUyqF+obi0UCZsQSv5UbEUu7nOjKCdEokaxvkKzv9ltZc61aouNjpywMAOT1WuH8tagGmUXFRSR4xebO97ZWi90Fydhhkh0ot65/PXs7++kXk8thU/XCVEoYm3NEzF5sWT3Tyfs5Ho8tPrzz8dqzuU8urS4GDRbTL8Pr+KvNSMDtz11KXR+94AyFhyCxKMgIgoJjqOLffiiIcNUdZgWEwQgXSs7f38at9xZGolzqXDpFPtyb5HnC8/qTL+eePvrmzOhEhBsfF7t3BtnwZbINlcJJIFXxngBU6nA50zHQ1elxdhQnIlO8PIQOL8d5feItAjj7y0Wcyv/g5IMCiVBH+aS0B2hY8n6ggWHavJ72Q8R4MmPTsQomanjDz/0DMExs3wAAeNqFUsFq20AQfVKckKbQBgq9pcwxAUvIsuOA1UtiCDmEBozJtcjKylaxJSPJTv01PecLeuqp0FsvvfR3+na9bl2KqZZdvR3NvJk3GgDH+AYH66eDDxY7eI7PFrto4LvFezhxXljcwLHzzuJ9RM5Piw/w0m1bfIS37hdGOY1nvE0Mg8YOXuOTxS4O8dXiPfTww+IGxGlavI+l897iA7xxX1l8hI9uH0OsMIdCihgJ34In7lNaCyxQEidEM/rEyGk9g09biIC7bfAlplyCATKMWWeNytwU34oMS54PwHA1V2mcKHmS01WxKCUpZvM4X535EgZh25fL6VQG2XhSVzJQlSqXilEpk+ek9HguWMbIUCIt8trLF7OR4uWKPlOd4qqY7gyR32493BtLxXq1p6BFHQHXNq1ost69KqusyKXlB8H/mf+Jx85UEe7Y2JrWDckFmluNjXBtk/X5VbH52rc0DKHhWO8Q5+jSX3h2WNiImWqm3ao7ukvqQld00TSdjq5ZZb9UcV2U0gr9gCs877al2/FGWf1H5rZI72+Ra43eWuOQPz0zP30TKXhkxZUZnk31egiEjLoXOQdFdirUPKUZOsGNHSoPt7SMeUuoej2SGE6ySnQ58hhXkmhJ6kEWVZaPZVukpGUxkxvOlndbjLPE5+jhF9+QtLQAeNptxkEOQDAAAMFRL1AUrfqzi+eKpmeTbLKC7r09/sTWIBhN7WeLVbLZHbLiVF0flvoDiQABAAMABwAKABEABf//AA8AAAABAAAAANWkJwgAAAAA4UaePQAAAADhRp8jAAEAAAAMAAAAFgAAAAIAAQADABEAAQAEAAAAAgAAAAA=) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    -webkit-font-smoothing: antialiased
}

@supports (-webkit-appearance:none) or (-moz-appearance:none) {
    input[type=checkbox], input[type=radio] {
        --active: #bd9237;
        --active-inner: #fff;
        --focus: 2px rgb(235, 209, 135, 0.3);
        --border: #EBD187;
        --border-hover: #bd9237;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: 0;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background .3s, border-color .3s, box-shadow .2s
    }

    input[type=checkbox]:after, input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s)
    }

    input[type=checkbox]:checked, input[type=radio]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2)
    }

    input[type=checkbox]:disabled, input[type=radio]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: .9
    }

    input[type=checkbox]:disabled:checked, input[type=radio]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border)
    }

    input[type=checkbox]:disabled + label, input[type=radio]:disabled + label {
        cursor: not-allowed
    }

    input[type=checkbox]:hover:not(:checked):not(:disabled), input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover)
    }

    input[type=checkbox]:focus, input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus)
    }

    input[type=checkbox]:not(.switch), input[type=radio]:not(.switch) {
        width: 21px
    }

    input[type=checkbox]:not(.switch):after, input[type=radio]:not(.switch):after {
        opacity: var(--o, 0)
    }

    input[type=checkbox]:not(.switch):checked, input[type=radio]:not(.switch):checked {
        --o: 1
    }

    input[type=checkbox] + label, input[type=radio] + label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px
    }

    input[type=checkbox]:not(.switch) {
        border-radius: 7px
    }

    input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg))
    }

    input[type=checkbox]:not(.switch):checked {
        --r: 43deg
    }

    input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px
    }

    input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0))
    }

    input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px
    }

    input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: .6
    }

    input[type=radio] {
        border-radius: 50%
    }

    input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7))
    }

    input[type=radio]:checked {
        --s: .5
    }
}

header {
    position: relative;
    z-index: 1001;
    transition: all .2s;
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

header:after, header:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: -1
}

header:before {
    z-index: -2;
    background-color: var(--header-bg-color)
}

header:after {
    background: url(/assets/images/tiles/endless-clouds.svg) top/87.5px;
    opacity: .02
}

.header-wrapper {
    padding: 0;
    z-index: 1
}

.header-main {
    padding: 12px 0;
    position: relative;
    display: flex;
    justify-content: space-between
}

.header-main .header-main-one {
    flex: none;
    flex-wrap: nowrap
}

.header-main .header-main-one .logo > img {
    height: 32px
}

.header-main .header-main-one .channel {
    font-size: 1rem;
    color: #fff
}

.header-main .header-main-one .channel::before {
    content: "•";
    padding-left: 10px;
    padding-right: 10px
}

.header-main .header-main-one, .header-main .header-main-three, .header-main .header-main-two {
    display: flex;
    align-items: center
}

.header-main .header-main-three > a, .header-main .header-main-two > a {
    display: inline-block;
    background-color: rgba(255, 255, 255, .2);
    padding: 0 10px;
    border-radius: 4px;
    color: #fff;
    transition: background-color .2s linear;
    height: 30px;
    border: 1px solid var(--border-secondary-color)
}

.header-main .header-main-three > a:hover, .header-main .header-main-two > a:hover {
    background-color: rgba(0, 0, 0, .2);
    color: #fff
}

.header-main .header-main-three > a:not(:first-child), .header-main .header-main-two > a:not(:first-child) {
    margin-left: 6px
}

.header-main .header-main-three > a > .iconfont, .header-main .header-main-two > a > .iconfont {
    font-size: 18px
}

.header-main .header-main-three > a, .header-main .header-main-two > a {
    line-height: 28px
}

.header-main .header-main-two {
    flex-grow: 1;
    justify-content: flex-end
}

.header-main .header-main-three {
    justify-content: flex-end;
    padding-left: 15px
}

@media (max-width: 991.98px) {
    .header-main-two a:not(:nth-child(-n+3)) {
        display: none
    }
}

@media (max-width: 767.98px) {
    .header-search-wrapper > .container {
        padding-left: 15px;
        padding-right: 15px
    }

    .header-search {
        width: calc(100% - 20px)
    }

    .header-main .header-main-one .channel::before {
        padding-left: 6px;
        padding-right: 6px
    }

    header {
        margin-bottom: 0;
        position: sticky;
        top: 0;
        z-index: 2000
    }

    .header-search-wrapper {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: -1px;
        box-shadow: none;
        padding: 15px 0;
        font-size: 14px
    }

    .header-search-wrapper + .container, header + .container {
        margin-top: 0
    }

    .header-search {
        width: 100%
    }
}

@media (max-width: 575.98px) {
    .header-main {
        padding-left: 10px;
        padding-right: 10px
    }
}

@media (max-width: 620px) {
    .header-main .header-main-two {
        display: none
    }
}

@media (max-width: 388px) {
    .header-main .channel {
        font-size: .9125rem !important
    }

    .header-main .header-main-three {
        padding-left: 8px !important
    }

    .header-main .header-main-three a {
        padding: 0 6px
    }

    .header-main .header-main-three a.theme-toggle {
        width: 32px
    }
}

@media (max-width: 360px) {
    .header-main .header-main-three a[data-share] {
        display: none
    }
}

.hamburger {
    margin-top: 7px;
    height: 18px;
    width: 18px
}

.hamburger .line {
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background-color: #ecf0f1;
    display: block;
    transition: all .3s ease-in-out
}

.hamburger .line:first-child {
    margin-bottom: 3px
}

.hamburger .line:last-child {
    margin-top: 3px
}

.hamburger.active .line:nth-child(2) {
    opacity: 0
}

.hamburger.active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg)
}

.hamburger.active .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg)
}

.sidebar-menu {
    position: absolute;
    top: 57px;
    left: 0;
    right: 0;
    min-height: calc(100% - 57px);
    z-index: 2010;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100px);
    -webkit-overflow-scrolling: touch;
    transition: all .2s cubic-bezier(.25, 0, .3, 1)
}

.sidebar-menu .container, .sidebar-menu .sidebar-menu-backdrop {
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    left: 0
}

.sidebar-menu .sidebar-menu-backdrop {
    bottom: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity .15s
}

.sidebar-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0)
}

.sidebar-menu.active .sidebar-menu-backdrop {
    opacity: 1
}

.sidebar-menu-content {
    margin: 0;
    padding: 15px 15px 0;
    background-color: var(--theme-bg-color);
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .1)
}

.sidebar-menu-content .card {
    margin-bottom: 10px
}

.callout p:last-child, .sidebar-menu-content .card:last-child {
    margin-bottom: 0
}

.sidebar-menu-content .card:nth-child(4n+1) li {
    background-color: #f4ac36;
    background-image: url(/assets/images/icon_bg_orange.svg)
}

.sidebar-menu-content .card:nth-child(4n+2) li {
    background-color: #19c37d;
    background-image: url(/assets/images/icon_bg_green.svg)
}

.sidebar-menu-content .card:nth-child(4n+3) li {
    background-color: #5436da;
    background-image: url(/assets/images/icon_bg_blue.svg)
}

.sidebar-menu-content .card:nth-child(4n) li {
    background-color: #ef4146;
    background-image: url(/assets/images/icon_bg_red.svg)
}

.sidebar-menu-content ul {
    display: flex;
    flex-wrap: wrap
}

.sidebar-menu-content ul li {
    width: 9em;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px 0;
    margin: 8px;
    text-align: center;
    background-size: cover;
    flex-shrink: 0
}

.sidebar-menu-content ul li a {
    color: #fff;
    line-height: 1.2em;
    font-size: 18px;
    transition: all .15s;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, .5);
    font-weight: 700
}

.sidebar-menu-content ul li a:hover {
    color: #ff0
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .sidebar-menu-content li {
        width: calc(25% - 16px) !important
    }
}

@media (max-width: 575.98px) {
    .sidebar-menu-content li {
        width: calc(50% - 16px) !important
    }

    .sidebar-menu-content a {
        max-width: 8em;
        letter-spacing: 2px
    }
}

.sidebar-menu-close {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    padding-bottom: 20px
}

.sidebar-menu-close button {
    padding: 5px 40px;
    border-radius: 40px
}

@media (max-width: 991.98px) {
    .sidebar-menu .container {
        margin: 0;
        width: 100% !important;
        max-width: unset !important
    }

    .sidebar-menu-active {
        overflow-x: hidden;
        overflow-y: hidden
    }

    .sidebar-menu-active > header {
        position: sticky;
        top: 0
    }

    header {
        z-index: 2020
    }

    .sidebar-menu {
        position: fixed;
        left: 0;
        max-height: calc(100% - 57px);
        z-index: 2010
    }
}

.header-search-wrapper {
    position: relative;
    z-index: 2010;
    border-bottom: 1px solid rgba(180, 180, 180, .1);
    background-color: var(--search-bg-color);
    padding: 30px 0;
    border-radius: .2rem;
    box-shadow: 0 0 4px var(--shadow-color);
    font-size: 1rem
}

.header-search-wrapper .header-search-close {
    display: none
}

.card .card-header.main > h2, .header-search-wrapper > .container {
    padding: 0
}

@media (max-width: 767.98px) {
    .header-search-wrapper:not(.header-search-home) {
        position: fixed;
        left: 0;
        right: 0;
        top: 56px
    }

    .header-search-wrapper:not(.header-search-home) .header-search-close {
        margin: 20px auto -20px;
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
        display: block
    }
}

.header-search {
    margin: 0 auto;
    max-width: 740px;
    display: block;
    position: relative;
    transition: opacity .2s linear
}

.header-search .dropdown-menu {
    box-shadow: 0 .5rem 1rem var(--shadow-color);
    border: 0;
    min-width: auto
}

.header-search .dropdown-menu .dropdown-item {
    font-size: inherit
}

.header-search .dropdown-menu .active {
    border-left: 2px solid #bd9237
}

.header-search button[data-toggle=dropdown] {
    background-color: var(--body-bg-color);
    border-right: 1px solid var(--border-color);
    border-color: var(--border-color)
}

.header-search ~ p {
    margin-top: 15px;
    margin-bottom: 0
}

.header-search-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px
}

.search-empty {
    padding: 2em 0;
    text-align: center
}

.search-empty h3 {
    font-size: 1.375rem;
    margin-bottom: 20px
}

.search-empty h3 + p {
    color: #555
}

.search-empty p {
    color: #777;
    font-size: .9375rem
}

.quick-list strong, .search-empty p > strong, .side-toolbar a:hover i {
    color: red
}

.search-help {
    cursor: pointer
}

.search-help-list {
    font-size: 15px;
    color: #444
}

.search-help-list ol {
    background: linear-gradient(to right bottom, rgba(252, 244, 219, .65) 0, rgba(250, 246, 236, .65) 100%);
    border: 1px solid rgba(250, 238, 201, .65);
    padding: 10px;
    border-radius: 10px
}

.search-help-list li {
    padding: .5rem 0;
    font-size: 14px;
    margin-left: 1.5em
}

.search-help-list li em {
    font-weight: 700;
    font-style: normal;
    color: #000
}

.search-help-list li::marker {
    color: #c00303;
    font-weight: 700;
    font-size: 14px;
    padding-right: 4px
}

.char-list > li a.char:hover, .search-help-list li a {
    color: red;
    text-decoration: none
}

.search-help-list li a:hover {
    text-decoration: underline
}

.search-help-list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, .06)
}

.search-current-words {
    font-weight: 700;
    padding-left: 4px;
    padding-right: 4px
}

#searchForm {
    border: 3px solid var(--search-border-color);
    border-radius: 7px;
    transition: all .2s linear;
    box-shadow: 0 1rem 3rem var(--shadow-color);
    position: relative
}

#searchForm.search-form-focused {
    border-color: var(--search-focus-border-color) !important
}

#searchForm.search-form-invalid {
    border-color: rgba(255, 0, 0, .8) !important
}

#searchForm button[data-toggle=dropdown] {
    font-size: inherit;
    color: var(--body-color)
}

#searchForm input[name=words] {
    margin-left: 2px;
    border: 0;
    font-size: inherit;
    height: 3em
}

#searchForm input[name=words]:focus {
    border: 0;
    box-shadow: none
}

.suggestion {
    position: absolute;
    top: calc(3em + 3px);
    left: 0;
    right: 0;
    padding: 15px;
    background-color: #fff;
    z-index: 100;
    border-top: none;
    box-shadow: -2px 2px 8px -4px rgba(0, 0, 0, .2), 2px 2px 8px -4px rgba(0, 0, 0, .2);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    display: none
}

.suggestion.show {
    display: block
}

.suggestion .suggestion-head {
    display: flex;
    justify-content: space-between;
    font-size: .875rem
}

.socail-list ul li, .suggestion .suggestion-head .history-remove {
    cursor: pointer
}

.suggestion .suggestion-body .none {
    margin: 0 auto;
    text-align: center;
    font-size: .875rem;
    padding: 15px;
    color: var(--text-color-gray)
}

.history-list {
    display: flex;
    flex-wrap: wrap
}

.history-list a {
    padding: 2px 12px;
    border-radius: 5px;
    font-size: .875rem;
    margin-left: 5px;
    margin-top: 5px;
    border: 1px solid var(--border-color);
    background-color: var(--body-secondary-bg-color)
}

.search-card {
    padding: 30px;
    background-color: var(--theme-secondary-bg-color);
    border-radius: 10px;
    margin-bottom: 10px
}

.search-card .search-card-body input[name=words] {
    max-width: 18em
}

html[data-theme=dark] .search-card-body .input-group-text {
    border-color: var(--border-secondary-color);
    color: var(--body-color);
    background-color: var(--theme-secondary-bg-color)
}

.search-card-body > .input-group {
    justify-content: center
}

.search-card-body .input-group-text, .search-card-body button, .search-card-body input {
    font-size: 16px;
    white-space: nowrap
}

.search-card-body input[name=words] {
    margin-left: 8px;
    margin-right: 8px;
    line-height: 30px
}

.search-card-body input[name=words]:focus {
    border-color: var(--body-color)
}

.search-card-body input[name=words]::-moz-placeholder {
    font-size: 14px;
    line-height: 30px
}

.search-card-body input[name=words]::placeholder {
    font-size: 14px;
    line-height: 30px
}

@media (max-width: 991.98px) {
    .search-help-list {
        padding: 0
    }
}

@media (max-width: 767.98px) {
    .header-search-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 0 !important
    }

    .header-search {
        font-size: .9375rem
    }

    .header-search > #searchForm {
        border-width: 2px
    }

    .header-search > #searchForm .dropdown-toggle {
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px
    }

    .header-search > #searchForm input[type=submit] {
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px
    }
}

html[data-theme=dark] .suggestion {
    background-color: #000;
    z-index: 100;
    border-top: none;
    box-shadow: -2px 2px 8px -4px rgba(200, 200, 200, .2), 2px 2px 8px -4px rgba(200, 200, 200, .2)
}

.card .card-header.main {
    margin: 0 -15px;
    border-bottom: 1px solid var(--border-color);
    padding: 0 15px;
    height: 50px;
    line-height: 50px
}

.card .card-header.info, .card .card-header.main, .content-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.card .card-header.info h3 {
    white-space: nowrap
}

.card .card-header.info span {
    color: var(--text-color-gray);
    white-space: nowrap;
    overflow-x: hidden
}

.card .card-header > h2 {
    font-size: 1rem;
    margin: 0
}

.content-card-header {
    border-bottom: 1px solid var(--border-secondary-color);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 5px;
    position: sticky;
    top: -2px;
    z-index: 100
}

.content-card-header.outer {
    margin: 0 -20px;
    padding: 5px 20px;
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem
}

.content-card-header.outer h2 {
    position: relative
}

.content-card-header.outer h2::before {
    content: "";
    border-left: 3px solid red;
    position: absolute;
    left: -20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%)
}

.content-card-header.outer .zi-special {
    font-size: 1.125em;
    line-height: 1
}

.content-card-header.outer .zi-special img {
    width: 1em;
    height: 1em;
    vertical-align: -.15em
}

.content-card-header:not(.outer).active {
    padding-left: 25px;
    padding-right: 25px
}

.content-card-header.active {
    margin: 0 -20px;
    box-shadow: 0 .125rem .25rem var(--shadow-color)
}

.content-card-header h2, .content-card-header h3 {
    font-size: 1.125rem;
    margin: 0;
    padding-right: 6px
}

.content-card-header .title {
    font-size: 24px
}

.content-card-header .title a:before {
    content: "#";
    margin-right: 6px;
    color: var(--border-color);
    font-size: 20px
}

.content-card-header .count {
    font-size: 14px;
    color: var(--text-color-gray)
}

.content-card-header [data-toggle] {
    flex-grow: 1;
    text-align: right;
    font-size: 14px;
    cursor: pointer;
    color: #a27728;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.content-card-header [data-toggle] .fold {
    display: inline-block
}

.content-card-header [data-toggle] .unfold, .content-card-header [data-toggle].collapsed .fold {
    display: none
}

.content-card-header [data-toggle] .arrow {
    margin-left: 4px;
    display: inline-block;
    transition: all .2s linear
}

.content-card-header [data-toggle].collapsed .unfold {
    display: inline-block
}

.content-card-header [data-toggle].collapsed .arrow {
    transform: rotate(180deg)
}

.content-card-body {
    padding: 20px 0
}

@media (max-width: 1199.98px) {
    .content-card-header.active {
        margin: 0 -20px
    }
}

@media (max-width: 991.98px) {
    .content-card-header:not(.outer).active {
        padding-left: 20px;
        padding-right: 20px
    }

    .content-card-header.outer {
        margin: 0 -15px !important
    }

    .content-card-header.active {
        margin: 0 -15px
    }
}

@media (max-width: 767.98px) {
    .content-card-header {
        position: sticky;
        top: 56px;
        z-index: 100
    }

    .content-card-header.outer {
        border-radius: 0
    }
}

.font-sm {
    font-size: .875rem !important
}

.font-md {
    font-size: 1rem !important
}

.font-lg {
    font-size: 1.125rem !important
}

.font-xxl {
    font-size: 1.5rem !important
}

.font-14 {
    font-size: 14px !important
}

.font-15 {
    font-size: 15px !important
}

.font-16 {
    font-size: 16px !important
}

.font-18 {
    font-size: 18px !important
}

.font-20 {
    font-size: 20px !important
}

.font-24 {
    font-size: 24px !important
}

.font-30 {
    font-size: 30px !important
}

.font-32 {
    font-size: 32px !important
}

.font-bold {
    font-weight: 700
}

.font-weight-400 {
    font-weight: 500 !important
}

.about {
    padding-left: 15px;
    padding-right: 15px
}

footer {
    border-top: 1px solid #343a40;
    background-color: #495057;
    text-align: center;
    color: #aaa;
    margin-top: 20px
}

footer > .container {
    padding: 20px;
    text-align: center
}

footer .icp {
    font-size: .8125rem;
    display: flex;
    justify-content: center;
    align-items: center
}

footer .icp a {
    color: #f8e8b1;
    margin-right: 6px
}

footer .icp a:last-child {
    margin-right: 0
}

@media (max-width: 767.98px) {
    footer {
        margin-top: -1px !important
    }
}

.char-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 1px 0 0 1px;
    margin: 0 -.5rem
}

.char-list > li {
    text-align: center;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    transition: all linear .2s;
    background-color: #fcfcfc;
    min-height: 80px;
    margin: .5rem;
    padding: 0 .5rem;
    width: calc(10% - 1rem);
    box-shadow: 0 1px 1px 0 rgba(52, 27, 159, .1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.char-list > li[data-zone=C] {
    background-color: #fbeefd
}

.char-list > li[data-zone=G] {
    background-color: #f3f5ff
}

.char-list > li:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05), 0 20px 48px rgba(0, 0, 0, .05), 0 1px 4px rgba(0, 0, 0, .1);
    background-color: #fff;
    border: 1px solid #639ed7;
    z-index: 10
}

.char-list > li a.char {
    font-family: "Songti", "Songti SC", "STSong", "宋体", "Noto Serif CJK SC", "Source Han Serif SC", "Source Han Serif CN", STSong, "AR PL New Sung", "AR PL SungtiL GB", NSimSun, SimSun, "TW-Sung", "WenQuanYi Bitmap Song", "AR PL UMing CN", "AR PL UMing HK", "AR PL UMing TW", "AR PL UMing TW MBE", PMingLiU, MingLiU, serif;
    font-size: 26px;
    color: #000;
    overflow: hidden;
    transition: all linear .2s;
    margin-top: auto;
    margin-bottom: auto;
    line-height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 500
}

.char-list > li a.char > img, .zi-list .han span img {
    width: 28px;
    height: 28px;
    vertical-align: middle
}

.char-list > li .zone {
    position: absolute;
    right: 6px;
    bottom: 6px;
    padding: 0;
    color: #ccc;
    font-size: .925rem
}

.char-list > li > span {
    font-size: .825rem;
    padding-bottom: 8px;
    line-height: 1.2
}

.char-list > li > span.serial {
    font-weight: 700;
    color: #999
}

.char-list > li > span.sijiao {
    font-weight: 700
}

.char-list > li > span.bihua, .char-list > li > span.sijiao {
    color: #555
}

.char-list > li > span.pinyin {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5 !important;
    padding-top: 10px;
    padding-bottom: 0
}

.char-list > li > span.line {
    border-bottom: 1px solid #e9ecef
}

.char-list > li > span.line + span:not(.pinyin) {
    padding-top: 8px
}

.char-list > li > span:first-child {
    padding-top: 8px
}

.char-list + .more {
    text-align: center;
    position: relative;
    margin-top: 10px
}

.char-list + .more a {
    min-width: 260px
}

@media (min-width: 1420px) {
    .char-list > li {
        width: calc(10% - 1rem)
    }
}

@media (max-width: 1419.98px) {
    .char-list > li {
        width: calc(12.5% - 1rem)
    }
}

@media (max-width: 1199.98px) {
    .char-list > li {
        width: calc(16.666% - 1rem)
    }
}

@media (max-width: 991.98px) {
    .char-list > li {
        width: calc(16.666% - 1rem)
    }
}

@media (max-width: 767.98px) {
    .char-list > li {
        width: calc(25% - 1rem)
    }

    .char-list + .more a {
        display: block
    }
}

.breadcrumb-wrapper {
    --breadcrumb-color: #fff;
    --breadcrumb-item-back-bg-color: #885E1B;
    --breadcrumb-bg-color: var(--theme-bg-color);
    --breadcrumb-item-bg-color: #bd9237;
    --breadcrumb-item-hover-bg: #D7B664;
    --breadcrumb-active-color: #000;
    --breadcrumb-active-bg-color: transparent;
    background: var(--breadcrumb-bg-color);
    box-shadow: 0 .125rem .25rem var(--shadow-color);
    margin-bottom: 20px;
    padding: 10px 0
}

:root[data-theme=dark] .breadcrumb-wrapper {
    --breadcrumb-bg-color: var(--theme-bg-color);
    --breadcrumb-item-back-bg-color: #555;
    --breadcrumb-item-bg-color: #333;
    --breadcrumb-item-hover-bg: #444;
    --breadcrumb-active-color: #fff
}

.breadcrumb, .breadcrumb ol {
    display: flex;
    align-items: center
}

.breadcrumb {
    text-decoration: none
}

.breadcrumb .back {
    background-color: var(--breadcrumb-item-back-bg-color);
    color: #fff;
    height: 34px;
    line-height: 34px;
    border-radius: .25rem;
    width: 30px;
    margin-right: 6px;
    text-align: center
}

.breadcrumb .back:hover, .breadcrumb li a {
    background-color: var(--breadcrumb-item-bg-color)
}

.breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    text-align: left;
    overflow-y: hidden;
    overflow-x: auto
}

.breadcrumb li a {
    position: relative;
    display: block;
    height: 34px;
    line-height: 34px;
    padding-left: 24px;
    padding-right: 12px;
    font-size: .925rem;
    color: var(--breadcrumb-color);
    white-space: nowrap
}

.breadcrumb li a::after, .breadcrumb li a::before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    position: absolute;
    top: 50%;
    margin-top: -40px;
    left: calc(100% - 10px)
}

.breadcrumb li a::after {
    border-left: 20px solid var(--breadcrumb-item-bg-color);
    z-index: 2
}

.breadcrumb li a::before {
    border-left: 20px solid var(--breadcrumb-bg-color);
    margin-left: 2px;
    z-index: 1
}

.breadcrumb li a:hover {
    background: var(--breadcrumb-item-hover-bg) !important
}

.breadcrumb li a:hover::after {
    border-left-color: var(--breadcrumb-item-hover-bg) !important
}

.breadcrumb li:first-child a {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    padding-left: .5rem;
    padding-right: .5rem
}

.breadcrumb li:last-child {
    font-weight: 700
}

.breadcrumb li:last-child a {
    pointer-events: none;
    cursor: default;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    background-color: var(--breadcrumb-active-bg-color);
    color: var(--breadcrumb-active-color)
}

.breadcrumb li:last-child a::after, .breadcrumb li:last-child a::before {
    border: 0;
    display: none
}

.breadcrumb li:last-child h1 {
    margin: 0;
    padding-left: 20px;
    font-size: .9375rem
}

.breadcrumb li:last-child span {
    padding-left: 20px
}

@media (max-width: 991.98px) {
    .breadcrumb .back, .breadcrumb li a {
        height: 30px;
        line-height: 30px
    }

    .breadcrumb li a {
        font-size: .8125rem
    }
}

@media (max-width: 767.98px) {
    .breadcrumb {
        border-top: none;
        padding-left: 15px;
        padding-right: 15px
    }

    .breadcrumb nav {
        overflow-x: auto;
        white-space: nowrap
    }

    .breadcrumb nav::-webkit-scrollbar {
        display: none
    }
}

.content-header .title, .content-header h1 {
    text-align: center;
    font-weight: 600;
    font-family: "Songti", "Songti SC", "STSong", "宋体", "Noto Serif CJK SC", "Source Han Serif SC", "Source Han Serif CN", STSong, "AR PL New Sung", "AR PL SungtiL GB", NSimSun, SimSun, "TW-Sung", "WenQuanYi Bitmap Song", "AR PL UMing CN", "AR PL UMing HK", "AR PL UMing TW", "AR PL UMing TW MBE", PMingLiU, MingLiU, serif;
    padding-top: 15px;
    color: var(--body-color);
    margin-bottom: 0 !important
}

.content-header .title + .summary, .content-header h1 + .summary {
    padding: 5px 0 15px !important;
    margin: 0 !important;
    color: var(--body-info-color)
}

.content-header .title + .summary + .description, .content-header h1 + .summary + .description {
    margin-top: 15px !important
}

.content-header .summary {
    font-size: .875rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color)
}

.content-header .summary:before {
    content: "（"
}

.content-header .summary:after {
    content: "）"
}

.content-header .description {
    font-size: .875rem;
    color: var(--body-info-color);
    margin-bottom: 0
}

@media (max-width: 575.98px) {
    .content-header .description {
        background-color: var(--body-secondary-bg-color);
        border: 1px solid var(--border-color);
        padding: 10px;
        border-radius: 5px
    }
}

.pagination {
    display: flex;
    border-radius: .25rem;
    --page-link-color: #A27728
}

html[data-theme=dark] .pagination {
    --page-link-color: #FBF4D8
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--page-link-color);
    background-color: var(--theme-bg-color);
    border: 1px solid var(--btn-border-color)
}

.page-link:hover {
    z-index: 2;
    color: var(--btn-hover-color);
    text-decoration: none;
    background-color: var(--btn-hover-bg-color);
    border-color: var(--btn-hover-border-color)
}

.page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.page-item:first-child {
    margin-left: 0 !important
}

.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: var(--theme-secondary-bg-color);
    border-color: var(--border-secondary-color)
}

.pager {
    justify-content: center;
    align-items: center
}

.pager .page-count {
    margin-right: auto
}

.pager .page-item {
    margin-left: 10px
}

.pager .page-item .page-link {
    border-radius: 4px;
    padding: 8px 4px;
    min-width: 32px;
    text-align: center
}

.pager .page-item .page-next, .pager .page-item .page-prev {
    overflow: hidden
}

@media (max-width: 991.98px) {
    .pager .page-count {
        display: none
    }
}

.callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--border-secondary-color);
    border-left-width: 5px
}

.callout h4 {
    margin-top: 0;
    margin-bottom: 5px
}

.callout, .callout code {
    border-radius: 3px
}

.callout-primary {
    border-left-color: #428bca
}

.callout-primary h4 {
    color: #428bca
}

.callout-danger {
    border-left-color: #d9534f
}

.callout-danger h4 {
    color: #d9534f
}

.callout-info {
    border-left-color: #5bc0de
}

.callout-info h4 {
    color: #5bc0de
}

.table {
    --bg-color: var(--body-bg-color);
    --head-bg-color: #bd9237;
    --head-border-color: #D7B664;
    --body-border-color: #f0f0f0;
    --body-seconed-bg-color: #f9f9f9;
    background-color: var(--theme-bg-color);
    border: 1px solid #000;
    width: 100%;
    border-radius: 8px;
    overflow: hidden
}

html[data-theme=dark] .table {
    --head-bg-color: #555;
    --head-border-color: #666;
    --body-border-color: #444;
    --body-seconed-bg-color: #333
}

.table thead th {
    font-weight: 700;
    background-color: var(--head-bg-color);
    padding: .5rem;
    color: #fff;
    white-space: nowrap;
    border-right: 1px solid var(--head-border-color);
    text-align: center
}

.table thead th:first-child {
    width: 20px;
    border-top-left-radius: 8px
}

.table thead th:last-child {
    border-right: none;
    border-top-right-radius: 8px
}

.table tr td {
    padding: 10px 5px;
    border-bottom: 1px solid var(--body-border-color);
    border-right: 1px solid var(--body-border-color);
    color: var(--body-color);
    text-align: center
}

.table tr td:last-child {
    border-right: none
}

.table tr:nth-child(even) td {
    background-color: var(--body-seconed-bg-color)
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px
}

.table-no td:first-child {
    font-weight: 700;
    padding: 0 15px;
    color: rgba(120, 120, 120, .6)
}

.theme-toggle {
    position: relative;
    width: 40px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent
}

.theme-toggle > svg {
    height: 20px;
    width: 20px;
    stroke-linecap: round;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px)
}

[data-theme=dark] .theme-toggle .sun-and-moon > .sun {
    fill: #fade34
}

.theme-toggle .tooltip {
    top: 70px
}

.sun-and-moon > .moon, .sun-and-moon > .sun, .sun-and-moon > .sun-beams {
    transform-origin: center center
}

.sun-and-moon > .moon, .sun-and-moon > .sun {
    fill: #000
}

.sun-and-moon > .sun-beams {
    stroke: #fade34;
    stroke-width: .125rem
}

[data-theme=light] .sun-and-moon > .sun {
    transform: scale(1.75)
}

[data-theme=light] .sun-and-moon > .sun-beams {
    opacity: 0
}

[data-theme=light] .sun-and-moon > .moon > circle {
    transform: translateX(7px)
}

@supports (cx:1) {
    [data-theme=light] .sun-and-moon > .moon > circle {
        transform: translateX(0);
        cx: 7
    }
}

@media (prefers-reduced-motion: no-preference) {
    .sun-and-moon > .sun {
        transition: transform .5s cubic-bezier(.5, 1.25, .75, 1.25)
    }

    .sun-and-moon > .sun-beams {
        transition: transform .5s cubic-bezier(.5, 1.5, .75, 1.25), opacity .5s cubic-bezier(.25, 0, .3, 1)
    }

    .sun-and-moon .moon > circle {
        transition: transform .25s cubic-bezier(0, 0, 0, 1)
    }

    @supports (cx:1) {
        .sun-and-moon .moon > circle {
            transition: cx .25s cubic-bezier(0, 0, 0, 1)
        }
    }[data-theme=light] .sun-and-moon > .sun {
         transform: scale(1.75);
         transition-timing-function: cubic-bezier(.25, 0, .3, 1);
         transition-duration: .25s
     }

    [data-theme=light] .sun-and-moon > .sun-beams {
        transform: rotateZ(-25deg);
        transition-duration: .15s
    }

    [data-theme=light] .sun-and-moon > .moon > circle {
        transition-delay: .25s;
        transition-duration: .5s
    }
}

@media (hover: hover) and (pointer: fine) {
    .theme-toggle:focus-visible .sun-and-moon > .sun, .theme-toggle:hover .sun-and-moon > .sun {
        fill: red
    }

    .theme-toggle:focus-visible .sun-and-moon > .sun-beams, .theme-toggle:hover .sun-and-moon > .sun-beams {
        stroke: red
    }
}

@media (any-hover: hover) {
    .theme-toggle:hover .tooltip {
        top: 40px;
        opacity: 1;
        pointer-events: auto
    }
}

.socail-list ul {
    display: flex;
    justify-content: center;
    justify-items: center
}

.socail-list ul li:not(:first-child) {
    margin-left: 8px
}

.socail-list ul li .iconfont {
    font-size: 50px;
    color: #aaa;
    transition: all .2s ease
}

.socail-list ul li .iconfont.icon-wechat {
    color: #3dbe5b
}

.socail-list ul li .iconfont.icon-weibo {
    color: #ff5757
}

.socail-list ul li .iconfont.icon-QQ {
    color: #21b3f7
}

.socail-list ul li .iconfont.icon-qzone {
    color: #f8c514
}

#qrCode2 {
    margin: 0 auto;
    max-width: 300px
}

.tooltip {
    transition: top .2s, opacity .2s;
    opacity: 0;
    z-index: 1010
}

.tooltip.show {
    opacity: 1;
    top: 0
}

.notification-container {
    position: fixed;
    z-index: 10002;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    pointer-events: none
}

.notification-container .notification-message {
    min-width: 240px;
    white-space: nowrap;
    width: auto;
    height: auto;
    padding: 15px;
    text-align: center;
    color: #fff;
    border: 2px solid var(--border-color);
    box-shadow: 0 .5rem 1rem var(--shadow-color);
    background-color: rgba(0, 0, 0, .8);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(40px);
    transition: all .2s cubic-bezier(.785, .135, .15, .86)
}

.notification-container.show .notification-message {
    opacity: 1;
    transform: translateY(0)
}

.notification-container.hide .notification-message {
    opacity: 0;
    transform: translateY(-40px)
}

.notify-danger {
    background-color: #fff;
    border-radius: 5px;
    border-left-color: red;
    padding: 15px;
    margin: -5px 0 15px
}

html[data-theme=dark] .notify-danger {
    background-color: #333;
    border-color: #444 #444 #444 red
}

@media (max-width: 575.98px) {
    .notify-danger {
        font-size: .9375rem;
        border-radius: 0;
        text-align: center;
        padding-left: 0;
        padding-right: 0
    }
}

.zi-list {
    --zi-column: 12;
    --zi-spacing: 16px;
    --zi-spacing-half: calc(var(--zi-spacing) / 2);
    --zi-column-dyz: 10;
    --zone-a: rgba(125, 210, 255, 0.1);
    --zone-b: rgba(248, 215, 60, 0.1);
    --zone-c: rgba(237, 137, 253, 0.1);
    --zone-d: rgba(109, 252, 171, 0.1);
    --zone-e: rgba(255, 123, 156, 0.1);
    --zone-f: rgba(101, 255, 218, 0.1);
    --zone-g: rgba(55, 89, 255, 0.05);
    --zi-border-color: #e9e9e9;
    --zi-hover-border-color: transparent;
    --zi-background-color: rgba(220, 220, 220, 0.1);
    --zi-hover-background-color: #fff;
    --zi-color: #333;
    --zi-sn-color: rgba(50, 50, 50, 0.6);
    list-style: none;
    margin: 0 calc(var(--zi-spacing-half) * -1);
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    position: relative
}

html[data-theme=dark] .zi-list {
    --zone-a: rgba(11, 172, 253, 0.1);
    --zone-b: rgba(252, 211, 9, 0.1);
    --zone-c: rgba(218, 7, 252, 0.1);
    --zone-d: rgba(8, 252, 113, 0.1);
    --zone-e: rgba(255, 9, 70, 0.1);
    --zone-f: rgba(5, 253, 197, 0.1);
    --zone-g: rgba(12, 54, 253, 0.1);
    --zi-border-color: #444;
    --zi-background-color: rgba(100, 100, 100, 0.1);
    --zi-hover-background-color: #111;
    --zi-color: #f0f0f0;
    --zi-sn-color: rgba(200, 200, 200, 0.6)
}

html[data-theme=dark] .zi-list li .han img {
    filter: brightness(0) invert(1)
}

.zi-list[d-bh=false] .bh {
    display: none !important
}

.zi-list li {
    position: relative;
    border: 1px solid var(--zi-border-color);
    background-color: var(--zi-background-color);
    border-radius: 6px;
    box-shadow: 0 1px 1px 0 rgba(52, 27, 159, .1);
    transition: all .2s ease-out;
    min-height: 60px;
    padding: 6px;
    margin: 10px var(--zi-spacing-half);
    width: calc(100% / var(--zi-column) - var(--zi-spacing))
}

.zi-list li > span {
    padding: 0 6px;
    margin-top: 6px
}

.zi-list li:hover {
    border: 1px solid var(--zi-hover-border-color);
    background-color: var(--zi-hover-background-color) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05), 0 20px 48px rgba(0, 0, 0, .05), 0 1px 4px rgba(0, 0, 0, .1)
}

.zi-list li:hover .han {
    color: red;
    padding-bottom: 0
}

.zi-list li:hover .han img {
    filter: invert(13%) sepia(94%) saturate(7466%) hue-rotate(0deg) brightness(94%) contrast(115%) !important
}

.zi-list li[d-z=a] {
    background-color: var(--zone-a)
}

.zi-list li[d-z=b] {
    background-color: var(--zone-b)
}

.zi-list li[d-z=c] {
    background-color: var(--zone-c)
}

.zi-list li[d-z=d] {
    background-color: var(--zone-d)
}

.zi-list li[d-z=e] {
    background-color: var(--zone-e)
}

.zi-list li[d-z=f] {
    background-color: var(--zone-f)
}

.zi-list li[d-z=g] {
    background-color: var(--zone-g)
}

.zi-list .zone {
    position: absolute;
    bottom: 2px;
    right: 0;
    font-size: 12px;
    color: var(--zi-sn-color)
}

.zi-list .sj, .zi-list .sn {
    color: var(--zi-sn-color);
    font-size: 11px;
    font-weight: 700;
    flex-grow: 1;
    font-family: Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.zi-list .tag {
    position: absolute;
    top: -1px;
    left: -1px;
    margin: 0;
    font-size: 11px;
    color: #fff;
    background-color: rgba(0, 0, 255, .4);
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px
}

.zi-list .py {
    font-family: "Pinyin", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.5 !important;
    display: block;
    font-size: 16px;
    padding: 0 3px
}

.zi-list .bh {
    color: #999;
    font-size: 12px;
    margin-top: 0
}

.zi-list .han {
    --zi-height: 36px;
    font-family: "Songti", "Songti SC", "STSong", "宋体", "Noto Serif CJK SC", "Source Han Serif SC", "Source Han Serif CN", STSong, "AR PL New Sung", "AR PL SungtiL GB", NSimSun, SimSun, "TW-Sung", "WenQuanYi Bitmap Song", "AR PL UMing CN", "AR PL UMing HK", "AR PL UMing TW", "AR PL UMing TW MBE", PMingLiU, MingLiU, serif;
    display: block;
    font-weight: 500;
    font-size: 26px;
    color: var(--zi-color);
    height: var(--zi-height);
    transition: all .2s ease-in-out
}

.zi-list .han::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.zi-list .han span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--zi-height)
}

.zi-list .han:hover {
    color: red;
    border-color: #e0e0e0
}

.zi-list .han.swjz {
    padding-top: 6px;
    height: auto
}

.zi-list .han.swjz img {
    width: 100%;
    max-width: 50px;
    max-height: 50px
}

.zi-list {
    display: flex
}

.zi-list.zi-list-less .more {
    position: relative;
    text-align: center;
    margin-top: 15px;
    flex-grow: 1;
    flex-basis: 100%;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-height: auto
}

.zi-list.zi-list-less .more a {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 260px
}

.zi-list.zi-list-dyz li {
    width: calc(100% / var(--zi-column-dyz) - var(--zi-spacing))
}

.zi-list .navigation {
    flex-grow: 1;
    flex-basis: 200px
}

.zi-list .navigation a {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center
}

.zi-list .navigation a .text {
    font-size: .8125rem;
    color: #adb5bd;
    margin-top: 4px
}

.zi-list-message {
    font-size: .9375rem;
    color: var(--text-color-gray);
    text-align: center;
    padding-top: 15px
}

.zi-list li {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.zi-similar-list li::before {
    display: block;
    content: "";
    width: 100%;
    padding-bottom: 100%
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox] {
    display: none
}

.zi-list-biao {
    --zi-spacing: 16px;
    display: flex
}

.zi-list-biao .left {
    width: 40px;
    position: sticky;
    top: 0;
    font-size: 15px;
    text-align: center;
    background-color: #333;
    color: #fff;
    padding-top: 6px;
    flex-shrink: 0;
    border-radius: 5px;
    margin: 10px var(--zi-spacing) 10px 0
}

.zi-list-biao .left:before {
    content: "起笔";
    font-size: 12px;
    color: #999
}

.zi-list-biao .right {
    flex-grow: 1
}

.zi-list-biao:last-child {
    margin-bottom: 0 !important
}

.zi-similar-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px
}

.zi-similar-list li {
    position: relative;
    font-family: "Songti", "Songti SC", "STSong", "宋体", "Noto Serif CJK SC", "Source Han Serif SC", "Source Han Serif CN", STSong, "AR PL New Sung", "AR PL SungtiL GB", NSimSun, SimSun, "TW-Sung", "WenQuanYi Bitmap Song", "AR PL UMing CN", "AR PL UMing HK", "AR PL UMing TW", "AR PL UMing TW MBE", PMingLiU, MingLiU, serif;
    display: block;
    border: 2px solid var(--border-secondary-color);
    border-radius: 6px;
    background: var(--mi-bg);
    font-weight: 500;
    margin: 5px;
    text-align: center;
    width: calc(25% - 10px);
    transition: all .1s
}

.zi-similar-list li > a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-color);
    line-height: 1em
}

.zi-similar-list li > a img {
    width: 32px;
    height: 32px;
    vertical-align: middle
}

.zi-similar-list li:hover {
    box-shadow: 0 .5rem 1rem var(--shadow-color);
    border-color: var(--a-hover-color)
}

.zi-similar-list li:hover a {
    color: var(--a-hover-color)
}

@media (max-width: 1419.98px) {
    .zi-list {
        --zi-column-dyz: 8;
        --zi-column: 10
    }
}

@media (max-width: 1199.98px) {
    .zi-list {
        --zi-column-dyz: 6;
        --zi-column: 8
    }
}

@media (max-width: 991.98px) {
    .zi-list {
        --zi-column-dyz: 8;
        --zi-column: 10;
        --zi-spacing-half: calc(var(--zi-spacing) / 2)
    }

    .zi-similar-list li {
        width: calc(8.3333333333% - 10px)
    }

    .zi-list, .zi-list-biao {
        --zi-spacing: 10px
    }
}

@media (max-width: 720px) {
    .zi-similar-list li {
        width: calc(12.5% - 10px)
    }
}

@media (max-width: 767.98px) {
    .zi-list {
        --zi-column-dyz: 6;
        --zi-column: 6
    }

    .zi-list-biao .left {
        margin-right: var(--zi-spacing);
        font-size: 13px;
        width: 32px
    }
}

@media (max-width: 575.98px) {
    .zi-list {
        --zi-column-dyz: 5;
        --zi-column: 6;
        --zi-spacing: 8px;
        --zi-spacing-half: calc(var(--zi-spacing) / 2)
    }

    .zi-list-biao {
        --zi-spacing: 8px
    }

    .zi-list-biao .left {
        margin-right: var(--zi-spacing)
    }

    .zi-similar-list li {
        width: calc(16.6666666667% - 10px)
    }
}

@media (max-width: 420px) {
    .zi-list {
        --zi-column-dyz: 4;
        --zi-column: 5
    }

    .home-card .zi-list li:nth-last-child(-n+4) {
        display: none
    }

    .zi-similar-list li {
        width: calc(25% - 10px)
    }
}

@media (min-width: 1200px) and (max-width: 1419.98px) {
    .home-card .zi-list li:nth-last-child(-n+4) {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .home-card .zi-list li:nth-last-child(-n+4) {
        display: none
    }
}

@media (max-width: 320px) {
    .zi-list {
        --zi-column-dyz: 3;
        --zi-column: 4
    }

    .home-card .zi-list li:nth-last-child(-n+4) {
        display: unset
    }
}

.title-angle-shap {
    font-size: 1.125rem;
    padding-left: .75rem;
    padding-top: .75rem;
    margin-bottom: 10px;
    position: relative
}

.title-angle-shap::after, .title-angle-shap::before {
    position: absolute;
    background: red;
    content: "";
    left: 0;
    top: .5rem
}

.title-angle-shap::after {
    width: 10px;
    height: 2px
}

.title-angle-shap::before {
    width: 2px;
    height: 10px
}

.title-line-cross {
    display: flex;
    align-items: center
}

.title-line-cross > h2, .title-line-cross > h3 {
    margin: 0 20px;
    color: var(--body-color)
}

.title-line-cross > h2 {
    font-size: 1.25rem
}

.title-line-cross > h3 {
    font-size: 1rem
}

.title-line-cross:after, .title-line-cross:before {
    content: "";
    flex-grow: 1;
    height: 1px;
    overflow: hidden;
    background-color: var(--border-color)
}

.title-line-cross:before {
    margin-right: 15px
}

.title-line-cross:after {
    margin-left: 15px
}

.title-line-cross.left:before {
    margin-left: 10px;
    border-radius: 10px;
    display: inline-block;
    height: 10px;
    width: 10px;
    flex-grow: unset
}

.title h1 {
    text-align: center
}

.title h1 {
    color: var(--body-color);
    padding-top: 20px;
    line-height: 1em;
    margin-bottom: 15px;
    font-family: "Songti", "Songti SC", "STSong", "宋体", "Noto Serif CJK SC", "Source Han Serif SC", "Source Han Serif CN", STSong, "AR PL New Sung", "AR PL SungtiL GB", NSimSun, SimSun, "TW-Sung", "WenQuanYi Bitmap Song", "AR PL UMing CN", "AR PL UMing HK", "AR PL UMing TW", "AR PL UMing TW MBE", PMingLiU, MingLiU, serif;
    font-size: 2rem
}

.title h1 + .summary {
    font-size: .875rem;
    color: var(--body-secondary-color);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0;
    padding-bottom: 15px
}

.title .description {
    color: var(--body-info-color)
}

.content-nav-list {
    --gap-x: 20px;
    padding-bottom: 10px;
    padding-top: 5px
}

.content-nav-list .title {
    font-size: 14px;
    margin-bottom: 5px
}

.content-nav-list .list {
    display: flex;
    margin: 0 calc(var(--gap-x) * -1)
}

.content-nav-list .list a {
    flex-grow: 1;
    white-space: nowrap;
    text-align: center;
    border: 1px solid var(--border-secondary-color);
    background-color: var(--theme-secondary-bg-color);
    border-radius: 5px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 5px
}

.content-nav-list .list a:first-child {
    margin-left: 0
}

.content-nav-list .list a:last-child, .swjz-content .extra > span:last-child {
    margin-right: 0
}

.content-nav-list .list a:hover {
    background-color: var(--theme-bg-color)
}

.content-nav-list .list a.active {
    position: relative;
    background-color: red;
    font-weight: 700;
    color: #fff
}

.content-nav-list .list a.active::after, .content-nav-list .list a.active::before {
    position: absolute;
    content: " ";
    width: 0;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid transparent
}

.content-nav-list .list a.active::after {
    bottom: -6px;
    border-top-color: red
}

.content-nav-list .list a.active::before {
    bottom: -7px
}

@media (max-width: 991.98px) {
    .content-nav-list {
        --gap-x: 15px
    }
}

@media (hover: none),(pointer: coarse) {
    .content-nav-list .list {
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 4px;
        webkit-overflow-scrolling: touch
    }

    .content-nav-list .list::-webkit-scrollbar {
        display: none
    }
}

.dropdown-menu {
    --dropdown-link-color: var(--body-color);
    --dropdown-link-hover-color: #fff;
    --dropdown-link-hover-bg: #bd9237;
    --dropdown-link-active-color: #fff;
    --dropdown-link-active-bg: #D7B664
}

:root[data-theme=dark] .dropdown-menu {
    --dropdown-link-color: var(--body-color);
    --dropdown-link-hover-color: #fff;
    --dropdown-link-hover-bg: #444;
    --dropdown-link-active-color: #fff;
    --dropdown-link-active-bg: #555
}

.dropdown {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: var(--theme-bg-color);
    background-clip: padding-box;
    border: 1px solid var(--border-color);
    border-radius: .25rem
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: var(--dropdown-link-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus, .dropdown-item:hover {
    color: var(--dropdown-link-hover-color);
    text-decoration: none;
    background-color: var(--dropdown-link-hover-bg)
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--dropdown-link-active-bg)
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.main-sidebar {
    display: flex;
    flex-direction: column
}

.sidebar-content {
    background-color: var(--theme-bg-color);
    margin-bottom: 15px;
    box-shadow: 0 .125rem .25rem var(--shadow-color);
    border-radius: .25rem
}

.sidebar-content:last-child {
    margin-bottom: 0;
    flex-grow: 1
}

.sidebar-content > .card:first-child {
    padding-top: 10px
}

.sidebar-content > .card:last-child {
    margin-bottom: 20px
}

.quick-list ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px
}

.quick-list li {
    font-size: inherit;
    padding: 4px
}

.quick-list li a {
    display: block;
    padding: .5rem 0;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, .12);
    background-color: var(--btn-bg-color);
    transition: all .15s
}

.quick-list li a.active {
    font-weight: 700;
    color: var(--btn-active-color)
}

.quick-list li a:hover {
    border-color: var(--btn-hover-border-color);
    background-color: var(--btn-hover-bg-color)
}

.quick-list.caption ul li {
    width: 50%
}

.quick-list.sijiao ul li {
    width: 20%
}

.quick-list.pinyin ul li {
    width: 12.5%
}

.quick-list.wuxing ul li {
    width: 20%
}

.quick-list.volume ul li {
    width: 25%
}

.quick-list.bihua > ul li {
    width: 20%
}

.quick-list.bihua > ul li.bihua-more-container {
    position: relative;
    flex-grow: 1;
    margin-bottom: 48px;
    padding: 0
}

.quick-list.bihua > ul li.bihua-more-container .bihua-more-list {
    margin: 0
}

.quick-list.bihua > ul li.bihua-more-container li:last-child {
    flex-grow: 1
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox] + label {
    background: #d7b664;
    border: 1px solid #bd9237;
    color: #fff;
    display: block;
    width: calc(100% - .4rem);
    height: 30px;
    line-height: 28px;
    cursor: pointer;
    position: absolute;
    margin: 0 .2rem;
    top: 6px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top .45s cubic-bezier(.44, .99, .48, 1)
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox] + label::before {
    content: "显示 " attr(data-range) " 画";
    padding-right: 10px
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox] + label::after {
    line-height: 1em;
    color: #fff;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: all .4s ease
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox] ~ ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s cubic-bezier(.44, .99, .48, 1)
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox]:checked ~ ul {
    max-height: 500px
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox]:checked + label {
    top: calc(100% + 6px)
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox]:checked + label:before {
    content: "隐藏 " attr(data-range) " 画"
}

.quick-list.bihua > ul li.bihua-more-container input[type=checkbox]:checked + label:after {
    transform: rotate(180deg)
}

.quick-list.primary a {
    background-color: #b08c42;
    border-bottom: 3px solid #8d6d2d;
    font-size: .9375rem;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    transition: all .2s ease-in-out;
    padding: 8px 0
}

.quick-list.primary a:hover {
    background: #67a535;
    border-bottom: 3px solid #559223
}

.quick-links ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px
}

.quick-links li {
    margin: 5px;
    width: calc(50% - 10px);
    text-align: center;
    border: 1px solid #ebd187;
    border-bottom: 2px solid #d7b664;
    background-color: #fdfaeb;
    border-radius: 6px;
    font-size: 15px;
    transition: all .2s ease;
    background: linear-gradient(to right bottom, #fffcf0 0, #fcf3db 100%)
}

.quick-links li:hover {
    border-color: rgba(255, 0, 0, .15) rgba(255, 0, 0, .15) rgba(255, 0, 0, .3);
    background: linear-gradient(to right bottom, #fdf7f8 0, #fce7e9 100%)
}

.quick-links li a {
    display: block;
    padding: 5px 0;
    text-align: center
}

html[data-theme=dark] .quick-links li {
    border: 1px solid #212529;
    border-bottom: 2px solid #343a40;
    background-color: #495057;
    background: linear-gradient(to right bottom, #333 0, #444 100%);
    border-color: #222
}

html[data-theme=dark] .quick-links li:hover {
    background-color: transparent;
    border-color: #232323
}

@media (max-width: 991.98px) {
    .quick-links li {
        width: calc(25% - 10px)
    }

    .quick-list.caption ul li {
        width: 25%
    }

    .quick-list.sijiao ul li {
        width: 10%
    }

    .quick-list.pinyin ul li {
        width: 8.3333333333%
    }

    .quick-list.bihua ul li {
        width: 10%
    }

    .quick-list.volume ul li {
        width: 12.5%
    }
}

@media (max-width: 767.98px) {
    .quick-links li {
        width: calc(33.3333333333% - 10px)
    }

    .quick-list.caption ul li {
        width: 33.3333333333%
    }

    .quick-list.sijiao ul li {
        width: 16.6666666667%
    }

    .quick-list.pinyin ul li {
        width: 10%
    }

    .quick-list.bihua ul li {
        width: 20%
    }

    .quick-list.volume ul li {
        width: 16.6666666667%
    }
}

@media (max-width: 575.98px) {
    .quick-links li {
        width: calc(50% - 10px)
    }

    .quick-list.caption ul li {
        width: 50%
    }

    .quick-list.sijiao ul li {
        width: 20%
    }

    .quick-list.pinyin ul li {
        width: 12.5%
    }

    .quick-list.bihua ul li, .quick-list.volume ul li {
        width: 20%
    }
}

html[data-theme=dark] .quick-list ul li a {
    border: 1px solid rgba(255, 255, 255, .12)
}

html[data-theme=dark] .quick-list.primary a {
    background-color: #444;
    border-bottom: 3px solid #555;
    color: #fff
}

html[data-theme=dark] .quick-list.primary a:hover {
    background: #666;
    border-bottom: 3px solid #777
}

html[data-theme=dark] .quick-list.bihua > ul li.bihua-more-container input[type=checkbox] + label {
    background: 0 0;
    border: 1px solid #555
}

html .side-toolbar {
    background-color: rgba(240, 240, 240, .5)
}

html[data-theme=dark] .side-toolbar {
    background-color: rgba(10, 10, 10, .5)
}

.side-toolbar, .side-toolbar a {
    display: flex;
    align-items: center
}

.side-toolbar {
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 2020;
    border: 1px solid var(--border-secondary-color);
    box-shadow: 0 2px 4px var(--shadow-color);
    border-radius: 5px;
    padding: 4px
}

.side-toolbar a {
    justify-content: center;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid var(--border-secondary-color)
}

.side-toolbar a:last-child {
    border-bottom: none
}

.side-toolbar a i {
    font-weight: 500;
    font-size: 18px;
    color: var(--body-color)
}

.side-toolbar a[data-back2top] {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: all .2s
}

.side-toolbar a[data-back2top].visible {
    visibility: visible;
    height: auto;
    opacity: 1
}

.side-toolbar a .tooltip {
    display: none
}

@media (any-hover: none) {
    .side-toolbar a .stip, .side-toolbar a[data-mobile] {
        display: none
    }
}

@media (any-hover: hover) {
    .side-toolbar a {
        position: relative
    }

    .side-toolbar a .stip {
        display: inline-block;
        position: absolute;
        top: 0;
        font-size: 14px;
        right: 52px;
        background-color: var(--theme-bg-color);
        box-shadow: 0 0 10px var(--shadow-color);
        color: var(--body-color);
        border: 1px solid var(--border-color);
        border-radius: 4px;
        white-space: nowrap;
        padding: 0 8px;
        height: 34px;
        line-height: 34px;
        opacity: 0;
        pointer-events: none;
        transition: all .3s cubic-bezier(.68, -.55, .265, 1.55)
    }

    .side-toolbar a .stip::before {
        transform: translate(8px, 0);
        border-left: 8px solid var(--border-color)
    }

    .side-toolbar a .stip::after, .side-toolbar a .stip::before {
        display: block;
        position: absolute;
        top: calc(50% - 8px);
        right: 0;
        width: 0;
        height: 0;
        content: "";
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent
    }

    .side-toolbar a .stip::after {
        transform: translate(7px, 0);
        border-left: 8px solid var(--theme-bg-color)
    }

    .side-toolbar a:hover {
        color: red
    }

    .side-toolbar a:hover .stip {
        opacity: 1;
        right: 42px
    }
}

@media (pointer: coarse) {
    .side-toolbar a > .stip, .side-toolbar a[data-mobile] {
        display: none
    }
}

@media (min-width: 992px) {
    .side-toolbar > a {
        width: 32px;
        height: 32px
    }

    .side-toolbar > a[data-back2top] {
        height: 0;
        visibility: hidden
    }

    .side-toolbar > a[data-back2top].visible {
        height: 32px
    }
}

@media (max-width: 1199.98px) {
    html .side-toolbar a {
        background-color: rgba(240, 240, 240, .5)
    }

    html[data-theme=dark] .side-toolbar a {
        background-color: rgba(10, 10, 10, .5)
    }

    .side-toolbar {
        right: 5px;
        background-color: transparent !important;
        border: unset;
        box-shadow: none
    }

    .side-toolbar a {
        width: 36px;
        height: 36px;
        border-radius: 20px;
        text-align: center;
        border: 1px solid var(--border-secondary-color);
        background-color: rgba(255, 255, 255, .5);
        margin-bottom: 5px
    }

    .side-toolbar a[data-back2top].visible {
        height: 36px !important
    }
}

body.modal-enabled {
    position: fixed;
    right: 0;
    left: 0;
    overflow: hidden
}

.modal, .modal-box {
    display: flex;
    flex-direction: column
}

.modal {
    --modal-translate: 0;
    --modal-alpha: 0.6;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3002;
    overflow: hidden;
    visibility: hidden;
    align-items: center;
    cursor: url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"), auto;
    background-color: transparent;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: all .2s
}

.modal.modal-visible {
    background-color: rgba(0, 0, 0, var(--modal-alpha));
    visibility: visible;
    transition: background-color .18s
}

.modal.modal-visible .modal-box {
    visibility: visible;
    transform: scale(1);
    opacity: 1;
    transition: transform .18s cubic-bezier(.4, 0, .2, 1), opacity .18s linear, visibility 0s
}

.modal.no-transition, .modal.no-transition .modal-box {
    transition: unset !important
}

.modal .modal-box {
    visibility: hidden;
    opacity: 0;
    transform: scale(.9);
    transition: transform .18s cubic-bezier(.4, 0, .2, 1), opacity .18s linear, visibility .18s .18s
}

.modal-box {
    opacity: 0;
    margin: auto;
    flex-shrink: 0;
    width: 580px;
    border-radius: 4px;
    background: #fff;
    cursor: auto;
    color: #222
}

.modal-box.modal-has-drag .modal-box-header {
    position: relative;
    padding-top: 10px
}

.modal-box .modal-box-header {
    height: 60px;
    padding: 0 20px
}

.modal-box .modal-box-content {
    flex-grow: 1;
    flex-shrink: 0;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    max-height: calc(100vh - 70px - 78px);
    overflow-y: auto
}

.modal-box .modal-box-footer {
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5
}

.modal-box-header, .modal-close {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal-box-header .modal-title {
    font-weight: 700;
    color: #222;
    text-align: center;
    font-size: 18px;
    position: relative
}

.modal-box-header .modal-title:after {
    content: "";
    position: absolute;
    left: calc(50% - 35px);
    width: 70px;
    height: 12px;
    bottom: 0;
    background: #f8e8b1;
    border-radius: 4px;
    transform: skewX(-15deg);
    z-index: -1
}

.modal-box-header .modal-drag-line {
    position: absolute;
    top: 10px;
    left: calc(50% - 20px);
    background: #0f0f0f;
    opacity: .15;
    border-radius: 4px;
    height: 4px;
    width: 40px
}

.modal-close {
    border: 0;
    padding: 10px;
    margin-right: -10px;
    box-sizing: content-box;
    cursor: pointer;
    justify-content: center;
    background-color: transparent;
    color: rgba(0, 0, 0, .2)
}

.modal-close, .modal-close svg {
    width: 24px;
    height: 24px
}

.modal-close svg * {
    fill: currentColor
}

.modal-close:hover {
    color: red
}

.modal-close .modal-close-label, .swiper-tabs input[type=radio] {
    display: none
}

@media (max-width: 768px),(hover: none) {
    .modal .modal-box {
        visibility: hidden;
        opacity: 0;
        transition-property: transform, opacity, visibility;
        transition-duration: .4s, .3s, 0s;
        transition-delay: 0s, .1s, .4s
    }

    .modal, .modal.modal-visible {
        transition: background-color .4s
    }

    .modal.modal-visible .modal-box {
        transform: translateY(calc(var(--modal-translate) * 1px));
        visibility: visible;
        transition-property: transform, opacity;
        transition-duration: .4s, .3s;
        transition-delay: 0s, 0s
    }

    .modal .no-transition .modal-box {
        transition: unset
    }
}

@media (max-height: 920px) {
    .modal .modal-box .modal-box-content {
        max-height: calc(100vh - 150px)
    }
}

@media (max-width: 620px) and (orientation: portrait) {
    .modal {
        width: 100%
    }

    .modal .modal-box {
        width: calc(100% - 30px)
    }

    .modal-box-content {
        padding: 30px 20px
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    .modal, .modal .modal-box {
        padding: 0;
        margin: 0;
        width: 100vw;
        height: auto
    }

    .modal .modal-box {
        position: absolute;
        bottom: 0;
        left: 0;
        border-radius: 16px 16px 0 0;
        transform: scale(1) translateY(100%);
        visibility: hidden
    }

    .modal .modal-box-content {
        padding: 20px 15px;
        overflow-y: auto
    }

    .modal .modal-box-content .btn-badge-close {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        border: 0;
        background-color: transparent;
        padding: 0;
        margin: 0;
        line-height: 1
    }

    .modal .modal-box-content .btn-badge-close > i {
        font-size: 30px;
        color: rgba(0, 0, 0, .3)
    }

    .modal.modal-box-hasfooter .modal-box-footer {
        position: absolute;
        padding: 0;
        width: 100%;
        height: 80px;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.progress {
    align-items: center;
    border-radius: 1rem
}

.progress .progress-bar {
    height: 100%;
    border-radius: 1rem;
    min-width: 3rem
}

.progress .count {
    margin-left: 8px
}

html[data-theme=dark] .progress {
    background: #555
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-wrapper {
    transform: translate3d(0, 0, 0)
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

:root {
    --primary-color: #fff;
    --secondary-color: #378496
}

.swiper-ci {
    width: 100%;
    overflow: hidden
}

.swiper-ci .glider, .swiper-ci .tab {
    width: 112px;
    height: 32px;
    line-height: 32px
}

.swiper-ci .swiper-tabs {
    width: 336px;
    box-sizing: content-box
}

.swiper-tabs {
    --swiper-tabs-color: #A27728;
    --swiper-tabs-bgColor: #fdfaeb;
    --swiper-tabs-border: 1px solid #D7B664;
    --swiper-tabs-glider-bgColor: #A27728;
    display: flex;
    position: relative;
    padding: 0;
    border-radius: 5px;
    margin: 0 auto;
    background-color: var(--swiper-tabs-bgColor);
    border: var(--swiper-tabs-border)
}

html[data-theme=dark] .swiper-tabs {
    --swiper-tabs-color: #999;
    --swiper-tabs-bgColor: #303030;
    --swiper-tabs-border: 1px solid #444;
    --swiper-tabs-glider-bgColor: #555
}

.swiper-tabs * {
    z-index: 2
}

.swiper-tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: color .15s ease-in;
    margin: 0;
    color: var(--swiper-tabs-color)
}

.swiper-tabs input[type=radio]:checked + label {
    color: #fff
}

.swiper-tabs input[type=radio]:nth-of-type(16n+1), .swiper-tabs input[type=radio]:nth-of-type(16n+10), .swiper-tabs input[type=radio]:nth-of-type(16n+11), .swiper-tabs input[type=radio]:nth-of-type(16n+12), .swiper-tabs input[type=radio]:nth-of-type(16n+13), .swiper-tabs input[type=radio]:nth-of-type(16n+14), .swiper-tabs input[type=radio]:nth-of-type(16n+15), .swiper-tabs input[type=radio]:nth-of-type(16n+16), .swiper-tabs input[type=radio]:nth-of-type(16n+2), .swiper-tabs input[type=radio]:nth-of-type(16n+3), .swiper-tabs input[type=radio]:nth-of-type(16n+4), .swiper-tabs input[type=radio]:nth-of-type(16n+5), .swiper-tabs input[type=radio]:nth-of-type(16n+6), .swiper-tabs input[type=radio]:nth-of-type(16n+7), .swiper-tabs input[type=radio]:nth-of-type(16n+8), .swiper-tabs input[type=radio]:nth-of-type(16n+9) {
    background-color: red
}

.swiper-tabs input[type=radio]:nth-of-type(16n+1):checked ~ .glider {
    transform: translateX(0)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+2):checked ~ .glider {
    transform: translateX(100%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+3):checked ~ .glider {
    transform: translateX(200%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+4):checked ~ .glider {
    transform: translateX(300%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+5):checked ~ .glider {
    transform: translateX(400%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+6):checked ~ .glider {
    transform: translateX(500%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+7):checked ~ .glider {
    transform: translateX(600%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+8):checked ~ .glider {
    transform: translateX(700%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+9):checked ~ .glider {
    transform: translateX(800%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+10):checked ~ .glider {
    transform: translateX(900%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+11):checked ~ .glider {
    transform: translateX(1000%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+12):checked ~ .glider {
    transform: translateX(1100%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+13):checked ~ .glider {
    transform: translateX(1200%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+14):checked ~ .glider {
    transform: translateX(1300%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+15):checked ~ .glider {
    transform: translateX(1400%)
}

.swiper-tabs input[type=radio]:nth-of-type(16n+16):checked ~ .glider {
    transform: translateX(1500%)
}

.swiper-tabs .glider {
    position: absolute;
    background-color: var(--swiper-tabs-glider-bgColor);
    z-index: 1;
    border-radius: 4px;
    transition: .25s ease-out;
    border: 1px solid var(--swiper-tabs-bgColor)
}

@media (max-width: 420px) {
    .swiper-ci {
        width: 100%;
        overflow: hidden
    }

    .swiper-ci .glider, .swiper-ci .tab {
        width: 33.33%;
        height: 32px;
        line-height: 32px
    }

    .swiper-ci .swiper-tabs {
        width: calc(100% - 15px);
        box-sizing: content-box
    }
}

.feedback {
    font-size: 15px
}

.feedback label {
    color: #000;
    font-weight: 700
}

.feedback .form-check-label, .feedback input, .feedback textarea {
    color: #333;
    font-weight: 400
}

.feedback .form-check-label::-moz-placeholder, .feedback input::-moz-placeholder, .feedback textarea::-moz-placeholder {
    font-weight: 700;
    opacity: .3;
    color: red;
    font-size: 15px
}

.feedback .form-check-label::placeholder, .feedback input::placeholder, .feedback textarea::placeholder {
    font-weight: 700;
    opacity: .3;
    color: red;
    font-size: 15px
}

.feedback input, .feedback textarea {
    background-color: #fff !important;
    border: 1px solid #ced4da !important
}

.feedback input[type=radio]:after, .feedback textarea[type=radio]:after {
    position: unset;
    background-color: #bd9237 !important
}

.feedback .form-group:last-child {
    margin-bottom: 0
}

.install-backdrop, .install-prompt {
    display: flex;
    align-items: center;
    transition: all .2s
}

.install-backdrop {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, .5);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    justify-content: center;
    visibility: visible
}

.install-backdrop.fade-out {
    background-color: transparent;
    visibility: hidden
}

.install-backdrop.fade-out .install-prompt {
    transform: scale(.8);
    transform-origin: center;
    opacity: 0
}

.install-prompt {
    width: 320px;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    flex-direction: column;
    opacity: 1;
    transform-origin: center
}

.install-prompt .title {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px
}

.install-prompt .logo {
    margin-bottom: 20px
}

.install-prompt .prompt-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 20px
}

.install-prompt .btn {
    width: 100%;
    padding: 8px 10px;
    margin: 0;
    font-size: 15px;
    transition: all .3s;
    font-weight: 700
}

.install-prompt .btn.install-btn {
    background-color: #c70303;
    color: #fff
}

.install-prompt .btn.install-btn:hover {
    background-color: #f66
}

.install-prompt .btn.close-btn {
    background-color: #444;
    color: #fff
}

.install-prompt .btn.close-btn:hover {
    background-color: #555
}

.main-content {
    width: calc(100% - 355px)
}

.main-sidebar {
    flex: 0 0 300px;
    margin-left: 15px
}

.main-content .card {
    background-color: var(--theme-bg-color);
    box-shadow: 0 .125rem .25rem var(--shadow-color);
    border-radius: .25rem;
    position: relative
}

.main-content .card .card-header {
    margin-left: -20px;
    margin-right: -20px;
    padding: 15px 20px
}

.card {
    padding: 0 20px;
    margin-bottom: 15px
}

.card:last-child {
    margin-bottom: 0
}

@media (min-width: 1200px) {
    .main-content {
        width: calc(100% - 375px)
    }

    .main-sidebar {
        flex: 0 0 320px
    }
}

@media (max-width: 991.98px) {
    .main-sidebar {
        flex: none;
        margin-left: 0;
        margin-top: 15px
    }

    .main-content {
        width: 100%
    }

    .home .main-content, .home .main-sidebar {
        margin-top: 15px
    }

    .home .main-content {
        order: 2
    }

    .home .main-sidebar {
        order: 1
    }

    .main-content .card > .card-header {
        padding: 15px
    }

    .main-content .card > .card-header {
        margin-left: -15px !important;
        margin-right: -15px !important
    }

    .card {
        padding-left: 15px !important;
        padding-right: 15px !important
    }
}

@media (max-width: 575.98px) {
    .main-content .card, .main-sidebar {
        border-left: none;
        border-right: none;
        border-radius: 0 !important
    }
}

.home-primary-link ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0
}

.home-primary-link ul li {
    padding: 5px 0;
    width: calc(12.5% - 13.125px)
}

.home-primary-link ul a, .home-primary-link ul button {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    font-size: 1.125rem;
    font-weight: 400;
    padding: .5rem 0
}

.home-primary-link + p {
    padding: 0
}

html[data-theme=dark] .home-primary-link .btn-primary {
    background-color: #444;
    color: #fff;
    border: 0
}

html[data-theme=dark] .home-primary-link .btn-primary:hover {
    background-color: #666
}

.home-swiper {
    width: calc(100% + 30px);
    overflow: hidden;
    margin: 0 -15px
}

.home-swiper .zi-list {
    padding-left: 15px;
    padding-right: 15px
}

.home-swiper .swiper-wrapper {
    margin: 0
}

.home-swiper .purview {
    padding-top: 10px;
    padding-bottom: 5px;
    width: 100%;
    text-align: center
}

.home-swiper .purview i {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(120, 120, 120, .5);
    border-radius: 5px;
    margin: 0 6px;
    cursor: pointer;
    transition: all linear 300ms
}

.home-swiper .purview i.active {
    background: #bd9237;
    width: 30px
}

@media (max-width: 1199.98px) {
    .home-primary-link ul li {
        width: calc(25% - 11.25px)
    }
}

@media (max-width: 575.98px) {
    .home-primary-link ul li {
        width: calc(50% - 7.5px)
    }
}

.radical-list {
    font-family: "Kai_Radicals", "PingFang SC", Microsoft YaHei, Helvetica, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
    font-size: 32px
}

.kxzd-vol li a > p, .pinyin-list {
    font-size: 16px
}

.bushou-list-terse, .category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

.category-list li {
    width: calc(8.3333333333% - 10px);
    margin: 5px
}

.category-list li a {
    background-color: var(--btn-bg-color);
    border: 2px solid var(--btn-border-color);
    text-align: center;
    display: block;
    border-radius: 5px;
    padding: 8px 0;
    color: var(--body-color);
    box-shadow: var(--shadow-color);
    transition: all ease .2s
}

.category-list li a:hover {
    color: red;
    border-color: var(--btn-hover-color);
    background-color: var(--btn-hover-bg-color)
}

@media (max-width: 1419.98px) {
    .category-list li {
        width: calc(10% - 10px)
    }
}

@media (max-width: 1199.98px) {
    .category-list li {
        width: calc(12.5% - 10px)
    }
}

@media (max-width: 767.98px) {
    .category-list li {
        width: calc(20% - 10px)
    }
}

.bushou-list-terse {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px dashed var(--border-color)
}

.bushou-list-terse::after {
    content: "";
    flex: auto
}

.bushou-list-terse > strong {
    margin-right: 6px;
    margin-left: 5px;
    font-size: .9375rem
}

.bushou-list-terse a {
    flex-basis: auto;
    font-size: 15px;
    border: 1px solid var(--border-color);
    background-color: var(--btn-bg-color);
    border-radius: 4px;
    height: 27px;
    line-height: 25px;
    padding: 0 10px;
    text-decoration: none;
    display: inline-block;
    margin: 5px 3px
}

.bushou-list-terse a.active {
    color: #fff;
    background-color: red;
    font-weight: 700;
    text-decoration: none
}

.zi-bihua .strokes ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 1px;
    counter-reset: stroke-counter
}

.zi-bihua .strokes ul li {
    position: relative;
    width: calc(7.1428571429% + 1px);
    max-width: 80px;
    height: auto;
    margin-top: -1px;
    margin-left: -1px;
    text-align: center;
    border: 1px solid var(--border-secondary-color);
    counter-increment: stroke-counter
}

.zi-bihua .strokes ul li::before {
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 100;
    content: counter(stroke-counter);
    text-align: center;
    width: 20px;
    height: 20px;
    color: #666;
    font-size: 12px;
    transform: scale(.8)
}

.zi-bihua .strokes ul li span {
    display: block;
    padding: 6px
}

.zi-bihua .strokes ul li span:first-child {
    background: var(--mi-bg)
}

.zi-bihua .strokes ul li span:last-child {
    border-top: 1px solid var(--border-secondary-color);
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

@media (max-width: 1419.98px) {
    .zi-bihua .strokes ul li {
        width: calc(8.3333333333% + 1px)
    }
}

@media (max-width: 1199.98px) {
    .zi-bihua .strokes ul li {
        width: calc(10% + 1px)
    }
}

@media (max-width: 991.98px) {
    .zi-bihua .strokes ul li {
        width: calc(10% + 1px)
    }
}

@media (max-width: 767.98px) {
    .zi-bihua .strokes ul li {
        width: calc(12.5% + 1px)
    }
}

@media (max-width: 575.98px) {
    .zi-bihua .strokes ul li {
        width: calc(16.6666666667% + 1px)
    }
}

@media (hover: none),(pointer: coarse) {
    .zi-bihua .strokes ul {
        position: relative;
        flex-wrap: nowrap;
        overflow-x: scroll;
        webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px
    }

    .zi-bihua .strokes ul::-webkit-scrollbar {
        display: none
    }

    .zi-bihua .strokes ul li {
        flex-shrink: 0;
        margin-top: 0;
        margin-bottom: 0
    }
}

@media (hover: none) and (max-width: 991.98px),(pointer: coarse) and (max-width: 991.98px) {
    .zi-bihua .strokes ul li {
        width: calc((100% + 9px) / 9.5)
    }
}

@media (hover: none) and (max-width: 767.98px),(pointer: coarse) and (max-width: 767.98px) {
    .zi-bihua .strokes ul li {
        width: calc((100% + 7px) / 7.5)
    }
}

@media (hover: none) and (max-width: 575.98px),(pointer: coarse) and (max-width: 575.98px) {
    .zi-bihua .strokes ul li {
        width: calc((100% + 5px) / 5.5)
    }
}

.zi-attrs-list {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-top: 1px solid var(--border-color)
}

.zi-attrs-list p {
    width: 25%;
    margin-bottom: 0;
    border-bottom: 1px solid var(--border-color);
    display: flex
}

.zi-attrs-list p.bishun, .zi-attrs-list p.w-100 {
    width: 100%
}

.zi-attrs-list p.bishun span {
    font-size: 13px
}

.zi-attrs-list p.bishun span em {
    display: block;
    font-style: normal
}

.zi-attrs-list p > label {
    background-color: var(--theme-secondary-bg-color);
    color: var(--body-secondary-color);
    padding: 3px 6px;
    margin-bottom: 0;
    width: 68px;
    font-weight: 700;
    white-space: nowrap;
    font-size: 13px;
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.zi-attrs-list p > span {
    margin-left: 8px;
    font-size: 15px;
    padding: 6px 0
}

.zi-attrs-list p:last-child {
    flex-grow: 1
}

@media (min-width: 992px) {
    .zi-attrs-list.show-more-container {
        max-height: unset
    }

    .zi-attrs-list.show-more-container .show-more-toggle, .zi-attrs-list.show-more-container::after {
        display: none
    }
}

@media (max-width: 1199.98px) {
    .zi-attrs-list p {
        width: 33.3333%
    }
}

@media (max-width: 991.98px) {
    .zi-attrs-list p {
        width: 50%
    }
}

.zi-tab ul {
    display: flex;
    border-bottom: 2px solid #a27728
}

.zi-tab li {
    flex-basis: 25%;
    text-align: center;
    background-color: #d7b664;
    color: #fff;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    margin-left: 2px;
    overflow-x: hidden
}

.zi-tab li:first-child {
    margin-left: 0
}

.zi-tab li a {
    padding: 6px 0;
    color: #fff;
    display: block
}

.zi-tab li.active {
    background-color: #a27728
}

.zi-tab li:not(.active):hover {
    background-color: #bd9237
}

html[data-theme=dark] .zi-tab ul {
    border-bottom: 2px solid #885e1b
}

html[data-theme=dark] .zi-tab li {
    background-color: #5a360a
}

html[data-theme=dark] .zi-tab li.active {
    background-color: #885e1b
}

html[data-theme=dark] .zi-tab li:not(.active):hover {
    background-color: #6d4611
}

.zi-content {
    --explain-en-color: #004200;
    --explain-en-outer-color: #aaa;
    --extra-en-color: #004200;
    --extra-quote-color: #885e1b;
    --extra-eg-color: #777
}

html[data-theme=dark] .zi-content {
    --explain-en-color: #14ef14;
    --explain-en-outer-color: #777;
    --extra-en-color: #14ef14;
    --extra-quote-color: #e7a132;
    --extra-eg-color: #888
}

.zi-content .explain {
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
    margin: 0 0 0 30px;
    padding: 8px 0;
    position: relative;
    line-height: 180%
}

.zi-content .explain .no {
    position: absolute;
    left: -26px;
    top: 14px;
    color: red;
    line-height: 1rem;
    font-size: 16px
}

.zi-content .explain .en {
    font-size: 14px;
    font-style: normal;
    color: var(--explain-en-color)
}

.zi-content .explain .en::after, .zi-content .explain .en::before {
    color: var(--explain-en-outer-color)
}

.zi-content .explain .en::after {
    content: ""
}

.zi-content .explain .en::before {
    content: " [ "
}

.zi-content .explain .en:after {
    content: " ] "
}

.zi-content .explain label {
    margin-bottom: 0;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 6px;
    width: 2.5rem;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    padding: 2px 0;
    background-color: #666
}

.zi-content .explain .eg {
    color: var(--extra-eg-color);
    font-size: 14px
}

.zi-basic-explain .explain {
    margin-left: 30px;
    position: relative
}

.zi-basic-explain + .zi-heading {
    margin-top: 25px
}

.zi-detail-explain .extra {
    font-size: 14px;
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 20px;
    border-left: 1px solid var(--border-secondary-color);
    padding-top: 32px;
    line-height: 1.5
}

.zi-detail-explain .extra > span {
    display: block;
    padding: 6px 0 6px 15px;
    border-bottom: 1px solid var(--border-color)
}

.zi-detail-explain .extra > label {
    position: absolute;
    left: -20px;
    top: 8px;
    border-radius: 15px;
    width: 40px;
    height: 22px;
    line-height: 22px;
    box-sizing: content-box;
    color: #fff;
    z-index: 1;
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
    margin-bottom: 0
}

.zi-detail-explain .extra > label:before {
    content: "";
    background-color: var(--theme-bg-color);
    top: -9px;
    left: 0;
    width: 36px;
    height: 8px;
    position: absolute
}

.zi-detail-explain .extra.en {
    color: var(--extra-en-color)
}

.zi-detail-explain .extra.en > label {
    background-color: #67a535
}

.zi-detail-explain .extra.eg {
    color: var(--extra-eg-color)
}

.zi-detail-explain .extra.eg > label {
    background-color: #333
}

.zi-detail-explain .extra.quotes {
    color: var(--extra-quote-color)
}

.zi-detail-explain .extra.quotes > label {
    background-color: #8a0303
}

.zi-detail-explain .extra + .extra > label:before, .zi-detail-explain.quote-hide .extra {
    display: none
}

.zi-detail-explain .cixing {
    font-size: 1rem;
    color: red;
    border-bottom: 0;
    margin: 1.25rem 0;
    font-weight: 700;
    counter-reset: content-counter 0
}

.zi-detail-explain .cixing::before {
    content: "〈 ";
    font-size: .875rem
}

.zi-detail-explain .cixing::after {
    content: " 〉";
    font-size: .875rem
}

.zi-basic-explain .zi-special img, .zi-detail-explain .zi-special img {
    width: 20px;
    height: 20px
}

.zi-zuci .list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0
}

.zi-zuci .list a {
    border: 1px solid #ebd187;
    border-radius: 20px;
    padding: 3px 10px;
    margin: 5px;
    font-size: .9375rem;
    width: calc(12.5% - 10px);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .2s linear
}

.zi-zuci .list a em {
    font-style: normal;
    color: red
}

.zi-zuci .list a:hover {
    border-color: red;
    box-shadow: 0 .5rem 1rem var(--shadow-color)
}

.zi-zuci h3, .zi-zuci p.none {
    color: var(--text-color-gray);
    text-align: center
}

.zi-zuci h3 {
    font-size: 15px;
    font-weight: 400
}

.zi-zuci p.none {
    padding: 50px 0;
    margin: 0
}

@media (max-width: 1199.98px) {
    .zi-zuci .list a {
        width: calc(16.6666666667% - 10px)
    }
}

@media (max-width: 991.98px) {
    .zi-zuci .list a {
        width: calc(25% - 10px)
    }
}

@media (max-width: 575.98px) {
    .zi-zuci .list a {
        width: calc(33.3333333333% - 10px)
    }
}

.zi-header {
    padding-top: 20px;
    display: flex
}

.zi-header .zi-icon {
    position: relative;
    flex-shrink: 0
}

.zi-header .zi-title {
    flex-grow: 1;
    margin-left: 15px
}

.zi-icon {
    width: 120px
}

.zi-icon .icon {
    border: 1px solid var(--border-color);
    width: 120px;
    height: 120px;
    background: var(--mi-bg);
    overflow: hidden;
    display: table-cell;
    text-align: center;
    vertical-align: middle
}

.zi-icon .zi-writer-btn {
    position: absolute;
    top: 35px;
    left: 35px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, .2);
    border: 4px solid rgba(255, 255, 255, .2);
    box-sizing: content-box;
    box-shadow: 0 .125rem .25rem var(--shadow-color);
    z-index: 1000;
    transition: all linear .2s;
    cursor: pointer
}

.zi-icon .zi-writer-btn.hide {
    visibility: hidden;
    opacity: 0;
    transform: scale(2);
    transition: visibility .2s linear, opacity .2s linear, transform .2s linear
}

.zi-icon .zi-writer-btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    margin-right: -10px;
    opacity: .6;
    top: 15px;
    left: 20px
}

.zi-icon .zi-writer-btn:hover {
    background-color: rgba(0, 0, 0, .6);
    border: 4px solid rgba(255, 255, 255, .9)
}

.zi-icon .zi-writer-btn:hover:after {
    opacity: 1
}

.zi-icon .zi-writer-container {
    position: absolute;
    top: 0;
    left: 0
}

.zi-icon .zi-control {
    margin-top: 4px;
    display: flex
}

.zi-icon .zi-control .btn {
    border-radius: 0;
    font-size: .75rem;
    padding: 4px 0;
    flex-grow: 1;
    color: var(--body-color);
    background-color: var(--theme-secondary-bg-color);
    border: 1px solid var(--border-secondary-color);
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.zi-icon .zi-control .btn:last-child {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.zi-title, .zi-title > * {
    position: relative
}

.zi-title h1, .zi-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
    line-height: 1em
}

.zi-title h1 .zi-special, .zi-title h2 .zi-special {
    line-height: 1em
}

.zi-title h1 .zi-special img, .zi-title h2 .zi-special img {
    width: 1em;
    height: 1em;
    vertical-align: -.15em
}

.zi-title .zi-title-main {
    display: flex
}

.zi-title .zi-title-copy {
    height: 20px;
    margin-left: 6px
}

.zi-title .pinyin, .zi-title-extra {
    margin-top: 10px;
    display: flex
}

.zi-title .pinyin label {
    margin-top: 4px;
    font-size: 14px
}

.zi-title .pinyin p {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px
}

.zi-title .pinyin p > .voice {
    padding: 2px;
    margin: 4px
}

.zi-title .zi-category {
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    font-size: 42px;
    line-height: 1;
    color: rgba(0, 0, 0, .05);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
    pointer-events: none
}

.zi-title-extra {
    margin-bottom: -4px;
    margin-left: -4px;
    font-size: 13px;
    flex-wrap: wrap
}

.zi-title-extra span {
    font-style: normal;
    border: 1px solid #d7b664;
    border-radius: .25rem;
    padding: 3px 10px;
    margin-left: 4px;
    margin-bottom: 4px;
    font-size: 13px
}

.zi-title-extra span.unicode {
    padding-left: 26px;
    background: url(/assets/images/unicode.png) 4px center no-repeat;
    background-size: 18px 18px
}

html[data-theme=dark] .zi-title-extra span {
    border: 1px solid #5a360a
}

.zi-tags {
    margin: 6px -3px 0
}

.zi-tags .badge {
    padding: 6px;
    margin-top: 6px
}

.zi-tags a {
    color: #fff;
    margin-left: 6px
}

.zi-tags + .zi-title-extra {
    margin-top: 14px
}

.zi-animate-modal {
    text-align: center
}

.zi-notes {
    font-size: 12px;
    padding: 10px 15px;
    border-top: 1px solid var(--border-color);
    background-color: var(--theme-secondary-bg-color);
    color: var(--text-color-gray);
    margin: 20px -20px -20px;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.zi-summary {
    font-size: 14px
}

.zi-summary p {
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    margin-left: 3em;
    text-indent: -3em
}

.zi-summary p em {
    margin: 0 2px;
    font-style: normal;
    color: red
}

.zi-contents .zi-content:last-child, .zi-summary p:last-child {
    margin-bottom: 0
}

.zi-detail {
    margin-bottom: 10px
}

.zi-contents h3, .zi-contents h4, .zi-contents h5 {
    margin-bottom: 0
}

.zi-contents .zi-cixing {
    color: rgba(255, 0, 0, .8);
    padding-left: 0 !important;
    font-weight: 700;
    padding: 10px 0 15px
}

.zi-contents .zi-cixing::before {
    content: "▶";
    font-size: .875rem
}

.zi-contents .zi-content {
    margin-bottom: 20px
}

.zi-contents:not(:last-child) {
    margin-bottom: 25px
}

.zi-heading {
    margin-bottom: 25px;
    display: flex;
    align-items: center
}

.zi-heading.main {
    justify-content: flex-start;
    border-bottom: none;
    margin-bottom: 25px
}

.zi-heading.main sup {
    background-color: #f60c0c;
    color: #fff;
    width: 14px;
    line-height: 14px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    height: 14px;
    border-radius: 10px;
    margin-left: 8px
}

.zi-heading h5 + span, .zi-heading.main .voice {
    margin-left: 10px
}

.zi-heading.secondary {
    justify-content: space-between;
    border-bottom: 2px solid var(--border-secondary-color)
}

.zi-heading .zi-title, .zi-heading h5 {
    font-size: 1.75rem;
    margin-bottom: 0
}

.zi-heading .zi-title::before {
    content: "▶ ";
    padding-right: .5em;
    font-size: .875rem
}

.zi-heading .zi-title-alias {
    font-size: 1rem
}

.zi-heading .zi-title-alias label {
    color: #999
}

.zi-heading .zi-title-alias::before {
    content: " ( "
}

.zi-heading .zi-title-alias::after {
    content: " ) "
}

.zi-heading .zi-title-alias::after, .zi-heading .zi-title-alias::before {
    color: #999
}

.zi-heading h4 {
    background-color: var(--border-color);
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    padding: 5px 10px;
    font-size: .875rem
}

.zi-heading h5 {
    font-size: 1.275rem
}

.zi-heading h5 + .no {
    color: #fff;
    background-color: #f60c0c;
    width: 14px;
    line-height: 14px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    height: 14px;
    border-radius: 10px;
    margin-left: 8px;
    margin-right: 8px
}

.zi-heading h3, .zi-heading h5 {
    display: inline-flex;
    align-items: center
}

.zi-heading h3 > span:not(.zi-special), .zi-heading h5 > span:not(.zi-special) {
    margin-left: 10px
}

.zi-heading h3 label, .zi-heading h5 label {
    margin: 0
}

.zi-heading .zi-lazyload {
    width: 30px;
    height: 30px
}

.zi-attrs .zi-lazyload, .zi-summary .zi-lazyload {
    width: 18px;
    height: 18px
}

.voice {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 0, 0, .3);
    border-radius: 50px;
    padding: 0 2px;
    height: 24px;
    cursor: pointer;
    transition: all .2s linear
}

.voice:hover {
    border-color: rgba(255, 0, 0, .6);
    box-shadow: 0 .5rem 1rem var(--shadow-color)
}

.voice em {
    padding: 0 6px 0 2px;
    font-style: normal;
    font-size: 14px;
    font-family: Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700
}

.voice em:last-child {
    padding-right: 10px
}

.voice em.zy {
    font-size: 12px
}

.zi-title-img {
    text-align: center;
    margin: 10px auto 0;
    position: relative
}

.zi-title-img > img {
    width: calc(100% - 20px);
    max-width: 640px;
    height: auto
}

.zi-title-img + p {
    font-size: 14px;
    padding: 0 15px
}

.zi-title-img figcaption {
    padding-top: 15px;
    text-align: center;
    line-height: 1
}

.zi-title-img figcaption .zi-lazyload {
    width: 1.2em !important;
    height: 1.2em !important;
    vertical-align: middle
}

.zi-title-img .zi-special {
    vertical-align: bottom
}

.zi-title-img .zi-special img {
    width: 1em;
    height: 1em
}

.zi-contents[data-active="1"] .zi-content, .zi-contents[data-active="2"] .zi-content, .zi-contents[data-active="3"] .zi-content, .zi-contents[data-active="4"] .zi-content, .zi-contents[data-active="5"] .zi-content, .zi-contents[data-active="6"] .zi-content {
    display: none !important
}

.zi-contents[data-active="1"] .zi-content:nth-child(1), .zi-contents[data-active="2"] .zi-content:nth-child(2), .zi-contents[data-active="3"] .zi-content:nth-child(3), .zi-contents[data-active="4"] .zi-content:nth-child(4), .zi-contents[data-active="5"] .zi-content:nth-child(5), .zi-contents[data-active="6"] .zi-content:nth-child(6) {
    animation: fadeOut .2s;
    display: block !important
}

.zi-fanyi li {
    font-size: .875rem
}

.kxzd-cover img {
    width: 100%;
    height: 100%
}

.zi-fanyi {
    list-style: none;
    padding: 0;
    margin: 0 .5rem
}

.zi-fanyi li {
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    margin-left: 45px
}

.zi-fanyi li > label {
    position: absolute;
    top: .5rem;
    left: -45px
}

.zi-fanyi li:first-child {
    padding-top: 0
}

.zi-fanyi li:first-child > label {
    top: 0
}

.zi-fanyi li:last-child {
    border: 0;
    padding-bottom: 0
}

.zi-zyxc {
    display: flex;
    flex-wrap: wrap
}

.zi-modal-control, .zi-zyxc p {
    display: flex;
    align-items: center
}

.zi-zyxc p {
    width: 8.3333333333%;
    min-width: 68px;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center
}

.zi-zyxc p span {
    margin-bottom: 2px;
    display: inline-block
}

.zi-zyxc p .img {
    width: 50px;
    height: 50px;
    padding: 8px;
    border-radius: 8px;
    box-sizing: content-box;
    border: 1px solid #f0f0f0;
    position: relative;
    background-color: #fff;
    margin-bottom: 4px
}

.zi-zyxc p .img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.zi-zyxc p .style {
    color: #a27728;
    font-size: 15px
}

.zi-zyxc p .period, .zi-zyxc p .source {
    color: #999;
    font-size: 13px
}

.zi-modal-control {
    justify-content: space-between;
    width: 300px;
    margin: 0 auto;
    padding: 10px 0
}

.zi-modal-control .zi-writer-speed {
    display: flex;
    align-items: center;
    border: 2px solid #d7b664;
    border-radius: 5px;
    width: 300px
}

.zi-modal-control .zi-writer-speed .btn, .zi-modal-control .zi-writer-speed > span {
    font-size: 16px;
    padding: 6px 0;
    width: 45px;
    text-align: center;
    background-color: #fff
}

.zi-modal-control .zi-writer-speed .btn {
    border-left: 1px solid #ebd187;
    border-radius: 0
}

.zi-modal-control .zi-writer-speed .btn.active {
    color: red;
    background-color: #fdfaeb;
    font-weight: 700;
    border-right: 1px solid #ebd187;
    border-left: 2px solid #ebd187
}

.zi-modal-control .zi-writer-speed .btn:focus {
    box-shadow: unset
}

.zi-modal-control .zi-writer-speed .btn:last-child {
    flex-grow: 1
}

@media (max-width: 1419.98px) {
    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 10%
    }
}

@media (max-width: 1199.98px) {
    .zi-attrs-list p {
        width: 33.3333%
    }

    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 12.5%
    }
}

@media (max-width: 991.98px) {
    .zi-attrs-list p {
        width: 50%
    }

    .zi-notes {
        margin: 0 -15px -20px
    }

    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 10%
    }

    .zi-category {
        font-size: 28px !important
    }
}

@media (max-width: 767.98px) {
    .zi-attrs p .name {
        padding-left: 6px;
        padding-right: 6px;
        min-width: calc(3.2rem + 14px) !important
    }

    .zi-notes {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }

    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 12.5%
    }
}

@media (max-width: 680px) {
    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 16.6666666667%
    }
}

@media (max-width: 420px) {
    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 20%;
        min-width: unset
    }
}

@media (max-width: 390px) {
    .zi-zyxc {
        display: flex;
        flex-wrap: wrap
    }

    .zi-zyxc p {
        width: 25%;
        min-width: unset
    }
}

.content-bihua {
    display: flex
}

.kxzd-original p.note .label {
    font-weight: 700;
    color: red
}

.content-bihua .content-list {
    flex-grow: 1
}

.chazi-nav {
    --nav-bg-color: #FBF4D8;
    --nav-border-color: #EBD187;
    display: flex;
    margin: 0 -20px;
    padding: 1px
}

.chazi-nav li {
    height: 38px;
    line-height: 38px;
    width: 33.3333%;
    text-align: center;
    border-bottom: 1px solid var(--nav-border-color);
    border-left: 1px solid var(--nav-border-color);
    background-color: var(--nav-bg-color)
}

.chazi-nav li:first-child {
    border-left: none
}

.chazi-nav li.active {
    border-bottom-color: var(--theme-bg-color);
    font-weight: 700;
    background: linear-gradient(var(--nav-bg-color) 20%, var(--theme-bg-color) 80%);
    line-height: 40px
}

html[data-theme=dark] .chazi-nav {
    --nav-border-color: #444;
    --nav-bg-color: #333
}

@media (max-width: 991.98px) {
    .chazi-nav {
        margin: 0 -15px
    }
}

.kxzd-subnav {
    padding-top: 15px;
    margin-bottom: 0
}

.kxzd-subnav dt {
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: 10px
}

.tab-content .tab-panel {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0ms 400ms, opacity 400ms 0ms
}

.tab-content .tab-panel.active {
    height: auto;
    opacity: 1;
    transition: height 0ms 0ms, opacity 600ms 0ms
}

.kxzd-vol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 0
}

.kxzd-vol li {
    text-align: center;
    border-right: 1px solid #aaa;
    border-left: 1px solid #aaa;
    border-top: 2px solid #333;
    border-bottom: 2px solid #333;
    margin-left: -1px;
    margin-bottom: -2px;
    background-color: #f0f0f0;
    display: flex;
    padding: 0 !important;
    width: calc(5% + 1px)
}

.kxzd-vol li:nth-child(2n+1) {
    background-color: #f6f6f6
}

.kxzd-vol li a {
    writing-mode: vertical-lr;
    letter-spacing: 4px;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    padding: 10px 0;
    min-height: 100px;
    border: 1px solid #fff;
    transition: all ease-in .1s
}

.kxzd-vol li a:hover {
    box-shadow: none;
    border: 1px solid #333;
    background-color: #000;
    color: #fff
}

.kxzd-vol li a:hover img, html[data-theme=dark] .kxzd-vol li a img {
    filter: brightness(0) invert(1)
}

.kxzd-vol li a > span {
    margin-top: 20px;
    font-size: .875rem
}

html[data-theme=dark] .kxzd-vol li {
    border-right: 1px solid #555;
    border-left: 1px solid #555;
    border-top: 2px solid #666;
    border-bottom: 2px solid #666;
    background-color: #333
}

html[data-theme=dark] .kxzd-vol li:nth-child(2n+1) {
    background-color: #404040
}

html[data-theme=dark] .kxzd-vol li a {
    border: 1px solid #222
}

html[data-theme=dark] .kxzd-vol li a:hover {
    box-shadow: none;
    border: 1px solid #333;
    background-color: #ccc;
    color: #000
}

html[data-theme=dark] .kxzd-vol li a:hover img {
    filter: none
}

.kxzd-content {
    padding: 20px 0 !important
}

.kxzd-content .zi-special {
    line-height: 1;
    font-size: 1.124rem
}

.kxzd-content .zi-special img, .swjz-original-content .zi-special img {
    width: 1em;
    height: 1em;
    vertical-align: -.15em
}

.kxzd-content h3 {
    font-size: 1rem;
    color: red;
    border-bottom: 0;
    margin: 0 0 10px;
    font-weight: 700
}

.kxzd-content h3::before, .swjz-content .heading h3:before, .swjz-original-header h3::before {
    content: "▶ ";
    font-size: .875rem
}

.kxzd-content h3:not(:first-child) {
    margin: 15px 0
}

.kxzd-content .source {
    padding: 10px;
    background-color: var(--theme-secondary-bg-color);
    border-radius: 6px;
    font-size: .875rem
}

.kxzd-content .source p {
    margin-bottom: 0;
    padding: 0 5px
}

.kxzd-content .kxzd-head:last-child {
    border: double #6c757d
}

.kxzd-head {
    border: double #bd9237;
    border-right-style: none;
    border-left-style: none;
    padding: 10px 0;
    font-size: .875rem;
    margin-top: 25px;
    margin-bottom: 15px
}

.kxzd-head > p {
    margin: 0;
    padding: 2px 0;
    line-height: 1.6em
}

.kxzd-head > p .attr {
    color: var(--body-info-color);
    padding: 2px 5px;
    font-size: 13px
}

.kxzd-head > p strong {
    color: red;
    margin-left: 5px;
    margin-right: 5px
}

.kxzd-original p {
    padding: 10px 0;
    margin: 0;
    border-bottom: 1px solid var(--border-color)
}

.kxzd-original p strong, .kxzd-original p.explain > span.content sup {
    color: red
}

.kxzd-original p .name {
    padding: 0 5px;
    border-bottom: 1px dotted red
}

.kxzd-original p.explain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.kxzd-original p.explain > span {
    line-height: 1.5em;
    font-size: 15px
}

.kxzd-original p.explain > span:first-child {
    flex-grow: 0;
    color: #fff;
    border-radius: 3px;
    font-size: .8125rem;
    font-weight: 700;
    padding: 2px 4px
}

.kxzd-original p.explain > span.eg {
    background-color: #71a104
}

.kxzd-original p.explain > span.pronounce {
    background-color: #1881af
}

.kxzd-original p.explain > span.content {
    width: calc(100% - 32px)
}

.kxzd-original p.explain > span .break {
    display: block;
    height: 6px;
    overflow: hidden
}

.kxzd-original p.note {
    font-size: .9375rem;
    color: #f33
}

.kxzd-research {
    counter-reset: content-counter
}

.kxzd-research p {
    padding: 10px 0;
    margin: 0 0 0 30px;
    border-bottom: 1px solid var(--border-color)
}

.kxzd-research p.explain {
    position: relative;
    counter-increment: content-counter
}

.kxzd-research p.explain::before {
    position: absolute;
    top: 12px;
    left: -1.8rem;
    width: 1.25rem;
    height: 1.25rem;
    line-height: calc(1.25rem - 2px);
    font-weight: 700;
    color: red;
    text-align: center;
    border: 1px solid red;
    font-size: .8125rem;
    border-radius: .75rem;
    content: counter(content-counter)
}

.kxzd-research p.note {
    color: #a27728
}

.kxzd-cover {
    width: 240px;
    height: 240px;
    padding: .5rem;
    margin: 0 0 .5rem .5rem;
    border: 1px solid #f0f0f0;
    border-radius: .25rem;
    box-shadow: 0 .125rem .25rem var(--shadow-color)
}

html[data-theme=dark] .kxzd-content p.explain {
    color: #dee2e6
}

@media (max-width: 1419.98px) {
    .kxzd-vol li {
        width: calc(6.6666666667% + 1px)
    }
}

@media (max-width: 1199.98px) {
    .kxzd-vol li {
        width: calc(8.3333333333% + 1px)
    }
}

@media (max-width: 767.98px) {
    .kxzd-vol li {
        width: calc(10% + 1px)
    }
}

@media (max-width: 575.98px) {
    .kxzd-vol li {
        width: calc(12.5% + 1px)
    }
}

.swjz-original-header {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 10px 0;
    border-bottom: 2px dashed var(--border-secondary-color)
}

.swjz-original-header h3 {
    font-size: 1rem;
    color: red;
    border-bottom: 0;
    margin: 0;
    font-weight: 700
}

.swjz-original-header span {
    font-size: .9375rem;
    color: #0f5d8d
}

.swjz-original-header span em {
    font-style: normal
}

.swjz-original-header:first-child {
    margin-top: 15px
}

.swjz-original-content {
    padding: 25px 0
}

.swjz-original-content > p {
    margin-bottom: 10px;
    font-size: .9375rem
}

.swjz-original-content > p:last-child {
    margin-bottom: 0
}

.swjz-original-content .original {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--body-color)
}

.swjz-original-content .zi-special {
    font-size: 1em;
    line-height: 1
}

.swjz-original-content .swjz-zi {
    float: left;
    margin-right: 15px
}

.swjz-original-content .swjz-zi img {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    box-shadow: 0 .5rem 1rem var(--shadow-color);
    background-color: #fff
}

.swjz-original-content .swjz-zi figcaption {
    text-align: center;
    font-weight: 700;
    margin-top: 4px;
    color: var(--text-color-gray);
    font-size: .8125rem
}

.swjz-content .cover {
    margin-right: 8px
}

.swjz-content .cover img {
    width: 60px;
    height: 60px;
    background-color: #fff
}

.swjz-content p {
    font-size: .9375rem
}

.swjz-content .tag {
    font-style: normal;
    border-radius: 2px;
    font-size: .8125rem;
    padding: 2px 4px;
    margin-right: 6px
}

.swjz-content .zi-special img {
    width: 1rem;
    height: 1rem;
    vertical-align: -.15rem
}

.swjz-content h4 .zi-special img {
    width: 1.5em;
    height: 1.5em;
    vertical-align: -.225em
}

.swjz-content .heading {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dashed var(--border-secondary-color);
    margin-top: 2.5rem;
    margin-bottom: .5rem
}

.swjz-content .heading h3 {
    color: red;
    font-size: 1rem
}

.swjz-content .heading .author {
    font-size: .8125rem;
    color: #1881af
}

.swjz-content .heading:first-child {
    margin-top: 1rem
}

.swjz-content .heading ~ p {
    margin-top: 1rem
}

.swjz-content .subheading {
    display: flex;
    margin-bottom: 1rem
}

.swjz-content .subheading h4, .swjz-content .subheading p {
    margin-bottom: 0
}

.swjz-content .subheading .variant {
    color: red
}

.swjz-content .subheading .variant .tag {
    color: #fff;
    background-color: #23aad1;
    margin-left: 1rem
}

.swjz-content .subheading .variant .zi-special img {
    width: 1.25em;
    height: 1.25em;
    vertical-align: -.25em
}

.swjz-content h4 {
    font-size: 1rem;
    color: red;
    margin-bottom: 1rem
}

.swjz-content .explain {
    border: 1px solid #ddd;
    border-left: 4px solid #9d855d;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 4px 8px;
    display: flex;
    align-items: center
}

.swjz-content .explain .cover {
    align-self: flex-start
}

.swjz-content .source .ver {
    border: 1px solid #bd9237;
    background-color: #fff;
    border-radius: 3px;
    margin: 0 2px;
    padding: 2px 4px
}

.swjz-content .source strong {
    margin: 0 4px;
    color: red
}

.swjz-content .source a {
    margin: 0 4px;
    border-bottom: 1px dotted #ced4da
}

.swjz-content .extra {
    font-size: .875rem;
    background-color: #f9f9f9;
    padding: 6px
}

.swjz-content .extra > span {
    margin-right: 10px;
    line-height: 1.8em
}

.swjz-content .extra .tag {
    background-color: #d6e4ff;
    color: #333
}

.swjz-content .extra .tag:not(:first-child) {
    margin-left: 6px
}

.swjz-content .extra .source {
    white-space: nowrap
}

.swjz-content .abbr {
    border: 1px solid #1c5ba3;
    color: #1c5ba3;
    font-size: .8125rem;
    padding: 2px 4px;
    border-radius: 2px;
    margin-left: 4px
}

.swjz-content .page {
    color: red;
    padding-left: 2px;
    padding-right: 2px;
    font-weight: 700
}

.swjz-content .note {
    color: #777;
    font-size: .9375rem;
    margin-bottom: .5rem
}

.swjz-content .note ~ .explain {
    margin-top: 1rem
}

.swjz-content .note .tag {
    background-color: #0f5d8d;
    color: #fff;
    padding: 2px 5px;
    margin-right: 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap
}

.swjz-content .note, .swjz-content .zhang {
    display: flex;
    align-items: flex-start
}

.swjz-content .zhang .author {
    font-weight: 700;
    margin-right: 10px;
    white-space: nowrap;
    border: 1px solid #bd9237;
    border-radius: 4px;
    padding: 0 10px;
    font-size: .875rem
}

.swjz-content .zhang .author sup {
    font-weight: 400
}

.swjz-content .zhang .content {
    flex-grow: 1
}

.swjz-head-tab {
    margin-bottom: 10px
}

.swjz-head-tab ul {
    display: flex;
    margin: 0 -20px
}

.swjz-head-tab ul li {
    flex-grow: 1;
    text-align: center;
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0;
    background-color: var(--theme-secondary-bg-color)
}

.swjz-head-tab ul li:first-child {
    border-left: none
}

.swjz-head-tab ul li.active {
    border-bottom-color: var(--theme-bg-color);
    background-color: var(--theme-bg-color);
    color: red;
    font-weight: 700
}

.swjz-head-tab ul li.active a {
    color: red;
    font-weight: 700
}

.swjz-head-tab ul li a {
    display: inline-block
}

.swjz-source tr td, .swjz-source tr th {
    text-align: left;
    padding: 5px 10px;
    font-size: .8125rem
}

.swjz-source tr th {
    background-color: #666;
    border-right: 1px solid #888
}

.swjz-source td:first-child {
    font-weight: 700;
    color: #777
}

.swjz-source td:nth-child(2) {
    white-space: nowrap
}

html[data-theme=dark] .swjz-content p.explain {
    background-color: #2f2f2f;
    border: 1px solid #333;
    border-left: 4px solid #5a360a
}

html[data-theme=dark] .swjz-content p.extra {
    background-color: #2b2b2b
}

html[data-theme=dark] .swjz-content .source .ver {
    border: 1px solid #5a360a;
    background-color: #111
}

html[data-theme=dark] .swjz-content .source a {
    border-bottom: 1px dotted #6c757d
}

@media (max-width: 991.98px) {
    .swjz-head-tab ul {
        display: flex;
        margin: 0 -15px
    }
}

.zi-list-jianfan {
    --zi-column: 10
}

html[data-theme=dark] .zi-list-jianfan ul li:nth-child(2n) {
    background-color: #262626
}

.zi-list-jianfan ul {
    list-style: none;
    padding: 0;
    margin-left: 1px;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.zi-list-jianfan ul.zi-list-less li:nth-of-type(n+41) {
    display: none
}

.zi-list-jianfan ul.zi-list-less + .more {
    display: block !important
}

.zi-list-jianfan ul + .more {
    display: none
}

.zi-list-jianfan li {
    width: calc(100% / var(--zi-column) + 1px);
    border-color: var(--border-color);
    border-style: solid;
    text-align: center;
    border-width: 2px 1px 1px;
    border-top-color: var(--border-secondary-color);
    transition: all .2s;
    margin: -1px 0 0 -1px
}

.zi-list-jianfan li:nth-child(2n) {
    background-color: #fdfaeb
}

.zi-list-jianfan li .pinyin {
    white-space: nowrap;
    font-size: 16px;
    padding: .5rem .25rem;
    background-color: var(--theme-secondary-bg-color);
    font-family: "Pinyin", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif
}

.zi-list-jianfan li .fanti, .zi-list-jianfan li .jianti {
    padding: .5rem 0;
    border-top: 1px dashed var(--border-secondary-color);
    font-size: 1rem
}

.zi-list-jianfan li .fanti {
    padding-bottom: .5rem;
    border-bottom: none
}

.zi-list-jianfan li:hover {
    border-color: var(--border-secondary-color);
    box-shadow: 0 1rem 3rem var(--shadow-color);
    z-index: 100
}

@media (max-width: 1419.98px) {
    .zi-list-jianfan {
        --zi-column: 8
    }
}

@media (max-width: 1199.98px) {
    .zi-list-jianfan {
        --zi-column: 6
    }
}

@media (max-width: 767.98px) {
    .zi-list-jianfan {
        --zi-column: 5
    }
}

@media (max-width: 575.98px) {
    .zi-list-jianfan {
        --zi-column: 4
    }
}

.zi-table-jianfan {
    display: flex;
    margin: 0 -8px;
    flex-wrap: wrap
}

.zi-table-jianfan .table-jianfan {
    width: calc(50% - 16px);
    margin: 0 8px 30px
}

@media (max-width: 575.98px) {
    .zi-table-jianfan {
        margin: 0
    }

    .zi-table-jianfan .table-jianfan {
        width: 100%;
        margin: 0 0 30px
    }
}

.table-jianfan {
    --body-border-color: #ccc;
    --head-border-color: #999
}

.table-jianfan th {
    background-color: var(--body-border-color);
    padding: 5px;
    border-top: 1px solid var(--head-border-color);
    border-bottom: 1px solid var(--head-border-color);
    border-left: 1px solid var(--head-border-color);
    text-align: center;
    font-size: 15px
}

.table-jianfan th:last-child {
    border-right: 1px solid var(--head-border-color)
}

.table-jianfan td {
    padding: 5px;
    border-bottom: 1px solid var(--body-border-color);
    border-left: 1px solid var(--body-border-color);
    text-align: center
}

.table-jianfan td:last-child {
    border-right: 1px solid var(--body-border-color)
}

.table-jianfan .sn {
    font-size: 14px
}

.table-jianfan .zi-special img {
    width: 18px;
    height: 18px
}

html[data-theme=dark] .table-jianfan {
    --body-border-color: #444;
    --head-border-color: #555
}

.zi-notes-list li {
    margin-left: 30px;
    position: relative;
    padding-bottom: 10px
}

.zi-notes-list li small {
    font-size: 14px;
    position: absolute;
    left: -30px
}