/* svg {
	width: 1em;
	height: 1em;
	vertical-align: -.15em;
	fill: currentColor;
	overflow: hidden;
} */

.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
}

.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: -webkit-sticky;
	position: sticky;
	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-logo::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 20px;
	background: var(--classC);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
} */

.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::after,
.joe_header__above-slideicon::before,
.joe_header__above-slideicon>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 {
	right: .1em;
	width: .9em
}

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

.joe_header__above-slideicon::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);
}

.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;
}

.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%
}

.joe_header__slideout-author .info {
	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 {
	padding: 15px 0;
	margin-left: 15px
}

.joe_aside__item {
	position: relative;
	width: 311px;
	margin-bottom: 15px;
	border-radius: var(--radius-inner);
	/* box-shadow: var(--box-shadow); */
	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;
	/* max-height: 350px; */
	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.author {
	background: var(--background);
	padding: 45px 15px 15px
}

.joe_aside__item.author::before {
	content: '';
	position: absolute;
	top: 90px;
	left: 0;
	width: 100%;
	height: 30px;
	z-index: 2;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--background))
}

.joe_aside__item.author .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 1
}

.joe_aside__item.author .user {
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 15px
}

.joe_aside__item.author .user .avatar {
	width: 70px;
	height: auto;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 10px;
	-o-object-fit: cover;
	object-fit: cover;
	transition: -webkit-transform 0.75s;
	transition: transform 0.75s;
	transition: transform 0.75s, -webkit-transform 0.75s;
	background: var(--background);
	padding: 1px
}

.joe_aside__item.author .user .avatar:hover {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg)
}

.joe_aside__item.author .user .link {
	color: var(--theme);
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 500
}

.joe_aside__item.author .user .link:hover {
	text-decoration: underline
}

.joe_aside__item.author .user .motto {
	color: var(--main);
	text-align: center;
	word-break: break-word
}

.joe_aside__item.author .count {
	width: 100%;
	padding-bottom: 15px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--classC)
}

.joe_aside__item.author .count .item {
	min-width: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--routine);
	font-size: 12px
}

.joe_aside__item.author .count .item:first-child {
	border-right: 1px solid var(--classC)
}

.joe_aside__item.author .count .item .num {
	max-width: 70px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
	font-size: 22px;
	color: var(--main);
	margin-bottom: 3px;
	text-shadow: var(--text_shadow)
}

.joe_aside__item.author .list {
	padding-top: 15px
}

.joe_aside__item.author .list .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 30px;
}

.joe_aside__item.author .list .item .link {
	position: relative;
	color: var(--routine);
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 22px;
}

.joe_aside__item.author .list .item .link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--theme);
	transition: all 0.35s
}

.joe_aside__item.author .list .item .link:hover {
	color: var(--theme);
}

.joe_aside__item.author .list .item .link:hover::after {
	width: 100%
}

.joe_aside__item.author .list .item .icon {
	fill: var(--routine)
}

.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%;
	/* border-bottom: 1px solid var(--classC); */
	padding: 15px;
	background: var(--background);
	margin-bottom: 10px;
	box-shadow: 0 0 10px var(--main-shadow);
	transition: .3s;
	border-radius: var(--radius-inner);
}

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

/* .joe_list__item.default>.joe_list_banner {
	opacity: .2;
	position: absolute;
	height: 100%;
	width: 50%;
	right: 0;
	top: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
	background-position: center center;
	transition: opacity 0.3s;
	-webkit-mask-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	border-radius: var(--main-radius);
	background: linear-gradient(to left, var(--theme), var(--background));
	visibility: visible;
} */

.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;
	/* opacity: 0.85 */
}

.joe_list__item.default .line {
	position: absolute;
	z-index: 1;
	top: 16px;
	left: 6px;
	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: 210px;
	height: 140px;
	margin-right: 15px;
	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: 10px;
}

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

.joe_list__loading .item .thumbnail {
	flex-shrink: 0;
	position: relative;
	width: 210px;
	height: 140px;
	margin-right: 15px;
	background: var(--background);
	-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;
}

