@charset "utf-8";
@import url("https://fontsapi.zeoseven.com/69/main/result.css");
:root {
	--font-family: 'Noto Sans CJK';
	--bg-light: #ffffff;
	--bg-light-muted: #f8f9fa;
	--bg-light-hover: #f2f2f2;
	--bg-dark: #1a1a1a;
	--text-primary: #2d2d2d;
	--text-secondary: #666;
    --text-tertiary: #999;
	--text-muted: #b3b3b3;
	--text-inverse: #ffffff;
	--border-primary: #e0e0e0;
	--border-secondary: #f0f0f0;
	--font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.75rem;
    --line-height-tight: 1.3;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.7;
	--container-max-width: 800px;
    --header-height: 64px;
    --border-radius: 6px;

    /* 表单和按钮的常规样式 */
    --inputBgColor: #ffffff;
    --inputBorderColor: #cccccc;
    --inputTextColor: #333333;
    --buttonBgColor: #cccccc;
    --buttonTextColor: #ffffff;
    --buttonBorderColor: #cccccc;
    --selectBgColor: #ffffff;
    --selectBorderColor: #cccccc;
    --selectTextColor: #333333;
    --dividerColor: #e0e0e0;
    --borderColor: #00000019;
}

*, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0
}

body {
	background-color: var(--bg-light-muted);
	margin: 0;
	padding: 0;
	font-size: 1rem;
	color: var(--text-primary);
	font-family: var(--font-family);
	overflow-x: hidden;
	font-weight: normal
}

a {
	text-decoration: none;
	color: inherit
}

img {
	display: block
}

#container {
	max-width: var(--container-max-width);
	width: 100%;
	background-color: var(--bg-light);
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	min-height: calc(100vh - 7.5rem);
	margin: 3.75rem auto;
	transition: all .3s ease;
	display: flex;
	flex-direction: column
}

/* #header头部开始 */
#header {
	position: relative;
	border-bottom: thin dashed var(--border-secondary)
}

.category-nav {
    margin: 0 auto;
    padding: 1.875rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: thin dashed var(--border-secondary)
}

.logo-area {
	display: flex;
    align-items: center;
	flex-shrink: 0
}

.site-logo {
	height: 2.25rem;
	width: auto;
	display: block
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem
}

.top-nav .nav-link {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color .3s ease;
	background: 0 0;
	border: none;
	cursor: pointer;
	padding: 0;
	position: relative;
	display: inline-block
}

.top-nav .nav-link:hover {
	color: var(--bg-dark)
}

.top-nav .nav-link.active {
	color: var(--bg-dark)
}

.top-nav .nav-link::before,
.top-nav .nav-link::after {
	content: "";
	position: absolute;
	left: -7px;
	right: -7px;
	top: 0px;
	bottom: 0px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease
}

.top-nav .nav-link.active::before,
.top-nav .nav-link.active::after {
	opacity: 1
}

