:root {
    --dark: #f5f5f6;
    --card-bg: #ffffff;
    --light: #ffffff;
    --background: #f5f8fa;
    --border: rgb(230, 236, 240);
    --border-dark: rgb(245, 245, 245);
    --text: #444;
    --link: #444;
    --target: #2299dd;
    --main-color: #2299dd;
}

/* Dark 主题 */
[theme="dark"] {
    --dark: #1e1e1e;
    --card-bg: #2e2e2e;
    --light: #2e2e2e;
    --background: #181818;
    --border: #606060;
    --border-dark: #2e2e2e;
    --text: #e0e0e0;
    --link: #e7e9ea;
    --target: #1d9cf0;
    --main-color: #1386ff;
}

/* body {
    background-color: var(--dark);
    width: 100%;
    color: #444;
    overflow-x: hidden !important;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial, sans-serif;
} */

a {
    color: #fff;
    text-decoration: none;
}

a:hover,
a:active {
    color: #fff;
}

::-webkit-scrollbar-track-piece {
    background: #eee;
}

::-webkit-scrollbar {
    width: 3px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    height: 40px;
    background-color: #a5a5a5;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #bbb;
}

.h1,
h1 {
    font-size: 1.4rem;
}

.h2,
h2 {
    font-size: 1.3rem;
}

.h3,
h3 {
    font-size: 1.2rem;
}

.h4,
h4 {
    font-size: 1.1rem;
}

.h5,
h5 {
    font-size: 1rem;
}

.h6,
h6 {
    font-size: 0.9rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", "Microsoft Yahei", sans-serif; */
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 500;
    line-height: 1.2;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea {
    padding: 1rem;
    border: 0.01rem solid #e9e9e9;
    width: 100%;
    border-radius: 0.2rem;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    margin: 0;
    padding: 0;
}

.radius-none {
    border-radius: 0;
}

.kat {
    margin: 0;
    /*display: flex;*/
    /*justify-content: center;*/
}

.kat .middle {
    width: 100%;
    max-width: 636px;
    margin-top: 1rem;
}

#main {
    display: flex;
    justify-content: center;
    /*overflow-x: hidden;*/
}

.toolbar {
    display: flex;
    display: -webkit-flex;
    padding: 5px 15px;
    font-size: 20px;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    background: #fff;

    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
    transition: top 0.35s;
}

