@charset "utf-8";
/*
iconfont by ChenCJ https://www.iconfont.cn/collections/detail?spm=a313x.user_detail.i1.dc64b3430.59a33a81H0dDNj&cid=38600

@import "//at.alicdn.com/t/c/font_4283979_uo7suwurf3t.css";
*/
:root {
    scrollbar-gutter: stable;
    --switch-width: 20px;
    --switch-height: 20px;
    --switch-font: 20px;
    --wap-iconfont: 20px;
    --negative-height: -20px;
    --radius: 5px;
    --sm-radius: calc(var(--radius) / 1.5);

    --theme-color: #845ec2;
    --theme-text: #fff;
    --secondary-color: var(--theme-color);
    --color-warning: #ff8a00;
    --color-success: #52e052;
    --color-danger: #ed1941;

    --bg: #f2f2f2;
    --bg-var: #e8e8e8;
    --bg-var-dark: #e0e0e0;
    --secondary-bg: #fff;
    --secondary-bg-var: #f8f8f8;
    --secondary-bg-var-var: #f2f2f2;
    --contrast-bg: #555;
    --line: #e0e0e0;
    --line-var: #e8e8e8;
    --secondary-line: #f8f8f8;
    --contrast-line: #555;
    --text: #333;
    --secondary-text: #888;
    --contrast-text: #f2f2f2;
    
    /*
    主题颜色 #845ec2
    主题颜色文字识别颜色 #fff


    常规模式
    主背景 #f2f2f2
    主背景状态变化 #e8e8e8
    次背景 #fff  列表背景、文章区域背景
    次背景状态变化 #f8f8f8   hover/active
    
    线条
    主背景搭配线条 #e0e0e0
    次背景搭配线条 #2a2a2a

    文字
    主文字 #333
    次文字 #888
    激活文字 主题颜色
    次激活文字 #9B89B3
    */


    /*
    黑暗模式
    主背景 #2a2a2a
    主背景状态变化 #333
    次背景 #3a3a3a  列表背景、文章区域背景
    次背景状态变化 #333   hover/active
    
    线条
    主背景搭配线条 #3a3a3a
    次背景搭配线条 #e0e0e0

    文字
    主文字 #333
    激活文字 #845ec2
    */
}

.switch--16px {
    --switch-width: 16px!important;
    --switch-height: 16px!important;
    --switch-font: 16px!important;
    --negative-height: -16px!important;
}

.switch--18px {
    --switch-width: 18px!important;
    --switch-height: 18px!important;
    --switch-font: 18px!important;
    --negative-height: -18px!important;
}

.switch--20px {
    --switch-width: 20px!important;
    --switch-height: 20px!important;
    --switch-font: 20px!important;
    --negative-height: -20px!important;
}

.switch--25px {
    --switch-width: 25px!important;
    --switch-height: 25px!important;
    --switch-font: 25px!important;
    --negative-height: -25px!important;
}

.dark-mode {
    --bg: #2a2a2a;
    --bg-var: #333;
    --bg-var-dark: #3a3a3a;
    --secondary-bg: #333;
    --secondary-bg-var: #3a3a3a;
    --secondary-bg-var-var: #4a4a4a;
    --contrast-bg: #e0e0e0;
    --line: #3a3a3a;
    --line-var: #333;
    --secondary-line: #555;
    --contrast-line: #e0e0e0;
    --text: #efefdf;
    --contrast-text: #3a3a3a;
}