.top-nav .nav-link.active::before {
	background:
		linear-gradient(#9f9f9f, #9f9f9f) 0 0/5px 1px no-repeat,
		linear-gradient(#9f9f9f, #9f9f9f) 0 0/1px 5px no-repeat,
		linear-gradient(#9f9f9f, #9f9f9f) 100% 0/5px 1px no-repeat,
		linear-gradient(#9f9f9f, #9f9f9f) 100% 0/1px 5px no-repeat
}

.top-nav .nav-link.active::after {
	background:
		linear-gradient(#9f9f9f, #9f9f9f) 0 100%/5px 1px no-repeat,
		linear-gradient(#9f9f9f, #9f9f9f) 0 100%/1px 5px no-repeat,
		linear-gradient(#9f9f9f, #9f9f9f) 100% 100%/5px 1px no-repeat,
		linear-gradient(#9f9f9f, #9f9f9f) 100% 100%/1px 5px no-repeat
}

.top-nav .more-btn.active::after {
	display: none
}

.breadcrumb-nav {
    width: 100%;
	padding: 0 1.25rem;
    text-align: end;
    background: var(--bg-light-muted);
    transition: .3s;
}
.breadcrumb-nav .breadcrumb-content {
	margin: 0;
    padding: .5rem 0;
	line-height: 1.8;
    height: 47px;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	align-items: center;
	-webkit-overflow-scrolling: touch
}

.breadcrumb-left {
    font-variant-caps: all-small-caps;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem
}
.breadcrumb-date {
    color: var(--text-tertiary);
    font-weight: 400
}
.breadcrumb-separator {
    color: #ddd
}
.breadcrumb-type {
    color: var(--text-secondary);
    font-weight: 500
}

.breadcrumb-title {
    color: var(--text-primary);
    font-weight: 400;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.breadcrumb-title.css-typewriter {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-right: 6px;
    line-height: 1.2;
}

#header #sou_none,
#header #search_bar {
    display: none;
}

#header .search_input {
    width: 100%;
    padding: 0 1.4rem;
	background: var(--bg-light);
    border: none;
    outline: none;
	color: #777;
    height: 3.062rem;
}
#header #search_bar {
	border-top: thin dashed var(--border-secondary)
}

.search_btn {
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: .25rem 0;
    color: var(--text-secondary);
    font-size: .875rem;
    transition: color .3s ease
}
.search_btn i {
    display: block
}

/* #header头部结束 */

/* #content章循环列表开始 */
#content {
    padding: 1.25rem
}

.post-item {
    margin-bottom: .9375rem;
    padding-bottom: .9375rem;
    border-bottom:  thin dashed var(--border-secondary);
}

.page-title, .post-title {
    font-size: 1.125rem;
    font-weight: 500;
	margin-top: 0;
    margin-bottom: .625rem;
    line-height: 1.4
}

.post-title a{
	border-bottom: thin dashed var(--border-secondary);
}

.post-title a:hover {
    color: var(--text-primary);
	border-bottom-color: var(--text-primary);
}

.post-excerpt {
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: .625rem;
    font-size: .85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 3)
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta {
    color: var(--text-tertiary);
    font-size: .75rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.post-meta .meta-separator {
    color: #ddd;
    margin: 0 6px;
}

.post-time,
.post-views,
.post-category a {
    color: var(--text-tertiary);
}

.post-footer .post-meta {
    flex: 1;
    margin-bottom: 0;
}

.read-more {
    font-size: .75rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: .19rem .625rem;
    border: thin dashed var(--border-primary);
    display: inline-block;
    transition: .3s;
}

.read-more:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.page-content, .post-content, article {
    overflow-x: auto;
}

/* 文章内容 */
#article-info {
	transition: all .3s ease
}

.article-info-title {
	transition: color .3s ease
}

#article-info {
	background-color: var(--bg-light);
	padding: 1.25rem;
	position: relative;
	min-height: 7.5rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: thin dashed var(--border-secondary)
}

#article-info>* {
	position: relative;
	z-index: 1
}

.article-info-content {
	max-width: 100%
}

.article-info-title {
	font-size: 1.625rem;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: .9375rem;
	line-height: 1.4;
	word-wrap: break-word
}

.article-info-title {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: -.01em
}

.article-info-meta {
	color: var(--text-tertiary);
	font-size: .75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	transition: opacity .3s ease
}

.info-author,
.info-comments,
.info-time,
.info-views,
.post-category {
    color: var(--text-tertiary);
    font-weight: 400;
}

/* 文章内容 */
.post-content {
	line-height: 1.8;
	word-wrap: break-word;
	font-size: 14px;
	letter-spacing: 0.013rem;
	text-align: justify;
	color: #404040;
}

.post-content address,.post-content caption,.post-content cite,.post-content code,.post-content dfn,.post-content th {
	font-style: normal;
}

.post-content caption,.post-content th {
	text-align: left;
}

.post-content q:after,.post-content q:before {
	content: '';
}

.post-content code,.post-content kbd,.post-content pre,.post-content pre tt {
	font-family: Consolas,Courier,'Courier New',monospace;
}

.post-content figcaption {
	font-size: 80%;
	color: rgba(0,0,0,0.54);
	margin-top: 10px;
}

.post-content dl,.post-content figure,.post-content form,.post-content hr,.post-content ol,.post-content p,.post-content pre,.post-content table,.post-content ul {
	margin: 0 0 .652rem 0;
}

.post-content figure {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 10vh;
    overflow: hidden;
}

.post-content figure {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    border: none;
    padding: 0.25rem;
}

.post-content .blured-placeholder,
.post-content .remove-after {
	display: none
}

.post-content img {
    margin-top: 0;
    height: auto;
    border-radius: 7px;
    text-align: center;
    max-width: 100%;
    max-height: 500px;
    display: block;
    margin-bottom: .625;
	transition: border-color .3s ease, opacity .3s ease
}

.post-content a {
	position: relative;
	overflow: hidden;
	color: #F55852;
	text-decoration: none;
	vertical-align: top;
	outline: 0;
	border-bottom: .0625rem dashed #EEE;
}

.post-content a:before {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #F55852;
	content: "";
	-webkit-transition: width .3s ease;
	transition: width .3s ease;
}

.post-content a:hover {
	border-bottom: 0 dashed #EEE;
}

.post-content a:hover:before {
	right: auto;
	left: 0;
	width: 100%;
}

.post-content blockquote {
	background: #f3f5f7;
	border-left: 3px solid #dde6e9;
	margin: 1.5em 10px;
	padding: 13px 45px;
	quotes: "\201C" "\201D" "\2018" "\2019";
	font-size: 1em;
}

.post-content blockquote p {
	margin: 0;
}

.post-content mark {
	padding: 2px;
	margin: 0 5px;
	background: #fffdd1;
	border-bottom: 1px solid #ffedce;
}

.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6 {
	margin-top: 1.2em;
	margin-bottom: 0.6em;
	font-family: inherit;
	line-height: 1.35;
	color: inherit;
}

.post-content h1 {
	font-size: 2em;
}

.post-content h2 {
	font-size: 1.8em;
}

.post-content h3 {
	font-size: 1.6em;
}

.post-content h4 {
	font-size: 1.4em;
}

.post-content h5 {
	font-size: 1.2em;
}

.post-content h6 {
	font-size: 1.1em;
}

.post-content code {
	padding: 2px;
	margin: 0 4px;
	word-wrap: break-word;
	background: #eee;
	border-radius: 3px;
	font: 14px/26px courier new;
}

.post-content pre code {
	padding: 0;
	font-size: inherit;
	line-height: 1.7;
	color: inherit;
	background-color: transparent;
	border-radius: 0;
}

.post-content ins {
	text-decoration: none;
	border-bottom: 1px solid;
}

.post-content u {
	text-decoration: none;
	border-bottom: 1px solid;
}

.post-content del {
	text-decoration: line-through;
}

.post-content hr {
	display: block;
	border: 0;
	margin: 2.24em auto 2.86em;
}

.post-content hr:after {
	color: #999;
	font-size: 1.1em;
	display: block;
	content: "~ ~ ~ ~";
	text-align: center;
}

.post-content pre {
	padding: 12px 16px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 2px;
}

.post-content ul {
	padding-left: 2em;
}

.post-content ol {
	padding-left: 2em;
	list-style: decimal;
}

.post-content li ol,.post-content li ul {
	margin: 0.8em 0;
}

.post-content li ul {
	list-style-type: circle;
}

.post-content .task-list-item {
	position: relative;
}

.post-content table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 1.5em;
	font-size: 0.96em;
	box-sizing: border-box;
	border-width: 1;
}

.post-content th,.post-content td {
	text-align: left;
	padding: 8px;
	border: 1px solid #efefef;
}

.post-content tr:nth-child(even) {
	background-color: #F7FAFC;
}

.post-content .footnotes {
	font-size: 80%;
	line-height: 1.32;
	opacity: 0.96;
}

.post-content .footnotes:before {
	content: "";
	display: block;
	border-top: 4px solid rgba(0,0,0,0.1);
	width: 50%;
	max-width: 100px;
	margin: 40px 0 20px;
}

.post-content .img-alt {
	text-align: center;
	display: block;
	margin: 0.625rem 0;
	font-size: 0.875rem;
	color: #777;
}

.post-content .photos figure {
	padding: 0 5px;
	flex: 1;
}

.post-content .photos a {
	border-bottom: none;
}

.post-content .photos a:before {
	display: none;
}

.post-content .photos {
	overflow: hidden;
	margin: 0 auto;
	margin-left: -0.5em;
	margin-right: -0.5em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-transition: .2s cubic-bezier(.25,.46,.45,.94) all;
	transition: .2s cubic-bezier(.25,.46,.45,.94) all;
}

.post-content .photos figure {
	padding: 0 5px;
	flex: 1;
}

.post-content .biaoqing {
	display: inline;
	margin: 0;
	width: auto;
}

.post-content .biaoqingg a {
	overflow: hidden;
	text-decoration: none;
	vertical-align: bottom;
	outline: 0;
	border-bottom: none;
}

.post-content .biaoqingg a:before {
	display: none;
}

.post-content .biaoqing.quyin {
	margin-bottom: -0.125rem;
	min-height: 3.5rem;
	height: 1em;
}

.post-content .biaoqing.alu {
	height: 33px;
	margin-bottom: -0.3125rem;
}

.post-content .biaoqing.paopao {
	width: 30px;
	height: 30px;
	margin-bottom: -0.25rem;
}

.post-copyright {
	margin-block: 1rem;
    background: var(--bg-light-hover);
    padding: 0.25rem;
    color: var(--text-tertiary);
    text-align: left;
    word-break: break-all
}

.post-copyright p {
    font-size: 12px;
    color: var(--text-muted);
}

.post-tags {
    margin-block: 1rem;
    font-size: 12px;
    color: var(--text-tertiary);
    display: flex;
    gap: 1rem;
    align-items: center;
}
.post-tags a {
	transition:.3s;
}


.mixtapeEmbed {
	padding: 12px 12px 12px 28px;
	color: rgba(0,0,0,0.5);
	margin: 10px 0px 30px;
	background: #f7f7f7;
	display: flex;
	align-items: center;
	border-radius: 5px;
}

.mixtapeEmbed a:before {
	display: none;
}

.mixtapeEmbed a {
	border-bottom: none;
}

.mixtapeEmbed-title {
	font-size: 20px;
	color: rgba(0,0,0,0.8);
	font-weight: 900;
	padding-bottom: 14px;
	display: block;
	line-height: 1;
}

.mixtapeEmbed-text {
	font-size: 14px;
	line-height: 1.6;
	font-style: normal !important;
	text-align: justify;
	color: #7b7b7b;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.mixtapeImage {
	width: 120px;
	height: 120px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	flex: 0 0 auto;
	margin-left: 20px;
	border-radius: 5px;
}

.commentn {
	text-align: center;
	font-size: 18px;
}

.links {
	margin-top: 20px;
}

.links_list {
	float: left;
	width: 50%;
	padding: 20px;
}

.links_box {
	border: solid 2px rgba(0,0,0,0.06);
	padding: 15px;
}

.links_box a {
	color: #555;
}

.links_box a:before {
	display: none;
}

.links_img {
	width: 50px;
	height: 50px;
	margin: 0 !important;
	padding-top: 0 !important;
	margin-right: 10px !important;
	border: dashed 2px #d2d2d2;
	float: left;
}

.links_qm {
	font-size: 12px;
	color: #c2c6cc;
	margin-top: 4px;
}


/* #footer尾页开始 */
.footer-main {
    max-width: var(--container-max-width);
    text-align: right;
    width: 100%;
	font-size: .75rem;
	color: var(--text-secondary);
    border-top: thin dashed var(--border-secondary);
	font-weight: 500
}

.footer-content {
	padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem
}

.footer-main .beian {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	justify-content: flex-end
}
.w-3 {
    width: .75rem;
}
.h-3 {
    height: .75rem;
}
.footer-main a{
	border-bottom: thin dashed var(--border-secondary);
}

.footer-main a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* 尾页结束 */


/* 评论信息开始 */
.section-divider {
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
    position: relative;
    z-index: 1;
    margin-bottom: 1.25rem;
}

.section-divider .divider-pattern {
    height: 6px;
    width: 100%;
    background: repeating-linear-gradient(-45deg,var(--border-secondary),var(--border-secondary) 1px,transparent 1px,transparent 6px);
    opacity: .6
}

.post-main {
    padding: 0 1.25rem 1.25rem;
    max-width: 56rem;
    margin: 0 auto;
}

.comments-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0;
}

#comments {
    position: relative;
    width: 100%;
    min-height: 200px;
    font-family: var(--font-sans);
    color: var(--at-color-font);
    word-wrap: break-word;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.comment-box-wrapper {
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.comment-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    overflow: hidden;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.comment-avatar > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    visibility: visible;
}

#comment-form {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

#comment-form > .comment-user {
    padding: 0;
    margin-block-end: 0.5rem;
    order: 2;
	display: flex
}

