.joe_dropdown {
	position: relative
}

.joe_dropdown__link {
	display: flex;
	align-items: center
}

.joe_dropdown__link-icon {
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s
}

.joe_dropdown__menu {
	position: absolute;
	left: 50%;
	visibility: hidden;
	z-index: 999;
	border-top: 3px solid var(--theme);
	-webkit-transform-origin: top;
	transform-origin: top;
	background: var(--background);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	border-radius: 0 0 var(--radius-inner) var(--radius-inner);
	padding: 10px 0;
	opacity: 0;
	-webkit-transform: translateX(-50%) perspective(600px) rotateX(-45deg);
	transform: translateX(-50%) perspective(600px) rotateX(-45deg);
	transition: opacity 0.35s, visibility 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
	transition: opacity 0.35s, visibility 0.35s, transform 0.35s, -webkit-transform 0.35s;
	will-change: transform, opacity;
}

.joe_dropdown__menu::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 7px solid var(--theme)
}

.joe_dropdown.active .joe_dropdown__link-icon {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.joe_dropdown.active .joe_dropdown__menu {
	visibility: visible;
	opacity: 1;
	-webkit-transform: translateX(-50%) perspective(600px) rotateX(0);
	transform: translateX(-50%) perspective(600px) rotateX(0)
}

.joe_header {
	position: fixed;
	width: 100vw;
	top: 0;
	z-index: 1000;
	background: var(--background);
	transition: top 0.35s
}

.joe_header:target,
.joe_header.active {
	top: -60px;
}

.body-scroll .joe_header {
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

.joe_header.active .joe_header__below {
	border-top: none
}

.joe_header.active.current .joe_header__below-title {
	display: block
}

.joe_header.active.current .joe_header__below-class {
	display: none
}

.joe_header__above {
	position: relative;
	z-index: 999;
	background: var(--background);
}

.joe_header__above>div {
	align-items: center;
}

.joe_header__above-logo {
	position: relative;
	display: flex;
	align-items: center;
	/* height: 60px; */
	padding-right: 15px;
	margin-right: 15px
}

.joe_header__above-logo img {
	max-width: 150px;
	max-height: 35px;
	-o-object-fit: cover;
	object-fit: cover
}

.joe_header__above-logo>.dark {
	display: none
}

.joe_header__above-nav {
	display: flex;
	align-items: center
}

.joe_header__above-nav .item {
	position: relative;
	height: 60px;
	line-height: 60px;
	font-size: 15px;
	padding: 0 8px;
	margin-right: 15px;
	transition: color 0.35s;
	white-space: nowrap;
	color: var(--main)
}

.joe_header__above-nav .item:last-child {
	margin-right: 0
}

.joe_header__above-nav .item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	transition: opacity 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s;
	transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
	border-radius: 6px 6px 0 0;
	opacity: 0;
	-webkit-transform: scaleX(0.25);
	transform: scaleX(0.25);
	background: var(--theme);
}

.joe_header__above-nav .item.active,
.joe_header__above-nav .item:hover {
	color: var(--theme)
}

.joe_header__above-nav .item.active::after,
.joe_header__above-nav .item:hover::after {
	opacity: 1;
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.joe_header__above-nav .joe_dropdown__link a {
	height: 50px;
	line-height: 50px;
	font-size: 15px;
	padding-left: 8px;
	padding-right: 3px;
	transition: color 0.35s;
	white-space: nowrap;
	color: var(--main)
}

.joe_header__above-nav .joe_dropdown__menu {
	width: 110px;
	text-align: center
}

.joe_header__above-nav .joe_dropdown__menu a {
	display: block;
	line-height: 34px;
	height: 34px;
	transition: color 0.35s, background 0.35s;
	color: var(--minor);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0 15px;
	margin: 0;
}

.joe_header__above-nav .joe_dropdown__menu a:hover,
.joe_header__above-nav .joe_dropdown__menu a.active {
	color: var(--theme);
	background: var(--classD)
}

.joe_header__above-search {
	position: relative;
	margin-left: auto;
	display: flex;
	align-items: center
}

.joe_header__above-search .input {
	background: transparent;
	width: 170px;
	height: 34px;
	border: 2px solid var(--classB);
	border-right: none;
	padding: 0 18px;
	color: var(--routine);
	transition: border-color 0.35s, padding-right 0.35s;
	border-radius: 17px 0 0 17px
}

.joe_header__above-search .input:focus {
	border-color: var(--theme);
	padding-right: 28px
}

.joe_header__above-search .input:focus~.icon {
	-webkit-transform: translate3d(0, -50%, 0) rotateY(180deg);
	transform: translate3d(0, -50%, 0) rotateY(180deg)
}

/*PC端搜索按钮*/
.joe_header__above-search .submit {
	position: relative;
	z-index: 1;
	height: 34px;
	border: none;
	background: var(--theme);
	color: #fff;
	border-radius: 0 17px 17px 0;
	padding: 0 10px;
	white-space: nowrap;
}

.joe_header__above-search .icon {
	position: absolute;
	top: 50%;
	left: 145px;
	width: 28px;
	height: 38px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAmCAYAAADX7PtfAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QA/wD/AP+gvaeTAAAHKElEQVRYw93Xe3DNdxrH8ecXiSK7i1qWFWW3rekiE2x3VEemtkkVVbWy4jY6atma2YpS6rJoozvbpRF1qW1EEYIk5xZE5EKE3CQi0SB30VwEIeeWnDi3nPf+kUNTE1R3mNn945n5nZkz8zrP53y/39/3EUCeZsn/HCgi80Rky1MDn/H2vjB6SpBVRMb9V6CI+InIBhE58bOez5b9xm9E0wu//0NTr/4+9SKyX0TGicjiP320kpBd+xCRv/0kUFEUf49OnfJGBwWzWn3UcfCGSa8xO1zxFoi3gLbJyZb8S/QeOIhRb0/hiA1GvjkREfF9bFBEQv0C3ySyrIaEO5DjaCXFYkdttKEyWFEbrKiNNjRmBztLrrIqVsfAYb507tJVryjKi48FisiK8Qs/IL4FVEYbOTY7l3FSjJNCp4PDpnZoOzi+BSKKq+j3wostiqK8/KPBv27+6pja9H03uXYHl3FwyeWgGCcFTscPwXalMdnZU1VPn4GDTCLS90eB2ibHHpXRhtpgRWWwkmqxU4yTEpwcvaUno7kZ7f1dtitds4tVcYcRkZMiskhRlCEPBdUG2/a7oNpoQ2Oyc8zUwrsp+QREp7CxpA6N0YbaaENtvBtrW2lMdsIy8xn00u/4aPly9h04QEBgICKy+oGgymiNUBltaN2xflxwlUmqdArKvyX0RBZf1ejbge5y/zi10cbg4SO4Ul3N8dRUqmprcQETJ01CUZQxHXdotH+jMtpYdLact9RniMzOxX6rDAzlrEzOIKLO+EPMXRqTnbCs88yePQuA18aOpWuPXuyIiKCouBgROfQA0Bq1tqiGsPRsMFbiaigBfQXoy1mZnMnOa6YOMBsHb7ewKbuAWTNnAhAQGEjPPn3JyMmh2W5HUZScDkGd0b5/RuoFqmtLiNj8GSLCxcwEMFTw95RM/l1ruBepxtTW2YKMYiYdPouuycHg4SOpqa8nTqPhclkZDuBcYSEiEtMxaLZHByXmU1qUiYeHByLCsZhIMFayPfMs/yy9TrzZQZzByqeX6pigzSLqbB5z4k+jNTvYcCqbvj4++i/Cwi7kFZxvidq/3+UzYAAi8l6HYLzZfiAoIZfoiHBEBBGhNDcZ9BXkln5LoCaLoMR8punOsCM7j8b6EjBWsDjxDHtuNKE1O9h95RrT14QyJngm01at48u8IkTktPtg6da9e/dffb8PTXbVVG0mqRva4pw8PgBMV6CxHBrLuVhZRMO1Ypw3LrPt8zXYrl8CfTmrUzL5ut2C0jY50TW3om1yEm+B/oNf0rvBYfPff//59pEefUd9BtKPU5oQS+vtMmgsx3W7DJf7GfNV5kyfgoiQpNoNxko+Tsog8u6Cuu8wiLfAb/2Gt7hBRUR6tAdTpmozQV/etjrbYXfBxspzKEpb3MU5x8FYwUxdOirDfXvTvT+1TU569vt17YP+w+RJ0ae4WdUWlcsdJfqKtmd9BWcSDiIijHvdH8xVVFdfYmpiPjqznQP1BmIamu6dRBqTnfCcQkQkukPQPyZdNToqzfZWaLKzuvwiGCpoLcrAnqS917G1/iKfL5iLMUkH3xWiK8hnWX4Vhy0uJi9ayqpYHRqzo+1stbgIePc9u4i83iE4O7128cvRp1mRZ2Hy+qRWQ25aW2d1RW0x3+04/zScTITcNJYmZxFxzcj+2lsM8vUjrrHlXrRR1Q107tLlYodnqaIo2iHDhlp8g+bzaSkcqbO0xiXn80boCdbtOkXuuUJuVRdjqbuI42YxNXmpLFkwh6FvTOCoDdeYP09nVazOpWtuRW20oWtu5Z0PlyMiwR2CIrJbG7WNyPD1DBrxCoEh61snhEYwcc1WXvnLelffgOX6gcE7VN1+3sM2cuwfEU9PRCRtftgWQnbupVf/AQSvXMta3TE0ZgeHbprx7tGz6oGvJxHx8vDyOr35sxWYrp4n8VAEsZGbiNsVTvy+7TzXr0+j+3sHRkx4G1GUnc90885bGhWDh4dHlqIo10Xk9oqDanQWF/M3bUVEPnjo+/CTEkJeXbgOX9+h/GPlIrR7t3I8difHYiLp3evZanf03iIyQkR6iKcXnl6dTymK0lVRFD8RmTpj7XqO2mDIq/6ISM+HgicbnPM+r4TVhS1M26IhYNlGxixcg4hiFpHnOrjd/fL+z8P8XyPmtoVOXl6Zj7xinLrpnLux3EXaDQff1ED4dxD8ZRwisvYxbuHquf8KR0Q2PRJcdcm5JL3BwR2blRablVZg1KhRLkVRej8GOFg6dUJEFj0S3F3NYpPVRrPNSovDweGEBERkx0+YNWYoivL8I8E7Tue8O04nFrsdBzDG3x8R8Xli01NISMiSrdu2kZGTzd7oaERk7xMd12ZFJC0b/8nX9Brsh4ikiUj3Jwpes/Ph3qzLeHb7RbGIeD7xgfRIQsIyH5/+RkVR+j+VCXjkyJHdFEXx/r+b8f8DZyW8Jd6/P38AAAAldEVYdGRhdGU6Y3JlYXRlADIwMjEtMDItMjBUMTE6NTI6MjQrMDA6MDA4bfPmAAAAJXRFWHRkYXRlOm1vZGlmeQAyMDIxLTAyLTIwVDExOjUyOjI0KzAwOjAwSTBLWgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAAASUVORK5CYII=);
	background-size: 100% 100%;
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(100%, -50%, 0) rotateY(180deg);
	transform: translate3d(100%, -50%, 0) rotateY(180deg)
}

.joe_header__above-search .result {
	position: absolute;
	z-index: 2;
	top: 60px;
	left: 0;
	right: 0;
	background: var(--background);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	border-radius: var(--radius-inner);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.35s, opacity 0.35s, -webkit-transform 0.35s;
	transition: visibility 0.35s, opacity 0.35s, transform 0.35s;
	transition: visibility 0.35s, opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0)
}

.joe_header__above-search .result.active {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible
}

.joe_header__above-search .result .item {
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid var(--classD);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 0 10px;
	transition: background 0.35s
}

.joe_header__above-search .result .item:last-child {
	border-bottom: none
}

.joe_header__above-search .result .item:nth-child(1) .sort {
	background: #fe2d46
}

.joe_header__above-search .result .item:nth-child(2) .sort {
	background: #f60
}

.joe_header__above-search .result .item:nth-child(3) .sort {
	background: #faa90e
}

.joe_header__above-search .result .item:hover {
	background: var(--classD)
}

.joe_header__above-search .result .item .sort {
	color: #fff;
	background: #7f7f8c;
	width: 18px;
	height: 18px;
	line-height: 18px;
	border-radius: 2px;
	text-align: center;
	margin-right: 8px;
	font-weight: 500
}

.joe_header__above-search .result .item .text {
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--routine);
	font-size: 12px
}