@supports (color:color-mix(in srgb,red,blue)) {
    :root{
        --secondary-color: color-mix(in srgb, var(--theme-color), #fff 20%);
    }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
    font-size: 16px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
input,
textarea,
code,
kbd,
pre,
samp {
    font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Source Han Sans", "Microsoft YaHei", "WenQuanYi Zen Hei", "WenQuanYi Micro Hei", "Heiti SC", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    background: var(--bg);
    color: var(--text);
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    -moz-text-size-adjust: 100% !important;
}

h1 {
    font-size: 1.875em;
}

h2 {
    font-size: 1.625em;
    margin: 1rem 0;
}

h3 {
    font-size: 1.5em;
    margin: 1.5rem 0 .75rem;
}

h4 {
    font-size: 1.25em;
    margin: 0.76rem 0;
}

h5,
h6 {
    font-size: 1em;
    margin: 0.83rem 0;
}

p {
    margin: 0;
    padding: 0;
    word-break: break-word;
}

a {
    color: var(--theme-color);
    text-decoration: none;
    transition: .5s ease-in-out;
}

hr {
    width: 100%;
    height: 1px;
    margin: 1.5rem 0;
    border: 0;
    background: var(--line);
}

ol, ul {
    margin: .5rem 0 1rem .5rem;
    padding: 0;
    list-style-position: inside;
}

ol li, ul li {
    margin: 0 0 .5rem;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
}

input, button {
    height: 36px;
    padding: 0 .75rem;
    border: 2px solid var(--contrast-line);
    background: var(--secondary-bg);
    color: var(--text);
    -webkit-appearance: none;
    border-radius: var(--radius);
    outline: 0;
    font-size: .875rem;
    font-family: inherit;
}

input~button {
    margin-left: .5rem;
}

input::placeholder {
    font-size: .875em;
}

code {
    padding: .1875rem .5rem;
    background: var(--secondary-bg-var);
    color: var(--theme-color);
    border-radius: var(--sm-radius);
}

.HD {
    display: none;
}

.main {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 100vh;
}

.container {
    padding: 0;
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.row::before, .row::after {
    display: table;
    content: "";
    clear: both;
}

.sidebar {
    width: 100%;
    border-bottom: 1px solid var(--line);
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
    padding: 0;
}

.logo-area img {
    display: block;
    max-height: 2rem;
}

.logo-area .brand-name {
    font-size: 1.5rem;
    font-weight: bold;
}

.change-bar {
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    transition: .5s ease-in-out;
}

.change-bar-hover {
    padding: .5rem;
    margin-top: -.5rem;
}

.change-bar-hover:hover {
    background: var(--bg-var);
}

.switch-icon {
    margin-right: .125rem;
    color: var(--text);
    position: relative;
    display: inline-block;
    width: var(--switch-width);
    height: var(--switch-height);
    margin-right: 0;
    overflow: hidden;
}

.switch-icon .iconfont {
    position: absolute;
    left: 0;
    font-size: var(--switch-font);
    transition: .5s ease-in-out;
}

.switch-cover {
    transform: translateY(var(--negative-height));
}

.dark-mode .switch-mode .switch-default, .graph-text .switch-wrapper .switch-default {
    transform: translateY(var(--switch-height));
}

.dark-mode .switch-mode .switch-cover, .graph-text .switch-wrapper .switch-cover {
    transform: translateY(0);
}

.navbar {
    position: relative;
}

.navmenu {
    position: absolute;
    right: -1rem;
    top: 0;
    width: 60px;
    height: 40px;
    margin: 0;
    background: var(--bg);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, var(--bg) 40%);
    mask-image: linear-gradient(90deg, transparent 0%, var(--bg) 40%);
}

/*.openicon {
    display: inline-block;
    padding: .5rem;
    transition: .5s ease-in-out;
    color: var(--text);
}*/

.navlist {
    display: flex;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0 3rem 0 0;
    overflow-x: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: none;
}

.navbar.open .navlist {
    display: block;
    padding: 0 0 .5rem;
}

.navlist li {
    flex-shrink: 0;
    /*position: relative;*/
    margin-bottom: 0;
    padding: 0 1rem 0 0;
    list-style: none;
    transition: background .3s ease-in-out;
}

.navbar.open li {
    padding: 0;
}

.nav-sub li {
    padding: 0;
}

.navlist li a {
    display: block;
    margin: 0;
    font-size: 1rem;
    padding: .75rem 0;
    line-height: 1;
    color: var(--text);
    text-decoration: none;
    outline: none;
    white-space: nowrap;
}

.iconfont.arrow-icon {
    display: inline-block;
    padding: .25rem .25rem 0;
    font-size: .75rem;
    -webkit-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    -ms-transition: transform .3s ease;
    transition: transform .3s ease;
}

.navlist .active .arrow-icon {
    transform:rotate(180deg);
    -ms-transform:rotate(180deg);    /* IE 9 */
    -moz-transform:rotate(180deg);   /* Firefox */
    -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
    -o-transform:rotate(180deg);     /* Opera */
}

.navlist .nav-sub {
    position: relative;
    margin: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    -ms-transition: opacity .5s ease;
    transition: opacity .5s ease;
}

.navlist li.active .nav-sub {
    position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 30%;
    max-height: 60%;
    padding: 2rem 1rem;
    opacity: 1;
    background: var(--bg-var-dark);
    overflow-y: scroll;
    z-index: 998;
}

.navlist li.active .nav-sub li {
    margin: .25rem;
    padding: 0;
    background: var(--bg-var);
    border-radius: var(--radius);
}

.navlist li.active .nav-sub li a {
    padding: 1rem;
}

.navlist li.active .full-row {
    width: 100%;
}

.navlist .nav-sub li a {
    position: relative;
    font-size: .875em;
}

.navlist .nav-sub li a:hover, .sub-current a {
    color: var(--theme-color) !important;
    background-color: transparent;
    border-color: transparent;
}

.navlist .current>a {
    position: relative;
}

.navlist .current>a:after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 100%;
    margin-right: -50%;
    height: 4px;
    background-color: var(--theme-color);
}

.navbar.open .current>a:after {
    display: none;
}

.badge-icon {
    position: relative;
    display: none;
    min-width: 1rem;
    height: 1rem;
    line-height: 1rem;
    padding: 0 .25rem;
    vertical-align: super;
    text-align: center;
    color: var(--theme-color);
    border-radius: 1rem;
    opacity: .5;
}

.has-nav-sub.active .badge-icon {
    display: inline-block;
}

.nav-sub::before {
    content: "";
    display: none;
    position: absolute;
    width: 1px;
    height: 85%;
    height: calc( 100% - 40px );
    top: 50%;
    left: .5rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: var(--line);
}

.nav-sub li a:hover .badge-icon {
    background: var(--theme-color);
    color: #fff;
    opacity: 1;
}

.footer {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.infos {
    margin: 0;
    padding: 1rem;
    background: var(--secondary-bg-var);
    font-size: .75rem;
}

.infos p {
    margin: .25rem 0;
}

.infos a {
    padding: 0 2px;
    color: inherit;
}

.copyright {
    padding: .25rem 0 .75rem;
}

.colorfullinks a, .colorfullink {
    position: relative;
}

.colorfullinks a:after, .colorfullink:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 4px;
    background: var(--theme-color);
    opacity: .5;
    transition: all .2s ease;
}

.search {
    display: block;
    width: 100%;
    margin: .5rem 0 1.5rem;
    padding: 0;
}

.drawer .search {
    margin-top: 4rem;
}

#search {
    display: flex;
}

