:root {
	--moe-theme: #f9a8d4;
	--moe-bg: color-mix(in srgb,var(--moe-theme) 8%,#fff);
	--moe-bg-2: color-mix(in srgb,var(--moe-theme) 16%,#fff);
	--moe-card: #ffffffbf;
	--moe-text: #3a3340;
	--moe-muted: #9a8fa6;
	--moe-border: color-mix(in srgb,var(--moe-theme) 28%,transparent);
	--moe-shadow: 0 6px 22px color-mix(in srgb,var(--moe-theme) 20%,transparent);
	--moe-radius: 16px;
	--moe-nav-h: 60px;
	--csstools-color-scheme--dark: ;color-scheme:light
}

html.dark {
	--moe-bg: color-mix(in srgb,var(--moe-theme) 6%,#18151f);
	--moe-bg-2: color-mix(in srgb,var(--moe-theme) 9%,#221d2c);
	--moe-card: #2a2533e6;
	--moe-text: #ece8f0;
	--moe-muted: #9a90a8;
	--moe-border: color-mix(in srgb,var(--moe-theme) 18%,transparent);
	--moe-shadow: 0 6px 22px rgba(0,0,0,.35);
	--csstools-color-scheme--dark: initial;
	color-scheme: dark
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth;
	background: var(--moe-bg);
	transition: background .3s ease
}

body {
	margin: 0;
	font-family: PingFang SC,Microsoft YaHei,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,sans-serif;
	color: var(--moe-text);
	background: transparent;
	line-height: 1.75;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	transition: color .3s ease
}

a {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

a:hover {
	filter: brightness(.92);
	-webkit-text-decoration: underline;
	text-decoration: underline
}

img {
	max-width: 100%
}

.moe-navbar {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1100;
	height: var(--moe-nav-h);
	background: color-mix(in srgb,var(--moe-card) 86%,transparent);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--moe-border)
}

.moe-navbar-inner {
	max-width: 1200px;
	margin: 0 auto;
	height: 100%;
	padding: 0 18px;
	display: flex;
	align-items: center;
	gap: 18px
}

.moe-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--moe-text)
}

.moe-brand:hover {
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-brand-logo {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover
}

.moe-brand-title {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: .5px
}

.moe-nav {
	display: flex;
	gap: 16px;
	margin-left: 8px;
	flex: 1;
	align-self: stretch
}

.moe-nav-link {
	color: var(--moe-text);
	opacity: .8;
	font-size: 15px
}

.moe-nav-link:hover {
	opacity: 1;
	-webkit-text-decoration: none;
	text-decoration: none;
	color: var(--moe-theme)
}

.moe-nav-item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center
}

.moe-nav-caret {
	display: inline-flex;
	align-items: center;
	transition: transform .2s
}

.moe-nav-item.has-sub:hover .moe-nav-caret,.moe-nav-item.has-sub:focus-within .moe-nav-caret {
	transform: rotate(180deg)
}

.moe-nav-sub {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 150px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: color-mix(in srgb,var(--moe-card) 70%,transparent);
	-webkit-backdrop-filter: blur(16px) saturate(1.5);
	backdrop-filter: blur(16px) saturate(1.5);
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	box-shadow: var(--moe-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease,transform .18s ease,visibility .18s;
	z-index: 950
}

.moe-nav-sub:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 10px
}

.moe-nav-item.has-sub:hover .moe-nav-sub,.moe-nav-item.has-sub:focus-within .moe-nav-sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.moe-nav-sub li {
	list-style: none;
	margin: 0
}

.moe-nav-sublink {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--moe-text);
	white-space: nowrap;
	transition: background .15s,color .15s
}

.moe-nav-sublink:hover {
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-nav-subico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex: none
}

.moe-nav-subico svg {
	display: block
}

.moe-icon-btn {
	margin-left: auto;
	width: 38px;
	height: 38px;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s ease
}

.moe-icon-btn:hover {
	transform: rotate(18deg)
}

.moe-user-entry {
	position: relative;
	display: flex;
	align-items: center;
	flex: none
}

.moe-user-login {
	height: 38px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 13px;
	border: 1px solid var(--moe-border);
	border-radius: 999px;
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	font-size: 14px;
	font-weight: 700;
	-webkit-text-decoration: none;
	text-decoration: none;
	white-space: nowrap;
	transition: transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease
}

.moe-user-login:hover {
	transform: translateY(-1px);
	border-color: color-mix(in srgb,var(--moe-theme) 45%,var(--moe-border));
	background: color-mix(in srgb,var(--moe-theme) 12%,var(--moe-bg-2));
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-user-login-ico,.moe-user-dropdown-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none
}

.moe-user-login-ico {
	font-size: 16px
}

.moe-user-menu {
	position: relative;
	display: flex;
	align-items: center
}

.moe-user-trigger {
	width: 38px;
	height: 38px;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	padding: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s ease,background .2s ease,color .2s ease
}

.moe-user-trigger:hover {
	transform: translateY(-1px)
}

.moe-user-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	box-shadow: 0 0 0 2px color-mix(in srgb,var(--moe-theme) 32%,transparent)
}

.moe-user-avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb,var(--moe-theme) 14%,var(--moe-card));
	font-size: 17px
}

.moe-user-dropdown {
	position: absolute;
	top: calc(100% + 14px);
	right: 0;
	width: 230px;
	padding: 8px;
	background: color-mix(in srgb,var(--moe-card) 82%,transparent);
	-webkit-backdrop-filter: blur(16px) saturate(1.45);
	backdrop-filter: blur(16px) saturate(1.45);
	border: 1px solid var(--moe-border);
	border-radius: 16px;
	box-shadow: var(--moe-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease,transform .18s ease,visibility .18s;
	z-index: 1000
}

.moe-user-dropdown:before {
	content: "";
	position: absolute;
	top: -16px;
	left: 0;
	right: 0;
	height: 16px
}

.moe-user-menu.is-open .moe-user-dropdown {
	display: block!important;
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

@media (hover:hover) {
	.moe-user-menu:hover .moe-user-dropdown {
		display: block!important;
		opacity: 1;
		visibility: visible;
		transform: translateY(0)
	}
}

.moe-user-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 8px 10px;
	margin-bottom: 4px;
	border-bottom: 1px solid var(--moe-border)
}

.moe-user-card-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	flex: none;
	box-shadow: 0 0 0 2px color-mix(in srgb,var(--moe-theme) 28%,transparent)
}

.moe-user-card-avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb,var(--moe-theme) 14%,var(--moe-bg-2));
	color: var(--moe-theme);
	font-size: 20px
}

.moe-user-card-meta {
	min-width: 0
}

.moe-user-name {
	color: var(--moe-text);
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.moe-user-slug {
	margin-top: 2px;
	color: var(--moe-muted);
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.moe-user-dropdown-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 10px;
	border-radius: 10px;
	color: var(--moe-text);
	font-size: 14px;
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: background .15s ease,color .15s ease,transform .15s ease
}

.moe-user-logout-form {
	margin: 0
}

button.moe-user-dropdown-item {
	width: 100%;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 14px;
	text-align: left;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.moe-user-dropdown-item:hover {
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none;
	transform: translate(2px)
}

.moe-user-dropdown-item.is-danger {
	color: #fb7185
}

.moe-user-dropdown-item.is-danger:hover {
	background: color-mix(in srgb,#fb7185 12%,var(--moe-bg-2));
	color: #fb7185
}

.moe-icon-moon,html.dark .moe-icon-sun {
	display: none
}

html.dark .moe-icon-moon {
	display: block
}

.moe-layout {
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 18px;
	width: 100%;
	flex: 1 0 auto;
	display: grid;
	grid-template-columns: 230px minmax(0,1fr) 290px;
	grid-gap: 20px;
	gap: 20px;
	align-items: start
}

.moe-main {
	min-width: 0
}

.moe-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: -webkit-sticky;
	position: sticky;
	top: calc(var(--moe-nav-h) + 18px)
}

@media (max-width:1180px) {
	.moe-layout {
		grid-template-columns: minmax(0,1fr) 290px
	}

	.moe-sidebar-left {
		display: none
	}
}

@media (max-width:880px) {
	.moe-layout {
		grid-template-columns: minmax(0,1fr)
	}

	.moe-sidebar {
		position: static;
		top: auto
	}

	.moe-sidebar-left {
		display: flex;
		order: 2
	}

	.moe-sidebar-right {
		order: 3
	}

	.moe-main {
		order: 1
	}
}

.moe-card {
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: var(--moe-radius);
	box-shadow: var(--moe-shadow);
	padding: 18px 20px
}

.moe-card-title {
	margin: 0 0 8px;
	font-size: 15px
}

.moe-card-body {
	margin: 0;
	font-size: 14px;
	color: var(--moe-muted)
}

.moe-profile {
	text-align: center
}

.moe-profile-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	border: 3px solid var(--moe-theme);
	padding: 2px;
	background: var(--moe-bg)
}

.moe-profile-name {
	margin: 12px 0 4px;
	font-size: 18px
}

.moe-profile-bio {
	margin: 0;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-profile-stats {
	display: flex;
	justify-content: space-around;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--moe-border)
}

.moe-stat {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	color: var(--moe-muted)
}

.moe-stat-num {
	font-size: 17px;
	font-weight: 700;
	color: var(--moe-text)
}

.moe-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top: calc(-1 * var(--moe-nav-h));
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg,var(--moe-theme),#c8a8ff 90%)
}

.moe-hero-text {
	text-align: center;
	color: #fff;
	z-index: 2;
	text-shadow: 0 2px 12px rgba(0,0,0,.18);
	padding: 20px;
	max-width: 900px
}

.moe-hero-title {
	margin: 0;
	font-size: 40px;
	letter-spacing: 2px
}

.moe-hero-sub {
	margin: 8px 0 0;
	opacity: .95
}

.moe-hero-wave {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: 60px
}

.moe-hero-wave use {
	fill: var(--moe-bg)
}

.moe-wave-1 {
	opacity: .5;
	animation: moe-wave 11s linear infinite
}

.moe-wave-2 {
	opacity: .7;
	animation: moe-wave 8s linear infinite reverse
}

.moe-wave-3 {
	opacity: 1;
	animation: moe-wave 6s linear infinite
}

@keyframes moe-wave {
	0% {
		transform: translate(0)
	}

	to {
		transform: translate(-90px)
	}
}

.moe-post-list {
	display: flex;
	flex-direction: column;
	gap: 18px
}

.moe-post {
	padding: 0;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	transition: transform .2s ease,box-shadow .2s ease
}

.moe-post:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px color-mix(in srgb,var(--moe-theme) 30%,transparent)
}

.moe-post:nth-child(2n) {
	flex-direction: row-reverse
}

.moe-post-body {
	flex: 1 1 auto;
	min-width: 0;
	padding: 20px 22px;
	display: flex;
	flex-direction: column
}

.moe-post-title {
	margin: 0 0 8px;
	font-size: 20px
}

.moe-post-title a {
	color: var(--moe-text)
}

.moe-post-title a:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-post-excerpt {
	margin: 0;
	color: var(--moe-muted);
	font-size: 14px;
	line-height: 1.7;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.moe-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	margin-top: 14px;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.moe-meta-item svg {
	opacity: .85
}

.moe-post-cat {
	color: var(--moe-theme);
	background: var(--moe-bg-2);
	padding: 3px 12px;
	border-radius: 999px;
	font-size: 12px
}

.moe-post-cat:first-of-type {
	margin-left: auto
}

.moe-post-cat:hover {
	background: var(--moe-theme);
	color: #fff;
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-post-content {
	margin-top: 16px
}

.moe-empty {
	text-align: center;
	color: var(--moe-muted);
	padding: 40px 0
}

.moe-footer {
	margin-top: 28px;
	border-top: 1px solid var(--moe-border);
	background: var(--moe-bg-2)
}

.moe-footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 18px;
	text-align: center;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-footer p {
	margin: 4px 0
}

#moesora-loading {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--moe-bg);
	z-index: 9999;
	transition: opacity .4s ease;
	color: var(--moe-theme);
	font-size: 18px;
	letter-spacing: 1px
}

@media (prefers-reduced-motion:reduce) {
	* {
		animation: none!important;
		transition: none!important
	}

	html {
		scroll-behavior: auto
	}
}

.moe-article-title {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.4
}

.moe-article-meta {
	font-size: 13px;
	color: var(--moe-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 18px
}

.moe-article-meta a {
	color: var(--moe-muted)
}

.moe-article-meta a:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-post-content {
	font-size: 16px;
	line-height: 1.9;
	word-wrap: break-word
}

.moe-post-content h1,.moe-post-content h2,.moe-post-content h3,.moe-post-content h4 {
	margin: 1.6em 0 .7em;
	line-height: 1.4;
	scroll-margin-top: calc(var(--moe-nav-h) + 14px)
}

.moe-post-content h2 {
	border-left: 4px solid var(--moe-theme);
	padding-left: 10px
}

.moe-post-content p {
	margin: .9em 0
}

.moe-post-content a {
	color: var(--moe-theme);
	word-break: break-all
}

.moe-post-content img {
	border-radius: 10px;
	display: block;
	margin: 1em auto;
	box-shadow: var(--moe-shadow)
}

.moe-post-content blockquote {
	margin: 1em 0;
	padding: .6em 1em;
	border-left: 4px solid var(--moe-theme);
	background: var(--moe-bg-2);
	border-radius: 0 8px 8px 0;
	color: var(--moe-muted)
}

.moe-post-content code {
	background: var(--moe-bg-2);
	padding: 2px 6px;
	border-radius: 6px;
	font-size: .92em
}

.moe-post-content pre {
	position: relative;
	background: #282c34;
	color: #e6e6e6;
	padding: 16px;
	border-radius: 12px;
	overflow: auto;
	margin: 1.2em 0
}

.moe-post-content pre code {
	background: none;
	padding: 0;
	color: inherit;
	font-size: 14px;
	line-height: 1.6
}

.moe-post-content .moe-table-wrap {
	margin: 1em 0;
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch
}

.moe-post-content table {
	width: auto;
	min-width: 100%;
	border-collapse: separate;
	border-spacing: 0
}

.moe-post-content th,.moe-post-content td {
	border: 0;
	border-bottom: 1px solid var(--moe-border);
	border-right: 1px solid var(--moe-border);
	padding: 8px 12px;
	white-space: nowrap
}

.moe-post-content th:last-child,.moe-post-content td:last-child {
	border-right: 0
}

.moe-post-content tr:last-child td {
	border-bottom: 0
}

.moe-post-content th {
	background: var(--moe-bg-2)
}

.moe-article-tags {
	margin-top: 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}

.moe-copyright {
	margin-top: 22px;
	padding: 14px 16px;
	border-radius: 12px;
	background: var(--moe-bg-2);
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-copyright p {
	margin: 4px 0
}

.moe-copyright a {
	word-break: break-all
}

.moe-chip {
	display: inline-block;
	padding: 3px 12px;
	border: 1px solid var(--moe-border);
	border-radius: 999px;
	font-size: 13px;
	color: var(--moe-theme);
	background: var(--moe-card);
	transition: all .2s ease
}

.moe-chip:hover {
	background: var(--moe-theme);
	color: #fff!important;
	-webkit-text-decoration: none;
	text-decoration: none;
	border-color: var(--moe-theme)!important
}

.moe-page-head {
	margin-bottom: 18px
}

.moe-page-title {
	margin: 0;
	font-size: 24px
}

.moe-page-sub {
	margin: 6px 0 0;
	color: var(--moe-muted);
	font-size: 14px
}

.moe-cat-list {
	display: flex;
	flex-direction: column;
	gap: 2px
}

.moe-cat-item {
	display: flex;
	justify-content: space-between;
	padding: 10px 12px;
	border-radius: 10px;
	color: var(--moe-text)
}

.moe-cat-item:hover {
	background: var(--moe-bg-2);
	-webkit-text-decoration: none;
	text-decoration: none;
	color: var(--moe-theme)
}

.moe-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.moe-archive {
	margin-bottom: 18px
}

.moe-archive-year {
	font-size: 22px;
	font-weight: 700;
	color: var(--moe-theme);
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px dashed var(--moe-border)
}

.moe-archive-item {
	display: flex;
	gap: 12px;
	padding: 7px 0;
	align-items: baseline
}

.moe-archive-date {
	color: var(--moe-muted);
	font-size: 13px;
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums;
	flex: none
}

.moe-archive-item a {
	color: var(--moe-text)
}

.moe-archive-item a:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-toc-nav {
	position: relative
}

.moe-toc-nav a {
	display: block;
	position: relative;
	margin: 1px 0;
	padding: 6px 10px 6px 16px;
	font-size: 13px;
	color: var(--moe-muted);
	border-radius: 8px;
	line-height: 1.5
}

.moe-toc-nav a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: var(--moe-border);
	border-radius: 2px
}

.moe-toc-nav a:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none;
	background: var(--moe-bg-2);
	opacity: 1
}

.moe-toc-nav a.active {
	color: var(--moe-theme);
	background: var(--moe-bg-2);
	font-weight: 600;
	opacity: 1
}

.moe-toc-nav a.active:before {
	background: var(--moe-theme)
}

.moe-toc-nav .toc-h1 {
	padding-left: 14px;
	color: var(--moe-text);
	font-weight: 600
}

.moe-toc-nav .toc-h1:before {
	left: 0;
	width: 3px
}

.moe-toc-nav .toc-h2 {
	padding-left: 28px;
	opacity: .85
}

.moe-toc-nav .toc-h2:before {
	left: 14px;
	width: 2.4px
}

.moe-toc-nav .toc-h3 {
	padding-left: 42px;
	opacity: .68
}

.moe-toc-nav .toc-h3:before {
	left: 28px;
	width: 1.8px
}

.moe-toc-nav .toc-h4 {
	padding-left: 56px;
	opacity: .52
}

.moe-toc-nav .toc-h4:before {
	left: 42px;
	width: 1.4px
}

.moe-error {
	text-align: center;
	padding: 48px 20px
}

.moe-error-face {
	font-size: 46px;
	color: var(--moe-theme)
}

.moe-error-title {
	margin: 16px 0 6px;
	font-size: 24px
}

.moe-error-sub {
	color: var(--moe-muted);
	margin: 0 0 18px
}

.moe-error-home {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 999px;
	background: var(--moe-theme);
	color: #fff
}

.moe-error-home:hover {
	filter: brightness(.93);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-stat {
	cursor: pointer
}

a.moe-stat:hover {
	-webkit-text-decoration: none;
	text-decoration: none
}

a.moe-stat:hover .moe-stat-num {
	color: var(--moe-theme)
}

.moe-muted-text {
	color: var(--moe-muted);
	font-size: 13px;
	list-style: none
}

.moe-recent {
	list-style: none;
	margin: 0;
	padding: 0
}

.moe-recent li {
	padding: 7px 0;
	border-bottom: 1px dashed var(--moe-border);
	font-size: 14px
}

.moe-recent li:last-child {
	border-bottom: none
}

.moe-recent a {
	color: var(--moe-text);
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.moe-recent a:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-love-avatars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin: 6px 0 12px
}

.moe-love-avatars img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	border: 2px solid var(--moe-theme);
	padding: 2px
}

.moe-love-heart {
	color: #ff5a8a;
	font-size: 20px;
	animation: moe-beat 1.1s ease-in-out infinite
}

@keyframes moe-beat {
	0%,to {
		transform: scale(1)
	}

	25% {
		transform: scale(1.25)
	}

	40% {
		transform: scale(1.05)
	}
}

.moe-love-time {
	text-align: center;
	font-size: 13px;
	color: var(--moe-muted);
	line-height: 1.6
}

.moe-music-card {
	overflow: hidden
}

.moe-music-card .aplayer {
	margin: 0;
	box-shadow: none;
	border-radius: 10px;
	background: var(--moe-bg-2);
	line-height: normal
}

.moe-music-card .aplayer .aplayer-pic {
	height: 66px;
	width: 66px
}

.moe-music-card .aplayer .aplayer-info {
	margin-left: 66px;
	padding: 10px 7px 0
}

.moe-music-card .aplayer .aplayer-title {
	color: var(--moe-text)
}

.moe-music-card .aplayer .aplayer-author,.moe-music-card .aplayer .aplayer-info .aplayer-controller .aplayer-time {
	color: var(--moe-muted)
}

.moe-music-card .aplayer .aplayer-list {
	background: var(--moe-bg-2)
}

.moe-music-card .aplayer .aplayer-list ol li {
	color: var(--moe-text);
	border-top-color: var(--moe-border)
}

.moe-music-card .aplayer .aplayer-list ol li:hover {
	background: var(--moe-card)
}

.moe-links-sub {
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-links-stats {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap
}

.moe-links-stat {
	display: flex;
	align-items: baseline;
	gap: 5px;
	padding: 5px 13px;
	border-radius: 999px;
	background: color-mix(in srgb,var(--moe-theme) 12%,transparent);
	font-size: 12px;
	color: var(--moe-muted)
}

.moe-links-stat b {
	font-size: 16px;
	color: var(--moe-theme);
	font-weight: 700
}

.moe-link-group {
	margin-bottom: 18px;
	border-left: 3px solid var(--moe-accent,var(--moe-theme))
}

.moe-link-group-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px
}

.moe-link-group-head .moe-card-title {
	margin: 0
}

.moe-link-count {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: var(--moe-accent,var(--moe-theme));
	border-radius: 999px;
	padding: 1px 10px;
	line-height: 1.8;
	box-shadow: 0 2px 8px color-mix(in srgb,var(--moe-accent,var(--moe-theme)) 45%,transparent)
}

.moe-link-list {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(230px,1fr));
	grid-gap: 13px;
	gap: 13px;
	margin-top: 6px
}