.joe_list__loading .item .information .title {
	height: 24px;
	border-radius: var(--radius-inner);
	background: var(--background);
	-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 .abstract p {
	height: 18px;
	border-radius: var(--radius-inner);
	background: var(--background);
	margin-bottom: 5px;
	-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;
}

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

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

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

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

.joe_alert {
	padding: 12px;
	border-radius: var(--radius-inner);
	line-height: 26px
}

.joe_alert.info {
	border: 1px solid #abdcff
}

.joe_alert.success {
	border: 1px solid #8ce6b0
}

.joe_alert.warning {
	border: 1px solid #ffd77a
}

.joe_alert.error {
	border: 1px solid #ffb08f
}

.joe_alert *:last-child {
	margin-bottom: 0 !important
}

.joe_gird {
	display: grid
}

.joe_gird__item *:last-child {
	margin-bottom: 0 !important
}

.joe_checkbox {
	appearance: none;
	position: relative;
	border-radius: 2px;
	width: 15px;
	height: 15px;
	border: 2px solid var(--theme);
	vertical-align: -2px
}

.joe_checkbox:disabled {
	cursor: not-allowed
}

.joe_checkbox:checked {
	border: none;
	background: var(--theme)
}

.joe_checkbox:checked::after {
	content: '';
	width: 3px;
	height: 7px;
	position: absolute;
	top: 2px;
	left: 5px;
	border: 2px solid #fff;
	border-top: 0;
	border-left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.joe_mtitle {
	display: flex;
	justify-content: center
}

.joe_mtitle__text {
	position: relative;
	color: var(--minor);
	padding: 0 12px;
	transition: padding 0.35s
}

.joe_mtitle__text:hover {
	padding: 0
}

.joe_mtitle__text::before,
.joe_mtitle__text::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 20px;
	height: 1px;
	background: var(--theme)
}

.joe_mtitle__text::before {
	left: -35px
}

.joe_mtitle__text::after {
	right: -35px
}

.joe_abtn {
	display: inline-block;
	color: #fff;
	height: 35px;
	line-height: 35px;
	padding: 0 15px;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transform: translateZ(0);
	transform: translateZ(0)
}

.joe_abtn:hover {
	-webkit-animation-name: wobble-bottom;
	animation-name: wobble-bottom;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1
}

.joe_abtn__icon {
	display: inline-block;
	vertical-align: top;
	text-align: center
}

.joe_abtn__icon .fa {
	color: #fff
}

.joe_abtn__icon [class^='fa-'] {
	margin-right: 8px
}

.joe_abtn__content {
	color: #fff;
	display: inline-block;
	vertical-align: top;
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.joe_anote {
	position: relative;
	display: inline-block;
	color: #fff;
	height: 35px;
	line-height: 35px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s
}

.joe_anote:hover {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px)
}

.joe_anote__icon {
	display: inline-block;
	vertical-align: top;
	width: 35px;
	height: 35px;
	text-align: center;
	background: rgba(0, 0, 0, 0.2)
}

.joe_anote__icon .fa {
	color: #fff
}

.joe_anote__content {
	color: #fff;
	display: inline-block;
	vertical-align: top;
	padding: 0 12px;
	max-width: 200px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.joe_anote.secondary {
	background: #34495e
}

.joe_anote.success {
	background: #27ae60
}

.joe_anote.warning {
	background: #f39c12
}

.joe_anote.error {
	background: #e74c3c
}

.joe_anote.info {
	background: #3498db
}

.joe_dotted {
	display: block;
	width: 100%;
	height: 2px;
	background-size: 80px
}

.joe_hide {
	display: block;
	background: repeating-linear-gradient(145deg, var(--classD), var(--classD) 15px, var(--background) 0, var(--background) 25px);
	padding: 15px 0;
	text-align: center;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: normal
}

.joe_hide__button {
	position: relative;
	font-style: normal;
	cursor: pointer;
	color: var(--theme)
}

.joe_card__default {
	margin: 0 auto;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
	border-radius: var(--radius-inner);
	border: 1px solid var(--classC);
	background: var(--background);
	line-height: 26px
}

.joe_card__default-title {
	padding: 8px 12px;
	border-bottom: 1px solid var(--classC);
	color: var(--main);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_card__default-content {
	padding: 12px;
	color: var(--routine)
}

.joe_card__default-content *:last-child {
	margin-bottom: 0 !important
}

.joe_message {
	display: block;
	position: relative;
	border-left-width: 4px;
	border-left-style: solid;
	margin-top: 15px;
	padding: 8px 15px;
	border-radius: 0 4px 4px 0;
	line-height: 26px;
}

.joe_message:hover .joe_message__icon {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg)
}

.joe_message__icon {
	position: absolute;
	top: -9px;
	left: -11px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	transition: -webkit-transform 0.85s;
	transition: transform 0.85s;
	transition: transform 0.85s, -webkit-transform 0.85s
}

.joe_message__icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	fill: #fff;
	background-repeat: no-repeat;
	background-size: 100% 100%
}

.joe_message.success {
	border-left-color: #2bde3f;
	background: #2bde3f20;
	color: #2bde3f
}

.joe_message.success .joe_message__icon {
	background: #2bde3f
}

.joe_message.success .joe_message__icon::before {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MDE1ODgxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQxMTU3IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00MTMuMjU1IDY5MS40MzZjMTguNTQ2LTE3LjQ1IDMzLjE4Ni0zMC41NTIgNDcuMDc2LTQ0LjQyNyAxMzMuMDQtMTMyLjgxIDI2Ni4xODItMjY1LjUxMyAzOTguNzI0LTM5OC44MzcgMzIuMDc0LTMyLjI0NCA2NS42NjYtNDguNDUyIDEwNC45OTctMTQuNzUyIDMyLjk4MyAyOC4yNDEgMjguMDQ5IDY3LjQ2NS0xMi45MiAxMDguNTc0LTE1Ny4xNzUgMTU3LjcxLTMxNC41ODcgMzE1LjE4NC00NzIuMjkyIDQ3Mi4zOC00OS4zODkgNDkuMjI1LTc2LjMwOCA0OS41NDYtMTI0LjcxNiAxLjYwNy04NS41OS04NC43NjUtMTcwLjEzNS0xNzAuNTc5LTI1NS44LTI1NS4yNTctMzIuMjkyLTMxLjkyMy00OC42OC02NS41MTYtMTQuOTk3LTEwNC45NzYgMjguMTctMzIuOTk1IDY3LjU1Ny0yOC4xNTUgMTA4LjU1OCAxMi42NzUgNzMuNDI3IDczLjE2IDE0Ni4wNzkgMTQ3LjA5IDIyMS4zNyAyMjMuMDEzeiIgcC1pZD0iNDExNTgiIGZpbGw9IiNmZmZmZmYiPjwvcGF0aD48L3N2Zz4=)
}

.joe_message.info {
	border-left-color: #1d72f3;
	background: #1d72f320;
	color: #1d72f3
}

.joe_message.info .joe_message__icon {
	background: #1d72f3
}

.joe_message.info .joe_message__icon::before {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MzM4MjIxIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjYxNjg0IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik03NjcuOTczOTc1IDExNi4zNDYwODZjMCA2NC4yNTI3MzQtNDEuNjgzMjE0IDExNi4zODg3NS05My4wOTM5MzUgMTE2LjM4ODc1UzU4MS43ODYxMDYgMTgwLjU5ODgyIDU4MS43ODYxMDYgMTE2LjM0NjA4NkM1ODEuNzg2MTA2IDUyLjA5MzM1MiA2MjMuNDY5MzIgMCA2NzQuODgwMDQgMFM3NjcuOTczOTc1IDUyLjA5MzM1MiA3NjcuOTczOTc1IDExNi4zNDYwODZ6TTI1NiA1MDQuMjk0MzY1czcwLjgyMzA2Ni0yODQuNzg1NTIzIDI4Ni43NDgwOS0yNzEuMDQ3NTU1YzIxNS45MjUwMjQgMTMuNjk1MzA0IDY3LjIzOTI0OSAyNjEuNDQ4MDQzLTEzLjI2ODY1OSA1MDEuNjQ5MTY2LTgwLjUwNzkwOCAyNDAuMjAxMTIzIDEwMC4yNjE1NyA3MS40MjAzNjkgMTQ1LjQwMDYwOS03LjU1MTYxNiAwIDAtOTMuMTM2NTk5IDQwNi43NjMzMjMtMzY3LjM0MTMyNyAyNjcuNjc3MDYtMTI4LjU0ODEzMi02NS4yMzQwMTcgMzIuMjU0MzYtMzk4LjA1OTc2NSAxMDMuMTIwMDkyLTU0NS41OTM1OTlDNDgxLjU2NzIgMzAxLjgwODY1OCAzMzYuNjM1OTAxIDM4Ny42MDY5NjMgMjU2IDUwNC4yNTE3MDF6IiBmaWxsPSIjZmZmZmZmIiBwLWlkPSI2MTY4NSI+PC9wYXRoPjwvc3ZnPg==)
}