.form-control {
    flex: 1;
    width: 80%;
    height: 2.5rem;
    background: var(--bg);
    color: var(--secondary-text);
    border: 2px solid var(--line);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
}

.input-icon {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    background: var(--bg-var-dark);
    color: #333;  
    border: 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.form-control:focus {
    color: var(--text);
    border-color: var(--theme-color);
}

.form-control:focus ~ .input-icon {
    background-color: var(--theme-color);
    color: var(--contrast-text);
}

.mark {
    color: var(--theme-color);
    font-weight: bold;
}

.column {
    width: 100%;
    min-height: calc(100vh - 243px);
    background: var(--bg);
    transition: background .5s ease-in-out, left .5s ease-in-out, right .5s ease-in-out;
}

.drawer-close {
    position: absolute;
    right: .875rem;
    top: 1rem;
    padding: .25rem;
    z-index: 999;
    color: var(--text);
}

.drawer-close .iconfont {
    font-size: var(--wap-iconfont);  
}

.masthead .drawer-close {
    color: #fff;
}

.cat-name {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem 0;
    justify-content: space-between;
}

.cat-name h1, .cat-name h3 {
    font-size: 1.25rem;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
}

.cat-name h1 .iconfont, .cat-name h3 .iconfont {
    display: inline-block;
    padding: 0 0 .5rem 0;
    font-size: 18px;
    font-weight: 500 !important;
}

.cat-description {
    margin: 0 0 0 1.625rem;
    font-size: .75rem;
    width: calc(100% - 1.625rem);
    flex-grow: 0;
    flex-shrink: 0;
}

.article {
    width: 100%;
    min-height: calc(100vh - 243px);
    background: var(--secondary-bg);
    transition: background .5s ease-in-out .3s, left .5s ease-in-out, right .5s ease-in-out;
}

.box {
    padding: 1rem;
}

.sidebar .box {
    padding-bottom: 0;
}

.masthead {
    /*display: flex;*/
    flex-direction: column;
    width: 100%;
}

/*.masthead h1 {
    font-size: 3rem;
    text-align: center;
    color: var(--theme-color);
    opacity: 0.2;
}*/

.bg-cover {
    position: relative;
    /*display: flex;
    overflow: hidden;
    flex-grow: 0;*/
}

.bg-cover img {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
}

.bg-cover::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--bg-var);
    /*background: repeating-linear-gradient(45deg, rgba(0, 0, 0, .6), transparent 100px);*/
    opacity: .2;
}