.joe_header__above-search .result .item .views {
	color: var(--seat);
	font-size: 12px;
	margin-left: 5px
}

.joe_header__above-slideicon>i::after,
.joe_header__above-slideicon>i::before,
.joe_header__above-slideicon>i>i {
	content: '';
	position: absolute;
	width: 1em;
	height: 2px;
	background: var(--main-color);
	left: 0;
	right: 0;
	transition: .4s;
	border-radius: 2px;
	bottom: .45em
}

.joe_header__above-slideicon>i>i {
	right: .1em;
	width: .9em
}

.joe_header__above-slideicon>i::before {
	bottom: .8em;
	right: .2em;
	width: .8em;
}

.joe_header__above-slideicon>i::after {
	bottom: .1em
}

.joe_header__above-searchicon,
.joe_header__above-slideicon {
	display: none;
	/* width: 20px; */
	/* height: 20px; */
	/* fill: var(--routine); */
	cursor: pointer;
	color: var(--main-color);
}

@media (max-width: 768px) {
	.mobile-navbar-show .joe_header__above-slideicon .i-menu::before {
		right: 0;
		width: calc(1em + 1px);
		transform: rotate(-45deg);
		transform-origin: top right;
	}

	.mobile-navbar-show .joe_header__above-slideicon .i-menu>i {
		opacity: 0;
	}

	.mobile-navbar-show .joe_header__above-slideicon .i-menu::after {
		transform: rotate(45deg);
		width: calc(1em + 1px);
		transform-origin: bottom right;
	}
}

.joe_header__above-searchicon {
	margin-left: auto
}

.joe_header__below {
	position: relative;
	border-top: 1px solid var(--classC);
	height: 40px
}

.joe_header__below-title {
	max-width: 450px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	display: none;
	line-height: 40px;
	font-size: 17px;
	font-weight: 700;
	color: var(--main);
	-webkit-animation: showHeaderTitle 0.35s;
	animation: showHeaderTitle 0.35s
}

.joe_header__below-class {
	display: flex
}

.joe_header__below-class .item {
	margin-right: 15px;
	color: var(--minor);
	height: 40px;
	line-height: 40px;
	transition: color 0.35s;
	white-space: nowrap
}

.joe_header__below-class .item:hover,
.joe_header__below-class .item.active {
	color: var(--theme)
}

.joe_header__below-class .joe_dropdown {
	margin-right: 15px
}

.joe_header__below-class .joe_dropdown__link .item {
	margin-right: 3px
}

.joe_header__below-class .joe_dropdown__menu {
	width: 110px;
	text-align: center
}

.joe_header__below-class .joe_dropdown__menu a {
	display: block;
	height: 34px;
	line-height: 34px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--minor);
	transition: color 0.35s, background 0.35s
}

.joe_header__below-class .joe_dropdown__menu a:hover,
.joe_header__below-class .joe_dropdown__menu a.active {
	color: var(--theme);
	background: var(--classD)
}

.joe_header__below-sign {
	margin-left: auto
}

.joe_header__below-sign .joe_dropdown__link {
	display: flex;
	align-items: center;
	height: 45px;
	color: var(--minor);
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: color 0.35s
}

.joe_header__below-sign .joe_dropdown__link .icon {
	fill: var(--minor);
	margin-right: 3px;
	transition: fill 0.35s
}

.joe_header__below-sign .joe_dropdown__link:hover {
	color: var(--theme)
}

.joe_header__below-sign .joe_dropdown__link:hover .icon {
	fill: var(--theme)
}

.joe_header__below-sign .joe_dropdown__menu {
	width: 110px;
	text-align: center
}

.joe_header__below-sign .joe_dropdown__menu a {
	display: block;
	height: 34px;
	line-height: 34px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--minor);
	transition: color 0.35s, background 0.35s
}

.joe_header__below-sign .joe_dropdown__menu a:hover,
.joe_header__below-sign .joe_dropdown__menu a.active {
	color: var(--theme);
	background: var(--classD)
}

.joe_header__below-sign .item {
	display: flex;
	align-items: center;
	height: 40px;
	color: var(--minor);
}

.joe_header__below-sign .item .icon {
	fill: var(--minor);
	margin-right: 5px
}

.joe_header__below-sign .item a {
	color: var(--minor);
	transition: color 0.25s
}

.joe_header__below-sign .item a:hover {
	color: var(--theme)
}

.joe_header__below-sign .item .split {
	margin: 0 5px
}

.joe_header__searchout {
	position: absolute;
	top: 51px;
	left: 0;
	right: 0;
	z-index: 890;
	background: var(--background);
	border-top: 2px solid var(--classC);
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	transition: visibility 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, visibility 0.35s;
	transition: transform 0.35s, visibility 0.35s, -webkit-transform 0.35s;
	visibility: hidden
}

.joe_header__searchout.active {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.joe_header__searchout-inner {
	padding: 15px 0;
	width: 100%
}

.joe_header__searchout-inner .search {
	width: 100%;
	display: flex;
	align-items: center
}

.joe_header__searchout-inner .search input {
	flex: 1;
	height: 36px;
	padding: 0 10px;
	border: 1.5px solid var(--classB);
	border-right: none;
	border-radius: 2px 0 0 2px;
	color: var(--routine);
	background: transparent;
	transition: 0.15s;
}

.joe_header__searchout-inner .search input:focus {
	border-color: var(--theme);
}

.joe_header__searchout-inner .search button {
	padding: 0 10px;
	height: 36px;
	border: none;
	background: var(--theme);
	color: #fff;
	border-radius: 0 2px 2px 0
}

.joe_header__searchout-inner .title {
	color: var(--routine);
	padding: 15px 0 10px;
	font-size: 16px;
	display: flex;
	align-items: center
}

.joe_header__searchout-inner .title .icon {
	width: 22px;
	height: 22px;
	fill: var(--routine);
	margin-right: 5px
}

.joe_header__searchout-inner .cloud {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -5px -5px
}

.joe_header__searchout-inner .cloud .item {
	padding: 5px
}

.joe_header__searchout-inner .cloud .item a {
	display: block;
	padding: 0 10px;
	height: 24px;
	line-height: 24px;
	border-radius: 2px;
	font-size: 12px;
	color: #fff
}

.joe_header__slideout {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 80%;
	z-index: 1020;
	background: var(--classD);
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	visibility: hidden;
	transition: visibility 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, visibility 0.35s;
	transition: transform 0.35s, visibility 0.35s, -webkit-transform 0.35s;
	overflow-y: auto;
	padding: 10vh 15px 15px;
	/* height: calc(var(--vh, 1vh)* 100); */
}

.joe_header__slideout::-webkit-scrollbar {
	display: none
}

.joe_header__slideout.active {
	visibility: visible;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.joe_header__slideout-image {
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100% + 1px);
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1
}

.joe_header__slideout-author {
	display: flex;
	margin-bottom: 15px;
	border-radius: var(--radius-wrap);
	padding: 15px;
	box-shadow: var(--box-shadow)
}

.joe_header__slideout-author .avatar {
	width: 50px;
	height: 50px;
	margin-right: 10px;
	border-radius: 50%;
	/* 禁止收缩 */
	flex-shrink: 0;
}

.joe_header__slideout-author .info {
	/* 强制占满剩余空间 + 允许收缩 */
	flex: 1;
	/* 突破 Flex 项默认最小宽度限制 */
	min-width: 0;
	overflow: hidden;
	line-height: 25px
}

.joe_header__slideout-author .info .link,
.joe_header__slideout-author .info .motto {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden
}

.joe_header__slideout-author .info .link {
	display: block;
	font-size: 15px;
	font-weight: 500;
	color: var(--main)
}

.joe_header__slideout-author .info .motto {
	font-size: 12px;
	color: var(--routine)
}

.joe_header__slideout-count {
	border-radius: var(--radius-wrap);
	padding: 10px 15px;
	box-shadow: var(--box-shadow);
	margin-bottom: 15px
}

.joe_header__slideout-count .item {
	display: flex;
	align-items: center;
	color: var(--routine);
	padding: 5px 0
}

.joe_header__slideout-count .item .icon {
	width: 15px;
	height: 15px;
	fill: var(--routine);
	margin-right: 5px
}

.joe_header__slideout-count .item strong {
	font-weight: 500;
	color: var(--theme)
}

.joe_header__slideout-menu {
	padding: 10px 15px;
	border-radius: var(--radius-wrap);
	overflow: hidden;
	box-shadow: var(--box-shadow)
}

.joe_header__slideout-menu .link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	color: var(--main);
	transition: color 0.15s
}

.joe_header__slideout-menu .link a {
	transition: color 0.15s;
	color: var(--routine)
}

.joe_header__slideout-menu .link .icon {
	width: 13px;
	height: 13px;
	fill: var(--minor);
	transition: fill 0.15s, -webkit-transform 0.15s;
	transition: transform 0.15s, fill 0.15s;
	transition: transform 0.15s, fill 0.15s, -webkit-transform 0.15s
}

.joe_header__slideout-menu .link.in {
	color: var(--theme)
}

.joe_header__slideout-menu .link.in a {
	color: var(--theme)
}

.joe_header__slideout-menu .link.in .icon {
	fill: var(--theme);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.joe_header__slideout-menu .current a {
	color: var(--theme);
	font-weight: 500;
	font-size: 15px
}

.joe_header__slideout-menu .slides {
	display: none;
	/* border-left: 1px solid var(--classC); */
	padding-left: 15px
}

.joe_header__slideout-menu .slides .link {
	color: var(--routine)
}

.joe_header__slideout-menu .slides .current {
	color: var(--theme);
	font-weight: 500;
	font-size: 15px
}

.joe_header__slideout-author,
.joe_header__slideout-count,
.joe_header__slideout-menu {
	background: var(--back-trn-75);
}

.joe_header__mask {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.65);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: visibility 0.35s, opacity 0.35s;
	z-index: 880
}