#comment-form > .comment-user p{
	outline: thin dashed var(--border-primary);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    font-size: .766rem;
    color: var(--text-secondary)
}	

#comment-form > .comment-header {
    padding: 0;
    margin-bottom: 0.5rem;
    order: 2;
}

#comment-form > .comment-header {
    display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

#comment-form > .comment-header input {
    font-size: .8125rem;
    background: var(--bg-light-hover);
    border: 1px dashed var(--border-primary);
    padding: .5rem .75rem;
    outline: none;
	font-family: var(--font-sans);
	color: var(--text-tertiary);
	border-radius: 0;
    transition: 0.2s cubic-bezier(.4, 0, .2, 1)
}

#comment-form > .comment-header input:focus {
    border-color: var(--text-primary);
    background: var(--text-inverse);
}

#comment-form > .comment-header input::placeholder {
    color: var(--text-tertiary);
}

#comment-form > .comment-editor {
    position: relative;
    margin-bottom: 0.5rem;
    order: 1;
}

#comment-form > .comment-editor > .textarea {
    display: block;
    overflow: hidden;
    color: var(--text-primary);
    font-size: .875rem;
    background-color: var(--text-inverse);
    border: 1px dashed var(--border-primary);
    border-radius: 0;
    width: 100%;
    min-height: 120px;
    padding: .625rem 1.25rem;
    resize: vertical;
    word-wrap: break-word;
    outline: none;
	font-family: var(--font-sans);
    line-height: 1.6;
    transition: 0.2s cubic-bezier(.4, 0, .2, 1)
}