.joe_message.warning {
	border-left-color: #ffc007;
	background: #ffc00720;
	color: #ffc007
}

.joe_message.warning .joe_message__icon {
	background: #ffc007
}

.joe_message.warning .joe_message__icon::before {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MTI5NTE1IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ3NDkyIiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik00NzkuODE3MTQzIDY2NS42YzEwLjI0IDMwLjcyIDMwLjcyIDUxLjIgNjEuNDQgNTEuMnM1MS4yLTIwLjQ4IDYxLjQ0LTUxLjJsNDAuOTYtNTYzLjJDNjQzLjY1NzE0MyA0MC45NiA1OTIuNDU3MTQzIDAgNTQxLjI1NzE0MyAwIDQ3OS44MTcxNDMgMCA0MzguODU3MTQzIDUxLjIgNDM4Ljg1NzE0MyAxMTIuNjRsNDAuOTYgNTUyLjk2eiBtNjEuNDQgMTUzLjZjLTYxLjQ0IDAtMTAyLjQgNDAuOTYtMTAyLjQgMTAyLjQgMCA2MS40NCA0MC45NiAxMDIuNCAxMDIuNCAxMDIuNCA2MS40NCAwIDEwMi40LTQwLjk2IDEwMi40LTEwMi40IDAtNjEuNDQtNDAuOTYtMTAyLjQtMTAyLjQtMTAyLjR6IiBwLWlkPSI0NzQ5MyIgZmlsbD0iI2ZmZmZmZiI+PC9wYXRoPjwvc3ZnPg==)
}

.joe_message.error {
	border-left-color: #f56c6c;
	background: #f56c6c20;
	color: #f56c6c
}

.joe_message.error .joe_message__icon {
	background: #f56c6c
}

.joe_message.error .joe_message__icon::before {
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjEyNTE4MjAyNDk4IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjQ4OTE1IiB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48ZGVmcz48c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwvc3R5bGU+PC9kZWZzPjxwYXRoIGQ9Ik0xOTMuOCA4MzAuMmMtMTkuNC0xOS40LTE5LjQtNTEuMyAwLTcwLjdsNTY1LjctNTY1LjdjMTkuNC0xOS40IDUxLjMtMTkuNCA3MC43IDAgMTkuNCAxOS40IDE5LjQgNTEuMyAwIDcwLjdMMjY0LjUgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAweiIgZmlsbD0iI2ZmZmZmZiIgcC1pZD0iNDg5MTYiPjwvcGF0aD48cGF0aCBkPSJNODMwLjIgODMwLjJjLTE5LjQgMTkuNC01MS4zIDE5LjQtNzAuNyAwTDE5My44IDI2NC41Yy0xOS40LTE5LjQtMTkuNC01MS4zIDAtNzAuNyAxOS40LTE5LjQgNTEuMy0xOS40IDcwLjcgMGw1NjUuNyA1NjUuN2MxOS40IDE5LjQgMTkuNCA1MS4zIDAgNzAuN3oiIGZpbGw9IiNmZmZmZmYiIHAtaWQ9IjQ4OTE3Ij48L3BhdGg+PC9zdmc+)
}

.joe_message__content {
	display: block
}

.joe_progress {
	width: 100%;
	display: flex;
	align-items: center
}

.joe_progress__strip {
	height: 12px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--classC);
	min-width: 0;
	flex: 1;
	margin-right: 10px
}

.joe_progress__strip-percent {
	position: relative;
	height: 100%;
	border-radius: 6px;
	transition: width 0.35s
}

.joe_progress__strip-percent::before {
	content: '';
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	border-radius: 6px;
	-webkit-animation: progress-active 3s ease-in-out infinite;
	animation: progress-active 3s ease-in-out infinite
}

.joe_progress__percentage {
	color: var(--minor)
}

.joe_callout {
	padding: 12px;
	border: 1px solid var(--classB);
	border-left-width: 4px;
	border-radius: var(--radius-inner);
	color: var(--routine);
	line-height: 26px
}

.joe_callout *:last-child {
	margin-bottom: 0 !important
}

.joe_card__list {
	border: 1px solid var(--classC);
	border-radius: var(--radius-inner);
	overflow: hidden;
	line-height: 26px
}

.joe_card__list-item {
	padding: 12px;
	border-bottom: 1px solid var(--classC)
}

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

.joe_card__list-item *:last-child {
	margin-bottom: 0 !important
}

.joe_timeline {
	line-height: 26px
}

.joe_timeline__item {
	position: relative;
	padding-bottom: 15px
}

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

.joe_timeline__item-circle {
	position: absolute;
	width: 13px;
	height: 13px;
	background-color: var(--background);
	border-radius: 50%;
	border: 1px solid #19be6b
}

.joe_timeline__item-content {
	padding-left: 24px;
	position: relative;
	top: -5px
}

.joe_timeline__item-content *:last-child {
	margin-bottom: 0 !important
}

.joe_timeline__item:last-child {
	padding-bottom: 0
}

.joe_timeline__item:last-child .joe_timeline__item-tail {
	display: none
}

.joe_tabs {
	width: 100%;
	overflow: hidden;
	background: var(--background);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--classC);
	border-radius: var(--radius-inner);
	line-height: 26px
}

.joe_tabs__head {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	display: flex;
	background: var(--classD)
}