.joe_header__mask.active {
	visibility: visible;
	opacity: 1
}

.joe_header__mask.slideout {
	z-index: 1010
}

.joe_aside {
	width: 311px;
	margin-left: 15px;
	padding-bottom: 20px;
}

.joe_aside__item {
	/* position: relative; */
	width: 311px;
	margin-bottom: 20px;
	border-radius: var(--radius-inner);
	/* overflow: hidden */
}

.joe_aside__item:last-child {
	position: -webkit-sticky;
	position: sticky;
	margin-bottom: 0;
	transition: top 0.35s
}

.joe_aside__item-title {
	padding: 15px;
	padding-top: 0;
}

.joe_aside__item-title>.text {
	position: relative;
	padding-left: 1.2em;
	font-size: 15px;
	color: var(--main-color);
}

.joe_aside__item-title>.text:before {
	position: absolute;
	content: '';
	width: 4px;
	background: var(--theme);
	top: 10%;
	left: 2px;
	bottom: 10%;
	border-radius: 5px;
	box-shadow: 1px 1px 3px -1px var(--theme);
}

.joe_aside__item-title .icon {
	width: 18px;
	height: 18px;
	margin-right: 8px;
	fill: var(--main)
}

.joe_aside__item-title .line {
	width: 10px;
	height: 1px;
	background: #54b5db;
	margin-left: 12px
}

.joe_aside__item-contain {
	position: relative;
	overflow: auto;
	clear: both;
	background: var(--background);
	padding: 15px;
	box-shadow: 0 0 10px var(--main-shadow);
	border-radius: var(--main-radius);
	margin-bottom: 20px;
}

.joe_aside__item.timelife .item {
	margin-bottom: 15px
}

.joe_aside__item.timelife .item:last-child {
	margin-bottom: 0
}

.joe_aside__item.timelife .item .title {
	font-size: 12px;
	color: var(--minor);
	margin-bottom: 5px;
	display: flex;
	align-items: center
}

.joe_aside__item.timelife .item .title .text {
	color: var(--theme);
	font-weight: 500;
	font-size: 14px;
	margin: 0 5px
}

.joe_aside__item.timelife .item .progress {
	display: flex;
	align-items: center;
	position: unset;
}

.joe_aside__item.timelife .item .progress-bar {
	height: 10px;
	border-radius: 5px;
	overflow: hidden;
	background: var(--classC);
	width: 0;
	min-width: 0;
	flex: 1;
	margin-right: 5px
}

.joe_aside__item.timelife .item .progress-bar-inner {
	width: 0;
	height: 100%;
	border-radius: 5px;
	transition: width 0.35s;
	-webkit-animation: progress 750ms linear infinite;
	animation: progress 750ms linear infinite
}