.spotlight {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    -webkit-align-content: center;
    align-content: center;
    z-index: 1;
    color: #fff;
}

.spotlight p {
    margin: 1rem 0 0;
}

.spotlight span {
    margin: 0 .25rem;
    padding: .25rem .5rem;
    font-size: .875em;
    border: 1px solid #fff;
    border-radius: var(--sm-radius);
}

.spotlight .secondary {
    display: none;
    margin-top: 2rem;
}

.spotlight .secondary p {
    margin: .25rem 0;
    font-size: .75rem;
}

.widget-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: -0.5rem;
}

.card {
    height: 6rem;
}

.sitemap-title h2 {
    margin: 0 0 2rem;
    line-height: 1.3;
}

.widget-item {
    display: flex;
    position: relative;
    margin-right: .5rem;
    margin-bottom: .5rem;
    background: var(--secondary-bg-var);
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.widget-item:hover      {
    background: var(--secondary-bg-var-var);
}

.small .widget-item {
    border-radius: var(--sm-radius);
}

.widget-item a {
    display: inline-block;
    width: 100%;
    padding: .5rem .75rem;
    line-height: 1.5;
}

.small .widget-item a {
    padding: .1875rem .5rem;
}

.flex-grow-sm {
    flex-grow: 1;
    flex-shrink: 1;
}

.flex-grow-sm:last-child {
    flex-grow: 0;
    flex-shrink: 0;
}

.widget-item a sup {
    opacity: .5;
    color: var(--theme-color);
    transition: .5s ease-in-out;
}

.widget-item a:hover sup {
    opacity: 1;
}

.meta-cat {
    margin: 0 .75rem 0 .25rem;
    padding: .25rem 0;
}

.meta-icon {
    margin-left: -1.25rem;
    padding: .5rem;
    font-size: 1.25rem;
    background: var(--secondary-bg-var-var);
    color: var(--text);
    border-radius: 50%;
}

.widget-item.has-meta-cat {
    margin-left: 1.25rem;
    border-radius: 0 18px 18px 0;
    border-radius: 0 calc((20px + 1rem) / 2) calc((20px + 1rem) / 2) 0;
}

.widget-box--50-25 {
    width: calc(50% - .5rem);
}

.widget-box--100-50 {
    width: calc(100% - .5rem);
}

.widget--list {
    color: var(--theme-color);
}

.widget--list a, .widget-box a {
    color: var(--text);
}

.widget--list a:hover {
    color: var(--theme-color);
}

sup {
    margin-left: .25rem;
}

.title {
    margin: 1rem 0 2rem;
}

.logo-area .brand-name, .cat-name h1, .cat-name h3, .title h1 {
    margin: 0;
}

.logo-area .brand-name, .cat-name h1, .cat-name h3 {
    line-height: 1;
}

.error-title {
    display: inline-block;
    padding: .5rem;
    background: var(--color-danger);
    color: #fff;
    font-size: 2.5rem;
}

.content {
    margin-bottom: 2.5rem;
}

.content h3, .content h4 {
    position: relative;
    line-height: 1;
    margin: 2em 0 1em;
}

.content a {
    padding: 0 .25rem;
    text-decoration: underline;
}

.content ol { 
    counter-reset: section;
    list-style-type: none;
}
        
.content ol li {
    counter-increment: section;
}

.content ol li::before {
    content: counters(section, ".") ". ";
    margin-right: .35em;
}

.content ol ol {
    margin-left: 1.35em;
    margin-bottom: .5em;
}

.content ol li p {
    display: inline;
}

.content img {
    max-width: 100%;
    margin: 1rem 0;
}

.error-code {
    display: flex;
    overflow: hidden;
}

.error-text {
    flex-shrink: 0;
}

.error-images {
    text-align: center;
}

.ld-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
}