.moe-link-item {
	position: relative;
	display: flex;
	gap: 11px;
	align-items: center;
	padding: 12px;
	border: 1px solid var(--moe-border);
	border-radius: 16px;
	color: var(--moe-text);
	background: color-mix(in srgb,var(--moe-card) 55%,transparent);
	overflow: hidden;
	opacity: 0;
	animation: moe-link-in .5s cubic-bezier(.34,1.4,.5,1) forwards;
	transition: transform .25s cubic-bezier(.34,1.5,.5,1),box-shadow .25s ease
}

.moe-link-item:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 16px;
	padding: 1.5px;
	background: linear-gradient(120deg,var(--moe-theme),#c8a8ff,#ffd6ec,var(--moe-theme));
	background-size: 300% 300%;
	opacity: 0;
	-webkit-mask: linear-gradient(#000 0,#000 0) content-box,linear-gradient(#000 0,#000 0);
	-webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	transition: opacity .25s ease;
	pointer-events: none
}

.moe-link-item:hover {
	transform: translateY(-4px) rotate(-.6deg);
	box-shadow: 0 14px 30px color-mix(in srgb,var(--moe-theme) 30%,transparent);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-link-item:hover:before {
	opacity: 1;
	animation: moe-flow 3s linear infinite
}

.moe-link-logo-wrap {
	position: relative;
	flex: none;
	width: 48px;
	height: 48px
}

.moe-link-logo-wrap:before {
	content: "";
	position: absolute;
	top: -3px;
	right: -3px;
	bottom: -3px;
	left: -3px;
	border-radius: 50%;
	background: conic-gradient(from 0deg,var(--moe-theme),#c8a8ff,#ffd6ec,var(--moe-theme));
	opacity: 0;
	transition: opacity .25s ease
}

.moe-link-item:hover .moe-link-logo-wrap:before {
	opacity: 1;
	animation: moe-ring 2.4s linear infinite
}

.moe-link-logo {
	position: relative;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	border: 2px solid var(--moe-card);
	background: var(--moe-card);
	transition: transform .3s cubic-bezier(.34,1.6,.5,1)
}

.moe-link-item:hover .moe-link-logo {
	animation: moe-bounce .6s ease
}

.moe-link-logo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 19px;
	color: #fff
}

.moe-link-meta {
	min-width: 0;
	flex: 1;
	display: flex;
	flex-direction: column
}

.moe-link-name {
	font-weight: 600;
	font-size: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.moe-link-desc {
	font-size: 12px;
	color: var(--moe-muted);
	margin-top: 2px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.moe-links-apply {
	text-align: center
}

.moe-links-apply p {
	margin: 8px 0 0;
	font-size: 13px;
	color: var(--moe-muted);
	line-height: 1.7
}

.moe-avatar-c0 {
	background: linear-gradient(135deg,#ff9ec4,#ff6fa5)
}

.moe-avatar-c1 {
	background: linear-gradient(135deg,#ffcf8b,#ff9f6b)
}

.moe-avatar-c2 {
	background: linear-gradient(135deg,#8be3c3,#43c59e)
}

.moe-avatar-c3 {
	background: linear-gradient(135deg,#9ec8ff,#6fa5ff)
}

.moe-avatar-c4 {
	background: linear-gradient(135deg,#c9a8ff,#a87fff)
}

.moe-avatar-c5 {
	background: linear-gradient(135deg,#ffe58b,#ffd23f)
}

.moe-accent-0 {
	--moe-accent: #ff6fa5
}

.moe-accent-1 {
	--moe-accent: #ff9f6b
}

.moe-accent-2 {
	--moe-accent: #43c59e
}

.moe-accent-3 {
	--moe-accent: #6fa5ff
}

.moe-accent-4 {
	--moe-accent: #a87fff
}

@keyframes moe-link-in {
	0% {
		opacity: 0;
		transform: translateY(16px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes moe-ring {
	to {
		transform: rotate(360deg)
	}
}

@keyframes moe-flow {
	0% {
		background-position: 0% 50%
	}

	to {
		background-position: 300% 50%
	}
}

@keyframes moe-bounce {
	0%,to {
		transform: translateY(0)
	}

	30% {
		transform: translateY(-5px) scale(1.06)
	}

	60% {
		transform: translateY(1px)
	}
}

.moe-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
	grid-gap: 10px;
	gap: 10px
}

.moe-photo {
	margin: 0
}

.moe-photo img {
	width: 100%;
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 10px;
	display: block;
	transition: transform .2s ease
}

.moe-photo img:hover {
	transform: scale(1.03)
}

.moe-photo figcaption {
	font-size: 12px;
	color: var(--moe-muted);
	margin-top: 4px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.moe-moment-feed {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.moe-moment-body {
	font-size: 15px;
	line-height: 1.8
}

.moe-moment-media {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(110px,1fr));
	grid-gap: 8px;
	gap: 8px;
	margin-top: 10px
}

.moe-moment-media img {
	width: 100%;
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 8px;
	display: block
}

.moe-moment-foot {
	margin-top: 10px;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 22px
}

.moe-page-btn {
	padding: 8px 16px;
	border-radius: 999px;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	color: var(--moe-text);
	font-size: 14px
}

.moe-page-btn:hover {
	background: var(--moe-theme);
	color: #fff;
	border-color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-page-btn.is-disabled {
	opacity: .4;
	pointer-events: none
}

.moe-page-info {
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-reward {
	text-align: center;
	margin-top: 24px
}

.moe-reward-btn {
	border: none;
	cursor: pointer;
	background: var(--moe-theme);
	color: #fff;
	padding: 9px 24px;
	border-radius: 999px;
	font-size: 14px;
	box-shadow: 0 6px 16px color-mix(in srgb,var(--moe-theme) 40%,transparent)
}

.moe-reward-btn:hover {
	filter: brightness(.95)
}

.moe-reward-codes {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 16px
}

.moe-reward-codes[hidden] {
	display: none
}

.moe-reward-codes figure {
	margin: 0
}

.moe-reward-codes img {
	width: 160px;
	height: 160px;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 10px;
	background: #fff;
	padding: 6px
}

.moe-reward-codes figcaption {
	font-size: 13px;
	color: var(--moe-muted);
	margin-top: 6px
}

.moe-comments {
	margin-top: 18px
}

.moe-search {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 38px;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 999px;
	transition: border-color .25s ease
}

.moe-search-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: none;
	color: var(--moe-muted);
	pointer-events: none
}

.moe-search-input {
	width: 0;
	min-width: 0;
	border: none;
	outline: none;
	background: transparent;
	color: var(--moe-text);
	font-size: 14px;
	padding: 0;
	transition: width .25s ease,padding .25s ease
}

.moe-search:hover,.moe-search:focus-within {
	border-color: var(--moe-theme)
}

.moe-search:hover .moe-search-input,.moe-search:focus-within .moe-search-input {
	width: 170px;
	padding-right: 12px
}

.moe-search-input::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.moe-search-panel {
	position: absolute;
	top: 46px;
	right: 0;
	width: 260px;
	max-height: 320px;
	overflow: auto;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 14px;
	box-shadow: var(--moe-shadow);
	padding: 6px;
	z-index: 1000
}

.moe-search-item {
	display: block;
	padding: 8px 12px;
	border-radius: 10px;
	color: var(--moe-text);
	font-size: 14px;
	-webkit-text-decoration: none;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.moe-search-item:hover {
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-search-empty {
	padding: 12px;
	text-align: center;
	color: var(--moe-muted);
	font-size: 13px
}

html {
	scrollbar-width: thin;
	scrollbar-color: var(--moe-theme) transparent
}

::-webkit-scrollbar {
	width: 10px;
	height: 10px
}

::-webkit-scrollbar-track {
	background: transparent
}

::-webkit-scrollbar-thumb {
	background: var(--moe-theme);
	border-radius: 999px;
	border: 2px solid var(--moe-bg)
}

::-webkit-scrollbar-thumb:hover {
	filter: brightness(.92)
}

.moe-post-cover {
	flex: 0 0 36%;
	max-width: 36%;
	margin: 0;
	overflow: hidden;
	align-self: stretch
}

.moe-post-cover img {
	width: 100%;
	height: 100%;
	min-height: 175px;
	max-height: 240px;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	transition: transform .4s ease
}

.moe-post-cover:hover img {
	transform: scale(1.05)
}

@media (max-width:680px) {
	.moe-post,.moe-post:nth-child(2n) {
		flex-direction: column
	}

	.moe-post-cover {
		flex-basis: auto;
		max-width: none
	}

	.moe-post-cover img {
		min-height: 0;
		max-height: 180px
	}
}

.moe-article-cover {
	display: block;
	width: 100%;
	max-height: 360px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 14px;
	margin: 0 0 18px
}

@media (min-width:1181px) {
	.moe-layout.layout-three.is-swapped {
		grid-template-columns: 290px minmax(0,1fr) 230px
	}

	.moe-layout.layout-three.is-swapped .moe-sidebar-right {
		order: 1
	}

	.moe-layout.layout-three.is-swapped .moe-main {
		order: 2
	}

	.moe-layout.layout-three.is-swapped .moe-sidebar-left {
		order: 3
	}
}

.moe-profile-social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--moe-border)
}

.moe-social-link {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--moe-bg-2);
	color: var(--moe-muted);
	-webkit-text-decoration: none;
	text-decoration: none;
	transition: transform .2s ease,background .2s ease,color .2s ease
}

.moe-social-link svg {
	width: 20px;
	height: 20px
}

.moe-social-link:hover {
	transform: translateY(-3px) scale(1.08);
	background: var(--moe-theme);
	color: #fff;
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-social-link.is-github:hover {
	background: #24292f
}

.moe-social-link.is-email:hover {
	background: #ea4335
}

.moe-social-link.is-rss:hover {
	background: #f26522
}

.moe-social-link.is-twitter:hover {
	background: #000
}

.moe-social-link.is-facebook:hover {
	background: #1877f2
}

.moe-social-link.is-telegram:hover {
	background: #229ed9
}

.moe-social-link.is-bilibili:hover {
	background: #fb7299
}

.moe-social-link.is-youtube:hover {
	background: red
}

.moe-social-link.is-instagram:hover {
	background: #e1306c
}

.moe-social-link.is-qq:hover {
	background: #12b7f5
}

.moe-social-link.is-weibo:hover {
	background: #e6162d
}

.moe-footer-since,.moe-footer-beian {
	font-size: 13px;
	color: var(--moe-muted);
	margin: 4px 0
}

.moe-footer-beian {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 18px;
	align-items: center
}

.moe-footer-beian a {
	color: var(--moe-muted)
}

.moe-footer-beian a:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-footer-police {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

.moe-hero-sub.moe-typed {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: SFMono-Regular,ui-monospace,Consolas,Cascadia Code,Liberation Mono,Menlo,monospace;
	font-size: 15px;
	letter-spacing: .3px;
	background: #14141e47;
	padding: 7px 16px;
	border-radius: 8px;
	min-height: 1.6em
}

.moe-typed-prompt {
	color: #7cfc9b;
	font-weight: 700
}

.moe-typed-text {
	color: #fff;
	white-space: pre
}

.moe-typed-caret {
	color: #fff;
	animation: moe-blink 1.05s steps(1) infinite
}

@keyframes moe-blink {
	50% {
		opacity: 0
	}
}

.moe-profile-loc {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin: 6px 0 0;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-hero.has-bg {
	background-size: cover;
	background-position: center;
	min-height: 420px
}

.moe-hero.has-bg:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg,#0000001f,#0000006b);
	z-index: 1
}

.moe-hero.has-bg .moe-hero-text {
	position: relative;
	z-index: 2
}

.moe-totop {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: var(--moe-theme);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px color-mix(in srgb,var(--moe-theme) 50%,transparent);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .3s ease,transform .3s ease,visibility .3s;
	z-index: 800
}

.moe-totop.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0)
}

.moe-totop:hover {
	transform: translateY(-2px);
	filter: brightness(.96)
}

@media (max-width:680px) {
	.moe-totop {
		right: 16px;
		bottom: 16px;
		width: 42px;
		height: 42px
	}
}

.moe-footer-login {
	color: var(--moe-muted)
}

.moe-footer-login:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

@media (max-width:680px) {
	.moe-hero {
		min-height: 240px
	}

	.moe-hero.has-bg {
		min-height: 300px
	}

	.moe-hero-title {
		font-size: 30px
	}
}

.moe-friend-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 4px
}

.moe-friend-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 7px 8px;
	border-radius: 10px;
	transition: background .2s ease
}

.moe-friend-item:hover {
	background: var(--moe-bg-2);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-friend-logo {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	flex: none;
	background: var(--moe-bg-2)
}

.moe-friend-name {
	font-size: 14px;
	color: var(--moe-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex: 1;
	min-width: 0
}

.moe-friend-item:hover .moe-friend-name {
	color: var(--moe-theme)
}

.moe-friend-host {
	flex: none;
	max-width: 52%;
	font-size: 12px;
	color: var(--moe-muted);
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	padding: 2px 10px;
	border-radius: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .2s ease,border-color .2s ease
}

.moe-friend-item:hover .moe-friend-host {
	color: var(--moe-theme);
	border-color: var(--moe-theme)
}

.moe-hero.is-fullscreen,.moe-hero.is-fullscreen.has-bg {
	min-height: calc(100vh + var(--moe-nav-h))
}

.moe-bio-caret {
	color: var(--moe-theme);
	animation: moe-blink 1.05s steps(1) infinite
}

.moe-navbar {
	transition: background .35s ease,border-color .35s ease,-webkit-backdrop-filter .35s ease;
	transition: background .35s ease,border-color .35s ease,backdrop-filter .35s ease;
	transition: background .35s ease,border-color .35s ease,backdrop-filter .35s ease,-webkit-backdrop-filter .35s ease
}

.moe-navbar.is-top {
	background: #ffffff24;
	border-bottom-color: #ffffff38;
	-webkit-backdrop-filter: blur(14px) saturate(1.4);
	backdrop-filter: blur(14px) saturate(1.4)
}

.moe-navbar.is-top .moe-brand-title,.moe-navbar.is-top .moe-nav-link {
	color: #fff;
	text-shadow: 0 1px 8px rgba(0,0,0,.45)
}

.moe-navbar.is-top .moe-nav-link {
	opacity: .95
}

.moe-navbar.is-top .moe-icon-btn,.moe-navbar.is-top .moe-user-login,.moe-navbar.is-top .moe-user-trigger {
	background: #ffffff2e;
	color: #fff
}

.moe-navbar.is-top .moe-search {
	background: #ffffff29;
	border-color: #fff6
}

.moe-navbar.is-top .moe-search-icon,.moe-navbar.is-top .moe-search-input {
	color: #fff
}

.moe-navbar.is-top .moe-search-input::-moz-placeholder {
	color: #ffffffb3
}

.moe-navbar.is-top .moe-search-input::placeholder {
	color: #ffffffb3
}

.moe-site-bg {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat
}

.moe-site-bg:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: color-mix(in srgb,var(--moe-bg) 22%,transparent)
}

html.dark .moe-site-bg:after {
	background: #00000080
}

.moe-article-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 22px 0 4px
}

.moe-share-label {
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-share-btn {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 50%;
	background: var(--moe-bg-2);
	color: var(--moe-muted);
	cursor: pointer;
	transition: all .2s ease;
	padding: 0
}

.moe-share-btn svg {
	width: 17px;
	height: 17px
}

.moe-share-btn:hover {
	color: #fff;
	background: var(--moe-theme)
}

.moe-share-btn.is-weibo:hover {
	background: #e6162d
}

.moe-share-btn.is-qq:hover {
	background: #12b7f5
}

.moe-share-btn.is-telegram:hover {
	background: #229ed9
}

.moe-share-btn.is-twitter:hover {
	background: #000
}

.moe-share-btn.copied {
	background: #52c41a;
	color: #fff
}

.moe-brand-title {
	white-space: nowrap
}

.moe-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	padding: 0
}

.moe-navbar.is-top .moe-nav-toggle {
	background: #ffffff2e;
	color: #fff
}

@media (max-width:880px) {
	.moe-navbar-inner {
		gap: 8px
	}

	.moe-nav-toggle {
		display: flex
	}

	.moe-icon-btn {
		margin-left: 6px
	}

	.moe-search {
		margin-left: auto
	}

	.moe-user-login {
		width: 38px;
		padding: 0;
		justify-content: center
	}

	.moe-user-login-text {
		display: none
	}

	.moe-user-dropdown {
		right: -46px;
		width: 220px
	}

	.moe-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: var(--moe-nav-h);
		flex-direction: column;
		gap: 0;
		margin-left: 0;
		flex: none;
		background: var(--moe-card);
		border-bottom: 1px solid var(--moe-border);
		box-shadow: var(--moe-shadow);
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease
	}

	.moe-navbar.nav-open .moe-nav {
		max-height: 75vh;
		overflow: auto
	}

	.moe-nav-item {
		display: block;
		height: auto
	}

	.moe-nav-link {
		padding: 14px 22px;
		border-top: 1px solid var(--moe-border);
		font-size: 16px;
		opacity: 1;
		color: var(--moe-text)
	}

	.moe-nav-item:first-child .moe-nav-link {
		border-top: none
	}

	.moe-nav-caret {
		display: none
	}

	.moe-nav-sub {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		border: none;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		min-width: 0;
		list-style: none
	}

	.moe-nav-sub:before {
		display: none
	}

	.moe-nav-sublink {
		padding: 12px 22px 12px 46px;
		border-top: 1px solid var(--moe-border);
		font-size: 15px;
		color: var(--moe-text)
	}

	.moe-search:focus-within .moe-search-input,.moe-search:hover .moe-search-input {
		width: 120px
	}

	.moe-navbar.nav-open {
		background: var(--moe-card);
		border-bottom-color: var(--moe-border);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px)
	}

	.moe-navbar.nav-open .moe-brand-title,.moe-navbar.nav-open .moe-nav-link {
		color: var(--moe-text);
		text-shadow: none
	}

	.moe-navbar.nav-open .moe-icon-btn,.moe-navbar.nav-open .moe-user-login,.moe-navbar.nav-open .moe-user-trigger,.moe-navbar.nav-open .moe-nav-toggle {
		background: var(--moe-bg-2);
		color: var(--moe-theme)
	}
}

@media (max-width:880px) {
	.moe-brand,.moe-brand-logo,.moe-icon-btn,.moe-user-entry,.moe-nav-toggle,.moe-search {
		flex: none
	}

	.moe-search-input {
		width: 0
	}

	.moe-search:hover .moe-search-input {
		width: 0;
		padding: 0
	}

	.moe-search:focus-within {
		position: absolute;
		left: 8px;
		right: 8px;
		top: 50%;
		transform: translateY(-50%);
		height: 40px;
		z-index: 6
	}

	.moe-search:focus-within .moe-search-input {
		width: auto;
		flex: 1;
		padding: 0 12px
	}

	.moe-search:focus-within .moe-search-panel {
		left: 0;
		right: 0;
		width: auto;
		top: 44px
	}
}

@media (max-width:880px) {
	.moe-search {
		flex: 1 1 auto;
		min-width: 0;
		max-width: none;
		margin-left: 12px;
		margin-right: 4px;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		height: 38px
	}

	.moe-search-input {
		width: auto;
		flex: 1 1 auto;
		min-width: 0;
		padding: 0 10px 0 0
	}

	.moe-search:hover .moe-search-input,.moe-search:focus-within .moe-search-input {
		width: auto;
		flex: 1 1 auto;
		padding: 0 10px 0 0
	}

	.moe-search:focus-within {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		z-index: auto
	}

	.moe-search-panel {
		left: 0;
		right: 0;
		width: auto;
		top: 46px
	}
}

@media (max-width:880px) {
	.moe-search {
		flex: 0 0 38px;
		width: 38px;
		margin-left: auto;
		margin-right: 4px;
		min-width: 0;
		max-width: none;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		height: 38px;
		overflow: hidden;
		transition: flex-basis .25s ease
	}

	.moe-search-input {
		flex: 1 1 0;
		width: 0;
		min-width: 0;
		padding: 0
	}

	.moe-search:hover .moe-search-input,.moe-search:focus-within .moe-search-input {
		width: 0;
		flex: 1 1 0;
		padding: 0 10px 0 0
	}

	.moe-search:focus-within {
		flex: 1 1 auto;
		width: auto;
		margin-left: 12px;
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		transform: none;
		z-index: auto
	}

	.moe-search-panel {
		left: 0;
		right: 0;
		width: auto;
		top: 46px
	}
}

.moe-pjax-bar {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0;
	opacity: 0;
	z-index: 2000;
	background: linear-gradient(90deg,var(--moe-theme),#c8a8ff);
	box-shadow: 0 0 8px var(--moe-theme);
	pointer-events: none
}

#moe-pjax {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%
}

.moe-music-float {
	position: fixed;
	left: 18px;
	bottom: 18px;
	z-index: 950
}

.moe-music-float-body {
	position: absolute;
	left: 0;
	bottom: 58px;
	width: 300px;
	max-width: calc(100vw - 36px);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 34px #00000038;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px) scale(.96);
	transform-origin: bottom left;
	transition: opacity .25s ease,transform .25s ease,visibility .25s
}

.moe-music-float.open .moe-music-float-body {
	opacity: 1;
	visibility: visible;
	transform: none
}

.moe-music-fab {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	position: relative;
	background: var(--moe-theme);
	color: #fff;
	font-size: 20px;
	box-shadow: 0 6px 18px color-mix(in srgb,var(--moe-theme) 50%,transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s ease;
	padding: 0
}

.moe-chip[style*=--moe-c] {
	color: var(--moe-c);
	border-color: var(--moe-c);
	background: color-mix(in srgb,var(--moe-c) 13%,var(--moe-card))
}

html:not(.dark) .moe-chip[style*=--moe-c] {
	color: color-mix(in srgb,var(--moe-c) 80%,#222)
}

html.dark .moe-chip[style*=--moe-c] {
	color: color-mix(in srgb,var(--moe-c) 62%,#fff);
	background: color-mix(in srgb,var(--moe-c) 20%,var(--moe-card))
}

.moe-post-content pre.moe-pre-fold,.moe-img-fold {
	overflow: hidden
}

.moe-img-fold-wrap {
	position: relative;
	display: block;
	margin: 1em 0
}

.moe-fold-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	border: none;
	cursor: pointer;
	padding: 22px 0 9px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	background: linear-gradient(transparent,#0000009e 78%)
}

.moe-fold-btn:hover {
	color: var(--moe-theme)
}

.moe-post-content pre.moe-code {
	position: relative;
	padding: 0;
	margin: 1.4em 0;
	border-radius: 12px;
	overflow: hidden;
	background: #282c34;
	box-shadow: var(--moe-shadow);
	font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,Cascadia Code,Source Code Pro,monospace
}

.moe-code-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	background: #00000038;
	border-bottom: 1px solid rgba(255,255,255,.07)
}

.moe-code-dots {
	display: flex;
	gap: 7px;
	flex: none
}

.moe-code-dots i {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block
}

.moe-code-dots i:nth-child(1) {
	background: #ff5f56
}

.moe-code-dots i:nth-child(2) {
	background: #ffbd2e
}

.moe-code-dots i:nth-child(3) {
	background: #27c93f
}

.moe-code-lang {
	flex: 1;
	font-size: 12.5px;
	color: #aab2c0;
	letter-spacing: .5px
}

.moe-code-tools {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: none
}

.moe-code-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #aab2c0;
	padding: 5px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	line-height: 0;
	transition: .18s
}

.moe-code-btn:hover {
	color: #fff;
	background: #ffffff21
}

.moe-code-fold svg {
	transition: transform .3s ease
}

.moe-code-collapsed .moe-code-fold svg {
	transform: rotate(-90deg)
}

.moe-copy-btn .moe-ico-done {
	display: none
}

.moe-copy-btn.copied {
	color: #27c93f
}

.moe-copy-btn.copied .moe-ico-copy {
	display: none
}

.moe-copy-btn.copied .moe-ico-done {
	display: inline-flex
}

.moe-code-body {
	display: flex;
	align-items: stretch;
	overflow: hidden;
	transition: max-height .32s ease,opacity .25s ease
}

.moe-code-collapsed .moe-code-body {
	opacity: 0
}

.moe-code-ln {
	flex: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	text-align: right;
	padding: 14px 12px;
	color: #ffffff4d;
	font-size: 13.5px;
	line-height: 1.65;
	white-space: pre;
	border-right: 1px solid rgba(255,255,255,.08)
}

.moe-code-scroll {
	flex: 1 1 auto;
	min-width: 0;
	overflow-x: auto
}

.moe-post-content pre.moe-code code {
	display: block;
	padding: 14px 16px;
	margin: 0;
	background: transparent!important;
	border-radius: 0;
	font-size: 13.5px;
	line-height: 1.65;
	white-space: pre;
	font-family: inherit
}

.moe-post-content pre.moe-code code:not(.hljs) {
	color: #e6e6e6
}

.moe-code.is-light .moe-code-bar {
	background: #0000000d;
	border-bottom-color: #00000014
}

.moe-code.is-light .moe-code-lang {
	color: #6b7280
}

.moe-code.is-light .moe-code-btn {
	color: #9aa1ab
}

.moe-code.is-light .moe-code-btn:hover {
	color: #222;
	background: #00000014
}

.moe-code.is-light .moe-code-ln {
	color: #00000052;
	border-right-color: #0000001a
}

.moe-post-content text-diagram[data-type=mermaid],.moe-moment-body text-diagram[data-type=mermaid] {
	display: block;
	max-width: 100%;
	margin: 1.4em auto;
	padding: 16px;
	overflow-x: auto;
	color: var(--moe-text);
	text-align: center;
	white-space: pre;
	font-family: ui-monospace,SFMono-Regular,Menlo,Consolas,Cascadia Code,Source Code Pro,monospace;
	background: var(--moe-bg-2);
	border: 1px solid var(--moe-border);
	border-radius: 14px;
	box-shadow: var(--moe-shadow)
}

.moe-post-content text-diagram[data-type=mermaid][data-processed=true],.moe-moment-body text-diagram[data-type=mermaid][data-processed=true] {
	white-space: normal;
	font-family: inherit
}

.moe-post-content text-diagram[data-type=mermaid] svg,.moe-moment-body text-diagram[data-type=mermaid] svg {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto
}

html.dark .moe-post-content text-diagram[data-type=mermaid],html.dark .moe-moment-body text-diagram[data-type=mermaid] {
	background: var(--moe-card)
}

.moe-article {
	overflow: hidden
}

.moe-article-hero {
	position: relative;
	margin: -18px -20px 20px;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden
}

.moe-article-hero:before {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	bottom: -2px;
	left: -2px;
	z-index: 0;
	background: var(--hero-bg) center calc(50% + var(--hero-shift,0px)) / cover no-repeat;
	transform: scale(1.06);
	transition: transform .6s ease;
	will-change: transform
}

.moe-article-hero:hover:before {
	transform: scale(1.13)
}

.moe-article-hero:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(transparent 28%,#000000c7)
}

.moe-article-hero-inner {
	position: relative;
	z-index: 2;
	padding: 24px
}

.moe-article-hero .moe-article-title {
	color: #fff;
	margin: 0 0 10px;
	text-shadow: 0 2px 14px rgba(0,0,0,.55)
}

.moe-article-meta-hero {
	color: #ffffffeb;
	margin: 0
}

.moe-article-meta-hero span {
	display: inline-flex;
	align-items: center;
	gap: 4px
}

.moe-article-hero-cats {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	display: flex;
	gap: 8px;
	flex-wrap: wrap
}

.moe-article-hero-cats a {
	background: #0000006b;
	color: #fff;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 999px;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	transition: .2s
}

.moe-article-hero-cats a:hover {
	background: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-post-content h1,.moe-post-content h2,.moe-post-content h3,.moe-post-content h4 {
	position: relative;
	padding-left: 14px;
	border-left: none;
	transition: transform .35s cubic-bezier(.34,1.56,.64,1)
}

.moe-post-content h1:before,.moe-post-content h2:before,.moe-post-content h3:before,.moe-post-content h4:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: .8em;
	border-radius: 3px;
	background: var(--moe-theme);
	transition: height .3s ease
}

.moe-post-content h1:after,.moe-post-content h2:after,.moe-post-content h3:after,.moe-post-content h4:after {
	content: "";
	position: absolute;
	left: 14px;
	bottom: -3px;
	height: 3px;
	width: 26px;
	border-radius: 2px;
	background: var(--moe-theme);
	opacity: .85;
	transition: width .38s ease
}

.moe-post-content h1:hover,.moe-post-content h2:hover,.moe-post-content h3:hover,.moe-post-content h4:hover {
	transform: translate(8px)
}

.moe-post-content h1:hover:after,.moe-post-content h2:hover:after,.moe-post-content h3:hover:after,.moe-post-content h4:hover:after {
	width: 62%
}

.moe-post-content h1:hover:before,.moe-post-content h2:hover:before,.moe-post-content h3:hover:before,.moe-post-content h4:hover:before {
	height: 1.1em
}

.moe-post-content ol {
	list-style: none;
	counter-reset: moe-ol;
	padding-left: 2em
}

.moe-post-content ol>li {
	position: relative;
	counter-increment: moe-ol;
	margin: .5em 0
}

.moe-post-content ol>li:before {
	content: counter(moe-ol)".";
	position: absolute;
	left: -2em;
	top: 0;
	min-width: 1.6em;
	text-align: right;
	color: var(--moe-theme);
	font-weight: 700;
	display: inline-block;
	transition: transform .55s ease,color .3s ease
}

.moe-post-content ol>li:hover:before {
	transform: rotate(360deg);
	color: var(--moe-ol-hover,#ff7eb3)
}

.moe-lb {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 4000;
	display: none;
	flex-direction: column;
	background: #000000e0;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	opacity: 0;
	transition: opacity .25s ease
}

.moe-lb.show {
	display: flex;
	opacity: 1
}

.moe-lb-toolbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	background: linear-gradient(to bottom,#00000080,#0000);
	pointer-events: none
}

.moe-lb-counter {
	color: #fff;
	font-size: 14px;
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums;
	letter-spacing: .5px;
	opacity: .92;
	pointer-events: auto
}

.moe-lb-tools {
	display: flex;
	align-items: center;
	gap: 6px;
	pointer-events: auto
}

.moe-lb-tool {
	width: 38px;
	height: 38px;
	border: none;
	background: #ffffff1f;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	line-height: 1;
	transition: .2s
}

.moe-lb-tool:hover {
	background: var(--moe-theme);
	transform: translateY(-1px)
}

.moe-lb-tool.moe-lb-close {
	font-size: 26px
}

.moe-lb-tool.moe-lb-close:hover {
	transform: rotate(90deg)
}

.moe-lb-stage {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 0
}

.moe-lb-img {
	max-width: 92vw;
	max-height: 82vh;
	border-radius: 8px;
	-o-object-fit: contain;
	object-fit: contain;
	box-shadow: 0 12px 60px #0009;
	opacity: 0;
	cursor: zoom-in;
	will-change: transform;
	transition: opacity .28s ease,transform .22s ease;
	transform: translate(0) scale(1) rotate(0)
}

.moe-lb-img.loaded {
	opacity: 1
}

.moe-lb.zoomed .moe-lb-img {
	cursor: grab
}

.moe-lb.dragging .moe-lb-img {
	cursor: grabbing;
	transition: opacity .28s ease
}

.moe-lb-spin {
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid rgba(255,255,255,.25);
	border-top-color: #fff;
	animation: moeLbSpin .8s linear infinite;
	opacity: 0;
	transition: opacity .2s ease;
	pointer-events: none
}

.moe-lb.loading .moe-lb-spin {
	opacity: 1
}

@keyframes moeLbSpin {
	to {
		transform: rotate(360deg)
	}
}

.moe-lb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #ffffff24;
	border: none;
	color: #fff;
	font-size: 22px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	transition: .2s;
	z-index: 2
}

.moe-lb-nav:hover {
	background: var(--moe-theme)
}

.moe-lb-prev {
	left: 20px
}

.moe-lb-next {
	right: 20px
}

.moe-lb.multi .moe-lb-nav {
	display: flex
}

.moe-lb-thumbs {
	display: none;
	flex-wrap: nowrap;
	gap: 8px;
	padding: 10px 16px 14px;
	overflow-x: auto;
	overflow-y: hidden;
	justify-content: center;
	background: linear-gradient(to top,#00000080,#0000);
	scrollbar-width: thin
}

.moe-lb-thumbs::-webkit-scrollbar {
	height: 6px
}

.moe-lb-thumbs::-webkit-scrollbar-thumb {
	background: #ffffff4d;
	border-radius: 3px
}

.moe-lb-thumb {
	height: 54px;
	width: 72px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	flex: none;
	opacity: .5;
	border: 2px solid transparent;
	transition: .2s
}

.moe-lb-thumb:hover {
	opacity: .85
}

.moe-lb-thumb.is-active {
	opacity: 1;
	border-color: var(--moe-theme)
}

.moe-article-hero .moe-article-title {
	position: relative;
	display: inline-block
}

.moe-article-hero .moe-article-title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -7px;
	height: 3px;
	width: 42px;
	border-radius: 2px;
	background: var(--moe-theme);
	transition: width .4s ease
}

.moe-article-hero:hover .moe-article-title:after {
	width: 100%
}

html.moe-no-anim .moe-post-content h1,html.moe-no-anim .moe-post-content h2,html.moe-no-anim .moe-post-content h3,html.moe-no-anim .moe-post-content h4 {
	transition: none
}

html.moe-no-anim .moe-post-content h1:hover,html.moe-no-anim .moe-post-content h2:hover,html.moe-no-anim .moe-post-content h3:hover,html.moe-no-anim .moe-post-content h4:hover {
	transform: none
}

html.moe-no-anim .moe-post-content h1:hover:after,html.moe-no-anim .moe-post-content h2:hover:after,html.moe-no-anim .moe-post-content h3:hover:after,html.moe-no-anim .moe-post-content h4:hover:after {
	width: 26px
}

html.moe-no-anim .moe-post-content h1:hover:before,html.moe-no-anim .moe-post-content h2:hover:before,html.moe-no-anim .moe-post-content h3:hover:before,html.moe-no-anim .moe-post-content h4:hover:before {
	height: .8em
}

html.moe-no-anim .moe-post-content ol>li:before {
	transition: none
}

html.moe-no-anim .moe-post-content ol>li:hover:before {
	transform: none;
	color: var(--moe-theme)
}

html.moe-no-anim .moe-article-hero:hover .moe-article-title:after {
	width: 42px
}

.moe-cat-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px
}

.moe-cat-head .moe-card-title {
	margin: 0
}

.moe-cat-more {
	font-size: 12px;
	color: var(--moe-muted);
	flex: none
}

.moe-cat-more:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-cat-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.moe-cat-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 9px 2px;
	color: var(--moe-text);
	border-bottom: 1px dashed var(--moe-border);
	transition: color .2s,padding .2s
}

.moe-cat-list>li:last-child>a {
	border-bottom: none
}

.moe-cat-list a:hover {
	color: var(--moe-theme);
	padding-left: 6px;
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-cat-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.moe-cat-count {
	flex: none;
	background: var(--moe-bg-2);
	color: var(--moe-muted);
	border-radius: 8px;
	padding: 1px 11px;
	font-size: 12px;
	line-height: 1.7;
	transition: .2s
}

.moe-cat-list a:hover .moe-cat-count {
	background: var(--moe-theme);
	color: #fff
}

.moe-cat-sub {
	list-style: none;
	margin: 0;
	padding: 0 0 0 16px;
	position: relative
}

.moe-cat-sub:before {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	bottom: 10px;
	width: 1px;
	background: var(--moe-border)
}

.moe-lb-tip {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 96px;
	text-align: center;
	color: #ffffff8c;
	font-size: 12px;
	z-index: 1;
	pointer-events: none;
	transition: opacity .2s ease
}

.moe-lb.multi .moe-lb-tip {
	bottom: 104px
}

.moe-lb.zoomed .moe-lb-tip {
	opacity: 0
}

.moe-lb-tip-mb {
	display: none
}

@media (max-width:768px) {
	.moe-lb-img {
		max-width: 96vw;
		max-height: 74vh
	}

	.moe-lb-nav {
		display: none!important
	}

	.moe-lb-thumb {
		height: 44px;
		width: 58px
	}

	.moe-lb-tip {
		bottom: 84px
	}

	.moe-lb-tip-pc {
		display: none
	}

	.moe-lb-tip-mb {
		display: inline
	}
}

#waline,#tcomment {
	margin-top: 6px
}

.moe-music-float {
	left: 24px;
	bottom: 24px
}

@media (max-width:680px) {
	.moe-music-float {
		display: none!important
	}

	.moe-music-fab {
		width: 42px;
		height: 42px;
		font-size: 18px
	}
}

.moe-profile-avatar {
	transition: transform .9s cubic-bezier(.34,1.25,.5,1)
}

.moe-comments {
	accent-color: var(--moe-theme)
}

.moe-comments .moe-card-title {
	margin-bottom: 16px
}

.moe-comments input:focus,.moe-comments textarea:focus,.moe-comments select:focus {
	outline: 2px solid var(--moe-theme);
	outline-offset: 1px
}

.moe-comments button:not(.does-not-exist),.moe-comments .button,.moe-comments [type=submit] {
	border-radius: 10px
}

.moe-comments a {
	color: var(--moe-theme)
}

.moe-comment-ph {
	padding: 30px;
	text-align: center;
	color: var(--moe-muted);
	font-size: 14px
}

.moe-card-title {
	display: flex;
	align-items: center;
	gap: 6px
}

.moe-title-ico {
	display: inline-flex;
	align-items: center;
	color: var(--moe-theme);
	flex: none;
	font-size: 1.05em
}

.moe-title-ico svg {
	display: block
}

.moe-page-title {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	line-height: 1.25
}

.moe-page-title-icon {
	color: var(--moe-theme);
	display: inline-flex;
	align-items: center;
	flex: none;
	font-size: 1.15em;
	vertical-align: baseline;
	margin-right: 0
}

.moe-page-title-icon svg {
	display: block;
	width: 1em;
	height: 1em
}

.moe-since-ico {
	display: inline-flex;
	align-items: center;
	vertical-align: -2px;
	color: var(--moe-theme);
	font-size: 14px
}

.moe-since-ico svg {
	display: block
}

.moe-nav-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	vertical-align: -3px;
	transition: transform .3s cubic-bezier(.34,1.56,.64,1)
}

.moe-nav-ico svg {
	display: block
}

.moe-nav-link:hover .moe-nav-ico {
	transform: translateY(-2px) rotate(-10deg) scale(1.18)
}

@media (min-width:881px) {
	.moe-nav-link {
		position: relative;
		display: inline-flex;
		align-items: center;
		gap: 5px;
		padding: 4px 2px;
		line-height: 1
	}

	.moe-nav-link:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -4px;
		height: 2px;
		border-radius: 2px;
		background: var(--moe-theme);
		transform: scaleX(0);
		transform-origin: center;
		transition: transform .3s ease
	}

	.moe-nav-link:hover:after {
		transform: scaleX(1)
	}
}

@media (max-width:880px) {
	.moe-nav-link {
		display: flex;
		align-items: center;
		gap: 7px
	}
}

.moe-brand-logo {
	transition: transform .45s cubic-bezier(.34,1.45,.5,1)
}

.moe-brand-title {
	transition: color .25s ease
}

.moe-brand:hover .moe-brand-logo {
	transform: rotate(-12deg) scale(1.1)
}

.moe-brand:hover .moe-brand-title {
	color: var(--moe-theme)
}

.moe-profile-avatar {
	transition: transform 2.1s cubic-bezier(.37,0,.63,1),box-shadow .4s ease;
	will-change: transform;
	transform: rotate(0)
}

.moe-profile-avatar:hover {
	transform: rotate(360deg);
	box-shadow: 0 0 0 3px var(--moe-bg),0 8px 24px color-mix(in srgb,var(--moe-theme) 50%,transparent)
}

.moe-totop {
	width: 48px;
	height: 48px;
	transition: opacity .3s ease,transform .3s ease,visibility .3s ease,box-shadow .3s ease
}

.moe-totop-ring {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	pointer-events: none
}

.moe-totop-track {
	fill: none;
	stroke: #ffffff52;
	stroke-width: 3
}

.moe-totop-prog {
	fill: none;
	stroke: #fff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 131.95;
	stroke-dashoffset: 131.95;
	transition: stroke-dashoffset .15s linear
}

.moe-totop-arrow {
	position: relative;
	z-index: 1;
	transition: transform .25s cubic-bezier(.34,1.56,.64,1)
}

.moe-totop.show:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px color-mix(in srgb,var(--moe-theme) 60%,transparent)
}

.moe-totop.show:hover .moe-totop-arrow {
	transform: translateY(-3px)
}

.moe-totop.show:active {
	transform: translateY(-1px) scale(.93)
}

.moe-music-float {
	transition: none
}

.moe-music-fab {
	width: 48px;
	height: 48px;
	transition: transform .25s cubic-bezier(.34,1.56,.64,1),box-shadow .3s ease
}

.moe-music-fab svg {
	width: 20px;
	height: 20px
}

.moe-music-fab .moe-music-note {
	position: relative;
	z-index: 1;
	width: 20px;
	height: 20px
}

.moe-music-fab .moe-music-ring {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
	pointer-events: none
}

.moe-music-track {
	fill: none;
	stroke: #ffffff52;
	stroke-width: 3
}

.moe-music-prog {
	fill: none;
	stroke: #fff;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-dasharray: 131.95;
	stroke-dashoffset: 131.95;
	transition: stroke-dashoffset .25s linear
}

.moe-music-fab:hover {
	transform: scale(1.12) rotate(6deg);
	box-shadow: 0 12px 28px color-mix(in srgb,var(--moe-theme) 60%,transparent)
}

.moe-music-fab:active {
	transform: scale(.94)
}

.moe-music-float.open .moe-music-fab {
	transform: none
}

.moe-music-float.open .moe-music-fab:hover {
	transform: scale(1.12) rotate(6deg)
}

.moe-footer {
	position: relative
}

.moe-footer:before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translate(-50%);
	width: min(680px,80%);
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg,transparent,var(--moe-theme),transparent);
	opacity: .55
}

.moe-footer-inner {
	transition: opacity .7s ease,transform .7s cubic-bezier(.22,.61,.36,1)
}

.moe-footer.moe-pre-reveal .moe-footer-inner {
	opacity: 0;
	transform: translateY(20px)
}

.moe-footer.moe-pre-reveal.is-revealed .moe-footer-inner {
	opacity: 1;
	transform: none
}

:root {
	--moe-wrap: 1320px
}

@media (min-width:1700px) {
	:root {
		--moe-wrap: 1460px
	}
}

.moe-navbar-inner,.moe-layout,.moe-footer-inner {
	max-width: var(--moe-wrap)
}

.moe-comments {
	--halo-cw-primary-1-color: var(--moe-theme);
	--halo-cw-primary-2-color: color-mix(in srgb,var(--moe-theme) 50%,#fff);
	--halo-cw-primary-3-color: color-mix(in srgb,var(--moe-theme) 22%,#fff);
	--halo-cw-base-rounded: 12px;
	--halo-cw-avatar-rounded: 50%;
	--halo-cw-base-font-family: inherit
}

html.dark .moe-comments {
	--halo-cw-primary-1-color: var(--moe-theme);
	--halo-cw-primary-2-color: color-mix(in srgb,var(--moe-theme) 38%,#2a2533);
	--halo-cw-primary-3-color: color-mix(in srgb,var(--moe-theme) 20%,#2a2533)
}

html.moe-no-anim .moe-nav-ico,html.moe-no-anim .moe-nav-link:after,html.moe-no-anim .moe-brand-logo,html.moe-no-anim .moe-totop-arrow,html.moe-no-anim .moe-music-fab {
	transition: none
}

html.moe-no-anim .moe-nav-link:hover .moe-nav-ico,html.moe-no-anim .moe-brand:hover .moe-brand-logo {
	transform: none
}

html.moe-no-anim .moe-profile-avatar {
	transition: box-shadow .3s ease
}

html.moe-no-anim .moe-profile-avatar:hover {
	transform: rotate(0)
}

html.moe-no-anim .moe-footer-inner {
	opacity: 1!important;
	transform: none!important;
	transition: none
}

@media (prefers-reduced-motion:reduce) {
	.moe-profile-avatar {
		transition: box-shadow .3s ease
	}

	.moe-profile-avatar:hover {
		transform: rotate(0)
	}
}

#moe-comment {
	margin-top: 4px
}

.moe-cmt-form {
	display: flex;
	gap: 12px;
	align-items: flex-start
}

.moe-cmt-form-avatar img {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	border: 2px solid var(--moe-theme);
	padding: 1px;
	background: var(--moe-bg);
	flex: none
}

.moe-cmt-form-main {
	flex: 1;
	min-width: 0
}

.moe-cmt-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px
}

.moe-cmt-input {
	flex: 1 1 150px;
	min-width: 0;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--moe-border);
	border-radius: 10px;
	background: var(--moe-bg-2);
	color: var(--moe-text);
	font-size: 14px;
	font-family: inherit;
	transition: border-color .2s ease,background .2s ease
}

.moe-cmt-input:focus {
	outline: none;
	border-color: var(--moe-theme);
	background: var(--moe-card)
}

.moe-cmt-textarea {
	width: 100%;
	min-height: 92px;
	padding: 10px 12px;
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	background: var(--moe-bg-2);
	color: var(--moe-text);
	font-size: 14px;
	font-family: inherit;
	line-height: 1.7;
	resize: vertical;
	transition: border-color .2s ease,background .2s ease
}

.moe-cmt-textarea:focus {
	outline: none;
	border-color: var(--moe-theme);
	background: var(--moe-card)
}

.moe-cmt-form-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 8px
}

.moe-cmt-tip {
	font-size: 13px;
	color: var(--moe-muted);
	flex: 1;
	min-width: 0
}

.moe-cmt-tip.is-ok {
	color: #52a447
}

.moe-cmt-tip.is-err {
	color: #e0577f
}

.moe-cmt-submit {
	flex: none;
	border: none;
	cursor: pointer;
	background: var(--moe-theme);
	color: #fff;
	padding: 9px 22px;
	border-radius: 999px;
	font-size: 14px;
	font-family: inherit;
	box-shadow: 0 5px 14px color-mix(in srgb,var(--moe-theme) 40%,transparent);
	transition: filter .2s ease,transform .15s ease
}

.moe-cmt-submit:hover {
	filter: brightness(.95)
}

.moe-cmt-submit:active {
	transform: scale(.96)
}

.moe-cmt-submit:disabled {
	opacity: .6;
	cursor: default;
	box-shadow: none
}

.moe-cmt-listhead {
	margin: 22px 0 10px;
	padding-bottom: 8px;
	border-bottom: 1px dashed var(--moe-border)
}

.moe-cmt-count {
	font-size: 14px;
	font-weight: 600;
	color: var(--moe-text)
}

.moe-cmt-list {
	display: flex;
	flex-direction: column;
	gap: 18px
}

.moe-cmt-item {
	display: flex;
	gap: 12px;
	align-items: flex-start
}

.moe-cmt-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	flex: none;
	background: var(--moe-bg-2);
	border: 1px solid var(--moe-border)
}

.moe-cmt-item.is-reply .moe-cmt-avatar {
	width: 34px;
	height: 34px
}

.moe-cmt-body {
	flex: 1;
	min-width: 0
}

.moe-cmt-head {
	display: flex;
	align-items: baseline;
	gap: 10px;
	flex-wrap: wrap
}

.moe-cmt-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--moe-theme)
}