.joe_aside__item.timelife .item .progress-bar-inner-0 {
	background: #bde6ff;
	background-image: linear-gradient(135deg, #50bfff 25%, transparent 25%, transparent 50%, #50bfff 50%, #50bfff 75%, transparent 75%, transparent 100%);
	background-size: 30px 30px
}

.joe_aside__item.timelife .item .progress-bar-inner-1 {
	background: #ffd980;
	background-image: linear-gradient(135deg, #f7ba2a 25%, transparent 25%, transparent 50%, #f7ba2a 50%, #f7ba2a 75%, transparent 75%, transparent 100%);
	background-size: 30px 30px
}

.joe_aside__item.timelife .item .progress-bar-inner-2 {
	background: #ffa9a9;
	background-image: linear-gradient(135deg, #ff4949 25%, transparent 25%, transparent 50%, #ff4949 50%, #ff4949 75%, transparent 75%, transparent 100%);
	background-size: 30px 30px
}

.joe_aside__item.timelife .item .progress-bar-inner-3 {
	background: #67c23a;
	background-image: linear-gradient(135deg, #4f9e28 25%, transparent 25%, transparent 50%, #4f9e28 50%, #4f9e28 75%, transparent 75%, transparent 100%);
	background-size: 30px 30px
}

.joe_aside__item.timelife .item .progress-percentage {
	color: var(--minor)
}

.joe_aside__item.weather {
	background: var(--background)
}

.joe_aside__item.weather .joe_aside__item-contain {
	min-height: 300px
}

.joe_aside__item.hot .empty {
	text-align: center;
	color: var(--routine)
}

.joe_aside__item.hot .item {
	margin-bottom: 15px
}

.joe_aside__item.hot .item:last-child {
	margin-bottom: 0
}

.joe_aside__item.hot .item:nth-child(1) .link .sort {
	background: #ff183e
}

.joe_aside__item.hot .item:nth-child(2) .link .sort {
	background: #ff5c38
}

.joe_aside__item.hot .item:nth-child(3) .link .sort {
	background: #ffb821
}

.joe_aside__item.hot .item .link {
	position: relative;
	display: block;
	border-radius: var(--radius-inner);
	overflow: hidden
}

.joe_aside__item.hot .item .link:hover .image {
	-webkit-transform: scale(1.2);
	transform: scale(1.2)
}

.joe_aside__item.hot .item .link .sort {
	position: absolute;
	top: 5px;
	right: -20px;
	background: #7f7f8c;
	color: #fff;
	width: 65px;
	text-align: center;
	font-size: 12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	font-weight: 500;
	z-index: 1;
	font-style: normal
}

.joe_aside__item.hot .item .link .image {
	width: 100%;
	height: 130px;
	-o-object-fit: cover;
	object-fit: cover;
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s
}

.joe_aside__item.hot .item .link .describe {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
	font-size: 12px;
	color: var(--seat)
}

.joe_aside__item.hot .item .link .describe h6 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
	line-height: 24px;
	font-size: 14px
}

.joe_aside__item.today .joe_aside__item-contain .item {
	position: relative
}

.joe_aside__item.today .joe_aside__item-contain .item .tail {
	position: absolute;
	left: 6px;
	top: 0;
	height: 100%;
	border-left: 1px solid var(--classC)
}

.joe_aside__item.today .joe_aside__item-contain .item .head {
	position: absolute;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--background)
}

.joe_aside__item.today .joe_aside__item-contain .item .desc {
	position: relative;
	top: -2px;
	padding-left: 24px;
	padding-bottom: 15px
}

.joe_aside__item.today .joe_aside__item-contain .item .desc time {
	display: block;
	font-weight: 600;
	margin-bottom: 7px
}

.joe_aside__item.today .joe_aside__item-contain .item .desc a {
	display: block;
	color: var(--routine);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.25s;
	font-size: 13px
}

.joe_aside__item.today .joe_aside__item-contain .item .desc a:hover {
	color: var(--theme)
}

.joe_aside__item.today .joe_aside__item-contain .item:nth-child(even) .head {
	border: 1px solid #f48b29
}

.joe_aside__item.today .joe_aside__item-contain .item:nth-child(even) .desc {
	color: #f48b29
}

.joe_aside__item.today .joe_aside__item-contain .item:nth-child(odd) .head {
	border: 1px solid #f05454
}

.joe_aside__item.today .joe_aside__item-contain .item:nth-child(odd) .desc {
	color: #f05454
}

.joe_aside__item.today .joe_aside__item-contain .item:last-child .desc {
	padding-bottom: 0
}

.joe_aside__item.newreply .empty {
	text-align: center;
	color: var(--routine)
}

.joe_aside__item.newreply .item {
	margin-bottom: 15px;
	border-bottom: 1px dashed var(--classC);
	padding-bottom: 15px
}

.joe_aside__item.newreply .item:last-child {
	margin-bottom: 0;
	border-bottom-color: transparent;
	padding-bottom: 0
}

.joe_aside__item.newreply .item .user {
	display: flex;
	margin-bottom: 12px
}

.joe_aside__item.newreply .item .user .avatar {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	margin-right: 12px;
	border-radius: 50%;
	border: 1px solid var(--classA);
	padding: 3px
}

.joe_aside__item.newreply .item .user .info {
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.joe_aside__item.newreply .item .user .info .author {
	color: var(--main);
	font-weight: 600;
	max-width: 150px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.joe_aside__item.newreply .item .user .info .date {
	font-size: 12px;
	color: var(--minor)
}

.joe_aside__item.newreply .item .reply {
	position: relative;
	background: var(--body-bg-color);
	border-radius: 6px;
	padding: 5px 10px
}

.joe_aside__item.newreply .item .reply::before {
	content: '';
	width: 0;
	height: 0;
	border-bottom: 6px solid var(--body-bg-color);
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	position: absolute;
	left: 15px;
	bottom: 100%
}

.joe_aside__item.newreply .item .reply .link {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/*! autoprefixer: off */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	color: var(--minor);
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
	transition: all 0.35s;
	max-height: 48px
}

.joe_aside__item.newreply .item .reply .link:hover {
	color: var(--theme)
}

.joe_aside__item.newreply .item .reply .link .owo_image {
	height: 18px;
	vertical-align: -5px
}

.joe_aside__item.advert {
	display: block
}

.joe_aside__item.advert img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover
}

.joe_aside__item.advert .icon {
	position: absolute;
	z-index: 1;
	top: 10px;
	right: 10px;
	font-size: 12px;
	background: rgba(0, 0, 0, 0.25);
	padding: 2px 5px;
	border-radius: 2px;
	color: #ebebeb;
	pointer-events: none
}

.joe_aside__item.tags .empty {
	text-align: center;
	color: var(--routine)
}

.joe_aside__item.flatterer .content {
	border-style: solid;
	border-color: var(--classC);
	padding: 15px;
	line-height: 1.8;
	background: var(--classD);
	color: var(--routine);
	margin-bottom: 15px
}

.joe_aside__item.flatterer .content mark {
	background-color: transparent;
	background-image: linear-gradient(#ffe21d, #ffe21d);
	background-position: 0 85%;
	background-size: 100% 25%;
	background-repeat: no-repeat;
	color: var(--routine)
}

.joe_aside__item.flatterer .content.type1 {
	border-bottom-left-radius: 15px 255px;
	border-bottom-right-radius: 225px 15px;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px
}

.joe_aside__item.flatterer .content.type2 {
	border-bottom-left-radius: 185px 25px;
	border-bottom-right-radius: 20px 205px;
	border-top-left-radius: 125px 25px;
	border-top-right-radius: 10px 205px
}

.joe_aside__item.flatterer .content.type3 {
	border-bottom-left-radius: 225px 15px;
	border-bottom-right-radius: 15px 255px;
	border-top-left-radius: 15px 225px;
	border-top-right-radius: 255px 15px
}

.joe_aside__item.flatterer .content.type4 {
	border-bottom-left-radius: 25px 115px;
	border-bottom-right-radius: 155px 25px;
	border-top-left-radius: 15px 225px;
	border-top-right-radius: 25px 150px
}

.joe_aside__item.flatterer .content.type5 {
	border-bottom-left-radius: 20px 115px;
	border-bottom-right-radius: 115px 20px;
	border-top-left-radius: 250px 15px;
	border-top-right-radius: 25px 80px
}

.joe_aside__item.flatterer .content.type6 {
	border-bottom-left-radius: 15px 225px;
	border-bottom-right-radius: 20px 205px;
	border-top-left-radius: 28px 125px;
	border-top-right-radius: 100px 30px
}

.joe_aside__item.flatterer .change {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin: 0 auto;
	cursor: pointer;
	border: 2px solid var(--classC)
}

.joe_aside__item.flatterer .change .icon {
	fill: var(--routine)
}

.joe_list__item {
	position: relative;
	width: 100%;
	padding: 20px;
	background: var(--background);
	margin-bottom: 15px;
	box-shadow: 0 0 10px var(--main-shadow);
	transition: .3s;
	border-radius: var(--radius-inner);
}

.joe_list__item:hover {
	transform: translateY(-1px);
}

.joe_list__item:last-child {
	border-bottom: none
}

.joe_list__item .information .title {
	padding-bottom: 2px;
	margin-bottom: 3px;
	position: relative;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/*! autoprefixer: off */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
	color: var(--key-color);
	font-size: 18px;
	line-height: 24px;
	max-height: 50px;
	transition: color 0.35s
}

.joe_list__item.single .information .title {
	padding-bottom: 2px;
	margin-bottom: 10px;
}

.joe_list__item .information .title::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--theme);
	transition: all 0.35s
}

.joe_list__item .information .title:hover {
	color: var(--theme)
}

.joe_list__item .information .title:hover::after {
	width: 100%
}

.joe_list__item .information .title .badge {
	display: inline-block;
	height: 20px;
	line-height: 20px;
	background-image: -webkit-linear-gradient(0deg, #3ca5f6 0%, #a86af9 100%);
	color: #fff;
	font-size: 12px;
	margin-right: 5px;
	border-radius: 2px;
	padding: 0 8px;
	white-space: nowrap;
	vertical-align: 2px
}

.joe_list__item .information .abstract {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/*! autoprefixer: off */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--muted-color);
	word-break: break-word;
	line-height: 22px;
	max-height: 44px;
}

.joe_list__item.default .information .abstract {
	-webkit-line-clamp: 1;
	max-height: 22px;
	margin-bottom: 6px;
}

.joe_list__item.none .information .abstract {
	margin-bottom: 6px;
}

.joe_list__item.default .line {
	position: absolute;
	z-index: 1;
	top: 20px;
	left: 8px;
	width: 4px;
	height: 30px;
	border-radius: 2px;
	background: var(--theme);
	box-shadow: 1px 1px 3px -1px var(--theme);
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s
}

.joe_list__item .item-tags a {
	font-size: 11px;
	padding: 2px 5px;
	margin-right: 5px;
}

.joe_list__item .item-tags a .fa {
	font-size: 1em;
}

.joe_list__item .item-meta item {
	margin-right: 8px;
	font-size: 13px;
	white-space: nowrap;
}

.joe_list__item .item-meta a,
.posts-mini .item-meta a {
	color: inherit;
}

.item-meta .avatar-mini {
	transform: translateY(-1px);
}

.joe_list__item .item-meta a,
.posts-mini .item-meta a {
	color: inherit;
}

.joe_list__item.default:hover .line {
	-webkit-transform: scaleY(1);
	transform: scaleY(1)
}

.joe_list__item.default {
	display: flex;
	position: relative;
}

.joe_list__item.default:hover .thumbnail img {
	opacity: 0.8
}

.joe_list__item.default:hover .thumbnail time {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.joe_list__item.default .thumbnail {
	flex-shrink: 0;
	position: relative;
	width: 190px;
	height: 133px;
	margin-right: 20px;
	overflow: hidden
}

.joe_list__item.default .thumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: var(--radius-inner);
	transition: opacity 0.35s
}

.joe_list__item.default .thumbnail time {
	position: absolute;
	z-index: 1;
	top: 5px;
	right: 5px;
	background: var(--theme);
	height: 20px;
	line-height: 20px;
	padding: 0 8px;
	color: #fff;
	font-size: 12px;
	border-radius: 10px;
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(120%, 0, 0);
	transform: translate3d(120%, 0, 0)
}

.joe_list__item.default .thumbnail svg {
	position: absolute;
	z-index: 1;
	top: 5px;
	left: 5px;
	width: 20px;
	height: 20px;
	fill: #fff
}

.joe_list__item.default .information {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
	justify-content: space-between;
}

.joe_list__item.single:hover .thumbnail img {
	opacity: 0.8
}

.joe_list__item.single:hover .thumbnail time {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.joe_list__item.single .information {
	margin-bottom: 10px
}

.joe_list__item.single .thumbnail {
	display: block;
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	margin-bottom: 10px
}

.joe_list__item.single .thumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: var(--radius-inner);
	transition: opacity 0.35s
}

.joe_list__item.single .thumbnail time {
	position: absolute;
	z-index: 1;
	top: 10px;
	right: 10px;
	background: var(--theme);
	height: 20px;
	line-height: 20px;
	padding: 0 8px;
	color: #fff;
	font-size: 12px;
	border-radius: 10px;
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s;
	-webkit-transform: translate3d(120%, 0, 0);
	transform: translate3d(120%, 0, 0)
}

.joe_list__item.single .thumbnail svg {
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
	width: 20px;
	height: 20px;
	fill: #fff
}

.joe_list__item.multiple .information {
	margin-bottom: 15px
}

.joe_list__item.multiple .thumbnail {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 180px;
	gap: 15px;
	margin-bottom: 15px
}

.joe_list__item.multiple .thumbnail img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, opacity 0.35s;
	transition: transform 0.35s, opacity 0.35s, -webkit-transform 0.35s;
	border-radius: var(--radius-inner)
}

.joe_list__item.multiple .thumbnail img:hover {
	-webkit-transform: scale(1.025);
	transform: scale(1.025);
	opacity: 0.85
}

.joe_list__item.none .information {
	display: flex;
	flex-direction: column;
	height: 140px;
	justify-content: space-between;
}

.joe_list__loading .item {
	display: flex;
	/* position: relative; */
	width: 100%;
	padding: 15px;
	margin-bottom: 15px;
	background: var(--background);
}

.joe_list__loading .item:last-child {
	border-bottom: none
}

.joe_list__loading .item .thumbnail {
	/* flex-shrink: 0; */
	/* position: relative; */
	width: 190px;
	height: 133px;
	margin-right: 20px;
	background: var(--body-bg-color);
	-webkit-animation: list_thumbnail_loading 0.5s infinite alternate;
	animation: list_thumbnail_loading 0.5s infinite alternate;
	border-radius: var(--radius-inner)
}

.joe_list__loading .item .information {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.joe_list__loading .item .information>* {
	border-radius: var(--radius-inner);
	background: var(--body-bg-color);
}

.joe_list__loading .item .information .title {
	height: 26px;
	-webkit-animation: list_title_loading 0.75s infinite alternate;
	animation: list_title_loading 0.75s infinite alternate;
	margin-bottom: 15px
}

.joe_list__loading .item .information p {
	height: 20px;
	margin-bottom: 0px;
	-webkit-animation: list_abstract_loading 0.8s infinite alternate;
	animation: list_abstract_loading 0.8s infinite alternate
}

.joe_load_box {
	text-align: center;
	margin-top: 25px;
	margin-bottom: 10px;
}

.joe_load {
	border-radius: 30px;
	padding: 5px 15px;
	color: var(--muted-color);
	opacity: .6;
	cursor: pointer;
	user-select: none;
}

.joe_load:hover,
.joe_load:focus {
	background: var(--main-border-color);
	opacity: 1;
	color: var(--muted-color);
}

.joe_load>.fa {
	margin-right: 15px;
	transition: .3s;
}

.joe_load:hover>.fa,
.joe_load:focus>.fa {
	margin-right: 8px;
}

.joe_load:active {
	-webkit-transform: scale(0.75);
	transform: scale(0.75)
}

.joe_detail {
	background: var(--background);
	border-radius: var(--main-radius);
	padding: 15px 20px;
	box-shadow: 0 0 10px var(--main-shadow);
	margin-bottom: 15px
}

.joe_detail__category {
	display: flex;
	align-items: center;
	margin-bottom: 15px
}

.joe_detail__category .item {
	color: #fff;
	font-size: 12px;
	padding: 3px 8px;
	margin-right: 5px;
	border-radius: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 120px;
	transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, opacity 0.35s;
	transition: transform 0.35s, opacity 0.35s, -webkit-transform 0.35s
}

.joe_detail__category .item:hover {
	opacity: 0.85;
	-webkit-transform: translate3d(0, -3px, 0);
	transform: translate3d(0, -3px, 0)
}

.joe_detail__category .item:last-child {
	margin-right: 0
}

.joe_detail__category .item-0 {
	/*background: #0396ff*/
	background: var(--back-line-right);
}

.joe_detail__category .item-1 {
	background: #ea5455
}

.joe_detail__category .item-2 {
	background: #7367f0
}

.joe_detail__category .item-3 {
	background: #28c76f
}

.joe_detail__category .item-4 {
	background: #9f44d3
}

.joe_detail__category .edit {
	color: var(--minor);
	margin-left: auto
}

.joe_detail__category .edit:hover {
	color: var(--theme)
}

.joe_detail__title {
	font-size: 22px;
	color: var(--main-color);
	margin-bottom: 15px;
	word-break: break-word;
	font-weight: 700;
	line-height: 1.4;
}

.joe_detail__count {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.joe_detail__count-information {
	display: flex;
	align-items: center;
}

.joe_detail__count-information .avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	margin-right: 10px;
	/* border: 1px solid var(--classA); */
	/* padding: 3px; */
	-o-object-fit: cover;
	object-fit: cover
}

.joe_detail__count-information .meta {
	display: flex;
	flex-direction: column;
	height: 35px;
	justify-content: space-between;
	font-size: 12px
}

.joe_detail__count-information .meta .author .link {
	font-weight: 500;
	color: var(--main-color);
	font-size: 14px;
	transition: 0.3s;
}

.joe_detail__count-information .meta .author .link:hover {
	color: var(--theme);
}

.joe_detail__count-information .meta .item {
	display: flex;
	align-items: center;
	color: var(--muted-2-color);
	line-height: 20px;
	font-size: 14px;
}

.joe_detail__count-information .meta .item .line {
	color: var(--seat);
	margin: 0 7px;
	vertical-align: middle
}

.joe_main>.joe_detail>.relative {
	margin-top: 20px;
	position: relative;
	-webkit-backdrop-filter: unset !important;
	backdrop-filter: unset !important;
	font-size: 14px;
}

.line-form-line,
.line-form-line:before {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	transition: .8s;
	background: var(--main-border-color);
}

.line-form-line:before {
	content: '';
	width: 0;
	background: var(--theme);
}

.joe_main .joe_detail .single-metabox {
	display: flex;
	right: 0;
	--meta-color: var(--muted-color);
	align-items: center;
	-webkit-backdrop-filter: unset !important;
	backdrop-filter: unset !important;
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 15px;
}

.joe_main .joe_detail .single-metabox .post-metas {
	background: var(--body-bg-color);
	right: 0;
	padding: 2px 6px;
	border-radius: 100px;
	color: var(--meta-color);
}

.joe_main .joe_detail .single-metabox .post-metas item {
	margin: 0 4px;
}

.joe_main .joe_detail .single-metabox .post-metas item a {
	color: inherit;
}

/* .joe_main .joe_detail .single-metabox .post-metas item .fa, */
.joe_main .joe_detail .single-metabox .post-metas item .icon {
	width: 1em;
	height: 1em;
	vertical-align: -.15em;
	fill: currentColor;
	overflow: hidden;
}

.joe_main .joe_detail .single-metabox .clearfix {
	margin-left: 6px;
}

.joe_main .joe_detail .single-metabox .clearfix>a {
	background: var(--body-bg-color);
	--this-size: 1.73em;
	--this-color: var(--meta-color);
	--this-bg: var(--body-bg-color);
	padding: 0;
	border-radius: 5em;
	--this-size: 1.8em;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: var(--this-size);
	min-width: var(--this-size);
	border: 1px solid var(--this-border);
	vertical-align: middle;
	text-align: center;
	font-weight: 400;
	color: var(--this-color);
	--main-color: var(--this-color);
}

.joe_main .joe_detail .single-metabox .clearfix>a:hover {
	opacity: .8;
	color: var(--this-color);
}

.joe_main .joe_detail .single-metabox .clearfix svg {
	width: 1em;
	height: 1em;
	vertical-align: -.15em;
	fill: currentColor;
	overflow: hidden;
}

.joe_detail__overdue {
	padding-top: 20px
}

.joe_detail__overdue-wrapper {
	background: #fffcef;
	border-radius: var(--radius-inner);
	padding: 15px;
	color: #db7c22;
	border: 1px solid #ffbb76;
	-webkit-animation: overdue 1.5s ease-in-out;
	animation: overdue 1.5s ease-in-out
}

.joe_detail__overdue-wrapper .title {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 500
}

.joe_detail__overdue-wrapper .title .icon {
	width: 20px;
	height: 20px;
	margin-right: 8px
}

.joe_detail__overdue-wrapper .content {
	padding-left: 28px
}

.joe_detail__overdue-wrapper:hover {
	-webkit-clip-path: circle(75%);
	clip-path: circle(75%)
}

.joe_detail__article .owo_image {
	max-height: 26px;
	vertical-align: top
}

.joe_detail__article-video {
	margin-bottom: 15px
}

.joe_detail__article-protected {
	display: flex;
	justify-content: center;
	background: repeating-linear-gradient(145deg, var(--classB), var(--classB) 15px, var(--background) 0, var(--background) 30px);
	padding: 20px 0;
	margin-bottom: 18px
}

.joe_detail__article-protected .contain {
	position: relative;
	box-shadow: var(--box-shadow);
	border-radius: 20px;
	overflow: hidden
}

.joe_detail__article-protected .contain .icon {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 15px
}

.joe_detail__article-protected .contain .password {
	width: 250px;
	height: 40px;
	border: none;
	color: var(--routine);
	padding-left: 50px;
	background: var(--background)
}

.joe_detail__article-protected .contain .submit {
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--main);
	border: none;
	background: none
}

.joe_detail>.separator {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	margin-bottom: 20px;
	font-size: .9em;
	color: var(--muted-3-color);
}

.joe_detail>.separator::after,
.joe_detail>.separator::before {
	content: '';
	background: var(--main-border-color);
	max-width: 20%;
	height: 1px;
	margin: 0 1em;
	flex: 1;
}

.joe_detail .article-tags {
	margin-bottom: 20px;
}

.joe_detail .article-tags a {
	font-size: 12px;
	margin: 3px;
}

.joe_detail .post-actions {
	padding-bottom: 15px;
	text-align: center;
}

.joe_detail .post-actions .action {
	width: 80px;
	padding: 10px 0;
	display: inline-block;
	opacity: .7;
	vertical-align: top;
	transition: color .2s, background .3s, opacity .3s, box-shadow .3s, transform .3s;
}

.joe_detail .post-actions .action.active {
	opacity: .9
}

.joe_detail .post-actions .action.active>svg,
.joe_detail .post-actions .action.active>text,
.joe_detail .post-actions .action.active>count {
	color: var(--theme);
}

.joe_detail .post-actions .action:focus>svg,
.joe_detail .post-actions .action:focus>text,
.joe_detail .post-actions .action:focus>count {
	color: var(--theme);
	text-decoration: none;
}

.joe_detail .post-actions .action:hover {
	color: inherit;
	opacity: 1;
}

.joe_detail .post-actions .action .icon {
	height: 1em;
	vertical-align: -.15em;
	fill: currentColor;
	overflow: hidden;
	color: var(--main-color);
	font-size: 24px;
	width: 100%;
	margin: 5px 0;
}

.joe_detail .post-actions .action count,
.joe_detail .post-actions .action text {
	opacity: .7;
	font-size: .9em;
	color: var(--main-color);
}

.joe_detail .post-actions .action-share {
	position: relative;
	cursor: pointer;
	transition: .3s;
	z-index: 90;
}

.joe_detail .post-actions .hover-show:hover .hover-show-con,
.joe_detail .post-actions .hover-show:hover~.hover-show-con,
.joe_detail .post-actions .hover-show:hover~.sub-menu {
	opacity: 1 !important;
	transform: translateY(0) !important;
	visibility: unset !important;
	backdrop-filter: unset !important;
}

.joe_detail .post-actions .action .dropdown-menu {
	opacity: 0;
	float: left;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: var(--radius-inner);
	padding: 15px;
	clear: both;
	z-index: 992;
	list-style: none !important;
	margin-top: 6px;
	display: block;
	min-width: 100px;
	box-shadow: 0 0 10px 8px var(--main-shadow);
	color: var(--this-color);
	--this-color: var(--main-color);
	background: var(--background);
	border-color: transparent;
	width: 130px;
	margin-bottom: -10px !important;
	left: -24px;
	backdrop-filter: unset !important;
	-webkit-backdrop-filter: unset !important;
	top: auto;
	transition: 0.4s;
	position: absolute;
	visibility: hidden;
	bottom: 100%;
	margin-bottom: 6px;
	transform: translateY(-6px);
}

.joe_detail .post-actions .action .dropdown-menu::before,
.private-content::before {
	border-radius: 2px;
	transform: rotate(45deg);
	position: absolute;
	background: var(--background);
	content: ' ';
	display: inline-block;
	width: 9px;
	height: 9px;
	bottom: -4px;
	top: auto;
	left: 59px;
}

.joe_detail .post-actions .action .share-button .share-btn {
	display: flex;
	align-items: center;
	transition: color .2s, background .3s, opacity .3s, box-shadow .3s, transform .3s;
}

.joe_detail .post-actions .action .share-button .share-btn+.share-btn {
	margin-top: 10px;
}

.joe_detail .post-actions .action .share-button .share-btn:hover {
	opacity: .8;
}

.joe_detail .post-actions .action .share-button .share-btn:hover>text {
	transition: color .2s, background .3s, opacity .3s, box-shadow .3s, transform .3s;
	color: var(--theme);
}

.joe_detail .post-actions .action .share-button .share-btn icon {
	margin-right: 10px;
}

.joe_detail .post-actions .action .dropdown-menu .drop-newadd icon,
.joe_detail .post-actions .action .dropdown-menu .share-btn icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	border-radius: 100%;
	background: var(--main-border-color);
	justify-content: center;
	align-items: center;
	font-size: 22px;
	flex-shrink: 0;
	margin-right: 10px;
}