.toolbar-left {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.toolbar-left .logo {
    height: 2rem;
}

.toolbar-right .menu {
    display: none;
}

.mySwiper {
    height: 225px;
}
.mySwiper img {
    width: 100%;
}

.middle {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 1;
}

.middle.fixed {
    transform: translateX(250px);
}

.middle.fixed .layer {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}

.middle .header {
    background: var(--light);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.middle .box {
    display: flex;
    margin-top: 2rem;
}

.box .base {
    flex: 1;
    border-radius: 4px;
}

.box .side {
    margin-left: 1rem;
}

.header .banner {
    height: 160px;
    background-position: 50% 50%;
    background-size: cover;
    background: var(--background);
    width: 100%;
    background-position: 50% 50%;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header .banner.have {
    height: 300px;
}

.header .author {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 7px 20px;
    margin-top: -55px;
}

.header .avatar {
    width: 90px;
    height: 90px;
    border-radius: 15px;
}

.header .nick {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-dark);
}

.nick .name {
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
}

.nick .uib {
    font-size: 0.9rem;
    line-height: 1.5;
}

.header .extra {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-dark);
}

.extra .describe {
    font-size: 0.95rem;
}

.middle .nav {
    padding: 0 20px;
    background: #f5f8fa;
    cursor: default;
    display: flex;
    flex-shrink: 0;
}

.middle .nav .active:before {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px;
    transform: translateX(-50%);
    border-color: transparent transparent white;
}

.middle .nav a {
    display: block;
    color: #444;
    flex: 1 1 auto;
    padding: 15px 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

article {
    background: initial;
    /* background: transparent; */
}

.article .twitter {
    position: relative;
    padding: 1.5rem 15px 1.5rem 15px;
}

.article.home .article-rows {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 0 0 1rem 0;
    --box-right-width: 3.6rem;
}

.article.home .article-rows .box {
    display: none;
}

.article.home.editbox .article-rows .box {
    width: var(--box-right-width);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article.home.editbox .article-rows .box input[type="checkbox"] {
    width: 1.4rem;
    height: 1.4rem;
}

.article.home.editbox .article-rows article {
    width: calc(100%);
    margin: 0 calc(var(--box-right-width) * -1) 0 0;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
}

.article.home.editbox .article-rows article .related {
    width: calc(100%);
}

@media (min-width: 960px) {
    .article.home .article-rows {
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin: 0 0 0.5rem 0;
        --box-right-width: 2.7rem;
    }

    .article.home .article-rows .box {
        display: none;
    }

    .article.home.editbox .article-rows .box {
        width: var(--box-right-width);
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .article.home.editbox .article-rows .box input[type="checkbox"] {
        width: 0.7rem;
        height: 0.7rem;
    }

    .article.home.editbox .article-rows article {
        width: calc(100%);
        margin: 0 calc(var(--box-right-width) * -1) 0 0;
        border-bottom: 1px solid var(--border-dark);
        display: flex;
        align-items: center;
    }

    .article.home.editbox .article-rows article .related {
        width: calc(100%);
    }
}

/* .article.home article .box {
    width: 2.0rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* .article.home article .related {
    width: calc(100% - 2.0rem);
    background-color: var(--light);
} */

.article.post .twitter {
    border-bottom: 1px solid var(--border);
}

.article.home article {
    border-radius: 5px;
    width: 100%;
}
.article.home article:first-child {
    margin-top: 0;
}

.article .dynamic .twitter {
    min-height: 6rem;
}

.article.post article {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.twitter .author {
    display: flex;
    align-items: center;
    color: var(--text);
}

.twitter .avatar {
    margin-right: 0.5rem;
}

.twitter .avatar img {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
}

.display .name {
    font-size: 0.8rem;
}

.twitter .created {
    color: #535353;
    float: right;
    font-size: 0.75rem;
}
.twitter .created i {
    color: var(--main-color);
}

.twitter .title {
    font-size: 0.95rem;
    font-weight: bold;
    max-width: 100%;
    overflow: hidden;
    color: #080808;
}

.twitter .describe {
    font-size: 0.95rem;
    margin-top: 1rem;
}

.dynamic .describe {
    margin-top: 10px;
}

.article.post .title {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.article.post .title .hot {
    height: 1.2rem;
    margin-right: 0.5rem;
}

.post .describe {
    font-size: 0.9rem;
}

.post .describe h1,
.post .describe h2,
.post .describe h3,
.post .describe h4 {
    font-size: 1rem !important;
    border-bottom: none !important;
}

.home article .permalink:hover {
    background: var(--background);
}
.night article .permalink:hover {
    background: none;
    text-decoration: underline;
}

.article .related {
    padding-top: 1rem;
    margin: 0 1rem 0.8rem 1rem;
}

.article .permalink {
    position: relative;
    padding: 0.6rem;
    color: var(--target);
    display: flex;
    align-items: center;
    border-radius: 0.3rem;
    border: 0.01rem solid var(--border);
    flex-direction: row;
}

.article .permalink .line {
    margin: 0 10px;
    width: 1px;
    height: 16px;
    background: var(--border);
}

.article .permalink .right {
    max-width: 100%;
    font-size: 0.9rem;
    overflow: hidden;
    color: #080808;
}

.article .permalink .right .title {
    display: flex;
    align-items: center;
    padding: 0;
}
.article .right .title .hot {
    /* height: 1rem; */
    margin-right: 0.3rem;
    min-width: 1.5rem;
}

.article .permalink .fa-link {
    color: var(--main-color);
}

.article .extra {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(8, 8, 8, 0.6);
}

.article.home .extra {
    width: 100%;
    margin: 0.8rem 0.2rem 0 0.2rem;
}

.article.home .extra .avatar {
    width: 8.5rem;
    display: flex;
    align-items: center;
    color: rgba(8, 8, 8, 0.6);
}

.article.home .extra .funcs {
    width: calc(100% - 8.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article.home .extra .funcs > div {
    display: flex;
    align-items: center;
}

.article.home .extra .funcs.review {
    width: calc(100% - 8.5rem);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.article.home .extra .funcs.review > div {
    display: flex;
    align-items: center;
    margin: 0 0 0 1rem;
    color: #ffffff;
    background-color: #4c88e6;
    padding: 0.15rem 0.5rem;
    border-radius: 0.2rem;
    font-size: 0.6rem;
    line-height: 1rem;
}

.article.home .extra .funcs.review > div.dele {
    display: flex;
    align-items: center;
    margin: 0 0 0 1rem;
    color: #ffffff;
    background-color: #888888;
}

.xqbj-tools {
    position: fixed;
    bottom: 2.65rem;
    padding: 0 0 0 3cap;
    width: 100%;
    display: none;
}

.xqbj-tools.open {
    position: fixed;
    bottom: 2.65rem;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.xqbj-tools .xqbj-tools-all {
    width: 12.5rem;
    height: 4.2rem;
    color: #ffffff;
    border-radius: 0.6rem;
    background-color: #4c88e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.xqbj-tools .xqbj-tools-del {
    width: 12.5rem;
    height: 4.2rem;
    color: #ffffff;
    border-radius: 0.6rem;
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.tab-nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: -0.6rem;
}

.tab-nav li {
    margin-right: 0.8rem;
    padding: 1rem 0;
    position: relative;
    cursor: pointer;
    font-size: 0.8rem;
}

.article .extra .avatar .img {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 5px;
    border-radius: 50%;
    overflow: hidden;
}

.article .extra .avatar .name {
    max-width: 10rem;
    width: calc(100% - 2rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.7rem;
    line-height: 1;
}

.article .extras {
    padding: 0.2rem 1rem 1rem;
}

.article .extras .img {
    width: 1.5rem;
}

.article .extra > div {
    display: flex;
    align-items: center;
}

.article .extra .fa {
    margin-right: 0.3rem;
    color: var(--main-color);
    font-size: 0.7rem;
}

.article .extra {
    font-size: 0.7rem;
    line-height: 0;
}

.article .content {
    padding: 20px;
}

.article .other {
    font-size: 0.72rem;
    padding: 20px 20px 0 20px;
}

.article .other .tags,
.article .other .modified {
    text-align: right;
}
.article .other .modified {
    color: #535353;
    margin-bottom: 0.5rem;
    font-size: 0.65rem;
}

.night .article .other .tags a:hover {
    color: var(--target);
    text-decoration: underline;
}

.article .other .tags,
.article .other .tags span {
    /*color: #8f949e;*/
    margin-bottom: 0.3rem;
    color: var(--target);
}

article .copyright {
    margin: 1rem;
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 5px;
    /*background: #f5f5f5;*/
}

article .copyright p {
    color: #8f949e;
    margin-top: 5px;
    margin-bottom: 5px;
}

article .copyright p:last-of-type {
    padding-bottom: 0;
}

article .copyright p a {
    color: #797979;
    text-decoration: underline;
}

.sidebar {
    width: 260px;
    height: 100%;
    margin-left: 15px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.navigator {
    width: 250px;
    height: 100%;
    margin-right: 1rem;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    justify-content: flex-end;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 1;
    position: sticky;
    position: -webkit-sticky;
    top: 4rem;
    overflow-y: auto;
}

.navigator.fixed {
    display: block;
    position: fixed;
    transform: translateX(0px);
    box-shadow: 1px 0 30px 0 rgba(0, 0, 0, 0.25);
    z-index: 99;
    overflow-y: auto;
}

.navigator .logo {
    padding: 1.5rem 1rem 0.5rem;
}

.navigator .logo img {
    height: 3.5rem;
}

.sidebar .copyright {
    padding: 8px 15px;
    margin-top: 1rem;
    border-radius: 5px;
    background: var(--light);
    color: var(--text);
}

.sidebar .copyright p {
    opacity: 0.6;
    font-size: 13px;
}

.sidebar .search,
.toolbar-left .search {
    position: relative;
    margin-top: 1rem;
}

.sidebar .search input,
.toolbar-left .search input {
    outline: 0;
    box-sizing: border-box;
    width: 100%;
    border: 0;
    box-shadow: none;
    font-family: inherit;
    background: #f5f5f6;
    border-radius: 2rem;
    margin: 0;
    display: block;
    padding: 15px 30px 15px 15px;
    color: var(--text);
}

.sidebar .search .submit,
.toolbar-left .search .submit {
    position: absolute;
    border: none;
    top: 0;
    right: 0;
    z-index: 2;
    transition-property: transform, opacity;
    width: 1rem;
    height: 1rem;
    outline: none;
    border-radius: 0 25px 25px 0;
    padding: 1rem 1.6rem;
    background-image: linear-gradient(to left, #008eff, #00dfff);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.toolbar-left .search {
    margin-top: 0;
    border-radius: 2rem;
}
.toolbar-left .search input {
    padding: 0.5rem 17rem 0.5rem 1rem;
}

.sidebar .columns {
    width: 285px;
    pointer-events: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
}

.navigator .columns {
    width: 250px;
    pointer-events: auto;
    height: 100%;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
}

.navigator .columns .page {
    flex: 1;
}

.navigator .column-link {
    color: var(--text);
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
    background-color: var(--card-bg);
}
.navigator .sub-category .column-link {
    margin-bottom: 0;
}
.navigator .column-link a {
    color: inherit;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.navigator .column-link a:hover {
    background: var(--background);
}

.navigator .column-icon {
    display: inline-block;
    margin-right: 10px;
    color: rgb(51, 154, 255);
}

.navigator .column-link .sub-category {
    display: none;
}
.navigator .column-link .sub-category li {
    border-top: 1px solid #efefef;
}
.navigator .column-link .sub-category li a {
    padding-left: 3rem;
}

.respond {
    padding: 15px;
    background: var(--light);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.comments-row {
    background: var(--light);
}

.comments form {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
}

.comments .notice,
.comments #response {
    font-size: 0.96rem;
    font-weight: bold;
    margin: 0.8rem 0.8rem 1.3rem 0;
    color: var(--text);
    line-height: 0;
}

.comments #response span {
    color: #888888;
    font-weight: normal;
    margin-left: 0.5rem;
    font-size: 0.8rem;
}

.comments #comment-form .option label {
    display: none;
}
.comments .textarea {
    padding: 0.25rem 0.5rem;
    margin: 0.75rem 0 0.5rem 0;
    min-width: 12rem;
    display: block;
    outline: none;
    font-size: 0.72rem;
    font-family: inherit;
    letter-spacing: 0.1rem;
    border-radius: 0.25rem;
    border: solid 1px var(--border);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.comments .option input {
    display: block;
    padding: 10px;
    margin-bottom: 1rem;
    width: auto;
    min-width: 240px;
    outline: none;
    font-size: 0.72rem;
    letter-spacing: 2px;
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
    border-radius: 5px;
    border: solid 1px var(--border);
}

.comments .option button {
    padding: 8px 15px;
    color: white;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    background-color: #1386ff;
    border: none;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.comments .option button:hover {
    opacity: 0.8;
}

.comments-notice {
    padding: 15px;
    background: var(--light);
    border-radius: 5px;
}

.comments-toolbar {
    position: relative;
}

.comments-toolbar .option {
    position: absolute;
    right: 0;
    top: 0;
}

.comments-toolbar .OwO-logo {
    border-radius: 0.25rem !important;
}

#comments .comment-list {
    padding: 0;
    margin: 0;
}

#comments .comment-list li {
    position: relative;
    padding: 20px 15px 15px 15px;
    list-style-type: none;
}

#comments .comment-list li + li {
    border-top: var(--border-dark) 1px solid;
}

#comments .comment-children {
    margin-left: 20px;
}

#comments .comment-children li {
    padding: 20px 0 0 0;
}

#comments .comment-reply {
    opacity: 0;
}

#comments .comment-list > li:hover > .comment-reply {
    opacity: 1;
}

#comments .comment-list li .comment-reply,
#comments .comment-list li .cancel-comment-reply {
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 6px 10px;
    color: white;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    background-color: #343a40;
    border: none;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#comments .comment-list li .comment-reply:hover,
#comments .comment-list li .cancel-comment-reply:hover {
    background-color: #4e5254;
}

#comments .comment-list li .comment-reply a,
#comments .comment-list li .cancel-comment-reply a {
    color: white;
}

#comments .comment-list li .comment-meta {
    margin-left: 2.25rem;
    padding-bottom: 0.25rem;
    margin-top: -1.5rem;
}

#comments .comment-children li .comment-meta {
    margin-left: 46px;
    margin-top: -14px;
}

#comments .comment-list li .comment-meta a {
    font-size: 0.65rem;
    color: #8f949e;
}

#comments .comment-list li .comment-content {
    word-wrap: break-word;
    word-break: break-all;
    font-size: 14px;
}

#comments .comment-list li .comment-content p {
    line-height: 1.8;
    letter-spacing: 1px;
}