.joe_tabs__head-item {
	position: relative;
	padding: 0 10px;
	line-height: 35px;
	height: 35px;
	color: var(--minor);
	cursor: pointer;
	transition: 0.1s;
	white-space: nowrap;
	font-size: 14px
}

.joe_tabs__head-item.active {
	color: #fff;
	background: var(--theme);
}

.joe_tabs__body-item {
	padding: 15px
}

.joe_tabs__body-item *:last-child {
	margin-bottom: 0 !important
}

.dplayer {
	max-width: 100%;
	max-height: 60vh;
	border-radius: var(--main-radius);
}

.dplayer video,
.dplayer-video-wrap,
.dplayer-controller-mask {
	border-radius: var(--main-radius);
}

.joe_vplayer {
	width: 100%;
	height: 500px;
	border-radius: var(--radius-inner);
}

.joe_card__describe {
	position: relative;
	border: 1px dashed var(--classA);
	line-height: 26px
}

.joe_card__describe-title {
	position: absolute;
	top: 0;
	left: 8px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: var(--background);
	padding: 0 5px;
	color: var(--main);
	font-weight: 500;
	max-width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis
}

.joe_card__describe-content {
	color: var(--routine);
	padding: 18px 15px 15px
}

.joe_card__describe-content *:last-child {
	margin-bottom: 0 !important
}

.joe_lamp {
	display: block;
	position: relative;
	width: 100%;
	height: 3px;
	border-radius: 1.5px;
	overflow: hidden;
	-webkit-animation: lamp-background linear 4s infinite;
	animation: lamp-background linear 4s infinite
}

.joe_lamp::before,
.joe_lamp::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 1;
	-webkit-animation: lamp-front linear 4s infinite;
	animation: lamp-front linear 4s infinite
}

.joe_lamp::before {
	right: 50%;
	-webkit-transform-origin: right;
	transform-origin: right
}

.joe_lamp::after {
	left: 50%;
	-webkit-transform-origin: left;
	transform-origin: left
}

.joe_collapse {
	line-height: 26px
}

.joe_collapse__item {
	margin-bottom: 10px;
	color: var(--routine);
	border: 1px solid var(--classC)
}

.joe_collapse__item-head {
	display: flex;
	align-items: center;
	background: var(--classD);
	padding: 10px 12px;
	padding-right: 8px;
	cursor: pointer;
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_collapse__item-head--label {
	padding-right: 8px
}

.joe_collapse__item-head--icon {
	flex-shrink: 0;
	margin-left: auto;
	fill: var(--minor);
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease
}

.joe_collapse__item-wrapper {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease
}

.joe_collapse__item-wrapper--content {
	padding: 12px
}

.joe_collapse__item-wrapper--content *:last-child {
	margin-bottom: 0 !important
}

.joe_collapse__item:last-child {
	margin-bottom: 0
}

.joe_collapse__item.active .joe_collapse__item-head--icon {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg)
}

.joe_cloud {
	display: flex;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--classC);
	border-radius: var(--radius-inner);
	overflow: hidden
}

.joe_cloud__logo {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	background-size: 100% 100%
}

.joe_cloud__logo._default {
	background-image: url("../images/cloud/default.svg");
}

.joe_cloud__logo._360 {
	background-image: url("../images/cloud/360.svg");
}

.joe_cloud__logo._bd {
	background-image: url("../images/cloud/baidu.svg");
}

.joe_cloud__logo._ty {
	background-image: url("../images/cloud/tianyi.svg");
}

.joe_cloud__logo._ct {
	background-image: url("../images/cloud/chengtong.svg")
}

.joe_cloud__logo._wy {
	background-image: url("../images/cloud/thin-cloud.png")
}

.joe_cloud__logo._quark {
	background-image: url("../images/cloud/quark.png")
}

.joe_cloud__logo._github {
	background-image: url("../images/cloud/github.svg")
}

.joe_cloud__logo._gitee {
	background-image: url("../images/cloud/gitee.svg")
}

.joe_cloud__logo._lz {
	background-image: url("../images/cloud/lanzou.png")
}

.joe_cloud__describe {
	line-height: normal;
	flex: 1;
	overflow: hidden
}