.ld-panel p {
    width: 100%;
}

.license-alert-icon {
    margin-right: .25rem;
    font-size: 1.25rem !important;
    animation: breathe 1.5s ease-out infinite alternate;
    -webkit-animation: breathe 1.5s ease-out infinite alternate;
    -moz-animation: breathe 1.5s ease-out infinite alternate;
    -o-animation: breathe 1.5s ease-out infinite alternate;
}

.no-bg {
    background-color: transparent;
}

.bg {
    background-color: var(--bg);
}

.bg-var {
    background-color: var(--bg-var);
}

.secondary-bg {
    background-color: var(--secondary-bg-var);
}

.secondary-bg-var {
    background-color: var(--secondary-bg-var);
}

.bg-theme {
    background-color: var(--theme-color);
}

.bg-success {
    background-color: var(--color-success);
}

.bg-warning {
    background-color: var(--color-warning);
}

.bg-danger {
    background-color: var(--color-danger);
}

.text-success {
    color: var(--color-success);
}

.text-warning {
    color: var(--color-warning);
}

.text-danger {
    color: var(--color-danger);
}

.donate {
    position: relative;
    /*padding: 0;*/
}

.donate p {
    margin: 0;
    font-size: .875em;
    color: var(--secondary-text);
}

.view {
    font-size: 1rem;
}

.view span, .view span i {
    margin-left: .25rem;
    font-size: 1.25rem;
}

.donate .donate-btn:hover, .donate .donate-btn.active, .view:hover {
    transition: all .3s ease-in-out;
}

.donate .qrcode {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    margin-left: -110px;
    width: 220px;
    min-height: 200px;
    background: var(--secondary-bg);
    color: var(--text);
    border: 1px solid var(--line);
    padding: 1rem;
    -webkit-box-shadow: 0px 5px 13px rgba(0, 0, 0, .2);
    box-shadow: 0px 5px 13px rgba(0, 0, 0, .2);
    display: none;
    text-align: left;
    border-radius: var(--radius);
}

.donate-btn span, .donate-btn i {
    margin-right: .25rem;
}

.donate .qrcode:before, .donate .qrcode:after {
    width: 13px;
    height: 13px;
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    left: 50%;
    margin-left: -10px;
    z-index: 2;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
}

.donate .qrcode:before {
    border-top: 13px solid var(--secondary-bg);
    bottom: -11px;
    z-index: 2;
}

.donate .qrcode:after {
    border-top: 13px solid var(--secondary-bg);
    bottom: -13px;
    z-index: 1;
}

.qrcode h5 {
    margin: 0;
    text-align: center;
    font-size: .875rem;
}

.qrcode .no-qrcode {
    margin-bottom: 1em;
    text-align: left;
    color: #ed1941;
}

.qrcode .iconfont {
    margin-right: .25rem;
}

.donate .qrcode img {
    margin-top: .5rem;
    width: 100%;
}