.joe_detail .post-actions .action .share-button .share-btn .icon {
	width: 1em;
	font-size: inherit;
	margin: auto;
	overflow: hidden;
	height: 1em;
	vertical-align: -.15em;
	fill: currentColor;
}

.joe_detail .post-actions .action .dropdown-menu .article .action count,
.joe_detail .post-actions .action .dropdown-menu .article .action text {
	opacity: .7;
	font-size: .9em;
}

.action-like .loading {
	content: '';
	width: .7em;
	height: .7em;
	display: inline-block;
	border: .1em solid transparent;
	border-radius: 50%;
	border-top-color: var(--theme);
	border-bottom-color: var(--theme);
	-webkit-animation: huan-rotate 1s cubic-bezier(.7, .1, .31, .9) infinite;
	animation: huan-rotate 1s cubic-bezier(.7, .1, .31, .9) infinite
}

.action-like .loading.zts {
	--this-color: var(--theme);
}

.joe_detail__copyright .content {
	padding: 15px 0;
	padding-top: 0;
}

.joe_detail__copyright .content .item {
	color: var(--muted-2-color);
	margin-bottom: 5px;
	word-break: break-word;
	line-height: 22px
}

.joe_detail__copyright .content .item:last-child {
	margin-bottom: 0
}

.joe_detail__copyright .content .item .icon {
	width: 18px;
	height: 18px;
	margin-right: 3px;
	vertical-align: -4px
}

.joe_detail__copyright .content .item .link {
	color: var(--muted-2-color);
}

.joe_detail__copyright .content .item .link:hover {
	color: var(--theme)
}

.joe_detail__related {
	margin-bottom: 15px;
}

.joe_detail__related-title {
	margin-bottom: 15px;
}

.joe_detail__related-content {
	clear: both;
	background: var(--main-bg-color);
	padding: 15px;
	box-shadow: 0 0 10px var(--main-shadow);
	border-radius: var(--main-radius);
	margin-bottom: 20px;
}

.yiyan-box {
	padding: 15px 15px;
	min-height: 40px;
	margin-bottom: 20px;
	border-radius: var(--radius-inner);
	background: var(--background);
	box-shadow: 0 0 10px var(--main-shadow);
	transition: box-shadow .3s;
	text-align: center;
}

.yiyan-box>.joe_motto {
	font-size: .8em;
	opacity: .8;
	color: var(--main-color);
}

.article-nav .box-body {
	width: calc(50% - 7px);
	margin: 0;
	display: inline-block;
	padding: 15px;
	border-radius: var(--main-radius);
	background: var(--background);
	box-shadow: 0 0 10px var(--main-shadow);
	transition: box-shadow .3s;
}

.article-nav .box-body+.box-body {
	margin-right: 0;
	float: right;
	text-align: right;
}

.article-nav .box-body>a {
	transition: color .2s, background .3s, opacity .3s, box-shadow .3s, transform .3s;
	color: var(--main-color);
}

.article-nav .box-body>a:hover {
	color: var(--theme);
}

.article-nav .box-body>a>p {
	color: var(--muted-2-color);
	margin: 0 0 10px;
}

.article-nav .box-body>a>p>i {
	font-size: 1.2em;
}

.article-nav .box-body>a>div {
	height: 2.8em;
	-webkit-line-clamp: 2;
	line-height: 1.4em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	white-space: normal;
}

.joe_detail__leaving {
	padding-top: 15px
}

.joe_detail__leaving-none {
	padding: 15px 0;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: var(--minor)
}

.joe_detail__leaving-list {
	position: relative;
	height: 500px
}

.joe_detail__leaving-list .item {
	display: none;
	position: absolute;
	width: 200px;
	overflow: hidden;
	box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	opacity: 0.88
}