.moe-cmt-time {
	font-size: 12px;
	color: var(--moe-muted)
}

.moe-cmt-content {
	margin: 5px 0 6px;
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--moe-text);
	word-wrap: break-word;
	word-wrap: anywhere
}

.moe-cmt-content p {
	margin: .3em 0
}

.moe-cmt-content img {
	max-width: 100%;
	border-radius: 8px
}

.moe-cmt-actions {
	display: flex;
	gap: 14px
}

.moe-cmt-reply-btn {
	border: none;
	background: none;
	cursor: pointer;
	color: var(--moe-muted);
	font-size: 13px;
	font-family: inherit;
	padding: 0;
	transition: color .2s ease
}

.moe-cmt-reply-btn:hover {
	color: var(--moe-theme)
}

.moe-cmt-replies {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 14px;
	padding-left: 14px;
	border-left: 2px solid var(--moe-border)
}

.moe-cmt-reply-box {
	margin-top: 12px
}

.moe-cmt-reply-box .moe-cmt-form-avatar img {
	width: 38px;
	height: 38px
}

.moe-cmt-more {
	text-align: center;
	margin-top: 18px
}

.moe-cmt-more-btn {
	border: 1px solid var(--moe-border);
	background: var(--moe-card);
	color: var(--moe-text);
	cursor: pointer;
	padding: 7px 22px;
	border-radius: 999px;
	font-size: 13px;
	font-family: inherit;
	transition: all .2s ease
}