.joe_cloud__describe-title {
	color: var(--theme);
	font-size: 14px;
	margin-bottom: 3px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.joe_cloud__describe-type {
	font-size: 12px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.joe_cloud__btn {
	flex-shrink: 0;
	margin-left: auto;
	background: var(--theme);
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center
}

.joe_cloud__btn:hover {
	color: #fff;
	opacity: 0.8;
}

.joe_detail {
	background: var(--background);
	border-radius: var(--main-radius);
	padding: 15px 30px;
	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;
	/* padding-bottom: 15px; */
	/* border-bottom: 1px solid var(--classC) */
}

/* .joe_detail__count::after {
	content: '';
	position: absolute;
	bottom: -1.5px;
	left: 0;
	width: 80px;
	height: 3px;
	border-radius: 1.5px;
	background: var(--back-line-right)
} */

.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_detail__count-created {
	font-size: 32px;
	line-height: 42px;
	color: var(--routine);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: var(--text-shadow);
	font-family: consolas
} */

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

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

.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 {
	padding-top: 20px;
	font-size: 16px;
	word-break: break-word;
	color: var(--main-color);
	margin-bottom: 20px;
}

.joe_detail__article h1,
.joe_detail__article h2,
.joe_detail__article h3,
.joe_detail__article h4,
.joe_detail__article h5,
.joe_detail__article h6 {
	color: var(--main-color);
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	/* margin-bottom: 10px; */
	/* margin-bottom: 20px; */
	margin-bottom: 8px;
	position: relative;
	font-family: inherit;
	line-height: 1.1;
	color: inherit;
	padding-bottom: 8px;
}

.joe_detail__article h1::before,
.joe_detail__article h2::before,
.joe_detail__article h3::before,
.joe_detail__article h4::before {
	transition: .4s;
	transform-origin: left;
	position: absolute;
	content: '';
	width: 40px;
	height: 3px;
	background: var(--theme);
	left: 0;
	bottom: 3px;
	border-radius: 5px;
	box-shadow: 1px 1px 3px -1px var(--theme);
}

.joe_detail__article h1:hover::before,
.joe_detail__article h2:hover::before,
.joe_detail__article h3:hover::before,
.joe_detail__article h4:hover::before {
	transform: scaleX(1.3);
}

.joe_detail__article h1:not(:first-child),
.joe_detail__article h2:not(:first-child),
.joe_detail__article h3:not(:first-child),
.joe_detail__article h4:not(:first-child),
.joe_detail__article h5:not(:first-child),
.joe_detail__article h6:not(:first-child) {
	/* margin-top: 15px; */
	/* margin-top: 20px; */
	margin-top: 24px;
}

.joe_detail__article h1 {
	font-size: 22px;
}

.joe_detail__article h2 {
	font-size: 20px;
}

.joe_detail__article h3 {
	font-size: 18px;
}

.joe_detail__article h3::before {
	width: 25px;
	height: 2px;
}

.joe_detail__article h4 {
	font-size: 16px;
}

.joe_detail__article h4::before {
	width: 25px;
	height: 2px;
}

.joe_detail__article h5 {
	font-size: 14px;
	padding-bottom: 0;
}

.joe_detail__article h6:not(:first-child) {
	margin-top: 10px;
}

.joe_detail__article h6 {
	font-size: 14px;
	margin-bottom: 10px;
	padding-bottom: 0;
	font-weight: 500;
}

.joe_detail__article hr {
	border: none;
	height: 1px;
	background-color: var(--classB);
	margin-bottom: 18px
}

.joe_detail__article p {
	/* line-height: 2; */
	margin-bottom: 16px;
	line-height: 26px;
}

.joe_detail__article br {
	content: "";
	padding-bottom: 6px;
	display: block;
}

.joe_detail__article blockquote {
	line-height: 26px;
	margin-bottom: 18px;
	background: #ecf8ff;
	border-left: 5px solid #50bfff;
	color: #50bfff;
	padding: 8px 15px;
	border-radius: 0 var(--radius-inner) var(--radius-inner) 0
}

.joe_detail__article blockquote p {
	margin: 0
}

.joe_detail__article a:not([class]) {
	display: inline-block;
	line-height: 21px;
	color: var(--theme);
	position: relative
}

.joe_detail__article a:not([class]):hover::after {
	opacity: 1;
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.joe_detail__article a:not([class])::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	bottom: -1px;
	left: 0;
	background: var(--theme);
	-webkit-transform: scaleX(0.25);
	transform: scaleX(0.25);
	opacity: 0;
	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__article code:not([class]) {
	border-radius: var(--radius-inner);
	font-size: 85%;
	background: #ecf5ff;
	color: #409eff;
	padding: 2px 4px;
	/* vertical-align: top; */
	vertical-align: 1px;
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	word-break: break-word;
	font-weight: normal;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	white-space: normal;
}

.joe_detail__article pre[class*='language-'] {
	position: relative;
	margin: 0 0 18px;
	padding: 30px 0 0;
	font-size: 14px;
	border-radius: var(--radius-inner);
	/* overflow: hidden; */
}

.joe_detail__article pre[class*='language-'] code[class*='language-'] {
	display: block;
	overflow: auto;
	padding: 0 15px 12px;
	tab-size: 4 !important;
	padding-left: 4em;
}

.joe_detail__article pre[class*='language-']::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 15px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fc625d;
	box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;
	z-index: 1
}

.joe_detail__article pre[class*='language-'] .copy {
	position: absolute;
	line-height: normal;
	top: 7.25px;
	right: 7.25px;
	z-index: 5;
	color: #909399;
	transition: color 0.35s;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_detail__article pre[class*='language-'] .copy:hover {
	color: #c0c4cc
}

html .line-numbers .line-numbers-rows {
	left: 0;
}

.joe_detail__article img:not([class]) {
	display: block;
	max-width: 100%;
	max-height: 30vh;
	border-radius: var(--radius-inner);
	transition: box-shadow 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, box-shadow 0.35s;
	transition: transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s;
	cursor: zoom-in;
	margin: 0 auto
}

.joe_detail__article img:not([class]):hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3)
}

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

.joe_detail__article ol,
.joe_detail__article ul {
	margin-bottom: 18px;
	padding-left: 25px
}

.joe_detail__article ol li,
.joe_detail__article ul li {
	line-height: 26px;
	margin-bottom: 5px;
}

.joe_detail__article ol li {
	list-style: decimal
}

.joe_detail__article ul li {
	list-style: disc
}

.joe_detail__article table {
	width: 100%;
	max-width: 100%;
	/*table-layout: fixed;*/
	color: var(--minor);
	margin-bottom: 18px;
	font-size: 13px;
	border-top: 1px solid var(--classC);
	border-left: 1px solid var(--classC)
}

.joe_detail__article table td,
.joe_detail__article table th {
	padding: 8px;
	border-bottom: 1px solid var(--classC);
	border-right: 1px solid var(--classC)
}

.joe_detail__article table thead th {
	font-weight: 500;
	background: var(--classC);
	white-space: nowrap;
}

.joe_detail__article table tbody tr {
	transition: background 0.35s
}

.joe_detail__article table tbody tr:hover {
	background: var(--classD)
}

.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__agree {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px
}

.joe_detail__agree .agree {
	text-align: center;
	font-size: 12px;
	color: var(--minor);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_detail__agree .agree .icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f56c6c;
	cursor: pointer;
	margin-bottom: 8px
}

.joe_detail__agree .agree .icon.active {
	-webkit-animation: box_shadow 1s;
	animation: box_shadow 1s;
	box-shadow: 0 0 0 20px rgba(255, 255, 255, 0)
}

.joe_detail__agree .agree .icon svg {
	position: absolute;
	width: 28px;
	height: 28px;
	-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_detail__agree .agree .icon svg.active {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1
}

.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__friends {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 15px
}

.joe_detail__friends-item .contain:hover {
	-webkit-transform: translateY(-5px) scale(1.025);
	transform: translateY(-5px) scale(1.025);
	box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
}

.joe_detail__friends-item .contain {
	display: block;
	border-radius: var(--radius-inner);
	overflow: hidden;
	padding: 15px;
	color: #fff;
	word-break: break-word;
	transition: box-shadow 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, box-shadow 0.35s;
	transition: transform 0.35s, box-shadow 0.35s, -webkit-transform 0.35s
}

.joe_detail__friends-item .contain .title {
	position: relative
}

.joe_detail__friends-item .contain .title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff
}

.joe_detail__friends-item .contain .content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px
}