.joe_detail__leaving-list .item .user {
	display: flex;
	align-items: center;
	padding: 0 10px;
	color: #fff;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.85);
	height: 40px;
	cursor: move
}

.joe_detail__leaving-list .item .user .avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%
}

.joe_detail__leaving-list .item .user .nickname {
	min-width: 0;
	flex: 1;
	margin: 0 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.joe_detail__leaving-list .item .user .nickname a {
	color: #fff
}

.joe_detail__leaving-list .item .user .date {
	margin-left: auto
}

.joe_detail__leaving-list .item .wrapper {
	padding: 10px
}

.joe_detail__leaving-list .item .wrapper .content {
	height: 140px;
	overflow-y: auto;
	word-break: break-word;
	line-height: 24px;
	color: #fff
}

.joe_detail__leaving-list .item .wrapper .content .draw_image {
	max-width: 100%
}

.joe_detail__leaving-list .item .wrapper .content .owo_image {
	max-height: 24px
}

.joe_footer {
	border-top: 1px solid var(--classB);
	color: var(--minor)
}

.joe_footer .joe_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 65px
}

.joe_footer .joe_container .run {
	margin: 0 auto 0 10px
}

.joe_footer .joe_container a {
	color: var(--minor);
	transition: all 0.35s
}

.joe_footer .joe_container a:hover {
	color: var(--theme)
}

.joe_pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
}

.joe_pagination li {
	margin-left: 5px
}

.joe_pagination li:first-child {
	margin-left: 0px;
}

.joe_pagination li a {
	padding: 6px 9px 5px;
	color: var(--muted-color);
	display: inline-block;
	border-radius: 3px;
	background-color: var(--main-border-color);
	margin: 3px;
	min-width: 31px;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_pagination li.active a {
	background: var(--theme);
	color: #fff;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.joe_pagination li a[href]:hover {
	opacity: .7;
}

.joe_pagination li a:hover .icon {
	fill: #fff
}

.joe_pagination li a .icon {
	width: 12px;
	height: 12px;
	fill: var(--routine);
}

.joe_pagination li a .icon-next {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.joe_action {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 98
}

.joe_action_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--float-btn-bg);
	border-radius: 8px;
	cursor: pointer;
	margin-top: 6px;
	transition: 0.3s;
	/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2) */
}

.joe_action_item:hover {
	opacity: 0.8;
}

.joe_action_item i {
	font-size: 18px;
	color: var(--muted-2-color);
	/* position: absolute;
	width: 25px;
	height: 25px;
	fill: var(--theme) */
}

.joe_action_item.scroll {
	visibility: hidden;
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: 0.35s;
}

.joe_action_item.scroll.active {
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.joe_action_item.mode i {
	position: absolute;
	/* display: none; */
	-webkit-transform: scale(0);
	transform: scale(0);
	opacity: 0;
	transition: opacity 0.85s, -webkit-transform 0.85s;
	transition: transform 0.85s, opacity 0.85s;
	transition: transform 0.85s, opacity 0.85s, -webkit-transform 0.85s
}

.joe_action_item.mode i.active {
	/* display: block; */
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1
}

.joe_comment {
	background: var(--background);
	border-radius: var(--radius-inner);
	box-shadow: var(--box-shadow);
	padding: 15px
}

.joe_comment .loading-module {
	text-align: center;
}

.joe_comment .loading-module>.loading {
	color: var(--theme);
}

.joe_comment__title {
	/* margin-bottom: 15px; */
}

.joe_comment__close {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--routine)
}

.joe_comment__close-icon {
	fill: var(--routine);
	margin-right: 5px
}

.joe_comment__respond-type {
	display: flex;
	align-items: center;
	/* justify-content: flex-end */
}

.joe_comment__respond-type .item {
	background: var(--body-bg-color);
	padding: 0 15px;
	height: 32px;
	color: var(--main);
	border: none;
	transition: 0.1s;
}

.joe_comment__respond-type .item:first-child {
	border-top-left-radius: var(--radius-inner)
}

.joe_comment__respond-type .item:last-child {
	border-top-right-radius: var(--radius-inner)
}

.joe_comment__respond-type .item.active {
	color: #2997f7;
	background: rgba(41, 151, 247, 0.1);
}

.joe_comment__respond-form {
	border-radius: 0px 6px 6px 6px;
	background: var(--body-bg-color)
}

.joe_comment__respond-form .head {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--classA)
}

.joe_comment__respond-form .head .list {
	flex: 1
}

.joe_comment__respond-form .head .list input {
	width: 100%;
	border: none;
	background: transparent;
	padding: 0 15px;
	height: 40px;
	color: var(--routine)
}

.joe_comment__respond-form .head .list:nth-child(2) {
	position: relative
}

.joe_comment__respond-form .head .list:nth-child(2)::after,
.joe_comment__respond-form .head .list:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 1px;
	height: 15px;
	background: var(--classA)
}

.joe_comment__respond-form .head .list:nth-child(2)::before {
	left: 0
}

.joe_comment__respond-form .head .list:nth-child(2)::after {
	right: 0
}

.joe_comment__respond-form .body {
	padding: 15px;
}

.joe_comment__respond-form .body .text {
	width: 100%;
	height: 100px;
	border: none;
	resize: none;
	vertical-align: middle;
	color: var(--routine);
	background: transparent
}

.joe_comment__respond-form .body .draw {
	position: relative;
	width: 100%
}

.joe_comment__respond-form .body .draw .line {
	display: flex;
	align-items: center;
	position: absolute;
	top: 10px;
	left: 10px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_comment__respond-form .body .draw .line li {
	cursor: pointer;
	margin-right: 10px;
	color: var(--main);
	transition: color 0.35s
}

.joe_comment__respond-form .body .draw .line li.active {
	color: var(--theme)
}

.joe_comment__respond-form .body .draw .color {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 10px;
	left: 10px
}

.joe_comment__respond-form .body .draw .color li {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: box-shadow 0.35s
}

.joe_comment__respond-form .body .draw .color li.active {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35)
}

.joe_comment__respond-form .body .draw .color li:nth-child(1) {
	background: #303133
}

.joe_comment__respond-form .body .draw .color li:nth-child(2) {
	background: #67c23a
}

.joe_comment__respond-form .body .draw .color li:nth-child(3) {
	background: #e6a23c
}

.joe_comment__respond-form .body .draw .color li:nth-child(4) {
	background: #f56c6c
}

.joe_comment__respond-form .body .draw .icon {
	position: absolute;
	right: 10px;
	cursor: pointer;
	fill: var(--minor);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_comment__respond-form .body .draw .icon-undo {
	top: 10px
}

.joe_comment__respond-form .body .draw .icon-animate {
	bottom: 10px
}

.joe_comment__respond-form .body .draw canvas {
	background: var(--background);
	border-radius: var(--radius-inner)
}

.joe_comment__respond-form .foot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px 15px
}

.joe_comment__respond-form .foot .owo {
	min-height: 32px;
	padding-top: 3px;
	overflow: auto;
}

.joe_comment__respond-form .foot .owo .seat {
	text-align: center;
	color: var(--routine);
	height: 26px;
	line-height: 26px;
	background: var(--background);
	opacity: 0.85;
	border-radius: 13px;
	width: 70px
}

.joe_comment__respond-form .foot .submit {
	position: absolute;
	top: 0;
	right: 15px;
	white-space: nowrap
}

.joe_comment__respond-form .foot .submit .cancle {
	display: none;
	color: var(--main);
	cursor: pointer;
	margin-right: 10px;
	transition: color 0.35s
}

.joe_comment__respond-form .foot .submit .cancle:hover {
	color: var(--theme)
}

.joe_comment__respond-form .foot .submit button,
.joe_comment__respond-form .foot .submit a {
	border-radius: var(--main-radius);
	height: 32px;
	padding: 0 15px;
	border: none;
	background: var(--theme);
	color: #fff;
	font-size: 14px;
	box-shadow: 1px 1px 3px -1px var(--theme);
	transition: 0.3s;
}

.joe_comment__respond-form .foot .submit a {
	display: inline-block;
	line-height: 32px;
	font-family: unset;
}

.joe_comment__respond-form .foot .submit button:hover {
	opacity: 0.8;
}

.joe_comment__respond-form .foot .submit a:hover {
	opacity: 0.8;
}

.joe_comment .comment-list {
	padding-top: 15px
}

.joe_comment .comment-list__item-contain .term {
	display: flex;
	margin-bottom: 15px
}

.joe_comment .comment-list__item-contain .term .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	margin-right: 15px;
	padding: 3px;
	border: 1px solid var(--classD);
	-o-object-fit: cover;
	object-fit: cover;
	margin-top: 10px;
}

.joe_comment .comment-list__item-contain .term .content {
	min-width: 0;
	flex: 1;
	/* border-bottom: 1px solid var(--classC); */
	/* padding-bottom: 10px; */
}

.joe_comment .comment-list__item-contain .term .content .user {
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	line-height: 20px;
	color: var(--main)
}

.joe_comment .comment-list__item-contain .term .content .user .nickname {
	display: flex;
	align-items: center;
}