.moe-cmt-more-btn:hover {
	background: var(--moe-theme);
	color: #fff;
	border-color: var(--moe-theme)
}

.moe-cmt-state {
	text-align: center;
	color: var(--moe-muted);
	font-size: 13px;
	padding: 12px 0
}

.moe-cmt-state:empty {
	padding: 0
}

@media (max-width:680px) {
	.moe-cmt-input {
		flex-basis: 100%
	}
}

.moe-cmt-tools {
	position: relative;
	display: flex;
	gap: 6px;
	margin-top: 6px
}

.moe-cmt-tool {
	border: none;
	background: var(--moe-bg-2);
	cursor: pointer;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background .2s ease,transform .15s ease
}

html.dark .moe-cmt-tool:hover {
	background: #3a2f3a
}

.moe-cmt-emoji {
	position: absolute;
	left: 0;
	bottom: 42px;
	z-index: 30;
	width: min(330px,86vw);
	max-height: 208px;
	overflow: auto;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	box-shadow: var(--moe-shadow);
	padding: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px
}

.moe-cmt-emoji button {
	border: none;
	background: none;
	cursor: pointer;
	font-size: 18px;
	line-height: 1.2;
	padding: 5px 7px;
	border-radius: 6px;
	transition: background .15s ease
}

.moe-cmt-img {
	max-width: 240px;
	max-height: 240px;
	border-radius: 8px;
	display: block;
	margin: 6px 0;
	border: 1px solid var(--moe-border)
}