.comment-box-wrapper:not(.collapsed) .comment-editor .textarea {
    height: auto !important;
    min-height: 120px !important;
    border-radius: 0 !important;
    padding: 16px !important;
    cursor: text !important;
}

#comment-form > .comment-editor > .textarea:focus {
    border-color: var(--text-primary)
}

#comment-form > .comment-bottom {
    padding: 0;
	margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    order: 3
}

#comment-form > .comment-bottom > .comment-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#comment-form > .comment-bottom > .comment-bottom-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1
}

#comment-form > .comment-bottom > .comment-bottom-left > .item-state-wrap {
    margin-right: 0;
}

#comment-form > .comment-bottom .item-state-btn,
#cancel-comment-reply-link {
    padding: 0.25rem 12px;
    font-size: .8125rem;
    display: flex;
    align-items: center;
	background: var(--bg-light-hover);
	color: var(--text-tertiary);
	border: 1px dashed var(--border-primary);
    cursor: pointer;
    border-radius: 0;
    transition: 0.2s cubic-bezier(.4, 0, .2, 1)
}

#comment-form > .comment-bottom .submit {
    background: var(--bg-dark);
    color: var(--text-inverse);
    font-size: .8125rem;
    font-weight: 500;
    border: 1px dashed #0000;
    cursor: pointer;
    transition: 0.2s cubic-bezier(.4, 0, .2, 1);
    outline: none;
    border-radius: 0;
    font-family: var(--font-sans);
    padding: 0.25rem 1rem
}