.eof {
    position: relative;
    display: inline-block;
    overflow: inherit;
}

.eof:after {
    content: "Eof";
    color: var(--theme-color);
    position: absolute;
    left: 50%;
    margin-left: -2em;
    font-size: .75em;
    top: -.5em;
    width: 4em;
    height: 1em;
    background: var(--secondary-bg);
    display: block;
    text-align: center;
    line-height: 1em;
}

.lists a {
    color: var(--text);
}

.list {
    margin: 0 0 .5rem;
    padding: 0;
    background: var(--secondary-bg);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: .5s ease-in-out;
    overflow: hidden;
}

.list-effect:hover {
    background-color: var(--secondary-bg-var);
}

.list-effect.active, .list-effect:active {
    background: var(--secondary-bg-var);
    border-color: var(--secondary-color);
}

.list.column-list {
    display: flex;
    flex-wrap: nowrap;
}

.list-text {
    width: 100%;
    padding: .5rem 1rem;
}

.list-image {
    height: 0;
    background: var(--secondary-bg-var);
    overflow: hidden;
    transition: .5s ease-in-out;
    opacity: 0;
}

.graph-text .column-list .list-image {
    width: 30%;
}

.graph-text .column-list .list-text {
    width: 70%;
}

.graph-text .list-image {
    height: auto;
    opacity: 1;
}

.list-image img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
}

.istop {
    position: relative;
}

.istop:before {
    content: "\ee4c";
    font-family: iconfont;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: .3rem .5rem;
    background: var(--theme-color);
    color: var(--theme-text);
    border-radius: 0 0 0 var(--radius);
}

.istop h4 {
    color: var(--theme-color);
    margin-right: 1rem;
}

.list h4 {
    margin-top: .25rem;
    font-size: 1.125em;
}

.graph-text .column-list p {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer {
    position: fixed;
    width: 80%;
    height: 100vh;
    z-index: 999;
    overflow: overlay;
}

.drawer-mask, .nav-sub-mask {
    height: 100vh;
    overflow: hidden;
}

.drawer-mask:after, .nav-sub-mask:after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    transition: all .5s ease-in-out;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.drawer-right {
    right: -100%;
}

.drawer-right.active {
    right: 0;
}

.drawer-left {
    left: -100%;
}

.drawer-left.active {
    left: 0;
}

.list-text h4, .list-text p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.page-navigator {
    display: flex;
    margin: 1rem 0 0;
    padding: 1.5rem 1rem;
    justify-content: space-between;
    list-style-type: none;
    text-align: center;
}

.page-navigator li {
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
}

.page-navigator a {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--secondary-bg-var);
    color: var(--secondary-color);
    border: 1px solid var(--line);
    box-shadow: 0 0 10px 1px var(--bg);
    border-radius: 50%;
    transition: .5s ease-in-out;
    overflow: hidden;
}

.page-navigator:hover a {
    color: var(--theme-color);
}

.page-navigator a:active {
    border-color: var(--theme-color);
}

.page-navigator a i {
    display: block;
    transition: .5s ease-in-out;
}

.article-meta {
    font-size: .75rem;
    color: var(--secondary-text);
    margin-top: .25rem;
}

.article-meta p>* {
    margin-right: .5rem;
}