.joe_comment .comment-list__item-contain .term .content .user .author {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.joe_comment .comment-list__item-contain .term .content .user .author a,
.joe_comment .comment-list__item-contain .term .content .substance .mobile-author a {
	color: #409eff
}

.joe_comment .comment-list__item-contain .term .content .user .owner {
	flex-shrink: 0;
	background: var(--theme);
	color: #fff;
	padding: 2px 2px;
	border-radius: 2px;
	font-style: normal;
	font-size: 10px;
	line-height: 10px;
	margin-left: 5px;
}

.joe_comment .comment-list__item-contain .term .content .user .agent {
	display: flex;
	align-items: center;
}

.joe_comment .comment-list__item-contain .term .content .user .agent img:first-child {
	margin-right: 5px;
}

.joe_comment .comment-list__item-contain .term .content .user .agent img {
	width: 14px;
	height: 14px;
}

.joe_comment .comment-list__item-contain .term .content .waiting {
	color: #e6a23c;
	font-style: normal
}

.joe_comment .comment-list__item-contain .term .content .substance {
	width: 100%;
	background: var(--body-bg-color);
	padding: 10px;
	border-radius: var(--radius-inner);
	color: var(--main-color);
	margin-bottom: 5px;
	word-break: break-word;
	line-height: 24px;
	transition: 0.2s;
}

.joe_comment .comment-list__item-contain .term .content .substance:focus {
	opacity: 0.8;
}

.joe_comment .comment-list__item-contain .term .content .substance .mobile-author {
	display: none;
}

.joe_comment .comment-list__item-contain .term .content .substance>p {
	display: inline;
	margin-bottom: 0;
}

.joe_comment .comment-list__item-contain .term .content .substance .parent {
	color: var(--key-color);
	font-weight: 500
}

.joe_comment .comment-list__item-contain .term .content .substance .owo_image {
	height: 22px;
	vertical-align: middle;
}

.joe_comment .comment-list__item-contain .term .content .substance .draw_image {
	max-width: 100%
}

.joe_comment .comment-list__item-contain .term .content .handle {
	display: flex;
	align-items: center;
	color: var(--minor);
	margin-left: auto;
}

.joe_comment .comment-list__item-contain .term .content .mobile-handle {
	display: none;
}

.joe_comment .comment-list__item-contain .term .content .handle .reply {
	display: flex;
	align-items: center;
	color: var(--main);
	font-size: 13px;
	cursor: pointer;
	transition: color 0.35s
}

.joe_comment .comment-list__item-contain .term .content .handle .reply .icon {
	margin-right: 3px
}

.joe_comment .comment-list__item-contain .term .content .handle .reply:hover {
	color: var(--theme)
}

.joe_comment .comment-list__item-contain .term .content .handle .reply:hover .icon {
	fill: var(--theme)
}

.joe_comment .comment-list__item-children {
	padding-left: 30px
}

.joe_comment .comment-list__item-children .comment-list__item-children {
	padding-left: 0
}

.joe_comment .comment-list__item .joe_comment__respond {
	margin-left: 63px;
	margin-bottom: 15px;
	-webkit-animation: showComment 0.5s;
	animation: showComment 0.5s
}

.joe_comment .comment-list .comment-list {
	padding-top: 0
}

.joe_comment .joe_pagination {
	padding: 5px 0;
}

.joe_run__day,
.joe_run__hour,
.joe_run__minute,
.joe_run__second {
	font-weight: 500;
	color: var(--theme);
}

.joe_owo__contain {
	position: relative
}

.joe_owo__contain .seat {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	cursor: pointer
}

.joe_owo__contain .box {
	width: 100%;
	display: none;
	background: var(--background);
	border-radius: var(--radius-inner);
	overflow: hidden;
	margin-top: 15px
}

.joe_owo__contain .box .scroll {
	display: none;
	max-height: 200px;
	overflow-y: auto;
	-ms-scroll-chaining: none;
	overscroll-behavior: none;
	padding: 5px
}

.joe_owo__contain .box .scroll .item {
	text-align: center;
	width: calc(100% / 16);
	display: inline-block;
	padding: 5px;
	cursor: pointer;
	border-radius: var(--radius-inner);
	user-select: none;
	transition: background 0.05s
}

.joe_owo__contain .box .scroll .item img {
	max-width: 100%;
	max-height: 100%
}

.joe_owo__contain .box .scroll .item:hover {
	background: var(--classD)
}

.joe_owo__contain .box .scroll:nth-child(2) .item {
	font-size: 24px;
	line-height: 1;
}

.joe_owo__contain .box .scroll:nth-child(5) .item {
	color: var(--routine);
	width: calc(100% / 4);
	white-space: nowrap;
}

.joe_owo__contain .box .bar {
	display: flex;
	align-items: center;
	border-top: 1px solid var(--classC);
	overflow: auto;
}

.joe_owo__contain .box .bar .item {
	line-height: 30px;
	padding: 0 10px;
	cursor: pointer;
	color: var(--routine);
	transition: 0.15s;
	white-space: nowrap;
}

.joe_owo__contain .box .bar .item.active,
.joe_owo__contain .box .bar .item:hover {
	color: #fff;
	background: var(--theme)
}

.profile-color-modes-illu-frame {
	opacity: 0
}

.profile-color-modes-illu-red {
	stroke: #da3633
}

.profile-color-modes-illu-orange {
	stroke: #f0883e
}

.profile-color-modes-illu-purple {
	stroke: #8957e5
}

.profile-color-modes-illu-green {
	stroke: #3fb950
}

.profile-color-modes-illu-blue {
	stroke: #388bfd
}

.profile-color-modes-illu-group {
	-webkit-animation: profile-color-modes-illu-anim 0.2s cubic-bezier(0.72, 0.08, 1, 0.68) backwards;
	animation: profile-color-modes-illu-anim 0.2s cubic-bezier(0.72, 0.08, 1, 0.68) backwards
}

.profile-color-modes-illu-frame {
	-webkit-animation: profile-color-modes-illu-anim-frame-show 0s forwards, profile-color-modes-illu-anim-frame-hide 0s forwards;
	animation: profile-color-modes-illu-anim-frame-show 0s forwards, profile-color-modes-illu-anim-frame-hide 0s forwards
}

.profile-color-modes-illu-frame:first-child {
	opacity: 1;
	-webkit-animation: profile-color-modes-illu-anim-frame-hide 0s forwards;
	animation: profile-color-modes-illu-anim-frame-hide 0s forwards
}

.profile-color-modes-illu-frame:nth-child(8) {
	-webkit-animation: profile-color-modes-illu-anim-frame-show 0s forwards;
	animation: profile-color-modes-illu-anim-frame-show 0s forwards
}

.profile-color-modes-illu-red {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	-webkit-animation-duration: 0.1s;
	animation-duration: 0.1s
}

.profile-color-modes-illu-orange {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-duration: 0.1s;
	animation-duration: 0.1s
}

.profile-color-modes-illu-purple {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
	-webkit-animation-duration: 0.1s;
	animation-duration: 0.1s
}

.profile-color-modes-illu-blue {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
	-webkit-animation-duration: 0.1s;
	animation-duration: 0.1s
}

.profile-color-modes-illu-green {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	-webkit-animation-duration: 0.2s;
	animation-duration: 0.2s;
	-webkit-animation-timing-function: cubic-bezier(0.47, 2.92, 0.84, -1.5);
	animation-timing-function: cubic-bezier(0.47, 2.92, 0.84, -1.5)
}

.profile-color-modes-illu-frame:first-child {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s
}

.profile-color-modes-illu-frame:nth-child(2) {
	-webkit-animation-delay: 1.8s, 2.58s;
	animation-delay: 1.8s, 2.58s
}

.profile-color-modes-illu-frame:nth-child(3) {
	-webkit-animation-delay: 2.58s, 2.66s;
	animation-delay: 2.58s, 2.66s
}

.profile-color-modes-illu-frame:nth-child(4) {
	-webkit-animation-delay: 2.66s, 2.78s;
	animation-delay: 2.66s, 2.78s
}

.profile-color-modes-illu-frame:nth-child(5) {
	-webkit-animation-delay: 2.78s, 2.84s;
	animation-delay: 2.78s, 2.84s
}

.profile-color-modes-illu-frame:nth-child(6) {
	-webkit-animation-delay: 2.84s, 3.44s;
	animation-delay: 2.84s, 3.44s
}

.profile-color-modes-illu-frame:nth-child(7) {
	-webkit-animation-delay: 3.44s, 3.56s;
	animation-delay: 3.44s, 3.56s
}

.profile-color-modes-illu-frame:nth-child(8) {
	-webkit-animation-delay: 3.56s;
	animation-delay: 3.56s
}

.profile-color-modes-illu-frame:nth-child(9),
.profile-color-modes-illu-frame:nth-child(10) {
	-webkit-animation: none;
	animation: none
}

html .aplayer {
	margin: 0;
}

html .aplayer .aplayer-lrc {
	margin-left: 5px;
}

@-webkit-keyframes showComment {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3)
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}

	70% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes showComment {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3)
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05)
	}

	70% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

/* 
@keyframes box_shadow {
	0% {
		box-shadow: 0 0 0 0 #f56c6c
	}
} */

@keyframes progress {
	0% {
		background-position: 0 0
	}

	100% {
		background-position: 30px 0
	}
}

@keyframes list_thumbnail_loading {
	0% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95)
	}

	100% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes list_title_loading {
	0% {
		width: 80%
	}

	100% {
		width: 95%
	}
}

@keyframes list_abstract_loading {
	0% {
		width: 60%
	}

	100% {
		width: 80%
	}
}

@keyframes profile-color-modes-illu-anim {
	0% {
		stroke: #666
	}
}

@keyframes profile-color-modes-illu-anim-frame-show {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	to {
		opacity: 1
	}
}

@keyframes profile-color-modes-illu-anim-frame-hide {
	0% {
		opacity: 1;
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	to {
		opacity: 0
	}
}

@keyframes overdue {
	0% {
		-webkit-clip-path: circle(0 at 0 0);
		clip-path: circle(0 at 0 0)
	}

	100% {
		-webkit-clip-path: circle(100%);
		clip-path: circle(100%)
	}
}

@keyframes showHeaderTitle {
	0% {
		opacity: 0.25;
		-webkit-transform: scale(0.25);
		transform: scale(0.25)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}


/*首页、文章页顶部大图*/
.HeaderImg {
	position: relative;
	width: 100%;
	height: 50rem;
	display: flex;
	margin-top: -6.5rem;
	justify-content: center;
	align-items: center;
	flex-direction: column
}

.HeaderImg.minImg {
	max-width: 83rem;
	height: 25rem;
	margin: auto
}

.HeaderImg.minImg .infomation .desctitle {
	font-size: 1.5rem
}

.HeaderImg img {
	-o-object-fit: cover;
	object-fit: cover
}

.HeaderImg .infomation {
	position: absolute;
	line-height: 2
}

.HeaderImg .infomation .title {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-shadow: 0 .1875rem .3125rem #1c1f21;
	letter-spacing: .3rem
}

.HeaderImg .infomation .desctitle {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #f3f3f3;
	font-size: 1rem;
	padding: 0 1rem;
	text-shadow: 0 .1875rem .3125rem #1c1f21
}

.HeaderImg .HeaderImg_bottom {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -5px
}

.HeaderImg .HeaderImg_bottom .waves-svg {
	width: 100%;
	height: 3rem
}

.HeaderImg .HeaderImg_bottom .waves-svg .parallax>use {
	-webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
	animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite
}

.HeaderImg .HeaderImg_bottom .waves-svg .parallax>use:first-child {
	-webkit-animation-delay: -2s;
	animation-delay: -2s;
	-webkit-animation-duration: 7s;
	animation-duration: 7s;
	fill: var(--back-trn-6);
	opacity: .9
}

.HeaderImg .HeaderImg_bottom .waves-svg .parallax>use:nth-child(2) {
	-webkit-animation-delay: -3s;
	animation-delay: -3s;
	-webkit-animation-duration: 10s;
	animation-duration: 10s;
	fill: var(--back-trn-85);
}

.HeaderImg .HeaderImg_bottom .waves-svg .parallax>use:nth-child(3) {
	-webkit-animation-delay: -4s;
	animation-delay: -4s;
	-webkit-animation-duration: 13s;
	animation-duration: 13s;
	fill: var(--back-trn-85);
}

.HeaderImg .HeaderImg_bottom .waves-svg .parallax>use:nth-child(4) {
	-webkit-animation-delay: -5s;
	animation-delay: -5s;
	-webkit-animation-duration: 20s;
	animation-duration: 20s;
	fill: var(--back-trn-6)
}

@-webkit-keyframes move-forever {
	0% {
		transform: translate3d(-90px, 0, 0)
	}

	to {
		transform: translate3d(85px, 0, 0)
	}
}

@keyframes move-forever {
	0% {
		transform: translate3d(-90px, 0, 0)
	}

	to {
		transform: translate3d(85px, 0, 0)
	}
}

.HeaderImg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAKUlEQVQImU3IMREAIAgAwJfNkQCEsH8cijjpMf6vnXlQaIiJFx+omEBfmqIEZLe2jzcAAAAASUVORK5CYII=)
}