#comment-form > .comment-bottom .item-state-btn:active,
#cancel-comment-reply-link:active,
#comment-form > .comment-bottom .submit:active {
	background:var(--bg-light);
	border-color:var(--bg-dark);
	color:var(--text-theme);
}

#comments ol {
	list-style: none;
	margin: 0;
}

#comments p {
	margin: 0;
}

.hide {
	display: none;
}

.gen .page-navigator {
	margin: 3.75rem 0 3rem 0;
}

.response {
	margin: 2rem 0;
	padding-top: 1em;
}

.hinfo {
	display: none;
}

.gen h2 {
	margin-bottom: 0.8em;
}

.gen a {
	color: #aaa;
}

.comment-list {
	padding-left: 0 !important;
	list-style-type: none;
	margin: 0;
}

.avatar {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	margin: 1rem 1rem 0 0 !important;
	border-radius: 4px;
}

.comment_time {
	margin-top: 5px;
	margin-bottom: 15px;
}

.comment_main {
	overflow: hidden;
	padding: 1rem 0;
	border-bottom: 1px dotted #e0e0e0;
}

.comment_main p {
	margin: 0;
	font-size: 13px;
}

.comment_reply, .comment_meta {
	font-size: .766rem;
	color: #aaa;
}

.comment_reply {
	float: right;
}