.joe_detail__friends-item .contain .content .desc {
	margin-right: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.joe_detail__friends-item .contain .content .avatar {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	border-radius: 50%;
	-o-object-fit: cover;
	object-fit: cover
}

.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
}

.joe_pagination li {
	margin-left: 5px
}

.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__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: 200px;
	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;
	margin-right: 15px;
	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 {
	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);
}

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

.joe_comment__respond-form .foot .submit button:hover {
	-webkit-animation: 5s ease-in-out 0s infinite normal none running shaked;
	animation: 5s ease-in-out 0s infinite normal none running shaked
}

.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
}

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

.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 .author {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-right: 10px
}

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

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

.joe_comment .comment-list__item-contain .term .content .user .agent {
	margin-left: auto;
	font-size: 12px;
	color: var(--minor)
}

.joe_comment .comment-list__item-contain .term .content .user .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: 8px;
	word-break: break-word;
	line-height: 24px
}

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

.joe_comment .comment-list__item-contain .term .content .substance .parent {
	color: #388bff;
	margin-bottom: 5px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: 500
}

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

.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)
}

.joe_comment .comment-list__item-contain .term .content .handle .date {
	margin-right: 10px
}

.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: 5px
}

.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: 63px
}

.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-top: 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% / 18);
	display: inline-block;
	padding: 5px;
	cursor: pointer;
	border-radius: var(--radius-inner);
	transition: background 0.25s
}

.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(4) .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 {
	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;
}

@-webkit-keyframes wobble-bottom {
	16.65% {
		-webkit-transform: skew(-12deg);
		transform: skew(-12deg)
	}

	33.3% {
		-webkit-transform: skew(10deg);
		transform: skew(10deg)
	}

	49.95% {
		-webkit-transform: skew(-6deg);
		transform: skew(-6deg)
	}

	66.6% {
		-webkit-transform: skew(4deg);
		transform: skew(4deg)
	}

	83.25% {
		-webkit-transform: skew(-2deg);
		transform: skew(-2deg)
	}

	100% {
		-webkit-transform: skew(0);
		transform: skew(0)
	}
}

@keyframes wobble-bottom {
	16.65% {
		-webkit-transform: skew(-12deg);
		transform: skew(-12deg)
	}

	33.3% {
		-webkit-transform: skew(10deg);
		transform: skew(10deg)
	}

	49.95% {
		-webkit-transform: skew(-6deg);
		transform: skew(-6deg)
	}

	66.6% {
		-webkit-transform: skew(4deg);
		transform: skew(4deg)
	}

	83.25% {
		-webkit-transform: skew(-2deg);
		transform: skew(-2deg)
	}

	100% {
		-webkit-transform: skew(0);
		transform: skew(0)
	}
}

@-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)
	}
}

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

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

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

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

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

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

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

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

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

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

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

	100% {
		width: 95%
	}
}

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

	100% {
		width: 95%
	}
}

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

	100% {
		width: 80%
	}
}

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

	100% {
		width: 80%
	}
}

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

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

@-webkit-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-show {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	to {
		opacity: 1
	}
}