.moe-cmt-attach {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px
}

.moe-cmt-attach[hidden] {
	display: none
}

.moe-cmt-attach-item {
	position: relative;
	width: 72px;
	height: 72px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--moe-border);
	background: var(--moe-bg-2)
}

.moe-cmt-attach-item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block
}

.moe-cmt-attach-del {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 18px;
	height: 18px;
	border: none;
	border-radius: 50%;
	background: #0000008c;
	color: #fff;
	font-size: 12px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0
}

.moe-cmt-attach-del:hover {
	background: #e0577f
}

.moe-cmt-form-avatar img {
	width: 60px;
	height: 60px
}

.moe-cmt-tools {
	position: static;
	display: flex;
	gap: 14px;
	align-items: center;
	margin-top: 8px
}

.moe-cmt-tool {
	width: auto;
	height: auto;
	padding: 2px;
	background: none;
	border: none;
	color: var(--moe-muted);
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	transition: color .2s ease,transform .15s ease
}

.moe-cmt-tool:hover {
	background: none;
	color: var(--moe-theme);
	transform: translateY(-1px)
}

.moe-cmt-emoji {
	position: static;
	width: 100%;
	max-height: 210px;
	overflow-y: auto;
	overflow-x: hidden;
	margin-top: 8px;
	background: var(--moe-bg-2);
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	padding: 8px;
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(40px,1fr));
	grid-gap: 4px;
	gap: 4px;
	box-shadow: none
}

.moe-cmt-emoji[hidden] {
	display: none
}

.moe-cmt-emoji button {
	width: 100%;
	aspect-ratio: 1/1;
	height: auto;
	padding: 4px;
	border: none;
	background: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background .15s ease;
	display: flex;
	align-items: center;
	justify-content: center
}

.moe-cmt-emoji button:hover {
	background: var(--moe-card)
}

.moe-cmt-emoji img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	display: block
}

.moe-cmt-sticker {
	width: 28px;
	height: 28px;
	vertical-align: -7px;
	display: inline-block;
	margin: 0 1px
}

.moe-cmt-preview {
	margin-top: 8px;
	border: 1px dashed var(--moe-border);
	border-radius: 12px;
	padding: 10px 14px;
	font-size: 14.5px;
	line-height: 1.85;
	color: var(--moe-text);
	background: var(--moe-bg-2);
	word-wrap: break-word;
	word-wrap: anywhere
}

.moe-cmt-preview[hidden] {
	display: none
}

.moe-cmt-preview img.moe-cmt-img {
	max-width: 240px;
	max-height: 240px;
	border-radius: 8px;
	display: block;
	margin: 6px 0
}

.moe-cmt-muted {
	color: var(--moe-muted)
}

.moe-cmt-btns {
	display: flex;
	gap: 10px;
	flex: none
}

.moe-cmt-preview-btn {
	border: 1px solid var(--moe-border);
	background: var(--moe-card);
	color: var(--moe-text);
	cursor: pointer;
	padding: 9px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-family: inherit;
	transition: all .2s ease
}

.moe-cmt-preview-btn:hover {
	border-color: var(--moe-theme);
	color: var(--moe-theme)
}

.moe-extlink-mask {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: #180e189e;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	animation: moeExtFade .25s ease
}

.moe-extlink-mask[hidden] {
	display: none
}

@keyframes moeExtFade {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.moe-extlink {
	width: min(560px,100%);
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 18px;
	box-shadow: var(--moe-shadow);
	padding: 26px 26px 22px;
	text-align: center;
	animation: moeExtPop .28s cubic-bezier(.2,.8,.3,1)
}

@keyframes moeExtPop {
	0% {
		transform: translateY(14px) scale(.97);
		opacity: 0
	}

	to {
		transform: none;
		opacity: 1
	}
}

.moe-extlink-title {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
	color: var(--moe-text)
}

.moe-extlink-sub {
	margin: 0 0 18px;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-extlink-card {
	text-align: left;
	background: var(--moe-bg-2);
	border: 1px solid var(--moe-border);
	border-radius: 14px;
	padding: 16px
}

.moe-extlink-warn {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--moe-theme);
	margin-bottom: 14px
}

.moe-extlink-label {
	font-size: 13px;
	color: var(--moe-muted);
	margin-bottom: 6px
}

.moe-extlink-url {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 10px;
	padding: 10px 12px;
	color: var(--moe-theme);
	font-size: 14px;
	word-break: break-all
}

.moe-extlink-url svg {
	flex: none;
	opacity: .8
}

.moe-extlink-bar {
	height: 8px;
	border-radius: 999px;
	background: var(--moe-border);
	overflow: hidden;
	margin: 16px 0 8px
}

.moe-extlink-fill {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg,var(--moe-theme),#f472b6);
	border-radius: 999px;
	transition: width 1s linear
}

.moe-extlink-meta {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--moe-muted)
}

.moe-extlink-btns {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 20px
}

.moe-extlink-cancel,.moe-extlink-go {
	border: none;
	cursor: pointer;
	padding: 10px 26px;
	border-radius: 999px;
	font-size: 14px;
	font-family: inherit;
	transition: filter .2s ease,border-color .2s ease,color .2s ease,opacity .2s ease
}

.moe-extlink-cancel {
	background: var(--moe-bg-2);
	color: var(--moe-text);
	border: 1px solid var(--moe-border)
}

.moe-extlink-cancel:hover {
	border-color: var(--moe-theme);
	color: var(--moe-theme)
}

.moe-extlink-go {
	background: var(--moe-theme);
	color: #fff;
	box-shadow: 0 6px 16px color-mix(in srgb,var(--moe-theme) 40%,transparent)
}

.moe-extlink-go:disabled {
	opacity: .5;
	cursor: not-allowed;
	box-shadow: none
}

.moe-extlink-go:not(:disabled):hover {
	filter: brightness(.96)
}

.moe-l2d {
	position: fixed;
	bottom: 0;
	z-index: 9990;
	pointer-events: none;
	transition: transform .4s cubic-bezier(.2,.8,.3,1),opacity .4s ease
}

.moe-l2d-right {
	right: 0
}

.moe-l2d-left {
	left: 0
}

.moe-l2d-canvas {
	width: 100%;
	height: 100%;
	pointer-events: auto;
	cursor: grab
}

.moe-l2d-off.moe-l2d-right {
	transform: translate(120%);
	opacity: 0;
	pointer-events: none
}

.moe-l2d-off.moe-l2d-left {
	transform: translate(-120%);
	opacity: 0;
	pointer-events: none
}

.moe-l2d-tools {
	position: absolute;
	top: 6px;
	display: flex;
	gap: 6px;
	opacity: 0;
	transition: opacity .25s ease;
	pointer-events: auto
}

.moe-l2d-right .moe-l2d-tools {
	right: 6px
}

.moe-l2d-left .moe-l2d-tools {
	left: 6px
}

.moe-l2d:hover .moe-l2d-tools {
	opacity: 1
}

.moe-l2d-tools button {
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 50%;
	background: var(--moe-card);
	color: var(--moe-muted);
	box-shadow: var(--moe-shadow);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: color .2s ease,transform .15s ease
}

.moe-l2d-tools button:hover {
	color: var(--moe-theme);
	transform: translateY(-1px)
}

.moe-l2d-bubble {
	position: absolute;
	bottom: calc(100% - 8px);
	max-width: 200px;
	background: var(--moe-card);
	color: var(--moe-text);
	border: 1px solid var(--moe-border);
	border-radius: 14px;
	box-shadow: var(--moe-shadow);
	padding: 9px 13px;
	font-size: 13px;
	line-height: 1.6;
	pointer-events: none;
	animation: moeL2dPop .25s ease;
	z-index: 2
}

.moe-l2d-right .moe-l2d-bubble {
	right: 8%;
	left: auto
}

.moe-l2d-left .moe-l2d-bubble {
	left: 8%;
	right: auto
}

.moe-l2d-bubble[hidden] {
	display: none
}

.moe-l2d-right .moe-l2d-bubble:after {
	content: "";
	position: absolute;
	bottom: -7px;
	right: 32px;
	left: auto;
	border: 7px solid transparent;
	border-top-color: var(--moe-card)
}

.moe-l2d-left .moe-l2d-bubble:after {
	content: "";
	position: absolute;
	bottom: -7px;
	left: 32px;
	right: auto;
	border: 7px solid transparent;
	border-top-color: var(--moe-card)
}

@keyframes moeL2dPop {
	0% {
		opacity: 0;
		transform: translateY(6px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

.moe-l2d-fab {
	position: fixed;
	bottom: 24px;
	z-index: 9990;
	width: 46px;
	height: 46px;
	border: none;
	border-radius: 50%;
	background: var(--moe-theme);
	color: #fff;
	box-shadow: 0 6px 16px color-mix(in srgb,var(--moe-theme) 40%,transparent);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: transform .2s ease
}

.moe-l2d-fab:hover {
	transform: scale(1.08)
}

.moe-l2d-fab svg {
	display: block;
	margin-top: 1px
}

.moe-l2d-fab.moe-l2d-right {
	right: 80px
}

.moe-l2d-fab.moe-l2d-left {
	left: 80px
}

.moe-l2d-fab[hidden] {
	display: none
}

@media (max-width:768px) {
	.moe-l2d,.moe-l2d-fab {
		display: none!important
	}

	.moe-totop {
		width: 46px;
		height: 46px;
		right: 16px;
		bottom: 16px
	}

	.moe-music-float {
		left: 16px;
		bottom: 16px
	}

	.moe-music-fab {
		width: 46px;
		height: 46px;
		font-size: 19px
	}
}

.moe-vp {
	position: relative;
	display: block;
	width: 100%;
	margin: 1.2em 0;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	line-height: 0;
	outline: none;
	box-shadow: 0 4px 18px #0000002e
}

.moe-vp-video {
	display: block;
	width: 100%;
	height: auto;
	max-height: 80vh;
	background: #000;
	cursor: pointer
}

.moe-vp.fs {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
	margin: 0;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center
}

.moe-vp.fs .moe-vp-video {
	width: 100%;
	height: 100%;
	max-height: 100vh;
	-o-object-fit: contain;
	object-fit: contain
}

.moe-vp-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	pointer-events: none
}

.moe-vp-loading span {
	display: block;
	width: 42px;
	height: 42px;
	border: 3px solid rgba(255,255,255,.25);
	border-top-color: #fff;
	border-radius: 50%;
	animation: moeVpSpin .8s linear infinite
}

@keyframes moeVpSpin {
	to {
		transform: rotate(360deg)
	}
}

.moe-vp-err {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	color: #fff;
	background: #0000009e;
	font-size: 13px;
	line-height: 1.7;
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px)
}

.moe-vp-err[hidden] {
	display: none
}

.moe-vp-big {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 4;
	width: 64px;
	height: 64px;
	padding: 18px 20px 18px 16px;
	border: none;
	border-radius: 50%;
	background: #00000073;
	color: #fff;
	cursor: pointer;
	transition: transform .2s ease,background .2s ease;
	display: flex;
	align-items: center;
	justify-content: center
}

.moe-vp-big:hover {
	background: var(--moe-theme);
	transform: translate(-50%,-50%) scale(1.08)
}

.moe-vp.playing .moe-vp-big {
	display: none
}

.moe-vp-ctrl {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	padding: 24px 12px 8px;
	background: linear-gradient(to top,rgba(0,0,0,.7),rgba(0,0,0,.25) 60%,transparent);
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .25s ease,transform .25s ease;
	line-height: normal
}

.moe-vp:not(.fs):hover .moe-vp-ctrl,.moe-vp.active .moe-vp-ctrl,.moe-vp:not(.fs):focus .moe-vp-ctrl {
	opacity: 1;
	transform: none
}

.moe-vp.fs:not(.active) {
	cursor: none
}

.moe-vp-prog {
	position: relative;
	height: 4px;
	border-radius: 999px;
	background: #ffffff47;
	cursor: pointer;
	margin: 0 4px 8px;
	transition: height .15s ease
}

.moe-vp-prog:hover {
	height: 6px
}

.moe-vp-buf {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: #fff6;
	border-radius: 999px
}

.moe-vp-played {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: var(--moe-theme);
	border-radius: 999px
}

.moe-vp-dot {
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%,-50%) scale(0);
	transition: transform .15s ease;
	box-shadow: 0 1px 4px #0006
}

.moe-vp-prog:hover .moe-vp-dot {
	transform: translate(-50%,-50%) scale(1)
}

.moe-vp-row {
	display: flex;
	align-items: center;
	gap: 6px;
	color: #fff
}

.moe-vp-btn {
	width: 34px;
	height: 34px;
	flex: none;
	padding: 7px;
	border: none;
	background: transparent;
	color: #fff;
	cursor: pointer;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease,color .15s ease
}

.moe-vp-btn:hover {
	color: var(--moe-theme);
	background: #ffffff1f
}

.moe-vp-time {
	font-size: 12.5px;
	color: #fff;
	white-space: nowrap;
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums;
	margin: 0 2px
}

.moe-vp-time b {
	font-weight: 600
}

.moe-vp-sp {
	flex: 1
}

.moe-vp-vol {
	display: flex;
	align-items: center
}

.moe-vp-volbar {
	display: inline-block;
	width: 0;
	height: 4px;
	border-radius: 999px;
	background: #ffffff4d;
	overflow: hidden;
	cursor: pointer;
	transition: width .2s ease;
	vertical-align: middle
}

.moe-vp-vol:hover .moe-vp-volbar {
	width: 56px;
	margin-right: 4px
}

.moe-vp-volfill {
	display: block;
	height: 100%;
	width: 100%;
	background: #fff
}

.moe-vp-speed {
	position: relative
}

.moe-vp-spbtn {
	width: auto;
	padding: 0 8px;
	font-size: 12.5px;
	font-family: inherit
}

.moe-vp-spmenu {
	position: absolute;
	bottom: 40px;
	right: 0;
	background: #141016f2;
	border-radius: 10px;
	padding: 4px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	box-shadow: 0 6px 18px #0006
}

.moe-vp-spmenu[hidden] {
	display: none
}

.moe-vp-spitem {
	border: none;
	background: transparent;
	color: #fff;
	font-size: 12.5px;
	padding: 6px 18px;
	border-radius: 6px;
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap
}

.moe-vp-spitem:hover {
	background: #ffffff24
}

.moe-vp-spitem.on {
	color: var(--moe-theme);
	font-weight: 700
}

@media (max-width:768px) {
	.moe-vp-vol .moe-vp-volbar,.moe-vp-pip {
		display: none
	}

	.moe-vp-big {
		width: 54px;
		height: 54px
	}

	.moe-vp-ctrl {
		opacity: 1;
		transform: none;
		padding: 20px 6px 6px
	}

	.moe-vp-row {
		gap: 2px
	}

	.moe-vp-btn {
		width: 32px;
		height: 32px;
		padding: 6px
	}

	.moe-vp-time {
		font-size: 11px;
		margin: 0 1px
	}

	.moe-vp-spbtn {
		padding: 0 4px;
		font-size: 11px
	}
}

@media (max-width:360px) {
	.moe-vp-time {
		font-size: 10.5px
	}
}

.moe-ap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 1.1em 0;
	padding: 12px 14px;
	border-radius: 14px;
	background: color-mix(in srgb,var(--moe-theme) 8%,transparent);
	border: 1px solid color-mix(in srgb,var(--moe-theme) 22%,transparent);
	box-shadow: 0 2px 10px #0000000d
}

.moe-ap-play {
	flex: none;
	width: 44px;
	height: 44px;
	padding: 12px 13px 12px 11px;
	border: none;
	border-radius: 50%;
	background: var(--moe-theme);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform .15s ease,box-shadow .15s ease;
	box-shadow: 0 3px 10px color-mix(in srgb,var(--moe-theme) 45%,transparent)
}