.content p, .content blockquote, .ld-panel p {
    margin-bottom: 1rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-gap {
    margin-right: .5rem;
}

.media-gap {
    margin-right: .25rem;
}

.pd-b-0 {
    padding-bottom: 0
}

.mg-t-0 {
    margin-top: 0
}

pre {
    margin-bottom: 1em;
    padding: 1em;
    background: var(--bg);
    font-size: .95em;
    line-height: 1.75em;
    max-height: 500px;
    border-radius: var(--radius);
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: auto;
    font-family: 'Noto Sans SC','Source Han Serif','MiSans','Open Sans','PingFang SC',',Microsoft YaHei',sans-serif;
}

blockquote {
    position: relative;
    margin: .25rem;
    padding: 1em 1.5em;
    border-radius: var(--radius);
    line-height: 1.3;
    background: var(--secondary-bg-var);
    opacity: .8;
}

blockquote::before, blockquote::after {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    color: var(--secondary-text);
    font-size: 3rem;
    line-height: 1;
    font-family: Arial, Helvetica, Georgia, serif;
    background: var(--secondary-bg);
    text-align: center;
}

blockquote::before {
    content: "\201C";
    top: -0.25rem;
    left: -.5rem;
}

blockquote:after {
    content: "\201D";
    bottom: -0.5rem;
    right: -.5rem;
}

.content blockquote p:last-child, .ld-panel p:last-child {
    margin-bottom: 0;
}

.iconfont.font--12 {
    font-size: 12px !important;
}

.iconfont.font--14 {
    font-size: 14px !important;
}

.iconfont.font--16 {
    font-size: 16px !important;
}

.iconfont.font--18 {
    font-size: 18px !important;
}

.iconfont.font--20 {
    font-size: 20px !important;
}

.padding-tiny {
    padding: .25rem !important;
}

.fl-r {
    float: right !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media screen and (min-width: 576px) {
    .wrap {
        width: 576px;
        margin: 0 auto;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .list-image img {
        max-height: 320px;
    }

    .infos {
        margin: 0 auto;
        width: 576px;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }
}

@media screen and (min-width: 768px) {
    .logo-area .brand-name {
        font-size: 1.75rem;
    }

    .navlist li.active .full-row {
        width: 576px;
    }

    .spotlight .secondary {
        display: block;
    }

    .widget-box--50-25 {
        width: calc(25% - 0.5rem);
    }

    .widget-box--100-50 {
        width: calc(50% - .5rem);
    }

    .flex-grow-sm {
        flex-grow: 0;
        flex-shrink: 0;
    }

    .error-images img {
        max-width: 380px;
    }
}

@media screen and (min-width: 992px) {
    .wrap {
        width: 100%;
        margin: 0 auto;
        border: none;
    }

    .media-gap {
        margin-right: .5rem;
    }

    .col {
        position: relative;
    }

    .logo-area {
        margin-bottom: 1rem;
    }

    .logo-area img {
        max-height: 2.5rem;
    }

    .logo-area .brand-name {
        font-size: 2rem;
    }

    .navlist li.active .full-row {
        width: calc(50% - 0.5rem);
    }

    .title h1 {
        line-height: 1.2;
    }

    .column {
        width: 38%;
        flex-grow: 1;
        font-size: 14px;
    }

    .list-image img {
        max-height: 280px;
    }

    .search {
        margin-top: 0;
    }

    .drawer .search {
        margin-top: 0;
    }

    .HD {
        display: block;
    }

    .wap {
        display: none;
    }

    .drawer {
        position: relative;
        left: 0;
        right: 0;
        border: none;
        height: auto;
        overflow: visible;
        z-index: auto;
    }

    .cat-name {
        margin-top: 0;
    }

    .graph-text .column-list p {
        white-space: normal;
    }

    .view-counts {
        opacity: 0;
        transition: .5s ease-in-out;
    }

    .list:hover .view-counts, .list.active .view-counts {
        opacity: 1;
    }

    .page-navigator a {
        box-shadow: none;
    }

    .page-navigator:hover a {
        box-shadow: 0 0 10px 1px var(--bg);
    }

    .article {
       width: 62%;
    }

    .box {
        padding: 2rem 1rem;
        position: sticky;
        top: 0;
    }

    .sidebar .box, .article .box {
        position: relative;
    }

    .column .box {
        padding-bottom: 1rem;
    }

    .spotlight {
        padding: 1rem;
    }

    .title {
        margin-top: 0;
    }

    .infos {
        width: auto;
        padding: 1rem;
        border: 0;
    }

    .drawer-mask {
        height: auto;
        overflow: visible;
    }

    .drawer-mask:after {
        display: none;
        opacity: 0;
    }
 }

@media screen and (min-width: 1200px) {
    .col {
        min-height: 100vh;
    }

    .sidebar {
        width: 20%;
        border-right: 1px solid var(--line);
        border-bottom: none;
        padding-bottom: 160px;
    }

    .logo-area {
        margin-bottom: 1.5rem;
        height: 2.5rem;
    }

    .navbar {
        margin-bottom: 1.5rem;
    }

    .navlist {
        display: block;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding: 0;
    }

    .navlist>li {
        padding: 0 0.5rem;
        margin-bottom: 1px;
        border-radius: var(--radius);
    }

    .navlist>li:hover {
        background: var(--bg-var);
    }

    .navlist .nav-sub {
        height: 0;
        opacity: 0;
    }

    .navlist li.active .nav-sub {
        position: relative;
        display: block;
        height: auto;
        opacity: 1;
        border-top: 1px solid var(--bg);
        background: transparent;
        padding: 0 0 0 1.5rem;
        overflow-y: visible;
    }

    .navlist li.active .nav-sub li {
        margin: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .navlist li.active .nav-sub li a {
        padding: .75rem 0;
    }

    .iconfont.arrow-icon {
        float: right;
    }

    .navlist li.active .full-row {
        width: 100%;
    }

    .navlist li a {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navlist .nav-sub li a {
        color: var(--secondary-text);
    }

    .navlist .current {
        background: var(--bg-var);
    }

    .navlist .current>a:after {
        display: none;
    }

    .navmenu {
        display: none;
    }

    .navlist .nav-sub {
        padding-left: 1.5rem;
    }

    .badge-icon {
        position: absolute;
        display: inline-block;
        top: .65rem;
        right: 0;
        color: inherit;
        opacity: 1;
    }

    .nav-sub::before {
        display: block;
    }

    .widget-box.nowrap {
        flex-wrap: nowrap;
    }

    .nowrap .widget-item:hover {
        width: 30%;
    }

    .widget-item a {
        padding: .75rem 1rem;
    }

    .column {
        width: 30%;
    }

    .article {
       width: 50%;
    }

    .box {
        padding: 3rem 1rem;
    }

    .sidebar .box {
        position: sticky;
        padding-bottom: 3rem;
    }

    .footer {
        position: fixed;
        bottom: 0;
        width: 20%;
        border-top: none;
    }

    .infos {
        margin-right: 1px !important;
    }

    .nav-sub-mask {
        height: auto;
        overflow: visible;
    }

    .nav-sub-mask:after {
        display: none;
        opacity: 0;
    }

    ::-webkit-scrollbar  {  
        width: 10px;  
        height: 16px;
    }  

    ::-webkit-scrollbar-track  {   
        background-color: var(--bg);
    }  

    ::-webkit-scrollbar-thumb  {  
        border-radius: 10px;   
        background-color: #555; 
    }
}

@media screen and (min-width: 1500px) {  
    .logo-area .brand-name {
        font-size: 2.25rem;
    }

    .sidebar, .footer {
        width: 18%;
    }

    .column {
        width: 27%;
    }

    .article {
       width: 55%;
    }

    .box {
        padding: 3rem 2rem;
    }

    .column .box {
        padding-bottom: 2rem;
    }


    .article .box {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .error-images img {
        max-width: 500px;
    }

    .spotlight {
        padding: 2rem 4rem;
        font-size: 1rem;
    }
}

@media screen and (min-width: 1800px) {
    .sidebar, .footer {
        width: 15%;
    }

    .column {
        width: 25%;
    }

    .article {
       width: 60%;
    }
}

@media screen and (min-width: 2200px) {
    .column {
        width: 20%;
    }

    .article {
       width: 65%;
    }
}


@media screen and (min-width: 2560px) {
    .wrap {
        width: 2500px;
        margin: 0 auto;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .infos {
        border-top-right-radius: .5rem;
    }
}

@keyframes breathe {
    0% {
    text-shadow: 0 0px 5px rgba(255, 255, 255, .1), 0px -15px 15px transparent, 0px -15px 30px transparent;
    }
    100% {
        text-shadow: 0 0px 5px rgba(255, 255, 255, 1), 0px -15px 15px currentColor, 0px -15px 30px currentColor;
    }
}