#comments .comment-list li .comment-content img {
    line-height: 1.2;
    border-radius: 10px;
    max-width: 100%;
    max-height: 222px;
}

#comments .comment-list li .comment-author {
    display: flex;
}

#comments .comment-list li .comment-author > span > p {
    display: none;
}

#comments .comment-list li .comment-author span {
    position: relative;
    width: 40px;
    height: 40px;
}

#comments .comment-list li .comment-author span img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.avatar-by-friend:after,
.avatar-by-relation:after,
#comments .comment-list li.comment-by-author > .comment-author span:after {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    right: -5px;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAmVBMVEVHcEz/////////////////////////////////////////////////////////////////////////////////////uCD/////wTv/0nD//fn/9+b/uyr/8tf/89r/yFP/uiX/wkD/3JP/+u7/2Yj/yVf/14H/9d//vC3/xUn/5rD/1Hf/35r/6r7/zWH/0Gv/4aD/vjP/7cgz761DAAAAFnRSTlMAy2YKAzcb5vZcfPIRYPnsr9u3CU6PxtEgXAAAAg1JREFUSMedltmWqjAQRaOtQjuPtRFNCyJqtz3//8fdB0ErINrc8yQrFdeuStVJjClqNl9MJ6PhcDSZLuYz80D9wdhHyR8P+nfCn7o9Sup1nyrCW00PALtdpvF6HafLrQXAa7ZuxXcaAHYfiFKwtwCNTjm+7QGrpZS0XAFeuxj/7EO4i+SGol0I/nMhHkg2UqFNAjg72j7YQCoVWPAVVccDu5Y7WlvwLpm3GpAEcldBAo28uk0IN/JAmxCa2fl6sJOH2oF3PvMurKLHG6IVdI0xpt+D7LxeADi5KABbEZEl9PrGmAHYbHELwIez4RdIjiIiYmFgjBnDPlt8BSA8qvhPuGS4h7ExMx8uJT0z6YZ64ZphAP7MzK9EN5hOTlIW5maRpaSZ1royHCL1fwszdRAOAHyp2qsvWcLUTCCVAtNb9nVM0MCSwsSMIJYKpneAz+tqDCMzBN2nmikIgV/dszAsbnhXTG8Am+IGFylnivKfzrHHMCokLbIiB/8AeNVrKUwKZVVMqa6XKqtzcHl3kkRigdCdwy0s3NZQTF8A3+5IWJi7zaeYDkD44841+DOnvRUTl7m56tzeeoA003VuNNHAHdGzvvMNBWfIR7RkAjlTwRkuJlC2mYzpVGUzJSM7Mx2iKiMrWeUxjuM4/qm2ytpmXN/u618o9a+s+pdi/Wu3/sVe/+nwH4+Tvzx//gG7W6YbwRbnBgAAAABJRU5ErkJggg==);
}

.avatar-by-friend:after {
    filter: hue-rotate(60deg);
}

.avatar-by-relation:after {
    filter: hue-rotate(160deg);
}

#comments .comment-list li.comment-by-author > .comment-author span:after {
    filter: none;
}

#comments .comment-children .avatar-by-friend:after,
#comments .comment-children .avatar-by-relation:after,
#comments .comment-children li.comment-by-author .comment-author span:after {
    width: 15px;
    height: 15px;
}

#comments .comment-children li .comment-author span img {
    width: 32px;
    height: 32px;
}

#comments .comment-list li .comment-author cite {
    padding-left: 15px;
    font-weight: bold;
    font-style: normal;
    font-size: 0.8rem;
}

#comments .comment-list li .comment-author cite a {
    color: #444;
}

.comment-latest {
    margin: 0 15px 2rem 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    padding: 2px 15px;
    border: 1px solid var(--border);
}

.comment-latest .content {
    padding: 12px 0;
    display: flex;
    align-items: center;
    user-select: none;
}

.comment-latest .content + .content {
    border-top: 1px solid var(--border-dark);
}

.comment-latest .content > img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 5px;
    border-radius: 50%;
}

.comment-latest .content > b {
    flex-shrink: 0;
    margin-right: 5px;
}