.moe-ap-play:hover {
	transform: scale(1.06)
}

.moe-ap.playing .moe-ap-play {
	padding: 12px
}

.moe-ap-body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 5px
}

.moe-ap-title {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 600;
	opacity: .85;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.moe-ap-note {
	flex: none;
	width: 14px;
	height: 14px;
	color: var(--moe-theme)
}

.moe-ap.playing .moe-ap-note {
	animation: moeApNote 2.4s linear infinite
}

@keyframes moeApNote {
	to {
		transform: rotate(360deg)
	}
}

.moe-ap-prog {
	position: relative;
	height: 5px;
	border-radius: 999px;
	background: color-mix(in srgb,currentColor 16%,transparent);
	cursor: pointer;
	transition: height .15s ease
}

.moe-ap-prog:hover {
	height: 7px
}

.moe-ap-buf {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: color-mix(in srgb,currentColor 24%,transparent);
	border-radius: 999px
}

.moe-ap-played {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0;
	background: var(--moe-theme);
	border-radius: 999px
}

.moe-ap-dot {
	position: absolute;
	top: 50%;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--moe-theme);
	transform: translate(-50%,-50%) scale(0);
	transition: transform .15s ease;
	box-shadow: 0 1px 4px #00000040
}

.moe-ap-prog:hover .moe-ap-dot {
	transform: translate(-50%,-50%) scale(1)
}

.moe-ap-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 11.5px;
	opacity: .65;
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums
}

.moe-ap-speed {
	border: none;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 11.5px;
	cursor: pointer;
	padding: 0 6px;
	border-radius: 6px;
	opacity: .9
}

.moe-ap-speed:hover {
	background: color-mix(in srgb,var(--moe-theme) 16%,transparent);
	color: var(--moe-theme)
}

.moe-ap-vol {
	flex: none;
	display: flex;
	align-items: center
}

.moe-ap-mute {
	flex: none;
	width: 34px;
	height: 34px;
	padding: 7px;
	border: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	border-radius: 8px;
	opacity: .75;
	transition: opacity .15s ease,color .15s ease
}

.moe-ap-mute:hover {
	opacity: 1;
	color: var(--moe-theme)
}

.moe-ap-volbar {
	display: inline-block;
	width: 0;
	height: 4px;
	border-radius: 999px;
	background: color-mix(in srgb,currentColor 18%,transparent);
	overflow: hidden;
	cursor: pointer;
	transition: width .2s ease;
	vertical-align: middle
}

.moe-ap-vol:hover .moe-ap-volbar {
	width: 54px;
	margin-left: 2px
}

.moe-ap-volfill {
	display: block;
	height: 100%;
	width: 100%;
	background: var(--moe-theme)
}

@media (max-width:768px) {
	.moe-ap-vol .moe-ap-volbar {
		display: none
	}
}

.moe-post-content img.moe-avatar {
	width: 112px;
	height: 112px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	margin: 1.2em auto;
	border: 3px solid var(--moe-card);
	box-shadow: 0 4px 16px #00000024
}

.moe-post-content ul {
	list-style: none;
	padding-left: 1.7em
}

.moe-post-content ul>li {
	position: relative;
	margin: .5em 0
}

.moe-post-content ul>li:before {
	content: "◇";
	position: absolute;
	left: -1.6em;
	top: 0;
	color: var(--moe-theme);
	font-size: .92em
}

.moe-post-content ul[data-type=taskList] {
	padding-left: 0
}

.moe-post-content ul>li:has(input[type=checkbox]):before,.moe-post-content ul[data-type=taskList]>li:before,.moe-post-content li.task-list-item:before {
	content: none
}

.moe-post-content ul>li:has(input[type=checkbox]),.moe-post-content ul[data-type=taskList]>li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	position: static;
	padding-left: 0;
	list-style: none
}

.moe-post-content ul>li:has(input[type=checkbox])>label,.moe-post-content ul[data-type=taskList]>li>label {
	flex: none;
	margin: .15em 0 0
}

.moe-post-content ul>li:has(input[type=checkbox])>div,.moe-post-content ul[data-type=taskList]>li>div {
	flex: 1;
	min-width: 0
}

.moe-post-content ul[data-type=taskList]>li>div>p {
	margin: 0
}

.moe-post-content ul>li:has(input[type=checkbox])>input[type=checkbox] {
	align-self: center
}

.moe-note {
	margin: 1.1em 0;
	border-radius: 10px;
	padding: 12px 16px;
	border: 1px solid;
	color: inherit
}

.moe-note-head {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 13.5px;
	margin-bottom: 6px
}

.moe-note-head svg {
	width: 16px;
	height: 16px;
	flex: none
}

.moe-note-body {
	font-size: 14px;
	line-height: 1.75
}

.moe-note-body>:first-child {
	margin-top: 0
}

.moe-note-body>:last-child {
	margin-bottom: 0
}