.comment_main:hover .comment_reply {
	display: block
}

.comment_author {
	font-size: 14px;
	color: #3c3c3c;
	font-weight: 600;
	margin-bottom: 5px;
}

.comment_author a {
	color: #3c3c3c;
}

.ccomment_reply {
	text-align: right;
}

.comment_reply a:before, .comment_time:before {
	margin: 0 .5rem
}

.comment-parent .comment-children {
	margin-left: 1.2em;
}

.comment-child .comment-children {
	margin-left: 1.2em;
}

.cancel-comment-reply {
	text-align: right;
}

.comment-child .comment-children {
	margin-left: 0;
}

.comment-content .biaoqing.paopao {
	width: 30px;
	height: 30px;
	margin-bottom: -0.25rem;
}

.comment-content .biaoqing.alu {
	height: 33px;
	margin-bottom: -0.3125rem;
}

.comment-content .biaoqing.quyin {
	margin-bottom: -0.125rem;
	min-height: 3.5rem;
	height: 1em;
}

.hideContent {
	text-align: center;
	font-size: 14px;
	background: repeating-linear-gradient(145deg,#f2f2f2,#f2f2f2 15px,#fff 0,#fff 30px);
}

.comment-content .biaoqing {
	display: inline;
	margin: 0;
	width: auto;
}

/*分页开始*/
.page-navigator {
    text-align: center;
    margin: .9375rem 0;
    padding: .9375rem 0 0
}
.page-navigator ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.page-navigator li {
    display: inline-block
}

.page-navigator a {
	display: inline-flex;
    align-items: center;
    justify-content: center;
	min-width: 25px;
    width: 25px;
    height: 25px;
	background-color: 0 0;
	font-size: .75rem;
	color: #414141;
	margin: 0 2px;
	border: thin dashed var(--border-secondary);
	transition: .3s
}

.page-navigator a:hover {
    background: var(--bg-light);
    border-color: var(--border-primary);
}

.page-navigator li.current a {
	background: var(--bg-dark);
	color: var(--text-inverse);
    border-color: var(--text-primary);
}

.page-navigator li.prev a,
.page-navigator li.next a {
    min-width: 60px;
    height: 25px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*分页结束*/

.emoj {
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.emoj.emoj-open .emoj-logo {
	border-bottom: none;
	color: var(--text-tertiary);
}

.emoj.emoj-open .emoj-body {
	display: block
}

.emoj.emoj-up .emoj-body {
	top: inherit;
	bottom: 21px;
	border-radius: 4px 4px 4px 0
}

.emoj.emoj-up .emoj-body .emoj-bar .emoj-packages li:nth-child(1) {
	border-radius: 0
}

.emoj.emoj-up.emoj-open .emoj-logo {
	border: 1px solid #ddd;
	border-radius: 0 0 4px 4px;
	border-top: none
}

/*.emoj .emoj-logo {
	position: relative;
	display: inline-block;
	color: #FFF;
	background: #333;
	border: 2px solid #333;
	font-size: 13px;
	padding: 2px 5px;
	cursor: pointer;
	height: 22px;
	box-sizing: border-box;
	z-index: 2;
	line-height: 16px
}*/

.emoj .emoj-body {
    display: none;
    position: absolute;
	width: 22rem !important;
    top: 1.5625rem;
    left: -0.7625rem;
    z-index: 10;
	background: var(--bg-light);
    border: 1px dashed var(--border-primary);
    overflow: hidden;
    box-shadow: var(--shadow-box-small);
}

.emoj .emoj-body .emoj-items {
	display: none;
    max-width: 100%;
    height: 15rem;
	padding: .5rem;
    text-align: center;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0
}

.emoj .emoj-body .emoj-items .emoj-item {
	display: inline-block;
    font-size: 14px;
    padding: .5rem;
    cursor: pointer;
}

.emoj .emoj-body .emoj-items .emoj-item:hover {
    border-radius: var(--border-radius);
    background-color: var(--bg-light-hover)
}

.emoj .emoj-body .emoj-items-emoji .emoj-item {
	font-size: 20px;
	line-height: 19px
}


.emoj .emoj-body .emoj-items-image .emoj-item img {
	width: 2rem;
    height: auto;
    max-height: 100%
}

.emoj .emoj-body .emoj-items-show {
	display: block
}

.emoj .emoj-body .emoj-bar {
	width: 100%;
	padding: .5rem;
	border-top: thin dashed var(--border-primary);
	background: var(--bg-light);
	color: #444
}

.emoj .emoj-body .emoj-bar .emoj-packages {
	margin: 0;
	padding: 0;
	font-size: 0
}

.emoj .emoj-body .emoj-bar .emoj-packages li {
	list-style-type: none;
	display: inline-block;
	line-height: 27px;
	font-size: 14px;
	padding: 0 10px;
	cursor: pointer;
	margin-right: 3px
}

.emoj .emoj-body .emoj-bar .emoj-packages li:nth-child(1) {
	border-radius: 0 0 0 3px
}

.emoj .emoj-body .emoj-bar .emoj-packages li:hover {
	background: #eee
}

.emoj .emoj-body .emoj-bar .emoj-packages .emoj-package-active {
	background: #eee;
	-webkit-transition: .3s;
	transition: .3s
}

.emoj .biaoqing.quyin {
	margin-bottom: -0.125rem;
	min-height: 3.5rem;
	height: 1em;
}

.emoj .biaoqing.alu {
	margin-bottom: -0.3125rem;
	min-height: 2.0625rem;
	height: 1em;
}

.emoj .biaoqing.paopao {
	margin-bottom: -0.25rem;
	min-height: 1.875rem;
	height: 1em;
}

#secret-button {
	display: none;
}

/****自适应****/
@media print,screen and (max-width:580px) {

	.emoj .emoj-body {
		width: 245px !important;
	}

	.emoj .emoj-body .emoj-items-image .emoj-item {
		max-width: initial;
	}
}

.post_info::after,.article::after,.links::after,.links_box::after,.page-navigator::after,.page-navigator::after {
	display: table;
	clear: both;
	content: '';
}

@media (max-width:900px) {
	#container {
		max-width: 95%;
		margin: 2rem auto;
		box-shadow: none;
		min-height: calc(100vh - 4rem)
	}
}

@media (max-width:768px) {
	#container {
		max-width: 100%;
		margin: 0;
		border-radius: 0;
		min-height: 100vh
	}
	.site-logo {
        height: 1.875rem;
    }
	.category-nav {
        padding: 1.25rem .9375rem;
		grid-template-columns: repeat(1, minmax(0, 1fr))
    }
	.breadcrumb-nav {
		padding: 0 .9375rem
	}
	.breadcrumb-left {
        gap: 0.375rem;
        font-size: 0.8125rem;
        flex: 1;
        overflow: hidden;
    }
	.breadcrumb-title {
		max-width: 180px;
	}
	.top-nav .nav-link {
        font-size: 0.8125rem
    }
    #content {
        padding: .9375rem
    }
	#article-info {
        padding: .9375rem 1.25rem;
        min-height: 6.25rem;
    }
	.article-info-title {
		font-size: 1.125rem;
		margin-bottom: .75rem
	}
	.section-divider {
		margin-bottom: 0.9375rem
	}
	.post-main {
    	padding: 0 .9375rem .9375rem;
	}
	#comment-form > .comment-header {
		grid-template-columns: repeat(1, minmax(0, 1fr))
	}	
	.post-footer {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row;
		gap: .625rem
	}
	.footer-content {
    	padding: 0.75rem .9375rem;
    	display: flex;
    	flex-direction: column;
    	gap: 0.25rem;
	}
}

@media (min-width:1200px) {
	#container {
		max-width: var(--container-max-width)
	}
}

@media (min-width:1400px) {
	#container {
		max-width: var(--container-max-width)
	}
}