@media(max-width: 768px) {
	.HeaderImg {
		height: 15rem;
		margin-top: 0
	}

	.HeaderImg.minImg {
		width: 100%;
		height: 15rem
	}

	.HeaderImg .infomation .title {
		font-size: 1.2rem
	}

	.HeaderImg .infomation .desctitle {
		font-size: .875rem
	}

	.HeaderImg .HeaderImg_bottom .waves-svg {
		height: 3rem
	}
}

.joe_aside.inactive {
	display: none
}

.joe_main {
	/* position: relative; */
}

.joe_main.animate__animated {
	--animate-duration: 0.6s;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.joe_main.animate__slideInRight {
	-webkit-animation-name: slideInRight20;
	animation-name: slideInRight20
}

@keyframes slideInRight20 {
	0% {
		-webkit-transform: translate3d(20%, 0, 0);
		transform: translate3d(20%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.joe_main.animate__slideInLeft {
	-webkit-animation-name: slideInLeft20;
	animation-name: slideInLeft20
}

@keyframes slideInLeft20 {
	0% {
		-webkit-transform: translate3d(-20%, 0, 0);
		transform: translate3d(-20%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@media(max-width: 768px) {
	.joe-stretch {
		display: none
	}
}

.joe-stretch {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding: 40px 0
}

.joe-stretch .contain {
	position: -webkit-sticky;
	position: sticky;
	transition: top .5s;
	-webkit-animation: swingIconSet 2s infinite linear alternate;
	animation: swingIconSet 2s infinite linear alternate;
	z-index: 333
}

@-webkit-keyframes swingIconSet {
	0% {
		transform: rotate(-30deg)
	}

	100% {
		transform: rotate(30deg)
	}
}

@keyframes swingIconSet {
	0% {
		transform: rotate(-30deg)
	}

	100% {
		transform: rotate(30deg)
	}
}

.joe-stretch .contain::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 25px;
	border-top: 2px solid var(--minor);
	border-right: 2px solid var(--minor);
	transition: border .35s
}

.joe-stretch .contain svg {
	position: absolute;
	top: 25px;
	left: -3px;
	width: 24px;
	height: 24px;
	fill: var(--minor);
	cursor: pointer;
	transition: fill .35s
}

.joe-stretch .contain:hover {
	-webkit-animation-play-state: paused;
	animation-play-state: paused
}

.joe-stretch .contain:hover svg {
	fill: var(--theme)
}

.joe-stretch .contain:hover::before {
	border-color: var(--theme)
}

.joe-stretch.active {
	display: block
}

.joe_action_item.read_book {
	visibility: hidden;
	transform: scale(0)
}

.joe_action_item.read_book.active {
	visibility: visible;
	transform: scale(1)
}

.joe_action_item.read_book svg {
	transform: scale(0);
	opacity: 0;
	transition: transform .85s, opacity .85s
}

.joe_action_item.read_book svg.active {
	transform: scale(1);
	opacity: 1
}

.toggle-radius {
	background: var(--this-bg);
	width: 29px;
	height: 29px;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	position: relative;
	vertical-align: text-top;
	--this-bg: var(--main-border-color);
}

.footer {
	color: var(--muted-2-color);
	background: var(--main-bg-color);
	padding: 30px;
	font-size: 13px;
}

.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.container-footer,
.container-header {
	max-width: 1380px;
	max-width: calc(var(--mian-max-width) + 180px);
}

@media (min-width: 992px) {

	.container-footer,
	.container-header {
		padding-right: 0;
		padding-left: 0;
	}
}

.list-inline {
	margin-left: 0;
}

.list-inline>li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}

.list-inline>li {
	vertical-align: middle;
}

.container-footer>.list-inline.flex {
	justify-content: space-between;
	align-items: center;
}

.footer .list-inline>li {
	margin: 5px 15px;
}

.footer .list-inline>li:last-child {
	float: right;
}

.footer a:not(.but):not(.focus-color) {
	color: var(--muted-2-color);
}

.footer a.toggle-radius:hover {
	color: var(--muted-2-color);
}

.ajax-option .option-items>a+a:before,
.fcode-links>a+a:before,
.icon-spot:before {
	content: '';
	width: 4px;
	height: 4px;
	margin: 0 .5em;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	background: var(--main-color);
	opacity: .3;
	vertical-align: .2em;
}

.footer-miniimg {
	width: 90px;
	margin: 0 10px;
	text-align: center;
	vertical-align: text-top;
	display: inline-block;
}

.footer .footer-logo>.dark {
	display: none;
}

.footer-contact>a {
	font-size: 20px;
	margin: 5px;
	width: 35px;
	height: 35px;
}

.footer-contact>a:hover {
	color: var(--muted-2-color);
}

.footer-contact>a>.icon {
	right: 8px;
}

.footer-wechat-img {
	width: 140px;
	bottom: 90%;
	left: -55px;
	padding-bottom: 20px;
}

.popover {
	background: var(--main-bg-color);
	box-shadow: 0 0 10px 5px var(--main-shadow);
	padding: 0
}

.popover-title {
	background: var(--muted-border-color);
	border: 0 !important
}

.popover.top>.arrow:after {
	border-top-color: var(--main-bg-color) !important
}

.popover.right>.arrow::after {
	border-right-color: var(--main-bg-color) !important
}

.popover.bottom>.arrow::after {
	border-bottom-color: var(--main-bg-color) !important
}

.popover.left>.arrow::after {
	border-left-color: var(--main-bg-color) !important
}

.links-widget>.links-box>a {
	color: var(--main-color);
}

.links-widget>.links-box>a:hover {
	color: var(--theme);
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

.container {
	position: relative;
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}

@media (min-width: 1240px) {
	.container {
		max-width: var(--mian-max-width);
		width: auto;
	}
}

.joe_scan_light {
	overflow: hidden;
	position: relative;
}

.joe_scan_light::before {
	content: '';
	position: absolute;
	inset: -20%;
	background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 60%);
	animation: JoeScanLight 2s infinite;
	transform: translateX(-100%);
	z-index: 10;
}

@keyframes JoeScanLight {
	to {
		transform: translateX(100%);
	}
}

.featured-video-episode {
	margin-bottom: 0;
	line-height: 1.4;
	font-size: 14px;
}

.featured-video-episode .switch-video {
	line-height: 1.6;
	border-radius: 4px;
	padding: 6px 20px;
	text-align: center;
	background: rgba(136, 136, 136, .1);
	--main-color: var(--muted-color);
	display: inline-block;
	margin: 4px 4px 0;
	min-width: calc(20% - 12px);
	color: var(--main-color);
}

.featured-video-episode .switch-video:hover {
	color: var(--theme);
}

.switch-video.active {
	color: var(--theme);
}

.featured-video-episode .badg.badg-sm {
	min-width: 19px;
}

.switch-video.active .badg {
	background: var(--theme);
	color: #fff;
}

.switch-video .episode-active-icon {
	display: inline-block;
	width: 0;
	height: 1.2em;
	vertical-align: middle;
	margin-right: 0;
	transition: .6s;
}

.switch-video.active .episode-active-icon {
	background-image: url('../images/playing.svg');
	width: 1em;
	margin-right: 6px;
}

@media (max-width: 640px) {
	.featured-video-episode .switch-video {
		width: calc(50% - 6.5px);
		padding: 6px 10px;
		margin: 2px 2px 0;
	}
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu {
	border-color: transparent;
	background: var(--main-bg-color);
	--this-color: var(--main-color);
	color: var(--this-color);
	box-shadow: 0 0 10px 8px var(--main-shadow);
	min-width: 100px;
	opacity: 0;
	transform: translateY(6px);
	transition: .3s;
	display: block;
	margin-top: 6px;
	visibility: hidden;
	list-style: none !important;
	z-index: 992;
}

.hover-show .hover-show-con,
.navbar-top .sub-menu,
.theme-popover {
	opacity: 0;
	transform: translateY(6px);
	transition: .4s;
}

.hover-show .hover-show-con {
	position: absolute;
	visibility: hidden;
}

.dropdown-menu::before,
.private-content::before {
	content: ' ';
	display: inline-block;
	width: 9px;
	height: 9px;
	background: var(--main-bg-color);
	position: absolute;
	top: 12px;
	transform: rotate(45deg);
	left: -4px;
	border-radius: 2px;
}

.dropdown .dropdown-menu::before {
	top: -4px;
	left: 12px;
}

.navbar-collapse .dropdown-menu .search-input {
	background: 0 0;
	padding: 10px;
	width: 460px;
}

.header .dropdown-menu a,
.header .sub-menu a,
.header .sub-menu svg {
	color: var(--main-color);
}

.hover-show:hover .hover-show-con,
.hover-show:hover~.hover-show-con,
.hover-show:hover~.sub-menu,
.navbar-top li:hover>.sub-menu {
	opacity: 1;
	transform: translateY(0);
}

.hover-show:hover .hover-show-con,
.hover-show:hover~.hover-show-con,
.hover-show:hover~.sub-menu {
	visibility: unset;
}

.author-tag a .fa,
.author-tag a .icon,
.author-tag>span .fa,
.author-tag>span .icon,
.item-meta item .icon {
	margin-right: 2px;
}

.author-tag .badg,
.author-tag .but {
	margin-right: 5px;
	margin: 2px;
	padding: .15em .4em;
	font-size: 12px;
	font-weight: 400
}

.widget-tag-cloud.author-tag .but {
	font-size: 13px
}

.turbolinks-progress-bar {
	visibility: hidden;
}

html #nprogress .bar {
	background: var(--theme);
	box-shadow: 0px 2px 5px 0px var(--theme);
}

html #nprogress .peg {
	box-shadow: 0 0 10px var(--theme), 0 0 5px var(--theme);
}

html #nprogress .spinner-icon {
	border-top-color: var(--theme);
	border-left-color: var(--theme);
}

.comment-list .popover-content a {
	color: var(--theme);
}

.user-card {
	padding: 0;
	overflow: hidden
}

.user-card .user-cover {
	border-radius: var(--main-radius) var(--main-radius) 0 0;
}

.user-card .card-content {
	padding: 15px
}

.user-card name .display-name {
	font-size: 1.1em;
	font-weight: 700
}

.user-card.widget .user-cover+.card-content {
	margin-top: -55px
}

.user-card.widget .user-avatar,
.user-card.widget .user-info {
	text-align: center
}

.user-card.widget .user-name name {
	justify-content: center
}

.user-card.widget .more-posts-mini {
	margin: 20px -5px 0 -5px
}

.user-card.widget .more-posts {
	margin-top: 20px
}

.user-card .more-posts-mini a {
	display: block;
	color: var(--muted-2-color);
	padding: 3px 0
}

.user-card.author .card-content,
.user-card.author .user-content {
	display: flex;
	align-items: center
}

.user-card.author .card-content>div {
	width: 50%
}

.user-card.author .user-info {
	margin: 0 20px;
	overflow: hidden
}

html .tooltip {
	z-index: 99;
}

#statistics strong {
	color: var(--theme);
	font-weight: 500;
}