.comment-latest .author {
    max-width: 25%;
    word-break: keep-all;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.comment-latest .text {
    font-size: 0.9rem;
    color: #324b64;
    overflow: hidden;
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.comment-latest .text:before {
    content: ":";
    margin-left: 2px;
    margin-right: 5px;
}

.comment-latest .created {
    margin-left: 5px;
    color: #c2cede;
    font-size: 0.8rem;
    text-align: right;
}

.error-page {
    padding: 15px;
    margin-top: 1rem;
    background: var(--light);
    border-radius: 4px;
}

.navigation {
    background: var(--light);
    display: flex;
    justify-content: center;
    /* margin-bottom: 1rem; */
    /* margin-top: 1rem; */
    flex-wrap: wrap;
}

.navigation .jump-page {
    display: flex;
    align-items: center;
    color: #222222;
    font-size: 0.7rem;
    height: fit-content;
}

.navigation .jump-page input {
    width: 3rem;
    height: 2rem;
    margin: 0 0.5rem;
    border: none;
    color: var(--main-color);
    background: #f7f7f7;
}
.navigation .jump-page button {
    background: var(--main-color);
    border: none;
    color: #fff;
    margin-left: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
}

.page-navigator {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font-size: 0.7rem;
}

.page-navigator li {
    padding: 0.1rem 0.7rem;
    list-style: none;
    background: #f7f7f7;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
}

.page-navigator li span {
    color: var(--main-color);
}

.page-navigator li:first-of-type {
    border-radius: 5px 0 0 5px;
}

.page-navigator li:last-of-type {
    border-radius: 0 5px 5px 0;
}

.page-navigator a {
    color: #828a92;
}

.page-navigator .current {
    background: var(--main-color);
}
.page-navigator .current a {
    color: #fff;
}

.friend-links {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.friend-links .friend {
    width: 50%;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    transition: all 0.25s;
    text-decoration: none;
}

.friend-links .card {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    box-shadow: 5px 5px 15px #e4e4e4;
}

.friend-links .friend:nth-child(2n-1) {
    padding-right: 0.5rem;
}

.friend-links .friend:nth-child(2n) {
    padding-left: 0.5rem;
}

.friend-links .friend:hover {
    cursor: pointer;
    text-decoration: none !important;
    transform: translateY(-5px);
}

.friend-links .card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.friend-links .card .master {
    padding-left: 10px;
}

.friend-links .card .name {
    font-size: 15px;
    padding-bottom: 5px;
    color: #444;
}

.friend-links .card .link {
    max-width: 300px;
    color: #8f949e;
}

.friend-links .card .master {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.friend-links .no-guys {
    padding: 30px 0;
    width: 100%;
    text-align: center;
    color: #8f949e;
    font-size: 20px;
}

.galleries {
    margin: 0.5rem -0.5% 1rem !important;
    border: 1px solid var(--border-dark);
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: space-between;
}
.images-list {
    justify-content: normal;
}
.images-list-box {
    position: relative;
}

.images-list-box .total-img {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 1rem;
}
.images-list-box .total-img .fa {
    margin: 0 0.3rem 0 0;
}
.images-list-box .total-img img {
    height: 1rem;
    vertical-align: bottom;
}

.galleries.gallery-1 {
    border-radius: 0.4rem;
}

.galleries.gallery-2 {
    border-radius: 0.4rem;
}

.galleries.gallery-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    border-radius: 0.4rem;
}

.galleries.gallery-4 {
    border-radius: 0.4rem;
}

.galleries .gallery {
    /* margin: .2rem !important; */
    overflow: hidden;
    position: relative;
}
.galleries .gallery:nth-child(3n) {
    margin-right: 0 !important;
}

/* .galleries .gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    object-fit: cover;
}

.galleries .gallery:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.markdown-body .galleries .gallery img {
    position: unset;
} */
.markdown-body .galleries.gallery-1 .gallery:before {
    padding-top: 0 !important;
}

.galleries.gallery-1 .gallery:before {
    padding-top: 50% !important;
}

.galleries.gallery-2 .gallery:before {
    padding-top: 75% !important;
}

.galleries.gallery-4 .gallery:before {
    padding-top: 65% !important;
}

.galleries.gallery-1 .gallery {
    width: 100%;
    height: 12.5rem;
}

.galleries.gallery-2 .gallery,
.galleries.gallery-4 .gallery {
    aspect-ratio: 1 / 1;
    width: 50% !important;
}

.galleries.gallery-3 .gallery {
    aspect-ratio: 1 / 1;
}

.galleries.gallery-3 .gallery:nth-child(2),
.galleries.gallery-3 .gallery:nth-child(5),
.galleries.gallery-3 .gallery:nth-child(8) {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
}

.galleries.gallery-3 .gallery:nth-child(4),
.galleries.gallery-3 .gallery:nth-child(5),
.galleries.gallery-3 .gallery:nth-child(6),
.galleries.gallery-3 .gallery:nth-child(7),
.galleries.gallery-3 .gallery:nth-child(8),
.galleries.gallery-3 .gallery:nth-child(9) {
    padding-top: 0.2rem;
}

@media screen and (max-width: 1190px) {
    body:before {
        display: none;
    }

    .kat {
        display: block;
    }

    .kat .middle {
        margin: auto;
    }

    .navigator {
        position: fixed;
        height: 100%;
        top: 2.5rem;
        left: 0;
        margin-right: 0;
        transform: translateX(-250px);
    }

    .sidebar {
        position: fixed;
        height: 100%;
        top: 0;
        right: 0;
        margin-left: 0;
        transform: translateX(260px);
    }

    .toolbar .menu {
        display: block;
    }
}

@media screen and (min-width: 992px) {
    .comment-latest {
        margin: 0;
        border: none;
        padding: 2px 18px 8px;
    }

    .navigation {
        background: none;
    }

    .comments {
        margin-top: 1rem;
        border-radius: 5px;
    }
    .article .extra {
        line-height: 0;
    }
    .article .extra .img {
        width: 1.2rem;
    }
}

@media screen and (max-width: 992px) {
    .article .permalink {
        padding: 1.1rem;
        align-items: baseline;
    }
    .article .permalink .right,
    .tab-nav {
        font-size: 1.5rem;
    }

    .article .permalink .fa-link {
        font-size: 1.5rem;
    }

    .article.home article {
        margin: 0;
        border-radius: 0;
    }

    .article .extra .fa {
        font-size: 1.5rem;
    }

    .article .extra {
        font-size: 0.8rem;
        line-height: 0.8rem;
    }

    .article .extra .avatar .img {
        width: 1.65rem;
        height: 1.65rem;
    }

    .header .banner {
        height: 145px;
    }

    .header .banner.have {
        height: 175px;
    }

    .images-list-box .total-img {
        font-size: 1.1rem;
    }

    .images-list-box .total-img .fa {
        margin: 0 0.2rem 0 0;
    }

    .header .avatar {
        width: 70px;
        height: 70px;
    }

    .header .author {
        margin-top: -45px;
    }

    .dynamic .describe {
        margin-top: 1rem;
    }

    .article .twitter {
        /*padding-left: 70px;*/
    }

    .article .related {
        margin-right: 1rem;
    }

    .twitter .avatar,
    .twitter .avatar img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .comments {
        border-top: var(--border-dark) 1px solid;
    }

    .mySwiper {
        height: 8rem;
    }

    .navigation {
        background: var(--light);
        display: flex;
        justify-content: center;
        /* margin-bottom: 1rem; */
        /* margin-top: 1rem; */
        flex-wrap: wrap;
    }

    .navigation .jump-page {
        display: flex;
        align-items: center;
        color: #222222;
        font-size: 0.7rem;
    }

    .navigation .jump-page input {
        width: 3rem;
        height: 2rem;
        margin: 0 0.5rem;
        border: none;
        color: var(--main-color);
    }
    .navigation .jump-page button {
        background: var(--main-color);
        border: none;
        color: #fff;
        margin-left: 0.5rem;
        padding: 0.5rem 0.75rem;
        border-radius: 0.5rem;
        font-size: 1rem;
    }

    .page-navigator {
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        font-size: 0.7rem;
    }

    .page-navigator li {
        padding: 0.1rem 0.7rem;
        list-style: none;
        /*background: #fff;*/
        margin-right: 0.5rem;
        display: flex;
        align-items: center;
    }

    .page-navigator li span {
        color: var(--main-color);
    }

    .page-navigator li:first-of-type {
        border-radius: 5px 0 0 5px;
    }

    .page-navigator li:last-of-type {
        border-radius: 0 5px 5px 0;
    }

    .page-navigator a {
        color: var(--main-color);
    }

    .page-navigator .current {
        background: var(--main-color);
    }
    .page-navigator .current a {
        color: #fff;
    }
    .article .permalink .right .title {
        align-items: baseline;
    }
    .article.home .extra {
        font-size: 1.1rem;
        line-height: 1;
    }

    .article.home .extra .img {
        width: 1.6rem;
        height: 1.6rem;
    }

    .article.home .extra .avatar .name {
        font-size: 1.1rem;
    }

    .article.home .extra .avatar {
        width: 8.5rem;
        display: flex;
        align-items: center;
        color: rgba(8, 8, 8, 0.6);
    }

    .article.home .extra .funcs {
        width: calc(100% - 8.5rem);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .article.home .extra .funcs > div {
        display: flex;
        align-items: center;
    }

    .article.home .extra .funcs.review {
        width: calc(100% - 8.5rem);
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .article.home .extra .funcs.review > div {
        display: flex;
        align-items: center;
        margin: 0 0 0 1rem;
        color: #ffffff;
        background-color: #4c88e6;
        padding: 0.4rem 0.9rem;
        border-radius: 0.2rem;
        font-size: 1rem;
    }

    .article.home .extra .funcs.review > div.dele {
        display: flex;
        align-items: center;
        margin: 0 0 0 1rem;
        color: #ffffff;
        background-color: #888888;
    }

    .category-box .category-info .total-posts {
        font-size: 0.8rem;
    }
    .category-box .category-info .total-posts img {
        width: 1rem;
        height: 1rem;
    }

    .tab-nav li {
        font-size: 1.5rem;
    }
}

/** markdown */
.markdown-body img {
    max-width: 100%;
    border-radius: 4px;
}

.markdown-body .octicon {
    display: inline-block;
    fill: currentColor;
    vertical-align: text-bottom;
}

.markdown-body .anchor {
    float: left;
    line-height: 1;
    margin-left: -20px;
    padding-right: 4px;
}

.markdown-body .anchor:focus {
    outline: none;
}

.markdown-body h1 .octicon-link,
.markdown-body h2 .octicon-link,
.markdown-body h3 .octicon-link,
.markdown-body h4 .octicon-link,
.markdown-body h5 .octicon-link,
.markdown-body h6 .octicon-link {
    color: #1b1f23;
    vertical-align: middle;
    visibility: hidden;
}

.markdown-body h1:hover .anchor,
.markdown-body h2:hover .anchor,
.markdown-body h3:hover .anchor,
.markdown-body h4:hover .anchor,
.markdown-body h5:hover .anchor,
.markdown-body h6:hover .anchor {
    text-decoration: none;
}

.markdown-body h1:hover .anchor .octicon-link,
.markdown-body h2:hover .anchor .octicon-link,
.markdown-body h3:hover .anchor .octicon-link,
.markdown-body h4:hover .anchor .octicon-link,
.markdown-body h5:hover .anchor .octicon-link,
.markdown-body h6:hover .anchor .octicon-link {
    visibility: visible;
}

.markdown-body {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: #535353;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Helvetica,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
}

.markdown-body .pl-c {
    color: #6a737d;
}

.markdown-body .pl-c1,
.markdown-body .pl-s .pl-v {
    color: #005cc5;
}

.markdown-body .pl-e,
.markdown-body .pl-en {
    color: #6f42c1;
}

.markdown-body .pl-s .pl-s1,
.markdown-body .pl-smi {
    color: var(--text);
}

.markdown-body .pl-ent {
    color: #22863a;
}

.markdown-body .pl-k {
    color: #d73a49;
}

.markdown-body .pl-pds,
.markdown-body .pl-s,
.markdown-body .pl-s .pl-pse .pl-s1,
.markdown-body .pl-sr,
.markdown-body .pl-sr .pl-cce,
.markdown-body .pl-sr .pl-sra,
.markdown-body .pl-sr .pl-sre {
    color: #032f62;
}

.markdown-body .pl-smw,
.markdown-body .pl-v {
    color: #e36209;
}

.markdown-body .pl-bu {
    color: #b31d28;
}

.markdown-body .pl-ii {
    background-color: #b31d28;
    color: #fafbfc;
}

.markdown-body .pl-c2 {
    background-color: #d73a49;
    color: #fafbfc;
}

.markdown-body .pl-c2:before {
    content: "^M";
}

.markdown-body .pl-sr .pl-cce {
    color: #22863a;
    font-weight: 700;
}

.markdown-body .pl-ml {
    color: #735c0f;
}

.markdown-body .pl-mh,
.markdown-body .pl-mh .pl-en,
.markdown-body .pl-ms {
    color: #005cc5;
    font-weight: 700;
}

.markdown-body .pl-mi {
    color: var(--text);
    font-style: italic;
}

.markdown-body .pl-mb {
    color: var(--text);
    font-weight: 700;
}

.markdown-body .pl-md {
    background-color: #ffeef0;
    color: #b31d28;
}

.markdown-body .pl-mi1 {
    background-color: #f0fff4;
    color: #22863a;
}

.markdown-body .pl-mc {
    background-color: #ffebda;
    color: #e36209;
}

.markdown-body .pl-mi2 {
    background-color: #005cc5;
    color: #f6f8fa;
}

.markdown-body .pl-mdr {
    color: #6f42c1;
    font-weight: 700;
}

.markdown-body .pl-ba {
    color: #586069;
}

.markdown-body .pl-sg {
    color: #959da5;
}

.markdown-body .pl-corl {
    color: #032f62;
    text-decoration: underline;
}

.markdown-body details {
    display: block;
}

.markdown-body summary {
    display: list-item;
}

.markdown-body a {
    background-color: transparent;
}

.markdown-body a:active,
.markdown-body a:hover {
    outline-width: 0;
}

.markdown-body strong {
    font-weight: bolder;
}

.markdown-body h1 {
    margin: 0.67em 0;
}

.markdown-body img {
    border-style: none;
}

.markdown-body code,
.markdown-body kbd,
.markdown-body pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

.markdown-body hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

.markdown-body input {
    font: inherit;
    margin: 0;
}

.markdown-body input {
    overflow: visible;
}

.markdown-body [type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

.markdown-body * {
    box-sizing: border-box;
}

.markdown-body input {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.markdown-body a {
    color: var(--target);
    text-decoration: none;
}

.markdown-body a:hover {
    text-decoration: underline;
}

.markdown-body strong {
    font-weight: 600;
}

.markdown-body hr {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dfe2e5;
    height: 0;
    margin: 15px 0;
    overflow: hidden;
}

.markdown-body hr:before {
    content: "";
    display: table;
}

.markdown-body hr:after {
    clear: both;
    content: "";
    display: table;
}

.markdown-body table {
    border-collapse: collapse;
    border-spacing: 0;
}

.markdown-body td,
.markdown-body th {
    padding: 0;
}

.markdown-body details summary {
    cursor: pointer;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    margin-bottom: 0;
    margin-top: 0;
}

.markdown-body h1,
.markdown-body h2 {
    font-weight: 600;
}

.markdown-body h3,
.markdown-body h4 {
    font-weight: 600;
}

.markdown-body h5,
.markdown-body h6 {
    font-weight: 600;
}

.markdown-body p {
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 0.75rem;
}

.markdown-body blockquote {
    margin: 0;
}

.markdown-body ol,
.markdown-body ul {
    margin-bottom: 0;
    margin-top: 0;
    padding-left: 0;
}

.markdown-body ol ol,
.markdown-body ul ol {
    list-style-type: lower-roman;
}

.markdown-body ol ol ol,
.markdown-body ol ul ol,
.markdown-body ul ol ol,
.markdown-body ul ul ol {
    list-style-type: lower-alpha;
}

.markdown-body dd {
    margin-left: 0;
}

.markdown-body code {
    color: #e96900;
}

.markdown-body pre code {
    color: #333;
}

.markdown-body code,
.markdown-body pre {
    font-family:
        SFMono-Regular,
        Consolas,
        Liberation Mono,
        Menlo,
        Courier,
        monospace;
    font-size: 12px;
}

.markdown-body pre {
    margin-bottom: 0;
    margin-top: 0;
}

.markdown-body input::-webkit-inner-spin-button,
.markdown-body input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.markdown-body .border {
    border: 1px solid #e1e4e8 !important;
}

.markdown-body .border-0 {
    border: 0 !important;
}

.markdown-body .border-bottom {
    border-bottom: 1px solid #e1e4e8 !important;
}

.markdown-body .rounded-1 {
    border-radius: 3px !important;
}

.markdown-body .bg-white {
    background-color: #fff !important;
}

.markdown-body .bg-gray-light {
    background-color: #fafbfc !important;
}

.markdown-body .text-gray-light {
    color: #6a737d !important;
}

.markdown-body .mb-0 {
    margin-bottom: 0 !important;
}

.markdown-body .my-2 {
    margin-bottom: 8px !important;
    margin-top: 8px !important;
}

.markdown-body .pl-0 {
    padding-left: 0 !important;
}

.markdown-body .py-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.markdown-body .pl-1 {
    padding-left: 4px !important;
}

.markdown-body .pl-2 {
    padding-left: 8px !important;
}

.markdown-body .py-2 {
    padding-bottom: 8px !important;
    padding-top: 8px !important;
}

.markdown-body .pl-3,
.markdown-body .px-3 {
    padding-left: 16px !important;
}

.markdown-body .px-3 {
    padding-right: 16px !important;
}

.markdown-body .pl-4 {
    padding-left: 24px !important;
}

.markdown-body .pl-5 {
    padding-left: 32px !important;
}

.markdown-body .pl-6 {
    padding-left: 40px !important;
}

.markdown-body .f6 {
    font-size: 12px !important;
}

.markdown-body .lh-condensed {
    line-height: 1.25 !important;
}

.markdown-body .text-bold {
    font-weight: 600 !important;
}

.markdown-body:before {
    content: "";
    display: table;
}

.markdown-body:after {
    clear: both;
    content: "";
    display: table;
}

.markdown-body > :first-child {
    margin-top: 0 !important;
}

.markdown-body > :last-child {
    margin-bottom: 0 !important;
}

.markdown-body a:not([href]) {
    color: inherit;
    text-decoration: none;
}

.markdown-body blockquote,
.markdown-body dl,
.markdown-body ol,
.markdown-body p,
.markdown-body pre,
.markdown-body table,
.markdown-body ul {
    margin-bottom: 16px;
    margin-top: 0;
}

.markdown-body hr {
    background-color: #e1e4e8;
    border: 0;
    height: 0.25em;
    margin: 24px 0;
    padding: 0;
}

.markdown-body blockquote {
    border-left: 0.25em solid #dfe2e5;
    color: #6a737d;
    padding: 0 1em;
}

.markdown-body blockquote > :first-child {
    margin-top: 0;
}

.markdown-body blockquote > :last-child {
    margin-bottom: 0;
}

.markdown-body kbd {
    background-color: #fafbfc;
    border: 1px solid #c6cbd1;
    border-bottom-color: #959da5;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 #959da5;
    color: #444d56;
    display: inline-block;
    font-size: 11px;
    line-height: 10px;
    padding: 3px 5px;
    vertical-align: middle;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 16px;
    margin-top: 24px;
}

.markdown-body h1,
.markdown-body h2 {
    border-bottom: 1px solid #eaecef;
    padding-bottom: 0.3em;
}

.markdown-body h6 {
    color: #6a737d;
}

.markdown-body ol,
.markdown-body ul {
    padding-left: 2em;
}

.markdown-body ol ol,
.markdown-body ol ul,
.markdown-body ul ol,
.markdown-body ul ul {
    margin-bottom: 0;
    margin-top: 0;
}

.markdown-body li {
    word-wrap: break-word;
}

.markdown-body li > p {
    margin-top: 16px;
}

.markdown-body li + li {
    margin-top: 0.25em;
}

.markdown-body dl {
    padding: 0;
}

.markdown-body dl dt {
    font-size: 1em;
    font-style: italic;
    font-weight: 600;
    margin-top: 16px;
    padding: 0;
}

.markdown-body dl dd {
    margin-bottom: 16px;
    padding: 0 16px;
}

.markdown-body table {
    display: block;
    overflow: auto;
    width: 100%;
}

.markdown-body table th {
    font-weight: 600;
}

.markdown-body table td,
.markdown-body table th {
    padding: 6px 12px;
    border: 1px solid #dfe2e5;
    word-wrap: break-word;
    word-break: break-all;
}

.markdown-body table tr {
    background-color: #fff;
    border-top: 1px solid #c6cbd1;
}

.markdown-body table tr:nth-child(2n) {
    background-color: #f6f8fa;
}

.markdown-body img {
    background-color: #fff;
    box-sizing: content-box;
    max-width: 100%;
    /*max-height: 60vh;*/
}

.markdown-body img[align="right"] {
    padding-left: 20px;
}

.markdown-body img[align="left"] {
    padding-right: 20px;
}

.markdown-body code {
    background-color: rgba(27, 31, 35, 0.05);
    border-radius: 3px;
    font-size: 85%;
    margin: 0;
    padding: 0.2em 0.4em;
}

.markdown-body pre {
    word-wrap: normal;
}

.markdown-body pre > code {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    padding: 0;
    white-space: pre;
    word-break: normal;
}

.markdown-body .highlight {
    margin-bottom: 16px;
}

.markdown-body .highlight pre {
    margin-bottom: 0;
    word-break: normal;
}

.markdown-body .highlight pre,
.markdown-body pre {
    background-color: #f6f8fa;
    border-radius: 3px;
    font-size: 85%;
    line-height: 1.45;
    overflow: auto;
    padding: 16px;
}

.markdown-body pre code {
    background-color: transparent;
    border: 0;
    display: inline;
    line-height: inherit;
    margin: 0;
    max-width: 100%;
    overflow: visible;
    padding: 0;
    word-wrap: normal;
}

.markdown-body .commit-tease-sha {
    color: #444d56;
    display: inline-block;
    font-family:
        SFMono-Regular,
        Consolas,
        Liberation Mono,
        Menlo,
        Courier,
        monospace;
    font-size: 90%;
}

.markdown-body .blob-wrapper {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    overflow-x: auto;
    overflow-y: hidden;
}

.markdown-body .blob-wrapper-embedded {
    max-height: 240px;
    overflow-y: auto;
}

.markdown-body .blob-num {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    color: rgba(27, 31, 35, 0.3);
    cursor: pointer;
    font-family:
        SFMono-Regular,
        Consolas,
        Liberation Mono,
        Menlo,
        Courier,
        monospace;
    font-size: 12px;
    line-height: 20px;
    min-width: 50px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: right;
    user-select: none;
    vertical-align: top;
    white-space: nowrap;
    width: 1%;
}

.markdown-body .blob-num:hover {
    color: rgba(27, 31, 35, 0.6);
}

.markdown-body .blob-num:before {
    content: attr(data-line-number);
}

.markdown-body .blob-code {
    line-height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    vertical-align: top;
}

.markdown-body .blob-code-inner {
    color: var(--text);
    font-family:
        SFMono-Regular,
        Consolas,
        Liberation Mono,
        Menlo,
        Courier,
        monospace;
    font-size: 12px;
    overflow: visible;
    white-space: pre;
    word-wrap: normal;
}

.markdown-body .pl-token.active,
.markdown-body .pl-token:hover {
    background: #ffea7f;
    cursor: pointer;
}

.markdown-body kbd {
    background-color: #fafbfc;
    border: 1px solid #d1d5da;
    border-bottom-color: #c6cbd1;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 #c6cbd1;
    color: #444d56;
    display: inline-block;
    font:
        11px SFMono-Regular,
        Consolas,
        Liberation Mono,
        Menlo,
        Courier,
        monospace;
    line-height: 10px;
    padding: 3px 5px;
    vertical-align: middle;
}

.markdown-body:checked + .radio-label {
    border-color: #0366d6;
    position: relative;
    z-index: 1;
}

.markdown-body .tab-size[data-tab-size="1"] {
    -moz-tab-size: 1;
    tab-size: 1;
}

.markdown-body .tab-size[data-tab-size="2"] {
    -moz-tab-size: 2;
    tab-size: 2;
}

.markdown-body .tab-size[data-tab-size="3"] {
    -moz-tab-size: 3;
    tab-size: 3;
}

.markdown-body .tab-size[data-tab-size="4"] {
    -moz-tab-size: 4;
    tab-size: 4;
}

.markdown-body .tab-size[data-tab-size="5"] {
    -moz-tab-size: 5;
    tab-size: 5;
}

.markdown-body .tab-size[data-tab-size="6"] {
    -moz-tab-size: 6;
    tab-size: 6;
}

.markdown-body .tab-size[data-tab-size="7"] {
    -moz-tab-size: 7;
    tab-size: 7;
}

.markdown-body .tab-size[data-tab-size="8"] {
    -moz-tab-size: 8;
    tab-size: 8;
}

.markdown-body .tab-size[data-tab-size="9"] {
    -moz-tab-size: 9;
    tab-size: 9;
}

.markdown-body .tab-size[data-tab-size="10"] {
    -moz-tab-size: 10;
    tab-size: 10;
}

.markdown-body .tab-size[data-tab-size="11"] {
    -moz-tab-size: 11;
    tab-size: 11;
}

.markdown-body .tab-size[data-tab-size="12"] {
    -moz-tab-size: 12;
    tab-size: 12;
}

.markdown-body .task-list-item {
    list-style-type: none;
}

.markdown-body .task-list-item + .task-list-item {
    margin-top: 3px;
}

.markdown-body .task-list-item input {
    margin: 0 0.2em 0.25em -1.6em;
    vertical-align: middle;
}

.markdown-body hr {
    border-bottom-color: #eee;
}

.markdown-body .pl-0 {
    padding-left: 0 !important;
}

.markdown-body .pl-1 {
    padding-left: 4px !important;
}

.markdown-body .pl-2 {
    padding-left: 8px !important;
}

.markdown-body .pl-3 {
    padding-left: 16px !important;
}

.markdown-body .pl-4 {
    padding-left: 24px !important;
}

.markdown-body .pl-5 {
    padding-left: 32px !important;
}

.markdown-body .pl-6 {
    padding-left: 40px !important;
}

.markdown-body .pl-7 {
    padding-left: 48px !important;
}

.markdown-body .pl-8 {
    padding-left: 64px !important;
}

.markdown-body .pl-9 {
    padding-left: 80px !important;
}

.markdown-body .pl-10 {
    padding-left: 96px !important;
}

.markdown-body .pl-11 {
    padding-left: 112px !important;
}

.markdown-body .pl-12 {
    padding-left: 128px !important;
}

.hljs {
    display: block;
    overflow-x: auto;
    padding: 0.5em;
    color: #333;
    background: #f8f8f8;
}

.hljs-comment,
.hljs-quote {
    color: #998;
    font-style: italic;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-subst {
    color: #333;
    font-weight: bold;
}

.hljs-number,
.hljs-literal,
.hljs-variable,
.hljs-template-variable,
.hljs-tag .hljs-attr {
    color: #008080;
}

.hljs-string,
.hljs-doctag {
    color: #d14;
}

.hljs-title,
.hljs-section,
.hljs-selector-id {
    color: #900;
    font-weight: bold;
}

.hljs-subst {
    font-weight: normal;
}

.hljs-type,
.hljs-class .hljs-title {
    color: #458;
    font-weight: bold;
}

.hljs-tag,
.hljs-name,
.hljs-attribute {
    color: #000080;
    font-weight: normal;
}

.hljs-regexp,
.hljs-link {
    color: #009926;
}

.hljs-symbol,
.hljs-bullet {
    color: #990073;
}

.hljs-built_in,
.hljs-builtin-name {
    color: #0086b3;
}

.hljs-meta {
    color: #999;
    font-weight: bold;
}

.hljs-deletion {
    background: #fdd;
}

.hljs-addition {
    background: #dfd;
}

.hljs-emphasis {
    font-style: italic;
}

.hljs-strong {
    font-weight: bold;
}
/** 弹窗广告 */
.adspop .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.adspop .popup-container .popup-content {
    max-width: 80vw;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.adspop .popup-container .popup-close {
    width: 42px;
    height: 42px;
    margin-bottom: 30px;
}
.adspop .popup-container .popup-close img {
    width: 100%;
    height: 100%;
}
.adspop .popup-container .popup-picture {
    width: 100%;
    height: 100%;
    text-align: center;
}
.adspop .popup-container .popup-picture img {
    max-width: 50vw;
    max-height: 70vh;
}
@media screen and (max-width: 768px) {
    .adspop .popup-container .popup-picture img {
        max-width: 80vw;
        width: 100%;
    }
}

.content_after {
    padding: 0 1rem;
}
.content_after .content-tabs {
    border: solid 1px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding: 0.8rem;
}
.content_after .content-tabs .content-tabs-head {
    line-height: 1.9rem;
    cursor: pointer;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
body.mobile .content_after .content-tabs .content-tabs-head,
body.macOS .content_after .content-tabs .content-tabs-head {
    overflow-x: auto;
}
.content_after .content-tabs .content-tabs-head::-webkit-scrollbar {
    display: none;
}
.content_after .content-tabs .content-tabs-head .content-tab-title {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 2.375rem;
    color: #888;
    background-color: #f0f0f0;
    -webkit-transition: 0.3s ease all;
    -moz-transition: 0.3s ease all;
    -ms-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
}
.content_after .content-tabs .content-tabs-head .content-tab-title:first-child {
    border-top-left-radius: 0.25rem;
    border-left-width: 0.0625rem;
}
.content_after .content-tabs .content-tabs-head .content-tab-title:last-child {
    border-top-right-radius: 0.25rem;
}
.content_after .content-tabs .content-tabs-head .content-tab-title.selected {
    border-bottom-color: #fff;
    background-color: #fff;
    color: #080808;
    font-size: 0.96rem;
    line-height: 1.9rem;
}
.content_after .content-tabs .content-tabs-head .content-tab-title:hover {
    color: #333;
    background-color: #fff;
}
body.theme-dark .content_after .content-tabs .content-tabs-head .content-tab-title {
    border-color: #403e3e;
    background-color: #343232;
    color: #aaa;
}
body.theme-dark .content_after .content-tabs .content-tabs-head .content-tab-title.selected {
    color: #fff;
    border-bottom-color: #2c2a2a;
    background-color: #2c2a2a;
}
body.theme-dark .content_after .content-tabs .content-tabs-head .content-tab-title:hover {
    color: #fff;
    background-color: #2c2a2a;
}
body.theme-dark.dark-mode .content_after .content-tabs .content-tabs-head .content-tab-title {
    border-color: #5e5c5c;
    background-color: #403e3e;
    color: #ccc;
}
body.theme-dark.dark-mode .content_after .content-tabs .content-tabs-head .content-tab-title.selected {
    color: #fff;
    border-bottom-color: #2c2a2a;
    background-color: #2c2a2a;
}
body.theme-dark.dark-mode .content_after .content-tabs .content-tabs-head .content-tab-title:hover {
    color: #fff;
    background-color: #2c2a2a;
}
body.theme-sunset .content_after .content-tabs .content-tabs-head .content-tab-title {
    border-color: #d6d0c2;
    background-color: #e7e0d3;
}
body.theme-sunset .content_after .content-tabs .content-tabs-head .content-tab-title.selected {
    border-bottom-color: #f8f1e4;
    background-color: #f8f1e4;
}
body.theme-sunset .content_after .content-tabs .content-tabs-head .content-tab-title:hover {
    background-color: #f8f1e4;
}
.content_after .content-tabs .content-tabs-body {
    color: #535353;
    font-size: 0.8rem;
}
body.theme-dark .content_after .content-tabs .content-tabs-body {
    border-color: #403e3e;
}
body.theme-dark.dark-mode .content_after .content-tabs .content-tabs-body {
}
body.theme-sunset .content_after .content-tabs .content-tabs-body {
    border-color: #d6d0c2;
}
.content_after .content-tabs .content-tabs-body .content-tab-content {
}
.content_after .content-tabs .content-tabs-body .content-tab-content.selected {
    -webkit-touch-callout: auto;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
    display: block;
    line-height: 1rem;
}
.content_after .content-tabs .content-tabs-body .content-tab-content > *:first-child {
    margin-top: 0;
}
.content_after .content-tabs .content-tabs-body .content-tab-content > *:last-child,
.content_after .content-tabs .content-tabs-body .content-tab-content > .table-responsive:last-child table {
    margin-bottom: 0;
}
.flash {
    font-weight: bold;
    font-size: calc(10px + 4vh);
    line-height: calc(10px + 6.6vh);
    font-family: "Sacramento", cursive;
    text-align: center;
    animation: blink 1s infinite;
    -webkit-animation: blink 1s infinite;
    margin: 0.8rem 0;
    background: linear-gradient(to right, #00dfff, #008eff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bling {
    text-align: center;
    margin: 2rem 0;
}
.bling1 {
    margin: 0;
    padding: 0;
    color: white;
    display: inline-block;
    font-size: 2.3rem;
    text-shadow:
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px #e60073,
        0 0 40px #e60073,
        0 0 50px #e60073,
        0 0 60px #e60073,
        0 0 70px #e60073;
}
.txt-apps-box {
    padding: 1rem;
    background: #fff;
}

.txt-apps {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    justify-content: flex-start;
}

.txt-apps a {
    text-decoration: none;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    vertical-align: top;
    white-space: nowrap;
    margin-left: 0;
    width: calc(25% - 0.6rem);
    margin-right: 0.75rem;
    color: #2984fc !important;
    border: solid 1px rgba(19, 134, 255, 0.2);
    border-radius: 2rem;
    padding: 0.4rem 0.2rem;
    font-size: 0.8rem;
}
.txt-apps a:nth-child(4n) {
    margin-right: 0;
}

.bottom-apps-box {
    padding: 0.4rem 0.8rem;
    background: #fff;
    border-radius: 0.5rem;
    margin-bottom: 0.8rem;
}
.bottom-apps-box .app-title {
    color: #080808;
    font-size: 0.96rem;
    margin: 0.4rem 0;
    font-weight: bold;
}
.article-bottom-apps {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
}

.article-bottom-apps a {
    /* width: calc((100% - 90px) / 10); */
    width: 100%;
    text-align: center;
    text-decoration: none;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-bottom-apps .btn-app .img {
    width: 2.57rem;
    height: 2.57rem;
    padding: 0.4rem;
    border-radius: 0.6rem;
    overflow: hidden;
}
.line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin-top: 0.6rem;
    margin-bottom: 0.8rem;
}

.article-bottom-apps .btn-app span {
    color: #333;
    font-size: 0.66rem;
    display: block;
    width: 100%;
    overflow: hidden;
    /* text-overflow: ellipsis; */
}

.horizontal-banner a {
    display: block;
    padding-bottom: 12%;
    position: relative;
}

.horizontal-banner a img {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: contain;
    width: 100%;
    margin-bottom: 0.2rem;
}
.category-box {
    display: flex;
    background: #fff;
    padding: 0.5rem 1rem;
    align-items: center;
}
.category-box .category-info {
    display: flex;
    flex-direction: column;
    height: 4rem;
    justify-content: space-between;
}
.category-box .category-info h1 {
    margin: 0;
}
.category-box .category-info .name {
    color: #080808;
    font-size: 0.9rem;
}
.category-box .category-info .total-posts {
    border-radius: 1rem;
    background-color: rgba(19, 134, 255, 0.1);
    color: #1386ff;
    font-size: 0.675rem;
    padding: 0.2rem 0.5rem;
}
.category-box .category-info .total-posts img {
    width: 0.8rem;
    height: 0.8rem;
    vertical-align: text-bottom;
}
.category-box .small-thumb {
    width: 4rem;
    height: 4rem;
    margin-right: 0.5rem;
    border-radius: 0.3rem;
    object-fit: cover;
}
.tab-nav li.active {
    color: var(--main-color);
}

.tab-nav li.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main-color);
    position: absolute;
    bottom: 0.5rem;
    left: 0;
}
#archives-tags .tags-box {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    justify-content: flex-start;
    position: relative;
}

#archives-tags .tags-box .more {
    position: absolute;
    right: 0;
    top: 1.25rem;
}

#archives-tags a.itags {
    word-break: break-all;
    padding-right: 0.5rem;
}

#archives-content .archive-title .brick a {
    word-break: break-all;
}

.navigation {
    padding: 1.15rem 0;
}

.search-result {
    padding: 0 1rem;
    font-size: 1.5rem;
    font-weight: normal;
}

#archives-title {
    text-align: center;
}

/* desktop */
@media (min-width: 768px) {
    .search-result {
        padding: 0 1rem;
        font-size: 0.9rem;
        font-weight: normal;
    }
}

.search-result span {
    color: var(--main-color);
}
@media screen and (max-width: 578px) {
    .friend-links .friend {
        width: 100%;
        padding: 0 !important;
    }
    .toolbar-left {
        width: 90%;
    }
    .toolbar-left .search input {
        padding: 0.5rem 1.75rem 0.5rem 1rem;
    }
    .navigation {
        flex-wrap: wrap;
        /*background:  var(--dark);*/
    }
    .page-navigator li {
        padding: 0.5rem 0.8rem;
        font-size: 1.1rem;
    }
    .article-bottom-apps a {
        width: calc((100% - 40px) / 5);
    }
    .article-bottom-apps .btn-app img {
    }
    .txt-apps a {
        padding: 0.3rem 0.2rem;
        font-size: 0.9rem;
    }
    .category-box .category-info {
        height: 5.8rem;
    }
    .category-box .category-info .name {
        font-size: 1.5rem;
    }
    .category-box .category-info .total-posts {
        font-size: 1.2rem;
        padding: 0.3rem 1rem;
    }
    .category-box .category-info .total-posts img {
        width: 1.4rem;
        height: 1.4rem;
        vertical-align: text-bottom;
    }
    .category-box .small-thumb {
        width: 5.9rem;
        height: 5.9rem;
        margin-right: 0.8rem;
    }
    #archives-title {
        font-size: 1.8rem;
    }
    #archives-tags .tags-box .itags {
        font-size: 1.4rem;
        line-height: 1.8rem;
    }
    .page-navigator a,
    .navigation .jump-page {
        font-size: 1.3rem;
    }
    .page-navigator {
        padding-bottom: 1.3rem;
    }
    .navigation .jump-page button {
        font-size: 1.3rem !important;
    }
}
@media screen and (max-width: 749px) {
    #archives-tags,
    #archives-content {
        padding: 0 1.45rem;
    }
    #archives-content {
        padding-bottom: 1.45rem;
    }
    #archives-title {
        font-size: 2rem;
    }
    .tags-box h1,
    #archives-tags .tags-box h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    #archives-content .archive-title .archives h3 {
        font-size: 1.8rem;
    }
    .tags-box a,
    #archives-tags a.itags {
        font-size: 1.45rem;
    }
    #archives-tags,
    #archives-content .archive-title {
        line-height: 1.75rem;
    }
    .navigation .jump-page {
        font-size: 1.2rem;
    }
    .page-navigator li {
        font-size: 1.3rem;
    }
    .page-navigator {
        padding-bottom: 1rem;
    }
}