@-webkit-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 profile-color-modes-illu-anim-frame-hide {
	0% {
		opacity: 1;
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	to {
		opacity: 0
	}
}

@-webkit-keyframes shaked {
	2% {
		-webkit-transform: translateY(1.5px) rotate(1.5deg);
		transform: translateY(1.5px) rotate(1.5deg)
	}

	4% {
		-webkit-transform: translateY(-1.5px) rotate(-0.5deg);
		transform: translateY(-1.5px) rotate(-0.5deg)
	}

	6% {
		-webkit-transform: translateY(1.5px) rotate(-1.5deg);
		transform: translateY(1.5px) rotate(-1.5deg)
	}

	8% {
		-webkit-transform: translateY(-1.5px) rotate(-1.5deg);
		transform: translateY(-1.5px) rotate(-1.5deg)
	}

	10% {
		-webkit-transform: translateY(2.5px) rotate(1.5deg);
		transform: translateY(2.5px) rotate(1.5deg)
	}

	12% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	14% {
		-webkit-transform: translateY(-1.5px) rotate(1.5deg);
		transform: translateY(-1.5px) rotate(1.5deg)
	}

	16% {
		-webkit-transform: translateY(-0.5px) rotate(-1.5deg);
		transform: translateY(-0.5px) rotate(-1.5deg)
	}

	18% {
		-webkit-transform: translateY(0.5px) rotate(-1.5deg);
		transform: translateY(0.5px) rotate(-1.5deg)
	}

	20% {
		-webkit-transform: translateY(-1.5px) rotate(2.5deg);
		transform: translateY(-1.5px) rotate(2.5deg)
	}

	22% {
		-webkit-transform: translateY(0.5px) rotate(-1.5deg);
		transform: translateY(0.5px) rotate(-1.5deg)
	}

	24% {
		-webkit-transform: translateY(1.5px) rotate(1.5deg);
		transform: translateY(1.5px) rotate(1.5deg)
	}

	26% {
		-webkit-transform: translateY(0.5px) rotate(0.5deg);
		transform: translateY(0.5px) rotate(0.5deg)
	}

	28% {
		-webkit-transform: translateY(0.5px) rotate(1.5deg);
		transform: translateY(0.5px) rotate(1.5deg)
	}

	30% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	32%,
	34% {
		-webkit-transform: translateY(1.5px) rotate(-0.5deg);
		transform: translateY(1.5px) rotate(-0.5deg)
	}

	36% {
		-webkit-transform: translateY(-1.5px) rotate(2.5deg);
		transform: translateY(-1.5px) rotate(2.5deg)
	}

	38% {
		-webkit-transform: translateY(1.5px) rotate(-1.5deg);
		transform: translateY(1.5px) rotate(-1.5deg)
	}

	40% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	42% {
		-webkit-transform: translateY(2.5px) rotate(-1.5deg);
		transform: translateY(2.5px) rotate(-1.5deg)
	}

	44% {
		-webkit-transform: translateY(1.5px) rotate(0.5deg);
		transform: translateY(1.5px) rotate(0.5deg)
	}

	46% {
		-webkit-transform: translateY(-1.5px) rotate(2.5deg);
		transform: translateY(-1.5px) rotate(2.5deg)
	}

	48% {
		-webkit-transform: translateY(-0.5px) rotate(0.5deg);
		transform: translateY(-0.5px) rotate(0.5deg)
	}

	50% {
		-webkit-transform: translateY(0.5px) rotate(0.5deg);
		transform: translateY(0.5px) rotate(0.5deg)
	}

	52% {
		-webkit-transform: translateY(2.5px) rotate(2.5deg);
		transform: translateY(2.5px) rotate(2.5deg)
	}

	54% {
		-webkit-transform: translateY(-1.5px) rotate(1.5deg);
		transform: translateY(-1.5px) rotate(1.5deg)
	}

	56% {
		-webkit-transform: translateY(2.5px) rotate(2.5deg);
		transform: translateY(2.5px) rotate(2.5deg)
	}

	58% {
		-webkit-transform: translateY(0.5px) rotate(2.5deg);
		transform: translateY(0.5px) rotate(2.5deg)
	}

	60% {
		-webkit-transform: translateY(2.5px) rotate(2.5deg);
		transform: translateY(2.5px) rotate(2.5deg)
	}

	62% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	64% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	66% {
		-webkit-transform: translateY(1.5px) rotate(-0.5deg);
		transform: translateY(1.5px) rotate(-0.5deg)
	}

	68% {
		-webkit-transform: translateY(-1.5px) rotate(-0.5deg);
		transform: translateY(-1.5px) rotate(-0.5deg)
	}

	70% {
		-webkit-transform: translateY(1.5px) rotate(0.5deg);
		transform: translateY(1.5px) rotate(0.5deg)
	}

	72% {
		-webkit-transform: translateY(2.5px) rotate(1.5deg);
		transform: translateY(2.5px) rotate(1.5deg)
	}

	74% {
		-webkit-transform: translateY(-0.5px) rotate(0.5deg);
		transform: translateY(-0.5px) rotate(0.5deg)
	}

	76% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	78% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	80% {
		-webkit-transform: translateY(1.5px) rotate(1.5deg);
		transform: translateY(1.5px) rotate(1.5deg)
	}

	82% {
		-webkit-transform: translateY(-0.5px) rotate(0.5deg);
		transform: translateY(-0.5px) rotate(0.5deg)
	}

	84% {
		-webkit-transform: translateY(1.5px) rotate(2.5deg);
		transform: translateY(1.5px) rotate(2.5deg)
	}

	86% {
		-webkit-transform: translateY(-1.5px) rotate(-1.5deg);
		transform: translateY(-1.5px) rotate(-1.5deg)
	}

	88% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	90% {
		-webkit-transform: translateY(2.5px) rotate(-0.5deg);
		transform: translateY(2.5px) rotate(-0.5deg)
	}

	92% {
		-webkit-transform: translateY(0.5px) rotate(-0.5deg);
		transform: translateY(0.5px) rotate(-0.5deg)
	}

	94% {
		-webkit-transform: translateY(2.5px) rotate(0.5deg);
		transform: translateY(2.5px) rotate(0.5deg)
	}

	96% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	98% {
		-webkit-transform: translateY(-1.5px) rotate(-0.5deg);
		transform: translateY(-1.5px) rotate(-0.5deg)
	}

	0%,
	100% {
		-webkit-transform: translate(0px) rotate(0deg);
		transform: translate(0px) rotate(0deg)
	}
}

@keyframes shaked {
	2% {
		-webkit-transform: translateY(1.5px) rotate(1.5deg);
		transform: translateY(1.5px) rotate(1.5deg)
	}

	4% {
		-webkit-transform: translateY(-1.5px) rotate(-0.5deg);
		transform: translateY(-1.5px) rotate(-0.5deg)
	}

	6% {
		-webkit-transform: translateY(1.5px) rotate(-1.5deg);
		transform: translateY(1.5px) rotate(-1.5deg)
	}

	8% {
		-webkit-transform: translateY(-1.5px) rotate(-1.5deg);
		transform: translateY(-1.5px) rotate(-1.5deg)
	}

	10% {
		-webkit-transform: translateY(2.5px) rotate(1.5deg);
		transform: translateY(2.5px) rotate(1.5deg)
	}

	12% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	14% {
		-webkit-transform: translateY(-1.5px) rotate(1.5deg);
		transform: translateY(-1.5px) rotate(1.5deg)
	}

	16% {
		-webkit-transform: translateY(-0.5px) rotate(-1.5deg);
		transform: translateY(-0.5px) rotate(-1.5deg)
	}

	18% {
		-webkit-transform: translateY(0.5px) rotate(-1.5deg);
		transform: translateY(0.5px) rotate(-1.5deg)
	}

	20% {
		-webkit-transform: translateY(-1.5px) rotate(2.5deg);
		transform: translateY(-1.5px) rotate(2.5deg)
	}

	22% {
		-webkit-transform: translateY(0.5px) rotate(-1.5deg);
		transform: translateY(0.5px) rotate(-1.5deg)
	}

	24% {
		-webkit-transform: translateY(1.5px) rotate(1.5deg);
		transform: translateY(1.5px) rotate(1.5deg)
	}

	26% {
		-webkit-transform: translateY(0.5px) rotate(0.5deg);
		transform: translateY(0.5px) rotate(0.5deg)
	}

	28% {
		-webkit-transform: translateY(0.5px) rotate(1.5deg);
		transform: translateY(0.5px) rotate(1.5deg)
	}

	30% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	32%,
	34% {
		-webkit-transform: translateY(1.5px) rotate(-0.5deg);
		transform: translateY(1.5px) rotate(-0.5deg)
	}

	36% {
		-webkit-transform: translateY(-1.5px) rotate(2.5deg);
		transform: translateY(-1.5px) rotate(2.5deg)
	}

	38% {
		-webkit-transform: translateY(1.5px) rotate(-1.5deg);
		transform: translateY(1.5px) rotate(-1.5deg)
	}

	40% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	42% {
		-webkit-transform: translateY(2.5px) rotate(-1.5deg);
		transform: translateY(2.5px) rotate(-1.5deg)
	}

	44% {
		-webkit-transform: translateY(1.5px) rotate(0.5deg);
		transform: translateY(1.5px) rotate(0.5deg)
	}

	46% {
		-webkit-transform: translateY(-1.5px) rotate(2.5deg);
		transform: translateY(-1.5px) rotate(2.5deg)
	}

	48% {
		-webkit-transform: translateY(-0.5px) rotate(0.5deg);
		transform: translateY(-0.5px) rotate(0.5deg)
	}

	50% {
		-webkit-transform: translateY(0.5px) rotate(0.5deg);
		transform: translateY(0.5px) rotate(0.5deg)
	}

	52% {
		-webkit-transform: translateY(2.5px) rotate(2.5deg);
		transform: translateY(2.5px) rotate(2.5deg)
	}

	54% {
		-webkit-transform: translateY(-1.5px) rotate(1.5deg);
		transform: translateY(-1.5px) rotate(1.5deg)
	}

	56% {
		-webkit-transform: translateY(2.5px) rotate(2.5deg);
		transform: translateY(2.5px) rotate(2.5deg)
	}

	58% {
		-webkit-transform: translateY(0.5px) rotate(2.5deg);
		transform: translateY(0.5px) rotate(2.5deg)
	}

	60% {
		-webkit-transform: translateY(2.5px) rotate(2.5deg);
		transform: translateY(2.5px) rotate(2.5deg)
	}

	62% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	64% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	66% {
		-webkit-transform: translateY(1.5px) rotate(-0.5deg);
		transform: translateY(1.5px) rotate(-0.5deg)
	}

	68% {
		-webkit-transform: translateY(-1.5px) rotate(-0.5deg);
		transform: translateY(-1.5px) rotate(-0.5deg)
	}

	70% {
		-webkit-transform: translateY(1.5px) rotate(0.5deg);
		transform: translateY(1.5px) rotate(0.5deg)
	}

	72% {
		-webkit-transform: translateY(2.5px) rotate(1.5deg);
		transform: translateY(2.5px) rotate(1.5deg)
	}

	74% {
		-webkit-transform: translateY(-0.5px) rotate(0.5deg);
		transform: translateY(-0.5px) rotate(0.5deg)
	}

	76% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	78% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	80% {
		-webkit-transform: translateY(1.5px) rotate(1.5deg);
		transform: translateY(1.5px) rotate(1.5deg)
	}

	82% {
		-webkit-transform: translateY(-0.5px) rotate(0.5deg);
		transform: translateY(-0.5px) rotate(0.5deg)
	}

	84% {
		-webkit-transform: translateY(1.5px) rotate(2.5deg);
		transform: translateY(1.5px) rotate(2.5deg)
	}

	86% {
		-webkit-transform: translateY(-1.5px) rotate(-1.5deg);
		transform: translateY(-1.5px) rotate(-1.5deg)
	}

	88% {
		-webkit-transform: translateY(-0.5px) rotate(2.5deg);
		transform: translateY(-0.5px) rotate(2.5deg)
	}

	90% {
		-webkit-transform: translateY(2.5px) rotate(-0.5deg);
		transform: translateY(2.5px) rotate(-0.5deg)
	}

	92% {
		-webkit-transform: translateY(0.5px) rotate(-0.5deg);
		transform: translateY(0.5px) rotate(-0.5deg)
	}

	94% {
		-webkit-transform: translateY(2.5px) rotate(0.5deg);
		transform: translateY(2.5px) rotate(0.5deg)
	}

	96% {
		-webkit-transform: translateY(-0.5px) rotate(1.5deg);
		transform: translateY(-0.5px) rotate(1.5deg)
	}

	98% {
		-webkit-transform: translateY(-1.5px) rotate(-0.5deg);
		transform: translateY(-1.5px) rotate(-0.5deg)
	}

	0%,
	100% {
		-webkit-transform: translate(0px) rotate(0deg);
		transform: translate(0px) rotate(0deg)
	}
}

@-webkit-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 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%)
	}
}