.moe-note.is-tip {
	background: color-mix(in srgb,#3b82f6 8%,transparent);
	border-color: color-mix(in srgb,#3b82f6 28%,transparent)
}

.moe-note.is-tip .moe-note-head {
	color: #2563eb
}

.moe-note.is-note {
	background: color-mix(in srgb,var(--moe-theme) 9%,transparent);
	border-color: color-mix(in srgb,var(--moe-theme) 30%,transparent)
}

.moe-note.is-note .moe-note-head {
	color: var(--moe-theme)
}

.moe-note.is-warn {
	background: color-mix(in srgb,#f59e0b 11%,transparent);
	border-color: color-mix(in srgb,#f59e0b 30%,transparent)
}

.moe-note.is-warn .moe-note-head {
	color: #d97706
}

.moe-note.is-danger {
	background: color-mix(in srgb,#ef4444 9%,transparent);
	border-color: color-mix(in srgb,#ef4444 28%,transparent)
}

.moe-note.is-danger .moe-note-head {
	color: #dc2626
}

.moe-note.is-ok {
	background: color-mix(in srgb,#22c55e 9%,transparent);
	border-color: color-mix(in srgb,#22c55e 28%,transparent)
}

.moe-note.is-ok .moe-note-head {
	color: #16a34a
}

.moe-timeline {
	position: relative;
	margin: 1.2em 0;
	padding-left: 22px
}

.moe-timeline:before {
	content: "";
	position: absolute;
	left: 5px;
	top: 6px;
	bottom: 6px;
	border-left: 2px dashed color-mix(in srgb,currentColor 22%,transparent)
}

.moe-tl-group {
	position: relative;
	margin: 14px 0 8px
}

.moe-tl-group:first-child {
	margin-top: 0
}

.moe-tl-grouptitle {
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4
}

.moe-tl-item {
	position: relative;
	margin: 0 0 12px
}

.moe-tl-date {
	font-size: 12.5px;
	opacity: .72;
	margin-bottom: 5px;
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums
}

.moe-tl-dot-lg {
	width: 13px;
	height: 13px;
	left: -22px;
	top: 2px
}

.moe-tl-dot.is-blue {
	background: #3b82f6
}

.moe-tl-dot.is-red {
	background: #ef4444
}

.moe-tl-dot.is-yellow {
	background: #f59e0b
}

.moe-tl-dot.is-green {
	background: #22c55e
}

.moe-tl-box {
	border-radius: 8px;
	padding: 9px 14px;
	font-size: 14px;
	line-height: 1.75;
	border: 1px solid
}

.moe-tl-box.is-blue {
	background: color-mix(in srgb,#3b82f6 8%,transparent);
	border-color: color-mix(in srgb,#3b82f6 22%,transparent)
}

.moe-tl-box.is-red {
	background: color-mix(in srgb,#ef4444 8%,transparent);
	border-color: color-mix(in srgb,#ef4444 22%,transparent)
}

.moe-tl-box.is-yellow {
	background: color-mix(in srgb,#f59e0b 10%,transparent);
	border-color: color-mix(in srgb,#f59e0b 24%,transparent)
}

.moe-tl-box.is-green {
	background: color-mix(in srgb,#22c55e 8%,transparent);
	border-color: color-mix(in srgb,#22c55e 22%,transparent)
}

.moe-tl-box code,.moe-note-body code {
	background: color-mix(in srgb,currentColor 10%,transparent);
	padding: 1px 5px;
	border-radius: 4px;
	font-size: .9em
}

.moe-archive-tl {
	margin-top: 8px
}

.moe-archive-tl .moe-arc-c1 {
	--c: #3b82f6
}

.moe-archive-tl .moe-arc-c2 {
	--c: #22c55e
}

.moe-archive-tl .moe-arc-c3 {
	--c: #f59e0b
}

.moe-archive-tl .moe-arc-c4 {
	--c: #a78bfa
}

.moe-archive-tl .moe-tl-box {
	background: color-mix(in srgb,var(--c) 9%,transparent);
	border-color: color-mix(in srgb,var(--c) 26%,transparent)
}

.moe-archive-link {
	display: block;
	color: var(--moe-text);
	font-weight: 500;
	transition: transform .15s ease,color .15s ease
}

.moe-archive-link:hover {
	-webkit-text-decoration: none;
	text-decoration: none;
	transform: translate(3px);
	color: var(--c)
}

.moe-catpage {
	display: grid;
	grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
	grid-gap: 12px;
	gap: 12px
}

.moe-catpage-tile {
	--c: var(--moe-theme);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	border-radius: 14px;
	border: 1px solid;
	background: color-mix(in srgb,var(--c) 8%,transparent);
	border-color: color-mix(in srgb,var(--c) 24%,transparent);
	transition: transform .16s ease,box-shadow .16s ease
}

.moe-catpage-tile:hover {
	transform: translateY(-3px);
	-webkit-text-decoration: none;
	text-decoration: none;
	box-shadow: 0 7px 20px color-mix(in srgb,var(--c) 25%,transparent)
}

.moe-catpage-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--moe-text)
}

.moe-catpage-count {
	align-self: flex-start;
	font-size: 12px;
	font-weight: 600;
	background: var(--c);
	color: #fff;
	border-radius: 999px;
	padding: 2px 11px;
	line-height: 1.4
}

@media (max-width:520px) {
	.moe-catpage {
		grid-template-columns: repeat(2,1fr)
	}
}

.moe-hero-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	border: none;
	background: #000
}

@media (prefers-reduced-motion:reduce) {
	.moe-hero-video {
		display: none
	}
}

.moe-weather-main {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 6px 2px 12px
}

.moe-weather-icon {
	flex: none;
	width: 50px;
	height: 50px;
	color: var(--moe-theme);
	display: flex;
	align-items: center;
	justify-content: center
}

.moe-weather-icon svg {
	display: block;
	width: 100%;
	height: 100%
}

.moe-weather-info {
	min-width: 0;
	flex: 1
}

.moe-weather-temp {
	font-size: 34px;
	font-weight: 800;
	line-height: 1.05;
	color: var(--moe-theme);
	letter-spacing: .5px;
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums
}

.moe-weather-sub {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 4px;
	font-size: 13.5px;
	color: var(--moe-muted);
	min-width: 0
}

.moe-weather-sub>span:first-child {
	color: var(--moe-text);
	font-weight: 600;
	flex: none
}

.moe-weather-loc {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	min-width: 0;
	overflow: hidden
}

.moe-weather-loc svg {
	flex: none;
	color: var(--moe-theme)
}

.moe-weather-loc>span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.moe-weather.is-fail .moe-weather-temp {
	color: var(--moe-muted);
	font-size: 26px
}

.moe-weather-timerow {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	padding-top: 11px;
	border-top: 1px dashed var(--moe-border)
}

.moe-weather-time {
	font-size: 17px;
	font-weight: 700;
	color: var(--moe-text);
	font-feature-settings: "tnum";
	font-variant-numeric: tabular-nums;
	letter-spacing: .5px
}

.moe-weather-date {
	font-size: 12.5px;
	color: var(--moe-muted)
}

.moe-weather-gps {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 11px;
	padding: 5px 12px;
	border: 1px solid var(--moe-border);
	border-radius: 999px;
	background: transparent;
	color: var(--moe-theme);
	font-size: 12px;
	font-family: inherit;
	line-height: 1.4;
	cursor: pointer;
	transition: background .2s,border-color .2s,opacity .2s
}

.moe-weather-gps:hover {
	background: var(--moe-bg-2);
	border-color: var(--moe-theme)
}

.moe-weather-gps:disabled {
	opacity: .6;
	cursor: default
}

.moe-weather-gps svg {
	flex: none
}

.moe-quote {
	position: relative
}

.moe-quote-text {
	margin: 4px 0 8px;
	padding: 2px 4px 0 0;
	font-size: 14.5px;
	line-height: 1.7;
	font-style: italic;
	color: var(--moe-text);
	min-height: 1.7em
}

.moe-quote-author {
	margin: 0 0 2px;
	font-size: 12.5px;
	color: var(--moe-muted);
	text-align: right
}

.moe-quote-refresh {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 26px;
	height: 26px;
	flex: none;
	border: none;
	border-radius: 50%;
	background: var(--moe-bg-2);
	color: var(--moe-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s,color .2s,transform .3s
}

.moe-quote-refresh:hover {
	background: var(--moe-theme);
	color: #fff
}

.moe-quote-refresh:active {
	transform: rotate(180deg)
}

.moe-wish-header {
	text-align: center;
	padding: 10px 0 4px
}

.moe-wish-title {
	font-size: 34px;
	font-weight: 800;
	color: var(--moe-theme);
	margin: 0 0 10px;
	font-style: italic;
	letter-spacing: 2px
}

.moe-wish-sub {
	color: var(--moe-muted);
	font-size: 15px;
	margin: 0 0 18px
}

.moe-wish-intro {
	max-width: 760px;
	margin: 0 auto 14px
}

.moe-wish-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-top: 4px
}

.moe-wish-tab {
	border: 1px solid var(--moe-border);
	background: var(--moe-card);
	color: var(--moe-muted);
	padding: 7px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-family: inherit;
	cursor: pointer;
	transition: color .2s,border-color .2s,background .2s
}

.moe-wish-tab:hover {
	color: var(--moe-theme);
	border-color: var(--moe-theme)
}

.moe-wish-tab.is-on {
	background: var(--moe-theme);
	color: #fff;
	border-color: var(--moe-theme);
	box-shadow: 0 4px 12px color-mix(in srgb,var(--moe-theme) 33%,transparent)
}

.moe-wish-wall {
	position: relative;
	margin-top: 24px;
	min-height: 50px
}

.moe-wish-card {
	width: 100%;
	margin: 0 0 14px;
	padding: 13px 15px 12px;
	border-radius: 15px;
	color: #3f3f46;
	box-shadow: 0 6px 18px #0000001a;
	transition: transform .22s ease,box-shadow .22s ease;
	will-change: transform;
	cursor: pointer;
	min-height: 152px;
	display: flex;
	flex-direction: column
}

.moe-wish-card:hover {
	transform: translateY(-4px)!important;
	box-shadow: 0 16px 36px #00000038;
	z-index: 9999!important
}

.moe-wish-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 9px
}

.moe-wish-dots {
	display: inline-flex;
	gap: 6px
}

.moe-wish-dots i {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	display: block
}

.moe-wish-dots i:nth-child(1) {
	background: #ff5f57
}

.moe-wish-dots i:nth-child(2) {
	background: #febc2e
}

.moe-wish-dots i:nth-child(3) {
	background: #28c840
}

.moe-wish-cat {
	font-size: 12px;
	color: #0000006b;
	font-weight: 600
}

.moe-wish-text {
	font-size: 14.5px;
	line-height: 1.65;
	word-break: break-word;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.moe-wish-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 11px;
	font-size: 12px;
	color: #0000006b
}

.moe-wish-name {
	font-weight: 600;
	color: #0009
}

.moe-wish-c-green {
	background: #dcfce7
}

.moe-wish-c-blue {
	background: #dbeafe
}

.moe-wish-c-purple {
	background: #ede9fe
}

.moe-wish-c-pink {
	background: #fce7f3
}

.moe-wish-c-orange {
	background: #ffedd5
}

.moe-wish-c-yellow {
	background: #fef9c3
}

.moe-wish-state {
	text-align: center;
	color: var(--moe-muted);
	padding: 34px 0;
	font-size: 14px
}

.moe-wish-more {
	text-align: center;
	margin: 4px 0 96px
}

.moe-wish-more-btn {
	border: 1px solid var(--moe-border);
	background: var(--moe-card);
	color: var(--moe-text);
	cursor: pointer;
	padding: 8px 26px;
	border-radius: 999px;
	font-size: 13px;
	font-family: inherit;
	transition: color .2s,border-color .2s
}

.moe-wish-more-btn:hover {
	color: var(--moe-theme);
	border-color: var(--moe-theme)
}

.moe-wish-form {
	position: -webkit-sticky;
	position: sticky;
	bottom: 16px;
	z-index: 1000;
	margin: 18px auto 8px;
	max-width: 800px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 16px;
	padding: 10px 12px;
	box-shadow: 0 12px 34px #00000024
}

.moe-wish-nick {
	width: 95px;
	flex: none
}

.moe-wish-mail {
	width: 130px;
	flex: none
}

.moe-wish-nick,.moe-wish-mail,.moe-wish-ta {
	border: 1px solid var(--moe-border);
	background: var(--moe-bg-2);
	color: var(--moe-text);
	border-radius: 10px;
	padding: 9px 12px;
	font-size: 13.5px;
	font-family: inherit;
	transition: border-color .2s
}

.moe-wish-nick:focus,.moe-wish-mail:focus,.moe-wish-ta:focus {
	outline: none;
	border-color: var(--moe-theme)
}

.moe-wish-mid {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 240px
}

.moe-wish-ta {
	flex: 1;
	min-width: 110px;
	resize: none;
	line-height: 1.5;
	max-height: 120px;
	overflow-y: auto
}

.moe-wish-count {
	font-size: 11px;
	color: var(--moe-muted);
	flex: none
}

.moe-wish-colors {
	display: inline-flex;
	gap: 5px;
	flex: none
}

.moe-wish-color {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	transition: transform .15s,border-color .15s
}

.moe-wish-color:hover {
	transform: scale(1.15)
}

.moe-wish-color.is-on {
	border-color: var(--moe-theme);
	transform: scale(1.1)
}

.moe-wish-catdd {
	position: relative;
	flex: none
}

.moe-wish-catbtn {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--moe-border);
	background: var(--moe-bg-2);
	color: var(--moe-text);
	border-radius: 10px;
	padding: 9px 12px;
	font-size: 13.5px;
	font-family: inherit;
	line-height: 1.4;
	cursor: pointer;
	transition: border-color .2s
}

.moe-wish-catbtn:hover {
	border-color: var(--moe-theme)
}

.moe-wish-catarrow {
	width: 11px;
	height: 11px;
	flex: none;
	color: var(--moe-muted);
	transition: transform .2s
}

.moe-wish-catdd.is-open .moe-wish-catarrow {
	transform: rotate(180deg)
}

.moe-wish-catmenu {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + 6px);
	min-width: 100%;
	max-height: 240px;
	overflow-y: auto;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	box-shadow: var(--moe-shadow);
	z-index: 60
}

.moe-wish-catdd.is-up .moe-wish-catmenu {
	top: auto;
	bottom: calc(100% + 6px)
}

.moe-wish-catdd.is-open .moe-wish-catmenu {
	display: block
}

.moe-wish-catopt {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 13.5px;
	color: var(--moe-text);
	white-space: nowrap;
	cursor: pointer;
	transition: background .15s,color .15s
}

.moe-wish-catopt:hover {
	background: var(--moe-bg-2);
	color: var(--moe-theme)
}

.moe-wish-catopt.is-on {
	background: var(--moe-theme);
	color: #fff
}

.moe-wish-send {
	flex: none;
	border: none;
	cursor: pointer;
	background: var(--moe-theme);
	color: #fff;
	padding: 9px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
	box-shadow: 0 5px 14px color-mix(in srgb,var(--moe-theme) 40%,transparent);
	transition: filter .2s,transform .15s
}

.moe-wish-send:hover {
	filter: brightness(1.05)
}

.moe-wish-send:active {
	transform: scale(.96)
}

.moe-wish-send:disabled {
	opacity: .6;
	cursor: default;
	box-shadow: none
}

.moe-wish-toast {
	position: fixed;
	left: 50%;
	bottom: 92px;
	transform: translate(-50%) translateY(12px);
	background: #28282ef0;
	color: #fff;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 13.5px;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s,transform .25s;
	max-width: 86vw;
	text-align: center
}

.moe-wish-toast.show {
	opacity: 1;
	transform: translate(-50%) translateY(0)
}

.moe-wish-toast.is-err {
	background: #d64c5af5
}

@media (max-width:760px) {
	.moe-wish-title {
		font-size: 28px
	}

	.moe-wish-form {
		flex-direction: column;
		align-items: stretch;
		bottom: 8px;
		gap: 7px
	}

	.moe-wish-nick,.moe-wish-mail {
		width: 100%
	}

	.moe-wish-mid {
		flex-wrap: wrap;
		min-width: 0;
		gap: 7px
	}

	.moe-wish-ta {
		flex-basis: 100%;
		order: -1
	}

	.moe-wish-more {
		margin-bottom: 30px
	}
}

.moe-wish-reply-wrap {
	margin-top: 10px;
	padding-top: 9px;
	border-top: 1px dashed rgba(0,0,0,.14)
}

.moe-wish-replied {
	color: #16a34a;
	font-style: italic;
	font-weight: 600;
	font-size: 12.5px;
	margin-bottom: 3px
}

.moe-wish-reply-line {
	font-style: italic;
	color: #0000008f;
	font-size: 12.5px;
	line-height: 1.55;
	word-break: break-word
}

.moe-wish-reply-wrap .moe-wish-reply-line {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden
}

.moe-wish-modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px
}

.moe-wish-modal[hidden] {
	display: none
}

.moe-wish-modal-mask {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #00000080;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px)
}

.moe-wish-modal-box {
	position: relative;
	z-index: 1;
	width: min(440px,92vw);
	max-height: 86vh;
	overflow-y: auto;
	border-radius: 18px;
	box-shadow: 0 24px 70px #0000006b;
	animation: moeWishPop .22s ease
}

@keyframes moeWishPop {
	0% {
		opacity: 0;
		transform: translateY(16px) scale(.97)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.moe-wish-modal-body {
	padding: 20px 18px 16px;
	color: #3f3f46;
	border-radius: 18px
}

.moe-wish-modal-x {
	position: absolute;
	top: 9px;
	right: 11px;
	z-index: 2;
	border: none;
	background: #00000014;
	color: #444;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0
}

.moe-wish-modal-x:hover {
	background: #00000029
}

.moe-wish-mtext {
	font-size: 15px;
	line-height: 1.7;
	white-space: pre-wrap;
	word-break: break-word;
	margin-top: 4px
}

.moe-wish-mreply {
	margin-top: 12px
}

.moe-wish-mreply .moe-wish-replied {
	font-size: 13px;
	margin-bottom: 4px
}

.moe-wish-mreply .moe-wish-reply-line {
	font-size: 13.5px;
	line-height: 1.6
}

.moe-wish-mfoot {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	color: #00000080;
	margin-top: 14px;
	padding-top: 11px;
	border-top: 1px dashed rgba(0,0,0,.18)
}

.moe-wish-card.is-open {
	transform: scale(1.05)!important;
	z-index: 10000!important;
	box-shadow: 0 20px 52px #0000004d!important;
	cursor: default
}

.moe-wish-card.is-open .moe-wish-text,.moe-wish-card.is-open .moe-wish-reply-wrap .moe-wish-reply-line {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible
}

.moe-cmt-input.is-invalid {
	border-color: #e05a6a!important;
	box-shadow: 0 0 0 2px #e05a6a26
}

.moe-error-code {
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	color: var(--moe-theme);
	opacity: .85;
	margin: 6px 0 4px;
	letter-spacing: 2px
}

@media print {
	.moe-navbar,.moe-sidebar,.moe-footer,.moe-totop,.moe-music-float,.moe-l2d,.moe-l2d-fab,.moe-hero-video,.moe-article-share,.moe-reward,#moe-comment,#tcomment,#waline,.moe-comments,#moe-wishes,.moe-search,.moe-nav-toggle,canvas {
		display: none!important
	}

	html,body {
		background: #fff!important;
		color: #000!important
	}

	.moe-main {
		display: block!important;
		margin: 0!important;
		padding: 0!important;
		width: 100%!important;
		max-width: 100%!important
	}

	.moe-card,.moe-article {
		box-shadow: none!important;
		border: none!important;
		background: #fff!important;
		margin: 0!important
	}

	.moe-article-hero {
		height: auto!important;
		min-height: 0!important;
		background: none!important;
		padding: 0 0 8px!important
	}

	.moe-article-hero:before,.moe-article-hero:after {
		display: none!important
	}

	.moe-article-title,.moe-article-meta,.moe-article-meta *,.moe-post-content {
		color: #000!important
	}

	.moe-post-content a[href^=http]:after {
		content: " (" attr(href) ")";
		font-size: 11px;
		color: #555;
		word-break: break-all
	}

	.moe-post-content img {
		max-width: 100%!important;
		page-break-inside: avoid
	}

	pre,.moe-code,.moe-code-wrap {
		white-space: pre-wrap!important;
		word-break: break-word;
		border: 1px solid #ccc!important;
		background: #f7f7f7!important;
		box-shadow: none!important
	}

	h1,h2,h3,h4 {
		page-break-after: avoid
	}
}

html.dark .moe-post-content .katex,html.dark .moe-post-content .katex-display,html.dark .moe-post-content .katex-display>.katex,html.dark .moe-moment-body .katex,html.dark .moe-moment-body .katex-display {
	color: var(--moe-text)!important
}

.moe-layout.layout-left {
	grid-template-columns: 230px minmax(0,1fr)
}

.moe-layout.layout-right {
	grid-template-columns: minmax(0,1fr) 290px
}

@media (max-width:1180px) {
	.moe-layout.layout-left {
		grid-template-columns: 230px minmax(0,1fr)
	}

	.moe-layout.layout-left .moe-sidebar-left {
		display: flex
	}

	.moe-layout.layout-right {
		grid-template-columns: minmax(0,1fr) 290px
	}
}

@media (max-width:880px) {
	.moe-layout.layout-left,.moe-layout.layout-right {
		grid-template-columns: minmax(0,1fr)
	}
}

.moe-photo-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px
}

.moe-photo-tab {
	--tab-c: var(--moe-theme);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 14px;
	border: 1px solid var(--moe-border);
	border-radius: 999px;
	background: var(--moe-bg-2);
	color: var(--moe-text);
	font-size: 13px;
	cursor: pointer;
	transition: background .2s ease,border-color .2s ease,color .2s ease
}

.moe-photo-tab:before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tab-c);
	flex: none
}

.moe-photo-tab:hover {
	border-color: var(--tab-c)
}

.moe-photo-tab.is-active {
	background: var(--tab-c);
	border-color: var(--tab-c);
	color: #fff
}

.moe-photo-tab.is-active:before {
	background: #fff
}

.moe-photo-panel {
	display: none
}

.moe-photo-panel.is-active {
	display: block
}

.moe-photo img {
	cursor: zoom-in
}

.moe-timeline {
	position: relative;
	padding-left: 26px
}

.moe-timeline:before {
	content: "";
	position: absolute;
	left: 7px;
	top: 6px;
	bottom: 6px;
	width: 2px;
	background: linear-gradient(var(--moe-border),var(--moe-border))
}

.moe-tl-item {
	--tl-c: var(--moe-theme);
	position: relative;
	margin-bottom: 18px
}

.moe-tl-item:last-child {
	margin-bottom: 0
}

.moe-tl-dot {
	position: absolute;
	left: -26px;
	top: 6px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--tl-c);
	border: 3px solid var(--moe-card);
	box-shadow: 0 0 0 1px var(--tl-c)
}

.moe-tl-card {
	background: var(--moe-bg-2);
	border: 1px solid var(--moe-border);
	border-left: 3px solid var(--tl-c);
	border-radius: 12px;
	padding: 14px 16px
}

.moe-tl-time {
	display: block;
	font-size: 12px;
	color: var(--moe-muted);
	margin-bottom: 8px
}

.moe-tl-card .moe-moment-media video {
	width: 100%;
	border-radius: 8px;
	display: block
}

.moe-moment-foot {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 12px
}

.moe-mo-act {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 2px 4px;
	background: none;
	border: none;
	color: var(--moe-muted);
	font-size: 13px;
	cursor: pointer;
	transition: color .2s ease,transform .15s ease
}

.moe-mo-act svg {
	width: 16px;
	height: 16px
}

.moe-mo-like.is-liked {
	color: var(--moe-theme)
}

.moe-mo-like.is-liked svg {
	fill: var(--moe-theme)
}

.moe-mo-comments {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px dashed var(--moe-border)
}

.moe-reward-btn.is-liked {
	background: var(--moe-card);
	color: var(--moe-theme);
	box-shadow: inset 0 0 0 1px var(--moe-theme)
}

.moe-reward-btn.is-liked:hover {
	filter: none
}

.moe-fancy-head {
	display: flex;
	align-items: center;
	gap: 18px
}

.moe-fancy-head-text {
	min-width: 0
}

.moe-halo {
	position: relative;
	flex: none;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: radial-gradient(circle,color-mix(in srgb,var(--moe-theme) 22%,transparent),transparent 72%);
	color: var(--moe-theme);
	font-weight: 800
}

.moe-halo b {
	font-size: 27px;
	line-height: 1
}

.moe-halo small {
	font-size: 11px;
	color: var(--moe-muted);
	font-weight: 600;
	margin-top: 3px
}

.moe-halo:before,.moe-halo:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	border: 2px solid color-mix(in srgb,var(--moe-theme) 50%,transparent)
}

.moe-halo:before {
	animation: moe-halo 2.6s ease-out infinite
}

.moe-halo:after {
	animation: moe-halo 2.6s ease-out infinite 1.3s
}

.moe-halo-icon svg {
	width: 34px;
	height: 34px
}

@keyframes moe-halo {
	0% {
		transform: scale(.72);
		opacity: .9
	}

	to {
		transform: scale(1.28);
		opacity: 0
	}
}

@media (max-width:768px) {
	.moe-fancy-head {
		gap: 12px
	}

	.moe-halo {
		width: 66px;
		height: 66px
	}

	.moe-halo b {
		font-size: 21px
	}

	.moe-halo-icon svg {
		width: 28px;
		height: 28px
	}
}

.moe-tag-nebula {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 11px;
	padding: 12px 4px
}

.moe-tag-star {
	--tc: var(--moe-theme);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--tc);
	animation: moe-star-pop .45s cubic-bezier(.34,1.56,.5,1) backwards;
	transition: transform .25s cubic-bezier(.34,1.6,.5,1),box-shadow .25s ease,background .25s ease,color .25s ease,border-color .25s ease
}

.moe-tag-star:hover {
	animation: none;
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-tag-num {
	font-size: 11px;
	padding: 0 7px;
	line-height: 1.7;
	border-radius: 999px;
	background: color-mix(in srgb,var(--tc) 20%,transparent)
}

.moe-star-c0 {
	--tc: #ff6fa5
}

.moe-star-c1 {
	--tc: #ff9f6b
}

.moe-star-c2 {
	--tc: #43c59e
}

.moe-star-c3 {
	--tc: #6fa5ff
}

.moe-star-c4 {
	--tc: #a87fff
}

.moe-star-c5 {
	--tc: #ffb020
}

.moe-star-c6 {
	--tc: #ff5d8f
}

.moe-star-c7 {
	--tc: #4bc6d9
}

@keyframes moe-star-pop {
	0% {
		opacity: 0;
		transform: scale(.55)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

.moe-archive-year {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 26px;
	font-weight: 800;
	background: linear-gradient(120deg,var(--moe-theme),#c8a8ff);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 8px
}

.moe-archive-year:before {
	content: "🌸";
	-webkit-text-fill-color: initial;
	font-size: 18px
}

.moe-archive-tl {
	position: relative
}

.moe-archive-tl:before {
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
	bottom: 4px;
	width: 2px;
	border-radius: 2px;
	background: linear-gradient(var(--moe-theme),#c8a8ff,#ffd6ec);
	opacity: .5
}

.moe-archive-tl .moe-tl-item {
	--c: var(--moe-theme);
	position: relative;
	margin-bottom: 14px;
	animation: moe-tl-in .5s cubic-bezier(.34,1.4,.5,1) backwards
}

.moe-archive-tl .moe-tl-dot {
	background: var(--c);
	box-shadow: 0 0 0 3px var(--moe-card),0 0 10px color-mix(in srgb,var(--c) 70%,transparent);
	animation: moe-dot-pulse 2s ease-in-out infinite
}

.moe-archive-tl .moe-tl-box {
	display: block;
	border-radius: 12px;
	background: color-mix(in srgb,var(--c) 10%,var(--moe-card));
	border: 1px solid color-mix(in srgb,var(--c) 28%,transparent);
	transition: transform .22s cubic-bezier(.34,1.5,.5,1),box-shadow .22s ease,color .22s ease
}

.moe-archive-tl .moe-tl-box:hover {
	transform: translate(6px);
	color: var(--c);
	box-shadow: 0 8px 22px color-mix(in srgb,var(--c) 26%,transparent);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-arc-c0 {
	--c: #ff6fa5
}

.moe-arc-c1 {
	--c: #ff9f6b
}

.moe-arc-c2 {
	--c: #43c59e
}

.moe-arc-c3 {
	--c: #6fa5ff
}

.moe-arc-c4 {
	--c: #a87fff
}

@keyframes moe-tl-in {
	0% {
		opacity: 0;
		transform: translate(-14px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes moe-dot-pulse {
	0%,to {
		box-shadow: 0 0 0 3px var(--moe-card),0 0 6px color-mix(in srgb,var(--c) 60%,transparent)
	}

	50% {
		box-shadow: 0 0 0 3px var(--moe-card),0 0 15px color-mix(in srgb,var(--c) 90%,transparent)
	}
}

.moe-catpage-tile {
	overflow: hidden;
	animation: moe-cat-pop .45s cubic-bezier(.34,1.56,.5,1) backwards
}

.moe-catpage-tile:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg,var(--c),color-mix(in srgb,var(--c) 40%,#ffffff));
	opacity: .85
}

.moe-catpage-tile:after {
	content: "📁";
	position: absolute;
	right: 10px;
	bottom: 4px;
	font-size: 26px;
	opacity: .15;
	transition: transform .3s ease
}

.moe-catpage-tile:hover {
	transform: translateY(-4px) rotate(-1deg) scale(1.02);
	box-shadow: 0 12px 26px color-mix(in srgb,var(--c) 32%,transparent)
}

.moe-catpage-tile:hover:after {
	transform: scale(1.25) rotate(-8deg)
}

.moe-catpage-c0 {
	--c: #ff6fa5
}

.moe-catpage-c1 {
	--c: #ff9f6b
}

.moe-catpage-c2 {
	--c: #43c59e
}

.moe-catpage-c3 {
	--c: #6fa5ff
}

.moe-catpage-c4 {
	--c: #a87fff
}

@keyframes moe-cat-pop {
	0% {
		opacity: 0;
		transform: scale(.85) translateY(10px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.moe-page-title-icon {
	animation: moe-titlepop .5s cubic-bezier(.34,1.56,.5,1) backwards
}

@keyframes moe-titlepop {
	0% {
		opacity: 0;
		transform: scale(.5) rotate(-12deg)
	}

	to {
		opacity: 1;
		transform: none
	}
}

.moe-halo-deco {
	overflow: visible
}

.moe-halo-emoji {
	font-size: 30px;
	display: inline-block;
	animation: moe-petal 3.2s ease-in-out infinite
}

.moe-halo-spark {
	position: absolute;
	top: 14px;
	right: 16px;
	font-size: 14px;
	animation: moe-twinkle 1.8s ease-in-out infinite
}

.moe-halo-spark2 {
	position: absolute;
	bottom: 16px;
	left: 15px;
	font-size: 12px;
	animation: moe-twinkle 2.1s ease-in-out infinite .5s
}

@keyframes moe-petal {
	0%,to {
		transform: translateY(0) rotate(-8deg)
	}

	50% {
		transform: translateY(-5px) rotate(8deg)
	}
}

@keyframes moe-twinkle {
	0%,to {
		opacity: .25;
		transform: scale(.7)
	}

	50% {
		opacity: 1;
		transform: scale(1.15)
	}
}

.moe-tag-star {
	background: none!important;
	border: none!important;
	padding: 3px 8px;
	box-shadow: none;
	text-shadow: 0 1px 3px color-mix(in srgb,var(--tc) 18%,transparent);
	border-radius: 8px
}

.moe-tag-star:hover {
	background: none!important;
	border: none!important;
	color: var(--tc);
	transform: scale(1.3) rotate(-2deg);
	text-shadow: 0 0 16px color-mix(in srgb,var(--tc) 75%,transparent);
	box-shadow: none;
	z-index: 6
}

.moe-tag-num {
	background: none;
	opacity: .55;
	font-size: .68em;
	padding: 0 2px;
	font-weight: 700
}

.moe-tag-star:hover .moe-tag-num {
	background: none;
	color: var(--tc);
	opacity: .9
}

.moe-tag-nebula.is-scattered {
	position: relative;
	display: block;
	padding: 0
}

.moe-tag-nebula.is-scattered .moe-tag-star:hover {
	animation-play-state: paused
}

@keyframes moe-float {
	0%,to {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-7px)
	}
}

.moe-star-s0 {
	font-size: 15px;
	opacity: .85
}

.moe-star-s1 {
	font-size: 17px
}

.moe-star-s2 {
	font-size: 21px;
	padding: 2px 6px
}

.moe-star-s3 {
	font-size: 26px;
	padding: 3px 7px
}

.moe-star-s4 {
	font-size: 33px;
	padding: 3px 8px
}

.moe-tag-inner {
	display: inline-flex;
	align-items: center;
	gap: 5px
}

.moe-tag-nebula.is-scattered .moe-tag-star {
	position: absolute;
	white-space: nowrap;
	animation: none;
	transform: translate(var(--px,0px),var(--py,0px));
	transition: transform .35s ease-out
}

.moe-tag-nebula.is-scattered .moe-tag-star .moe-tag-inner {
	animation: moe-float 4.2s ease-in-out infinite
}

.moe-tag-star:hover {
	z-index: 8
}

.moe-tag-star:hover .moe-tag-inner {
	transform: scale(1.32) rotate(-2deg);
	animation-play-state: paused
}

.moe-tag-inner {
	transition: transform .25s cubic-bezier(.34,1.6,.5,1)
}

.moe-archive-tl .moe-tl-item .moe-tl-dot {
	background: var(--c);
	border: 3px solid var(--moe-card);
	box-shadow: 0 0 0 1px var(--c),0 0 10px color-mix(in srgb,var(--c) 65%,transparent);
	animation: moe-dot-pulse 2s ease-in-out infinite
}

.moe-archive-tl .moe-tl-item .moe-tl-box {
	background: color-mix(in srgb,var(--c) 10%,var(--moe-card));
	border: 1px solid color-mix(in srgb,var(--c) 30%,transparent);
	border-left: 3px solid var(--c)
}

.moe-archive-tl .moe-tl-item .moe-tl-box:hover {
	color: var(--c);
	transform: translate(6px);
	box-shadow: 0 8px 22px color-mix(in srgb,var(--c) 26%,transparent)
}

.moe-archive-tl .moe-tl-date {
	color: var(--c);
	font-weight: 700;
	opacity: .9
}

.moe-mo-item {
	animation: moe-mo-in .5s cubic-bezier(.34,1.4,.5,1) backwards
}

.moe-mo-item .moe-tl-dot {
	background: var(--tl-c);
	border: 3px solid var(--moe-card);
	box-shadow: 0 0 0 1px var(--tl-c),0 0 10px color-mix(in srgb,var(--tl-c) 60%,transparent);
	animation: moe-mo-pulse 2.4s ease-in-out infinite
}

.moe-mo-item .moe-tl-card {
	background: color-mix(in srgb,var(--tl-c) 8%,var(--moe-card));
	border: 1px solid color-mix(in srgb,var(--tl-c) 26%,transparent);
	border-left: 3px solid var(--tl-c);
	border-radius: 14px;
	transition: transform .22s cubic-bezier(.34,1.5,.5,1),box-shadow .22s ease
}

.moe-mo-item .moe-tl-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px color-mix(in srgb,var(--tl-c) 26%,transparent)
}

.moe-mo-item .moe-tl-time {
	color: var(--tl-c);
	font-weight: 700;
	opacity: .85
}

.moe-mo-item .moe-tl-time:before {
	content: "🕒 ";
	font-size: 11px
}

.moe-mo-act:hover {
	color: var(--tl-c);
	transform: scale(1.12)
}

.moe-mo-like:hover {
	animation: moe-mo-heart .5s ease
}

.moe-moment-media img,.moe-moment-media video {
	border-radius: 12px;
	transition: transform .25s ease
}

.moe-moment-media img:hover {
	transform: scale(1.02)
}

@keyframes moe-mo-in {
	0% {
		opacity: 0;
		transform: translateY(14px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

@keyframes moe-mo-pulse {
	0%,to {
		box-shadow: 0 0 0 1px var(--tl-c),0 0 6px color-mix(in srgb,var(--tl-c) 50%,transparent)
	}

	50% {
		box-shadow: 0 0 0 1px var(--tl-c),0 0 15px color-mix(in srgb,var(--tl-c) 85%,transparent)
	}
}

@keyframes moe-mo-heart {
	0%,to {
		transform: scale(1.12)
	}

	40% {
		transform: scale(1.3) rotate(-8deg)
	}
}

.moe-archive-tl .moe-tl-item.moe-arc-c0 {
	--c: #ff6fa5
}

.moe-archive-tl .moe-tl-item.moe-arc-c1 {
	--c: #ff9f6b
}

.moe-archive-tl .moe-tl-item.moe-arc-c2 {
	--c: #43c59e
}

.moe-archive-tl .moe-tl-item.moe-arc-c3 {
	--c: #6fa5ff
}

.moe-archive-tl .moe-tl-item.moe-arc-c4 {
	--c: #a87fff
}

@media (max-width:1024px) {
	.moe-navbar .moe-nav,.moe-navbar .moe-search,.moe-navbar .moe-user-entry {
		display: none!important
	}

	.moe-navbar-inner>#moe-theme-toggle {
		margin-left: auto!important
	}

	.moe-sidebar .moe-profile {
		display: none!important
	}
}

html.moe-drawer-open {
	overflow: hidden
}

.moe-drawer-mask {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1100;
	background: #00000080;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease,visibility .35s ease
}

html.moe-drawer-open .moe-drawer-mask {
	opacity: 1;
	visibility: visible
}

.moe-drawer {
	visibility: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1120;
	width: 80%;
	max-width: 400px;
	background: var(--moe-bg);
	border-left: 1px solid var(--moe-border);
	transform: translate3d(100%,0,0);
	transition: transform .35s ease,visibility .35s ease
}

html.moe-drawer-open .moe-drawer {
	visibility: visible;
	transform: translateZ(0)
}

.moe-drawer-wrap {
	height: 100%;
	padding: 16px 14px 24px;
	overflow-y: auto;
	overscroll-behavior: contain
}

.moe-drawer-card {
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 16px;
	padding: 14px;
	margin-bottom: 14px
}

.moe-drawer-profile {
	text-align: center;
	padding: 20px 14px 16px
}

.moe-drawer-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	border: 2px solid var(--moe-theme);
	padding: 2px
}

.moe-drawer-name {
	margin: 10px 0 4px;
	font-size: 17px;
	font-weight: 700
}

.moe-drawer-bio {
	margin: 0;
	font-size: 13px;
	color: var(--moe-muted)
}

.moe-drawer-loc {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	margin: 6px 0 0;
	font-size: 12px;
	color: var(--moe-muted)
}

.moe-drawer-stats {
	display: flex;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--moe-border)
}

.moe-drawer-stats .moe-dstat {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: var(--moe-muted);
	font-size: 12px
}

.moe-drawer-stats .moe-dstat b {
	font-size: 18px;
	color: var(--moe-theme);
	font-weight: 800
}

.moe-drawer-stats .moe-dstat:hover {
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-drawer-social {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 12px
}

.moe-drawer-search {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 14px
}

.moe-drawer-search svg {
	position: absolute;
	left: 14px;
	color: var(--moe-muted);
	pointer-events: none
}

.moe-drawer-search input {
	width: 100%;
	height: 44px;
	padding: 0 16px 0 40px;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 999px;
	color: var(--moe-text);
	font-size: 14px;
	outline: none
}

.moe-drawer-search input:focus {
	border-color: var(--moe-theme)
}

.moe-drawer-nav {
	padding: 4px 0
}

.moe-dnav-link:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-dnav-item+.moe-dnav-item>.moe-dnav-link {
	border-top: 1px solid var(--moe-border)
}

.moe-dnav-text {
	flex: 1
}

.moe-dnav-caret {
	display: flex;
	align-items: center;
	color: var(--moe-muted);
	padding: 4px;
	margin: -4px;
	transition: transform .25s ease
}

.moe-dnav-sub {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
	background: var(--moe-bg-2)
}

.moe-dnav-item.open .moe-dnav-sub {
	max-height: 400px
}

.moe-dnav-sublink {
	display: block;
	padding: 12px 16px 12px 32px;
	font-size: 14px;
	color: var(--moe-muted);
	border-top: 1px solid var(--moe-border)
}

.moe-dnav-sublink:hover {
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-drawer-user .moe-user-entry {
	display: block!important;
	width: 100%;
	position: static
}

.moe-drawer-user .moe-user-trigger {
	display: none!important
}

.moe-drawer-user .moe-user-menu {
	width: 100%;
	position: static
}

.moe-drawer-user .moe-user-dropdown {
	display: block!important;
	position: static;
	width: auto;
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	transform: none;
	opacity: 1;
	visibility: visible
}

.moe-drawer-user .moe-user-card {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 14px;
	margin: 0;
	cursor: pointer;
	border: none
}

.moe-drawer-user .moe-user-card:after {
	content: "";
	margin-left: auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--moe-muted);
	border-bottom: 2px solid var(--moe-muted);
	transform: rotate(45deg);
	transition: transform .25s ease
}

.moe-drawer-user.open .moe-user-card:after {
	transform: rotate(-135deg)
}

.moe-drawer-user .moe-user-card-avatar {
	width: 42px!important;
	height: 42px!important
}

.moe-drawer-user .moe-user-dropdown-item,.moe-drawer-user .moe-user-logout-form {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .28s ease,opacity .2s ease
}

.moe-drawer-user.open .moe-user-dropdown-item,.moe-drawer-user.open .moe-user-logout-form {
	max-height: 60px;
	opacity: 1
}

.moe-drawer-user .moe-user-dropdown-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 0 14px;
	font-size: 14px;
	border-top: 1px solid var(--moe-border);
	border-radius: 0
}

.moe-drawer-user.open .moe-user-dropdown-item {
	padding: 13px 14px
}

.moe-drawer-user .moe-user-login {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	gap: 9px;
	padding: 15px 14px;
	border-radius: 0;
	background: transparent;
	color: var(--moe-text);
	font-size: 15px;
	height: auto
}

.moe-drawer-user .moe-user-login-text {
	display: inline
}

@media (min-width:1025px) {
	.moe-drawer,.moe-drawer-mask {
		display: none!important
	}
}

.moe-dnav-row {
	display: flex;
	align-items: center
}

.moe-dnav-item+.moe-dnav-item>.moe-dnav-row {
	border-top: 1px solid var(--moe-border)
}

.moe-dnav-link {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 13px 16px;
	color: var(--moe-text);
	font-size: 15px
}

.moe-dnav-ico {
	display: inline-flex;
	align-items: center;
	color: var(--moe-theme);
	flex: none
}

.moe-dnav-ico svg {
	width: 17px;
	height: 17px
}

.moe-dnav-caret {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 44px;
	border: none;
	background: transparent;
	color: var(--moe-muted);
	cursor: pointer;
	transition: transform .25s ease;
	padding: 0
}

.moe-dnav-item.open .moe-dnav-caret {
	transform: rotate(180deg)
}

.moe-drawer-search-panel {
	position: absolute;
	top: 50px;
	left: 0;
	right: 0;
	z-index: 5;
	background: var(--moe-card);
	border: 1px solid var(--moe-border);
	border-radius: 12px;
	box-shadow: var(--moe-shadow);
	max-height: 240px;
	overflow-y: auto;
	padding: 6px
}

.moe-drawer-search-panel .moe-search-item {
	display: block;
	padding: 9px 12px;
	border-radius: 8px;
	font-size: 14px;
	color: var(--moe-text)
}

.moe-drawer-search-panel .moe-search-item:hover {
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-drawer-search-panel .moe-search-empty {
	padding: 12px;
	text-align: center;
	color: var(--moe-muted);
	font-size: 13px
}

.moe-drawer .moe-user-entry {
	display: block!important
}

.moe-drawer-user {
	padding: 0;
	overflow: hidden
}

.moe-duser-login,.moe-duser-card {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	padding: 15px 14px;
	background: transparent;
	border: none;
	color: var(--moe-text);
	font-size: 15px;
	cursor: pointer;
	text-align: left
}

.moe-duser-login:hover,.moe-duser-card:hover {
	background: var(--moe-bg-2);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-duser-ico {
	display: inline-flex;
	align-items: center;
	color: var(--moe-theme)
}

.moe-duser-ico svg {
	width: 17px;
	height: 17px
}

.moe-duser-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover;
	flex: none
}

.moe-duser-avatar-fb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--moe-bg-2);
	color: var(--moe-muted)
}

.moe-duser-meta {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0
}

.moe-duser-name {
	font-weight: 700;
	font-size: 15px
}

.moe-duser-slug {
	font-size: 12px;
	color: var(--moe-muted)
}

.moe-duser-caret {
	display: flex;
	color: var(--moe-muted);
	transition: transform .25s ease
}

.moe-drawer-user.open .moe-duser-caret {
	transform: rotate(180deg)
}

.moe-duser-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease
}

.moe-drawer-user.open .moe-duser-panel {
	max-height: 200px
}

.moe-duser-item {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 13px 14px;
	font-size: 14px;
	color: var(--moe-text);
	background: transparent;
	border: none;
	border-top: 1px solid var(--moe-border);
	cursor: pointer;
	text-align: left
}

.moe-duser-item:hover {
	background: var(--moe-bg-2);
	color: var(--moe-theme);
	-webkit-text-decoration: none;
	text-decoration: none
}

.moe-duser-item.is-danger {
	color: #ff5d6c
}

.moe-duser-logout {
	margin: 0
}

.moe-dnav-sublink {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px 12px 32px;
	font-size: 14px;
	color: var(--moe-muted);
	border-top: 1px solid var(--moe-border)
}

.moe-dnav-subico {
	display: inline-flex;
	align-items: center;
	color: var(--moe-theme);
	flex: none;
	opacity: .8
}

.moe-dnav-subico svg {
	width: 15px;
	height: 15px
}

.moe-sidebar-mobile {
	display: none
}

@media (max-width:1024px) {
	.moe-layout.has-mobile-sidebar .moe-sidebar-left,.moe-layout.has-mobile-sidebar .moe-sidebar-right {
		display: none!important
	}

	.moe-sidebar-mobile {
		display: flex;
		order: 2;
		position: static
	}
}

@media (min-width:1025px) {
	.moe-sidebar-mobile {
		display: none!important
	}
}

.moe-friend-list[style*="--moe-links-limit:1"] .moe-friend-item:nth-child(n+2),.moe-friend-list[style*="--moe-links-limit:2"] .moe-friend-item:nth-child(n+3),.moe-friend-list[style*="--moe-links-limit:3"] .moe-friend-item:nth-child(n+4),.moe-friend-list[style*="--moe-links-limit:4"] .moe-friend-item:nth-child(n+5),.moe-friend-list[style*="--moe-links-limit:5"] .moe-friend-item:nth-child(n+6),.moe-friend-list[style*="--moe-links-limit:6"] .moe-friend-item:nth-child(n+7),.moe-friend-list[style*="--moe-links-limit:7"] .moe-friend-item:nth-child(n+8),.moe-friend-list[style*="--moe-links-limit:8"] .moe-friend-item:nth-child(n+9),.moe-friend-list[style*="--moe-links-limit:9"] .moe-friend-item:nth-child(n+10),.moe-friend-list[style*="--moe-links-limit:10"] .moe-friend-item:nth-child(n+11) {
	display: none
}