@media (min-width: 750px) and (max-width: 960px) {
    #archives-tags,
    #archives-content {
        padding: 0 1.35rem;
    }
    #archives-content {
        padding-bottom: 1.35rem;
    }
    #archives-title {
        font-size: 1.35rem;
    }
    .tags-box h1,
    #archives-tags .tags-box h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    #archives-content .archive-title .archives h3 {
        font-size: 1rem;
    }
    .tags-box a,
    #archives-tags a.itags {
        font-size: 0.8rem;
    }
    #archives-tags,
    #archives-content .archive-title {
        line-height: 0.8rem;
    }
    .navigation .jump-page,
    .navigation .jump-page button {
        font-size: 0.8rem;
    }
    .page-navigator li {
        font-size: 0.9rem;
    }
    #archives-content .archive-title .brick a {
        font-size: 0.8rem;
    }
}

@media (min-width: 960px) and (max-width: 1200px) {
    #archives-title {
        font-size: 1.4rem;
    }

    #archives-tags .tags-box .itags {
        font-size: 1rem;
        line-height: 1.1rem;
        word-break: break-all;
    }

    .navigation {
        padding: 1rem 0;
        margin-top: 1rem;
    }

    .page-navigator {
        font-size: 0.9rem;
        padding-bottom: 1rem;
    }
    .navigation .jump-page,
    .navigation .jump-page button {
        font-size: 0.8rem;
    }
    .navigation .jump-page button {
        padding: 0.3rem 0.55rem;
    }

    .main-container {
        width: 100%;
    }

    .main-container .tags-list-container {
        width: 100%;
    }
    #archives-content .archive-title .brick a,
    #archives-tags a.itags {
        font-size: 1rem;
    }
    #archives-content .archive-title {
        line-height: 1.3rem;
    }
    #archives-tags {
        line-height: 1.3rem;
    }
}

@media screen and (min-width: 1200px) {
    #archives-tags,
    #archives-content {
        padding: 0 0.8rem;
    }
    #archives-content {
        padding-bottom: 0.8rem;
    }
    #archives-title {
        font-size: 1.1rem;
    }
    .tags-box h1,
    #archives-tags .tags-box h3,
    #archives-content .archive-title .archives h3 {
        font-size: 1rem;
    }
    .tags-box a,
    #archives-tags a.itags {
        font-size: 0.8rem;
    }
    #archives-tags,
    #archives-content .archive-title {
        line-height: 0.8rem;
    }
    #archives-content .archive-title .brick a {
        font-size: 0.8rem;
    }
    .page-navigator {
        font-size: 0.8rem;
        padding-bottom: 0.8rem;
    }
    .page-navigator li {
        padding: 0.5rem 0.75rem;
    }
}