@-webkit-keyframes progress-active {
	0% {
		opacity: 0.3;
		width: 0
	}

	to {
		opacity: 0;
		width: 100%
	}
}

@keyframes progress-active {
	0% {
		opacity: 0.3;
		width: 0
	}

	to {
		opacity: 0;
		width: 100%
	}
}

@-webkit-keyframes lamp-background {

	0%,
	24.9% {
		background-color: #54b5db
	}

	25%,
	49.9% {
		background-color: #da4733
	}

	50%,
	74.9% {
		background-color: #3b78e7
	}

	75%,
	to {
		background-color: #fdba2c
	}
}

@keyframes lamp-background {

	0%,
	24.9% {
		background-color: #54b5db
	}

	25%,
	49.9% {
		background-color: #da4733
	}

	50%,
	74.9% {
		background-color: #3b78e7
	}

	75%,
	to {
		background-color: #fdba2c
	}
}

@-webkit-keyframes lamp-front {
	0% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #da4733
	}

	24.9% {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #da4733
	}

	25% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #3b78e7
	}

	49.9% {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #3b78e7
	}

	50% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #fdba2c
	}

	74.9% {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #fdba2c
	}

	75% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #409eff
	}

	to {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #409eff
	}
}

@keyframes lamp-front {
	0% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #da4733
	}

	24.9% {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #da4733
	}

	25% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #3b78e7
	}

	49.9% {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #3b78e7
	}

	50% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #fdba2c
	}

	74.9% {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #fdba2c
	}

	75% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		background-color: #409eff
	}

	to {
		-webkit-transform: scaleX(0.5);
		transform: scaleX(0.5);
		background-color: #409eff
	}
}

@-webkit-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)
	}
}

@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
}

@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;
}

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

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

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

.footer a.toggle-radius:hover {
	color: var(--footer-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(--footer-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(--focus-color);
}

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

.switch-video.active .badg {
	background: var(--focus-color);
	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;
	}
}