.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);
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
	transition: top 0.35s
}

.joe_header:target {
    top: -50px;
}

.joe_header.active {
	top: -50px
}

.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;
}

.joe_header__above .joe_container {
	align-items: center;
}

.joe_header__above-logo {
	position: relative;
	display: flex;
	align-items: center;
	height: 50px;
	padding-right: 15px;
	margin-right: 15px
}

.joe_header__above-logo img {
	max-width: 150px;
	max-height: 50px;
	-o-object-fit: cover;
	object-fit: cover
}

.joe_header__above-logo svg {
	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: 50px;
	line-height: 50px;
	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(--back-line-right);
}

.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
}

.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(--back-line-right);
	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-searchicon,
.joe_header__above-slideicon {
	display: none;
	width: 20px;
	height: 20px;
	fill: var(--routine);
	cursor: pointer
}

.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: -0.3px;
	left: 0;
	right: 0;
	z-index: 890;
	background: var(--background);
	border-top: 1px 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: 2px solid var(--classB);
	border-right: none;
	border-radius: 2px 0 0 2px;
	color: var(--routine);
	background: transparent;
	transition: 0.2s;
}

.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(--back-line-right);
	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: 135px 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;
	background: var(--back-trn-85);
	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 {
	background: var(--back-trn-85);
	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 {
	background: var(--back-trn-85);
	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__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: 250px;
	margin-bottom: 15px;
	border-radius: var(--radius-wrap);
	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 {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--classC);
	font-size: 16px;
	font-weight: 500;
	height: 45px;
	line-height: 45px;
	padding: 0 15px;
	color: var(--main)
}

.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;
	padding: 15px
}

.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: 75px;
	height: 75px;
	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: 5px
}

.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;
	line-height: 30px
}

.joe_aside__item.author .list .item .link {
	position: relative;
	color: var(--routine);
	max-width: 85%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.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 {
	background-image:var(--back-line-right); 

    -webkit-background-clip:text; 

    -webkit-text-fill-color:transparent;
}

.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 {
	background: var(--background)
}

.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
}

.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 {
	background: var(--background)
}

.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 {
	background: var(--background)
}

.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 {
	background: var(--background)
}

.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(--classD);
	border-radius: 6px;
	padding: 5px 10px
}

.joe_aside__item.newreply .item .reply::before {
	content: '';
	width: 0;
	height: 0;
	border-bottom: 6px solid var(--classD);
	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 {
	background: var(--background)
}

.joe_aside__item.tags .empty {
	text-align: center;
	color: var(--routine)
}

.joe_aside__item.flatterer {
	background: var(--background)
}

.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: 1.5vh 0
}

.joe_list__item:last-child {
	border-bottom: none
}

.joe_list__item .information .title {
	padding-bottom: 4px;
	margin-bottom: 6px;
	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(--main);
	font-size: 18px;
	line-height: 24px;
	max-height: 48px;
	transition: color 0.35s
}

.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 {
	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(--minor);
	word-break: break-word;
	line-height: 22px;
	max-height: 44px;
	opacity: 0.85
}

.joe_list__item .line {
	position: absolute;
	z-index: 1;
	top: 15px;
	left: 3px;
	width: 4px;
	height: 25px;
	border-radius: 2px;
	background: var(--back-line-bottom);
	-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 .meta {
	display: flex;
	align-items: center;
	margin-top: auto;
	color: var(--minor);
	font-size: 13px
}

.joe_list__item .meta .items {
	display: flex;
	align-items: center
}

.joe_list__item .meta .items li::after {
	content: '/';
	color: var(--seat);
	padding: 0 5px
}

.joe_list__item .meta .items li:last-child::after {
	display: none
}

.joe_list__item .meta .last {
	margin-left: auto;
	display: flex;
	align-items: center
}

.joe_list__item .meta .last .icon {
	margin-right: 3px
}

.joe_list__item .meta .last .link {
	color: var(--minor);
	transition: 0.2s;
}

.joe_list__item .meta .last .link:hover {
    color: var(--theme);
}

.joe_list__item:hover .line {
	-webkit-transform: scaleY(1);
	transform: scaleY(1)
}

.joe_list__item.default {
	display: flex;
	position: relative;
	background: var(--background);
	margin-bottom: 1.5vh;
	padding-left: 10px;
	padding-right: 10px;
	box-shadow: 0 0 10px rgba(116, 116, 116, 0.15);
	transition: .3s;
	border-radius: 0.55vh;
}

.joe_list__item.default:hover {
    opacity: 1;
    border-radius: 0.7vh;
    transform: translateY(-3px);
    box-shadow: 0 2px 10px rgb(0 0 0 / 15%);
    animation: index-link-active 1s cubic-bezier(0.315, 0.605, 0.375, 0.925) forwards;
}

.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(--back-line-right);
	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
}

.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: 15px
}

.joe_list__item.single .thumbnail {
	display: block;
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	margin-bottom: 15px
}

.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
}

.joe_list__loading .item {
	display: flex;
	position: relative;
	width: 100%;
	padding: 1.5vh 0;
	margin-bottom: 1.5vh;
}

.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 {
	margin: 15px auto 0;
	width: 120px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius: 16px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background: var(--back-line-right);
	color: #fff;
	transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	transition: transform 0.25s, -webkit-transform 0.25s;
	box-shadow: var(--box-shadow)
}

.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 {
	-webkit-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 15px;
	line-height: 40px;
	height: 40px;
	color: var(--minor);
	cursor: pointer;
	transition: color 0.5s;
	white-space: nowrap;
	font-size: 14px
}

.joe_tabs__head-item::after {
	content: '';
	position: absolute;
	background: var(--back-line-right);
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 2px;
	opacity: 0;
	border-radius: 2px;
	-webkit-transform: scaleX(0.5);
	transform: scaleX(0.5);
	transition: opacity 0.25s, -webkit-transform 0.25s;
	transition: opacity 0.25s, transform 0.25s;
	transition: opacity 0.25s, transform 0.25s, -webkit-transform 0.25s
}

.joe_tabs__head-item.active {
	color: var(--theme)
}

.joe_tabs__head-item.active::after {
	opacity: 1;
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

.joe_tabs__body-item {
	padding: 15px
}

.joe_tabs__body-item *:last-child {
	margin-bottom: 0 !important
}

.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("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTEzNS40NjcgODIzLjY4YTM3MC41NiA5My42NTMgMCAxIDAgNzQxLjEyIDAgMzcwLjU2IDkzLjY1MyAwIDEgMC03NDEuMTIgMHoiIGZpbGw9IiNCNkM5Q0IiLz48cGF0aCBkPSJNODUuMzMzIDgxMi4zNzNWMTUxLjA0YzguNzQ3LTIzLjA0IDIzLjQ2Ny00Mi42NjcgNDkuMjgtNDIuNjY3IDU1LjI1NCAxLjI4IDExMC45MzQtOS4zODYgMTY1LjU0NyA2LjgyN2ExNC41MDcgMTQuNTA3IDAgMCAwIDEwLjg4LTIuMzQ3IDcxLjY4IDcxLjY4IDAgMCAxIDMyLjIxMy01LjU0NmgxMTQuNTZhNTYuMzIgNTYuMzIgMCAwIDEgNjQgNTIuOTA2IDYxLjQ0IDYxLjQ0IDAgMCAwLTguNzQ2IDY5LjU0NyAyMDYuNTA3IDIwNi41MDcgMCAwIDEgOC41MzMgMjkuMjI3djU0MS40NGE1MS42MjcgNTEuNjI3IDAgMCAxLTQ4Ljg1MyA1Mi45MDZjLTU1LjI1NCAwLTExMS4xNDcgOC45Ni0xNjUuOTc0LTYuMTg2YTEzLjg2NyAxMy44NjcgMCAwIDAtOS4xNzMgMCA5NS41NzMgOTUuNTczIDAgMCAxLTQ1LjY1MyA2LjE4NmwtOTMuMjI3IDEuMjhjLTMzLjcwNyAyLjU2LTYxLjQ0LTYuNjEzLTczLjM4Ny00Mi4yNHptMzg5LjEyLTMzMS43MzNWMTc1LjU3M2MwLTEwLjQ1MyAxLjkyLTIxLjMzMy0xNC43Mi0yMS4zMzNIMzQxLjEyYTE0LjUwNyAxNC41MDcgMCAwIDAtMTUuNTczIDEwLjY2NyA5NS4xNDcgOTUuMTQ3IDAgMCAwLTcuMDQgNDEuMzg2djU2OC4zMmMxLjQ5MyAyNi42NjcgOS42IDM0LjM0NyAzNi4wNTMgMzQuMzQ3aDk5LjJjMTYuNDI3IDAgMjEuMzMzLTUuMzMzIDIxLjMzMy0yMS4zMzMtLjg1My0xMDIuNC0uNjQtMjA0LjgtLjY0LTMwNi45ODd6bS0zNDIuNCAwVjc4Ny4yYzAgOS42LTEuOTIgMjAuMDUzIDEzLjY1NCAxOS44NEgyNjYuMjRjNi4xODcgMCAxMS41MiAwIDEzLjQ0LTcuODkzYTEzOS4wOTMgMTM5LjA5MyAwIDAgMCA4LjMyLTM5LjA0VjIwMC4zMmExNDUuOTIgMTQ1LjkyIDAgMCAwIDAtMTUuNTczYy0yLjc3My0yNS4xNzQtOS44MTMtMzEuMzYtMzQuOTg3LTMxLjM2aC05OS4yYy0xNy40OTMgMC0yMS4zMzMgNS4zMzMtMjEuMzMzIDIxLjMzMyAwIDEwMi42MTMtLjQyNyAyMDUuMjI3LS40MjcgMzA2Ljc3M3oiIGZpbGw9IiMzMTQ1NTMiLz48cGF0aCBkPSJNODY0IDgyOC44bC02Mi4wOCAyMS4zMzNjLTQwLjUzMyAxNC4wOC02Ni45ODcgMS40OTQtODEuOTItMzkuMjUzLTcuODkzLTIxLjMzMy0xNi4yMTMtNDIuNjY3LTI0LjMyLTY0bC0zLjYyNy0zLjg0YTY0IDY0IDAgMCAwLTUuNzYtMjQuMzJjLTM2LjA1My0xMDAuNjkzLTcxLjY4LTIwMS44MTMtMTA4LjM3My0zMDIuMjkzLTE4Ljk4Ny01MS44NC0zNC45ODctMTA0Ljk2LTU3LjM4Ny0xNTUuNTJBMjA2LjUwNyAyMDYuNTA3IDAgMCAwIDUxMiAyMzEuNjhhNjEuNDQgNjEuNDQgMCAwIDEgOC43NDctNjkuNTQ3IDY3MS4xNDcgNjcxLjE0NyAwIDAgMSAxNDAuNTg2LTUzLjU0NmMyNy45NDctOC4xMDcgNTEuMiA5LjE3MyA2Mi4wOCAzOS42OHE1Mi40OCAxNDUuOTIgMTA0LjUzNCAyOTIuMDUzbDEwMy42OCAyOTAuMzQ3YzE2LjY0IDQ2LjI5MyA1LjMzMyA3MC42MTMtNDAuMzIgODcuNDY2LTkuMzg3IDMuMi0xOC4zNDcgNy4wNC0yNy4zMDcgMTAuNjY3em0yNi44OC03MS44OTNzLTEuMjgtNC4wNTQtMi4zNDctNy4wNFE3ODQuNjQgNDU4Ljg4IDY4MC45NiAxNjguMTA3Yy00LjQ4LTEyLjgtMTAuNDUzLTE1LjM2LTIzLjA0LTEwLjY2Ny0yOS4wMTMgMTEuMzA3LTU4LjAyNyAyMS4zMzMtODcuODkzIDMxLjE0Ny0xNy4yOCA1LjMzMy0xOC4xMzQgMTMuMDEzLTEyLjU4NyAyOC4zNzMgMzkuODkzIDEwOS40NCA3OC43MiAyMTkuMzA3IDExNy45NzMgMzI5LjE3M2w4OC4zMiAyNDYuODI3YzMuMiA5LjE3MyA1LjU0NyAxOS40MTMgMTkuODQgMTQuMDggMzIuODU0LTEyLjE2IDY1LjcwNy0yMy42OCA5OC43NzQtMzUuNDEzYTExLjMwNyAxMS4zMDcgMCAwIDAgOC43NDYtMTQuNzJ6IiBmaWxsPSIjNzkzOTQzIi8+PHBhdGggZD0iTTQ3NC40NTMgNDgwLjY0djMwNi45ODdjMCAxNS43ODYtNC4yNjYgMjEuMzMzLTIxLjMzMyAyMS4zMzMtMzMuMDY3LTEuMDY3LTY2LjEzMyAwLTk5LjIgMC0yNi40NTMgMC0zNC41Ni03LjY4LTM2LjA1My0zNC4zNDd2LTU2OC4zMmE5NS4xNDcgOTUuMTQ3IDAgMCAxIDcuMDQtNDEuMzg2IDE0LjUwNyAxNC41MDcgMCAwIDEgMTUuNTczLTEwLjY2N2gxMTguNjEzYzE2LjY0IDAgMTQuNzIgMTAuNDUzIDE0LjcyIDIxLjMzM3EuNjQgMTUyLjMyLjY0IDMwNS4wNjd6TTQxMi4xNiA1NzZ2MTMyLjA1M2MwIDExLjA5NCAxLjA2NyAyMS4zMzQgMTQuNzIgMjIuODI3czE2LjY0LTExLjA5MyAxNi40MjctMjMuMDRWNDQzLjczM2MwLTExLjA5My0xLjA2Ny0yMS4zMzMtMTQuNzItMjIuODI2cy0xNi42NCAxMS4wOTMtMTYuNjQgMjMuMDRjLjQyNiA0My4wOTMuMjEzIDg3LjA0LjIxMyAxMzIuMDUzem0zOC44MjctMjkwLjk4N2E1MC41NiA1MC41NiAwIDEgMC01MS40MTQgNDkuNzA3IDUwLjk4NyA1MC45ODcgMCAwIDAgNTEuNjI3LTUwLjc3M3pNMzU3Ljc2IDY0MS4wNjd2NjcuODRjMCAxMC44OCAyLjM0NyAyMS4zMzMgMTQuNzIgMjEuMzMzczE2LjY0LTkuMzg3IDE2LjY0LTIxLjMzM3YtMTM1LjY4YzAtMTAuODgtMi41Ni0yMS4zMzQtMTQuNzItMjEuMzM0cy0xNi42NCA5LjM4Ny0xNi42NCAyMS4zMzRjLjIxMyAyMi42MTMgMCA0NS40NCAwIDY3Ljg0ek0xMzIuMDUzIDQ4MS40OTNWMTc2LjQyN2MwLTE2Ljg1NCA0LjI2Ny0yMi44MjcgMjEuMzM0LTIxLjMzNCAzMy4wNjYgMS4yOCA2Ni4xMzMgMCA5OS4yIDAgMjUuMzg2IDAgMzIuMjEzIDYuMTg3IDM0Ljk4NiAzMS4zNmExNDUuOTIgMTQ1LjkyIDAgMCAxIDAgMTUuNTc0djU1OS43ODZhMTM5LjA5MyAxMzkuMDkzIDAgMCAxLTguMzIgMzkuMDRjLTIuMTMzIDcuNDY3LTcuNDY2IDcuODk0LTEzLjQ0IDcuODk0SDE0NS4yOGMtMTUuNTczIDAtMTMuNjUzLTEwLjI0LTEzLjY1My0xOS44NFY1MTEuNTczcS40MjYtMTUuMzYuNDI2LTMwLjA4em02Mi4yOTQgMTA2LjY2N1Y0NjcuODRjMC0xMS43MzMgMC0yMy44OTMtMTUuMzYtMjQuMTA3cy0xNiAxMS43MzQtMTYgMjMuNjh2MjM4LjkzNGMwIDExLjUyIDAgMjMuODkzIDE1LjM2IDI0LjEwNnMxNi0xMS43MzMgMTYtMjMuNjhjLS4yMTQtMzkuODkzIDAtNzkuMzYgMC0xMTguODI2ek0yNTYgMjgzLjczM2E1MC41NiA1MC41NiAwIDEgMC01MS4yIDQ5LjkyIDUwLjc3MyA1MC43NzMgMCAwIDAgNTEuMi00OS45MnptLTcuNjggMzQxLjMzNHYtODEuNDk0YzAtMTEuMzA2LTEuNzA3LTIxLjMzMy0xNS4zNi0yMS4zMzNzLTE2IDEwLjI0LTE2IDIxLjMzM1Y3MDguNDhjMCAxMS4zMDcgMS43MDcgMjEuMzMzIDE1LjM2IDIxLjMzM3MxNi0xMC4yNCAxNi0yMS4zMzNjLjIxMy0yNy45NDcuNDI3LTU1Ljg5My40MjctODMuNjI3eiIgZmlsbD0iI0I3RTFFQiIvPjxwYXRoIGQ9Ik04OTEuMDkzIDc1Ni45MDdhMTEuMzA3IDExLjMwNyAwIDAgMS04Ljc0NiAxNC43MmMtMzIuODU0IDExLjczMy02NS45MiAyMy40NjYtOTguNzc0IDM1LjQxMy0xNC4yOTMgNS4zMzMtMTYuNjQtNC45MDctMTkuODQtMTQuMDhsLTg4LjMyLTI0Ni44MjdDNjM2LjE2IDQzNi4yNjcgNTk3LjMzMyAzMjYuNCA1NTcuMjI3IDIxNi45NmMtNS41NDctMTUuMTQ3LTQuNjk0LTIzLjA0IDEyLjU4Ni0yOC4zNzMgMjkuNjU0LTguOTYgNTguODgtMjAuMDU0IDg3Ljg5NC0zMS4xNDcgMTIuNTg2LTQuOTA3IDE4LjU2LTIuMzQ3IDIzLjA0IDEwLjY2N3ExMDMuNjggMjkwLjk4NiAyMDcuNzg2IDU4MS43NmMxLjI4IDIuOTg2IDIuMTM0IDUuOTczIDIuNTYgNy4wNHptLTEyMC4zMi0yNjYuMjRjMC0yLjU2LTIuMTMzLTYuODI3LTMuNjI2LTExLjA5NEw2ODcuNzg3IDI1NmE4Mi41NiA4Mi41NiAwIDAgMC0zLjYyNy04Ljk2Yy0zLjg0LTcuNjgtOS44MTMtMTIuOC0xOC41Ni05LjgxM2ExNC45MzMgMTQuOTMzIDAgMCAwLTEwLjQ1MyAxOS44NGMwIDMuMiAxLjkyIDYuMTg2IDIuOTg2IDkuMTczbDc5Ljc4NyAyMjQuNDI3YTY4LjQ4IDY4LjQ4IDAgMCAwIDUuMzMzIDEyLjM3MyAxNC4yOTMgMTQuMjkzIDAgMCAwIDE4LjU2IDUuOTczYzYuMTg3LTMuNDEzIDkuMzg3LTkuMzg2IDguOTYtMTguMzQ2em0xOS4yIDEyOGE1MC41NiA1MC41NiAwIDEgMCA1MC4xMzQgNTAuOTg2IDUwLjk4NyA1MC45ODcgMCAwIDAtNTAuNzc0LTUwLjk4NnptLTk2LjY0LTE4Mi40YzAtMi45ODctMi41Ni04LjUzNC00LjQ4LTE0LjA4cS0yNi4wMjYtNzIuOTYtNTIuMDUzLTE0NC44NTRjLTMuODQtMTAuODgtNy40NjctMjQuNzQ2LTIzLjI1My0xOS40MTNzLTEwLjY2NyAxNy45Mi02LjQgMjkuMjI3bDUyLjkwNiAxNDcuNjI2YTcyLjUzMyA3Mi41MzMgMCAwIDAgNS45NzQgMTQuMjk0IDEzLjg2NyAxMy44NjcgMCAwIDAgMTcuMDY2IDUuNzZjNy4wNC0zLjIgMTAuMjQtOC43NDcgMTAuMjQtMTguNTZ6IiBmaWxsPSIjRkJCNkFDIi8+PHBhdGggZD0iTTQxMi4xNiA1NzZWNDQzLjk0N2MwLTExLjk0NyAxLjQ5My0yMy42OCAxNi42NC0yMy4wNHMxNC43MiAxMS43MzMgMTQuNzIgMjIuODI2VjcwNy44NGMwIDExLjk0Ny0xLjQ5MyAyMy42OC0xNi40MjcgMjMuMDRzLTE0LjcyLTExLjczMy0xNC43Mi0yMi44MjdjMC00NS4wMTMtLjIxMy04OS4zODYtLjIxMy0xMzIuMDUzem0zOS4wNC0yOTIuMDUzYTUwLjU2IDUwLjU2IDAgMSAxLTQ5LjQ5My01MS40MTQgNTAuOTg3IDUwLjk4NyAwIDAgMSA0OS40OTMgNTEuNDE0em0tMzAuOTMzLTEuNzA3Yy0yLjM0Ny0xMS41Mi04Ljc0Ny0xOC45ODctMjEuMzM0LTE4LjEzM2ExOC45ODcgMTguOTg3IDAgMCAwIDEuNDk0IDM4LjE4NmMxMi41ODYtLjIxMyAxOC4zNDYtOC4zMiAxOS42MjYtMjAuMDUzek0zNTcuNzYgNjQxLjA2N3YtNjcuODRjMC0xMS43MzQgMi45ODctMjEuMzM0IDE2LjY0LTIxLjMzNHMxNC43MiAxMC4yNCAxNC43MiAyMS4zMzR2MTM1LjY4YzAgMTEuNzMzLTIuOTg3IDIxLjMzMy0xNi42NCAyMS4zMzNzLTE0LjcyLTEwLjI0LTE0LjcyLTIxLjMzM2MuMjEzLTIyLjYxNCAwLTQ1LjIyNyAwLTY3Ljg0em0tMTYzLjQxMy01My4xMnYxMTguNGMwIDExLjczMyAwIDIzLjg5My0xNiAyMy42OHMtMTUuMzYtMTIuNTg3LTE1LjM2LTI0LjEwN1Y0NjYuOTg3YzAtMTEuNzM0IDAtMjMuODk0IDE2LTIzLjY4czE1LjM2IDEyLjU4NiAxNS4zNiAyNC4xMDZjLS4yMTQgNDAuMzIgMCA4MC40MjcgMCAxMjAuNTM0ek0yNTYgMjgzLjczM2E1MC41NiA1MC41NiAwIDEgMS00OS45Mi01MS4yIDUwLjc3MyA1MC43NzMgMCAwIDEgNDkuOTIgNTEuMnptLTMwLjcyIDBhMTkuNjI3IDE5LjYyNyAwIDAgMC0xOS4yLTE5LjIgMTkuMiAxOS4yIDAgMCAwLTEuOTIgMzguMTg3YzEyLjU4Ny40MjcgMTguOTg3LTcuMjUzIDIxLjU0Ny0xOS42Mjd6bTIzLjQ2NyAzNDEuMTJ2ODMuNDE0YzAgMTEuNTItMi4zNDcgMjEuMzMzLTE2IDIxLjMzM3MtMTUuMzYtMTAuODgtMTUuMzYtMjEuMzMzVjU0My4zNmMwLTExLjUyIDIuMzQ2LTIxLjMzMyAxNi0yMS4zMzNzMTUuMzYgMTAuODggMTUuMzYgMjEuMzMzYy0uMjE0IDI3LjA5MyAwIDUzLjk3MyAwIDgxLjQ5M3oiIGZpbGw9IiMzMTQ1NTMiLz48cGF0aCBkPSJNNzcwLjc3MyA0OTAuNjY3YzAgOC45Ni0xLjkyIDE0LjkzMy04Ljc0NiAxNy40OTNhMTQuMjkzIDE0LjI5MyAwIDAgMS0xOC41Ni01Ljk3MyA2OC40OCA2OC40OCAwIDAgMS01LjMzNC0xMi4zNzRsLTgwLTIyMi43MmMtMS4wNjYtMi45ODYtMi4xMzMtNi4xODYtMi45ODYtOS4xNzNhMTQuOTMzIDE0LjkzMyAwIDAgMSAxMC40NTMtMTkuODRjOC43NDctMi45ODcgMTQuOTMzIDEuOTIgMTguNTYgOS44MTNhODIuNTYgODIuNTYgMCAwIDEgMy42MjcgOC45Nkw3NjggNDc5LjU3M2MwIDQuMjY3IDEuOTIgOC41MzQgMi43NzMgMTEuMDk0em0xOC41NiAxMjhhNTAuNTYgNTAuNTYgMCAxIDEgMCAxMDAuOTA2IDUwLjU2IDUwLjU2IDAgMCAxIDAtMTAwLjkwNnptMTkuMiA1MC41NmMtMS45Mi0xMS41Mi04LjEwNi0xOS40MTQtMjAuMDUzLTE4Ljk4N2ExOC45ODcgMTguOTg3IDAgMCAwIDAgMzcuOTczYzEyLjU4Ny0uNDI2IDE4LjU2LTguMzIgMjAuNDgtMTkuODR6bS0xMTUuMi0yMzIuOTZjMCAxMC4wMjYtMy4yIDE1LjM2LTEwLjI0IDE3LjQ5M2ExMy44NjcgMTMuODY3IDAgMCAxLTE3LjA2Ni01Ljc2IDcyLjUzMyA3Mi41MzMgMCAwIDEtNS45NzQtMTQuMjkzTDYwNy4xNDcgMjg2LjA4Yy00LjA1NC0xMS4zMDctOS4xNzQtMjQuMTA3IDYuNC0yOS4yMjdzMTkuMiA4LjUzNCAyMy4yNTMgMTkuNDE0bDUyLjA1MyAxNDUuOTJjMS45MiA0LjQ4IDMuNDE0IDExLjA5MyA0LjQ4IDE0LjA4eiIgZmlsbD0iIzc5Mzk0MyIvPjwvc3ZnPg==")
}

.joe_cloud__logo._360 {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjIiIGhlaWdodD0iMjIiPjxwYXRoIGQ9Ik04NDMuMjk0IDg3MS45MDZjMC00OS42OTQgNDAuNjU5LTkwLjM1MyA5MC4zNTMtOTAuMzUzUzEwMjQgODIyLjIxMiAxMDI0IDg3MS45MDZzLTQwLjY1OSA5MC4zNTMtOTAuMzUzIDkwLjM1My05MC4zNTMtNDAuNjU5LTkwLjM1My05MC4zNTN6IiBmaWxsPSIjRkY5OTMyIi8+PHBhdGggZD0iTTg0NC44IDY4Ni42ODJsLTEzMS4wMTItNTIuNzA2Yy0xMC41NC00LjUxNy0xMC41NC0xMi4wNDctNi4wMjMtMjIuNTg4IDEyLjA0Ny0zMS42MjMgMTguMDctNjYuMjU5IDE4LjA3LTEwMC44OTQgMC0xNDcuNTc2LTEyNC45ODgtMjc0LjA3LTI3NC4wNy0yNzQuMDdzLTI3NC4wNyAxMjYuNDk0LTI3NC4wNyAyNzQuMDdjMCAzNC42MzUgOS4wMzQgNzAuNzc3IDIxLjA4MSAxMDIuNCAzLjAxMiA2LjAyNCAzLjAxMiAxMy41NTMgMCAxOS41NzctMy4wMTEgNC41MTctNi4wMjMgMC0xMC41NCAxLjUwNUw1NS43MTcgNjc3LjY0N2MtMS41MDYgMS41MDYtNC41MTggMS41MDYtNi4wMjQgMS41MDYtOS4wMzUgMC0xNS4wNTktNC41MTgtMTguMDctMTMuNTUzQzEyLjA0NyA2MTQuNCAxLjUwNiA1NjMuMiAxLjUwNiA1MTAuNDk0IDEuNTA2IDI2My41MyAyMDQuOCA2MC4yMzUgNDUzLjI3IDYwLjIzNXM0NTAuMjU4IDIwMS43ODkgNDUwLjI1OCA0NDguNzUzYzAgNTguNzMtMTAuNTQgMTE0LjQ0Ny0zMS42MjMgMTY3LjE1My0xLjUwNiA0LjUxOC02LjAyNCA5LjAzNS0xMi4wNDcgMTAuNTQxLTMuMDEyIDEuNTA2LTQuNTE4IDEuNTA2LTcuNTMgMS41MDZzLTQuNTE3IDAtNy41MjktMS41MDZ6IiBmaWxsPSIjMEZCMjY0Ii8+PHBhdGggZD0iTTUxLjIgNzE4LjMwNmMtNy41My0xNS4wNTktMTMuNTUzLTMxLjYyNC0xOS41NzYtNDYuNjgyLTMuMDEyLTcuNTMtMy4wMTItMTMuNTUzLTMuMDEyLTE2LjU2NSAwLTQ5LjY5NCA0MC42NTktODguODQ3IDkxLjg1OS04OC44NDcgMzcuNjQ3IDAgNjkuMjcgMjIuNTg4IDg0LjMyOSA1NS43MTcgMS41MDYgMy4wMTIgNi4wMjQgMTIuMDQ3IDkuMDM1IDE2LjU2NSA0Ni42ODMgODguODQ3IDEzOC41NDEgMTQ2LjA3IDIzOS40MzYgMTQ2LjA3IDk5LjM4OCAwIDE4OS43NC01NS43MTcgMjM3LjkyOS0xNDEuNTUyIDQuNTE4LTkuMDM2IDE2LjU2NS0zMC4xMTggMTguMDctMzEuNjI0IDE1LjA2LTMwLjExNyA0My42NzEtNDUuMTc2IDc2LjgtNDUuMTc2IDUxLjIgMCA5MS44NiA0MC42NTkgOTEuODYgODguODQ3IDAgNi4wMjMgMCAxMy41NTMtNC41MTggMjIuNTg4bC05LjAzNiAyMi41ODh2MS41MDZjLTEuNTA1IDQuNTE4LTMuMDExIDcuNTMtNi4wMjMgMTIuMDQ3LTc2LjggMTUzLjYtMjMxLjkwNiAyNDguNDctNDAzLjU3NyAyNDguNDdTMTI5LjUwNiA4NjguODk1IDUxLjIgNzE4LjMwN3oiIGZpbGw9IiNGRjk5MzIiLz48L3N2Zz4=")
}

.joe_cloud__logo._bd {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTI3MS4zOCA0MjkuNjM3YTI0NS41IDI0NS41IDAgMCAxLTMuMzk1LTQwLjc3N2MwLTEzNC42OCAxMDkuMTgtMjQzLjg2IDI0My44Ni0yNDMuODZzMjQzLjg2IDEwOS4xOCAyNDMuODYgMjQzLjg2YTI0NS41IDI0NS41IDAgMCAxLTMuMzk0IDQwLjc3NkM4NzUuOTY3IDQzMC4zMTIgOTc2IDUzMC43NjMgOTc2IDY1NC41NzhjMCAxMjQuMjM1LTEwMC43MTIgMjI0Ljk0Ny0yMjQuOTQ2IDIyNC45NDctNjIuNzQzIDAtMTE5LjQ4Ni0yNS42ODgtMTYwLjI4Ny02Ny4xMmwuMDAzLS4wMDRjLTIxLjQ0LTIxLjgyMi0yMS4zMjItNTYuODkzLjM1NC03OC41NyAyMS43OTYtMjEuNzk1IDU3LjEzMy0yMS43OTUgNzguOTI4IDAgLjY5My42OTQgMS4zNjUgMS40IDIuMDE0IDIuMTIgMjAuNDI3IDE5Ljg3IDQ4LjMxNyAzMi4xMDggNzkuMDY1IDMyLjEwOCA2Mi42MzEgMCAxMTMuNDA0LTUwLjc3MiAxMTMuNDA0LTExMy40MDMgMC02Mi42MzEtNTAuNzczLTExMy40MDMtMTEzLjQwNC0xMTMuNDAzLTI4LjczOSAwLTU0Ljk4MSAxMC42OS03NC45NjcgMjguMzExbC0uMDk2LS4wOTYtMS44ODYgMS44ODZjLTIuMiAyLjAzMy00LjMyIDQuMTUyLTYuMzUzIDYuMzUzbC00LjMwNiA0LjMwNS4wNzYuMDc3LTIyOS44NzYgMjI5Ljg3Ni0uMDMtLjAzYy00MC44MzMgNDEuNzA4LTk3Ljc2NyA2Ny41OS0xNjAuNzQ3IDY3LjU5QzE0OC43MTIgODc5LjUyNSA0OCA3NzguODEzIDQ4IDY1NC41NzhjMC0xMjMuNzExIDk5Ljg2Ni0yMjQuMDk4IDIyMy4zOC0yMjQuOTR6bTEuNjQ0IDMzOC40MjJjNjIuNjMgMCAxMTMuNDAzLTUwLjc3MiAxMTMuNDAzLTExMy40MDMgMC02Mi42MzEtNTAuNzcyLTExMy40MDMtMTEzLjQwMy0xMTMuNDAzLTYyLjYzMSAwLTExMy40MDQgNTAuNzcyLTExMy40MDQgMTEzLjQwMyAwIDYyLjYzIDUwLjc3MyAxMTMuNDAzIDExMy40MDQgMTEzLjQwM3pNNTExLjg0NSA1MjEuMWM3My4wMzQgMCAxMzIuMjQtNTkuMjA2IDEzMi4yNC0xMzIuMjQgMC03My4wMzMtNTkuMjA2LTEzMi4yMzktMTMyLjI0LTEzMi4yMzlzLTEzMi4yNCA1OS4yMDYtMTMyLjI0IDEzMi4yNGMwIDczLjAzMyA1OS4yMDYgMTMyLjIzOSAxMzIuMjQgMTMyLjIzOXoiIGZpbGw9IiMwNkE3RkYiLz48cGF0aCBkPSJNNjQzLjM1MSA0MDIuODY4YTU2Ljk2NiA1Ni45NjYgMCAwIDEtLjM1Mi02LjMzNGMwLTMxLjEyMyAyNS4yMy01Ni4zNTMgNTYuMzUzLTU2LjM1M3M1Ni4zNTMgMjUuMjMgNTYuMzUzIDU2LjM1M2MwIDIuMzktLjE1IDQuNzQ1LS40MzggNy4wNTctNy42MTYgMTI3LjgyLTExMy42ODggMjI5LjEyOC0yNDMuNDIyIDIyOS4xMjgtMTI5LjczNCAwLTIzNS44MDYtMTAxLjMwNy0yNDMuNDIyLTIyOS4xMjhhNTYuOTA4IDU2LjkwOCAwIDAgMS0uNDM4LTcuMDU3YzAtMzEuMTIzIDI1LjIzLTU2LjM1MyA1Ni4zNTMtNTYuMzUzczU2LjM1MyAyNS4yMyA1Ni4zNTMgNTYuMzUzYzAgMi4xNDEtLjEyIDQuMjU1LS4zNTIgNi4zMzQgNi45OTYgNjYuNDQ4IDYzLjIwNCAxMTguMjMgMTMxLjUwNiAxMTguMjMgNjguMzAyIDAgMTI0LjUxLTUxLjc4MiAxMzEuNTA2LTExOC4yM3oiIGZpbGw9IiNGRjQzNkEiLz48L3N2Zz4=")
}

.joe_cloud__logo._ty {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjIiIGhlaWdodD0iMjIiPjxwYXRoIGQ9Ik0yODMuNSAzNjguOGMtMTAuMyAzMS43LTguMyA2Mi4zIDExLjggODkuNiAyMy44IDMyLjIgNTYuOSA0My41IDk2LjEgMzkuMiAxMS0xLjIgMjEuNS0zLjggMzEuOC03LjcgNDAuNy0xNS42IDY3LjgtNTcuOCA2MS05OC02LjUtMzguMy0yOC44LTY2LTY0LjgtNzkuOC02OC40LTI2LjItMTMyLjMtMTUuMi0xODkuNyAyOS45LTM1LjMgMjcuNy02MC43IDYzLTY3LjcgMTA4LjItMTEuMiA3My4xIDMuNCAxMzkuNSA1OC44IDE5Mi4zIDQxLjEgMzkuMiA5MC40IDU3LjQgMTQ3LjggNTUuOSA3Mi4zLTEuOSAxMzIuOS0zMCAxODUuNi03Ny45IDMxLjktMjkuMSA1Ny40LTYzLjggODQuOC05Ni45IDM2LjYtNDQuMyA3OC40LTgxLjUgMTM0LjEtMTAwLjMgNTYuMi0xOC45IDExMS42LTE2LjMgMTY2LjQgNS44IDQuMyAxLjcgOC42IDMuNSAxNSA2LjEtMTAuNiAxLjQtMTkuMiAyLjItMjcuNiAzLjgtNDIuOCA3LjgtNzYuMSAzMS41LTEwNC41IDYzLTMwLjMgMzMuNS01NC42IDcxLjYtODAuOCAxMDguMi0zNi41IDUxLjEtNzYuNiA5OC44LTEyNy41IDEzNi41LTYzLjUgNDctMTM0LjEgNzMuMy0yMTMuNiA2OS42LTU3LjktMi42LTExMi4zLTE5LjktMTYyLjYtNDktODMuNi00OC40LTE0MS0xMTcuNy0xNjIuMy0yMTMuMi0yMC4yLTkwLjMgMi4yLTE3MS44IDYwLjItMjQyLjcgNTIuOC02NC42IDEyNC05NS40IDIwNi0xMDQuMyAxMTUtMTIuNSAyMjEuNiA1Mi4xIDI2OS41IDE0OSAzNS4zIDcxLjUgMjMuNSAxNTIuNS0zMS4xIDIxMC4yLTM1LjIgMzcuMi03OS43IDU3LjUtMTMwLjUgNjEuNy01OS40IDQuOC0xMTIuOS0xMS43LTE1Ni45LTUyLjktNTQuOS01MS42LTcxLjktMTQwLjQtMTUtMjA2LjMgMS4xLTEuMyAyLjUtMi41IDMuOC0zLjcgMy4yLS4yIDMuMSAxLjQgMS45IDMuN3oiIGZpbGw9IiNGNUM1M0UiLz48L3N2Zz4=")
}

.joe_cloud__logo._ct {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjIiIGhlaWdodD0iMjIiPjxwYXRoIGQ9Ik04NTAuNDYxIDc2NC40ODljLTE4LjgyOCA1MC4yMjUtMzUuODc5IDg2Ljg0MS04Mi40NjQgODYuODQxSDEyMC4xNjJjLTQ2LjU3OSAwLTg0Ljk2Mi00MC4yNjctODQuOTYyLTg2Ljg0MUwxNzUuNzU5IDI1OC40NmMxMy41NjgtNTcuMDkxIDM1Ljg4OS04Ni44MyA4Mi40NjItODYuODNoNjQ3LjgzN2M0Ni41ODIgMCA4NC45NjIgNDAuMjQ2IDg0Ljk2MiA4Ni44M0w4NTAuNDYxIDc2NC40ODl6TTMyMi41MTIgMzM3LjI0MmMtNC4zMjQgNC40MTctNy4xOTkgOC43NjQtNy4zNTMgOS4wMjQtLjEwMy4yMDctMi40NzkgNC45OTktMy4xODQgNi45MDktLjcwNSAxLjg4OC0yLjk0NyA5LjM3Ny0zLjA1MSA5LjcxbC0yLjQyNyA4Ljk4MnMtMS45MyA5LjI5NC0yLjIyIDEwLjc4OGMtLjIyOCAxLjE4Mi0xLjM0OSA5LjIyLTEuODc4IDEzLjA5MS0uMTM1Ljk4NS0uMjI4IDEuNjM4LS4yMzggMS43LS4wNjIuMzk1LTEuMTgyIDExLjgxNC0uODkzIDE3LjkyNC4yNzEgNi4wOTkuODQyIDE2LjcxMS44NSAxNi43NjIuMDEyLjEzNSAxLjYzIDEzLjczMyAzLjg3OSAyMi45MjMgMi4xNTkgOC43NzUgNC4yNDMgMTUuNjg1IDYuMzg5IDIxLjEyIDIuMDU0IDUuMTY1IDcuMDMzIDE0LjY4OCA3LjczOSAxNS43ODguMTI2LjE5Ni40MTUuNzA1LjgyOSAxLjQ1MiAyLjA1NCAzLjY3IDYuODY4IDEyLjI2IDExLjI5NiAxNy4yMTggNi4wOTggNi44MjYgMTIuNDQ3IDEzLjc5NiAxNy4yNSAxNy40MDYgNC4zMzcgMy4yNTggMTMuMjIzIDkuMzM0IDE5LjA2NSAxMS40MyA1LjI2OCAxLjkwOSA4Ljk2IDIuODg1IDEwLjE2NSAzLjAwOGguMTM1bC42NTItLjAyLjE0Ny0uNThjLjE2NS0uNjIyLS4yOTItLjg3MS0xLjAzOC0xLjI2Ni0xLjMxNy0uNzA1LTQuMzc4LTIuMzQzLTYuMzY5LTUuMDItMi44NjQtMy44MzgtNy4xMzYtMTEuMTA4LTkuNzgxLTE4Ljk0MS0yLjYyMy03Ljc2OS00LjE2LTE0Ljk5OC00LjczLTE3LjcyNi0uMzQxLTEuNjI5LTEuMTMxLTYuNjkxLTEuODk5LTExLjU4NWE5ODIuNzA2IDk4Mi43MDYgMCAwIDAtMS4zODktOC43NzVjLS4zNDMtMi4wNzQtMS41MTUtMTIuNzY5LTIuMTA3LTI0LjUtLjc0OC0xNC44MDIuMTM1LTMwLjE0Mi4xMzUtMzAuMjg4LjEzNS0xLjkzIDIuNTMtMjcuNzU4IDUuMjU5LTM5LjE2N2wuMjQ5LTEuMDE3YzIuNjM2LTExLjAxNSA0LjM4OC0xOC4yOTggOC45NzQtMjUuMzA5IDYuMDM3LTkuMjExIDguNzY0LTExLjI4NSA5LjMxNS0xMS4zMDZhLjg3Ljg3IDAgMCAwIC44Ny0uNjk0Yy4zODYtMS43OTQtOS40MzgtOS42NzktMTQuMTQ3LTExLjgxNC01LjQ0NS0yLjQ0OC0xMi4wNzQtNC45NjktMTkuOTk3LTQuOTY5LTYuMzcyLjE3NS0xNi4wMTkgMy4xODItMjAuNTAxIDcuNzQ2em00MDAuODExIDUwLjM2OGMtMTAuMTIzLTU3LjQ5Ny01MS4yNS03Ny44OTgtODMuMzk2LTc3Ljg5OC0yMi4zMDEgMC00My4zMzcgOC44MTYtNTkuMjI5IDI0LjgzMi0xNy43MjggMTcuODcyLTI3LjQxMyA0My4wNDYtMjcuOTk2IDcyLjgwNnYuMzcybC40NjcuNDY3aC4zMTNjLjU5IDAgLjY5My0uMTY2IDMuMzUtNC4yODMgOC4zMDYtMTIuOTE0IDMzLjU5Ni01Mi4xODUgNjEuMDExLTU4LjIwMWE0MS40OSA0MS40OSAwIDAgMSA4Ljg2OS0uOTc2YzE0LjM2NyAwIDI3LjEyNCA3LjUzMSAzNC45ODcgMjAuNjQyIDE0LjE5OSAyMy42OTEgMTAuMTIzIDYwLjcyMi0xMS4xNzEgMTAxLjYxMi04Ljg0OCAxNi45OS0zNi42NDYgNjYuNTUtNTguNjY4IDkxLjM2Mi01LjE3NCA1LjgyOS0xMC41MTggMTIuMDExLTE2LjE4MiAxOC41NjYtMjAuNDM0IDIzLjY3LTQxLjU2MyA0OC4xNDktNTUuNTE0IDU2LjUxMWEyNy43NTYgMjcuNzU2IDAgMCAwLTUuNjk1IDQuNTIzYy4xNjYtOC4xNzUuMzczLTE2LjM0Ny41Ny0yNC40OC40ODktMjAuMDE5IDEuMDA1LTQwLjcwMiAxLjAwNS02MC40MyAwLTMxLjUzMy0xLjIxMi01Ny42MS0zLjYwOS03Ny40ODQtMS40MTEtMTEuNzQzLTMuNTM4LTIxLjg2Ni01LjI0OS0yOS45OTYtLjY0My0zLjAzLTEuMjI1LTUuNzc4LTEuNjgtOC4yMTUtMy44OS0yMC43NDYtMTguMTcyLTUwLjM0OC0yNi41NTYtNjIuODk5LTcuOTQ2LTExLjg2Ny0yMS42NTgtMjUuNzU2LTM1LjgwNy0zNi4yNDItMTMuOTQtMTAuMzMyLTM3Ljg1OS0yMC4yMjctNTUuNjgtMjMuMDA3LTUuMDcxLS43OTctMTAuMDQxLTEuMjAzLTE0Ljc3LTEuMjAzLTExLjIyMyAwLTE5LjcyOSAyLjIyLTI1Ljg5IDQuMTcxLTYuMDE1IDEuODg3LTExLjczMSA1LjI0OC0xNS40NzUgNy43Mzh2LjAxYy0yLjk2NiAxLjUyNS00LjQxOSAzLjE2NC00LjQ4MSAzLjI0N2wxLjAzNyAxLjA4OWMuMDE5LS4wMTEgMS42Ni0xLjMxNyA0LjIzLTMuMDI5IDUuNjEzLTIuODUyIDEyLjkzNS0zLjIwNSAyMS4xMy0uOTQ0IDQuNDcxIDEuMjIzIDkuNjU3IDMuOTczIDE0LjkyOCA2Ljg1NyAxOC42NTkgMTQuMDEzIDI2LjExOCAyNC43MzggMzEuNTczIDM2LjUyMiAzLjk4MyA4LjYwOSA3LjI4MSAxNy40MzYgMTEuMzY5IDMwLjQ1MyA0LjEwOSAxMy4wODkgNy44MzMgMzUuODY5IDkuNjk4IDU5LjQxNS45MjUgMTEuNjE4IDEuNjcxIDI0LjA2NSAyLjQ1OCAzNy4yMzcgMS45NzEgMzMuMDQ3IDQuMDAzIDY3LjIxNSA5LjE0OSA5NC4xMDEgMi43OCAxNC41NDEgNi4xMTkgMjcuODYgMTAuMTg2IDQwLjc0MyAxMi40NTcgMzkuMzU0IDMwLjU3OCA2OC43NyA0My4zNzggODMuMTQ4IDExLjc1MSAxMy4yMzQgMjcuMjM5IDI2LjY5OCAzMC42ODMgMjYuNjk4LjA4MSAwIC4xNTUgMCAuMjI2LS4wMTlsLjAxMy4wMTkuMDUxLS4wMTljLjMzMi0uMDgzLjUzOC0uMjUuNjYzLS4zOTUuMDE5LS4wMi4wNDItLjA2Mi4wNjEtLjA4MmguMDExYy4zMjItLjIwNyAzMi43NjktMjEuMTYyIDU3LjI5OS00MS43NjEgODguMTEzLTczLjkzOSAxNjguMTUtMTk4Ljk1MSAxNDguMzI3LTMxMS41Nzh6IiBmaWxsPSIjRkZCOTBGIi8+PC9zdmc+")
}

.joe_cloud__logo._wy {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjIiIGhlaWdodD0iMjIiPjxwYXRoIGQ9Ik04ODAuMyA2MzEuOWMtMy40IDAtNi45LS42LTEwLjItMS44LTE2LjEtNS43LTI0LjUtMjMuMy0xOC45LTM5LjQgNi40LTE4LjEgOS42LTM3LjEgOS42LTU2LjUgMC05My4zLTc1LjktMTY5LjItMTY5LjEtMTY5LjItNzcuNiAwLTE0NS4xIDUyLjQtMTY0IDEyNy41LTQuMiAxNi41LTIwLjggMjYuNi0zNy41IDIyLjQtMTYuNS00LjItMjYuNS0yMS0yMi40LTM3LjUgMjUuOS0xMDIuNSAxMTgtMTc0LjEgMjIzLjktMTc0LjEgMTI3LjMgMCAyMzAuOCAxMDMuNiAyMzAuOCAyMzAuOSAwIDI2LjQtNC40IDUyLjMtMTMuMSA3Ny00LjUgMTIuNy0xNi40IDIwLjctMjkuMSAyMC43eiIgZmlsbD0iIzA5RiIvPjxwYXRoIGQ9Ik00NDcuNCA3ODMuM0gzMzIuNmMtMTI3LjMgMC0yMzAuOS05Ny41LTIzMC45LTIxNy4zIDAtOTQuOSA2NS45LTE3OC4zIDE2MC0yMDYuOCAxMC4yLTExNy45IDEwOS41LTIxMC43IDIzMC0yMTAuNyAxMDcuMSAwIDIwMS44IDc1LjggMjI1LjMgMTgwLjEgMy43IDE2LjYtNi44IDMzLjEtMjMuNCAzNi45LTE2LjcgMy45LTMzLjItNi43LTM2LjktMjMuMy0xNy4xLTc2LjQtODYuNS0xMzEuOS0xNjUtMTMxLjktOTMuMyAwLTE2OS4yIDc1LjktMTY5LjIgMTY5LjEgMS43IDguMS4zIDE1LjQtNC40IDIyLjMtNC42IDYuOS0xMS43IDEwLjQtMTkuOSAxMi03OC4yIDE0LjgtMTM0LjkgNzguOS0xMzQuOSAxNTIuNCAwIDg1LjggNzUuOSAxNTUuNiAxNjkuMiAxNTUuNmgxMTQuOGMxNyAwIDMwLjkgMTMuOCAzMC45IDMwLjlzLTEzLjggMzAuNy0zMC44IDMwLjd6bTExMi43LTMxYy04LjIgMC0xNi4zLTMuMi0yMi40LTkuNi0xMS43LTEyLjQtMTEuMy0zMS45IDEuMS00My42bDEyNi43LTEyMC40YzExLjgtMTEuMyAzMC41LTExLjMgNDIuNSAwTDgzNC44IDY5OWMxMi40IDExLjcgMTIuOSAzMS4zIDEuMSA0My42LTExLjcgMTIuMy0zMS4zIDEyLjktNDMuNiAxLjFMNjg2LjggNjQzLjYgNTgxLjMgNzQzLjhjLTUuOSA1LjctMTMuNiA4LjUtMjEuMiA4LjV6IiBmaWxsPSIjMDlGIi8+PHBhdGggZD0iTTY4Ni44IDg3OWMtMTcgMC0zMC45LTEzLjgtMzAuOS0zMC45VjYwMWMwLTE3IDEzLjktMzAuOSAzMC45LTMwLjlzMzAuOSAxMy44IDMwLjkgMzAuOXYyNDcuMWMwIDE3LjEtMTMuOSAzMC45LTMwLjkgMzAuOXoiIGZpbGw9IiMwOUYiLz48L3N2Zz4=")
}

.joe_cloud__logo._github {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjIiIGhlaWdodD0iMjIiPjxwYXRoIGQ9Ik01MTEuOTY2IDBDMjI5LjIzOSAwIDAgMjI5LjIzOSAwIDUxMi4wMzQgMCA3MzguMjM2IDE0Ni43MDUgOTMwLjEzMyAzNTAuMTc0IDk5Ny44MmMyNS42IDQuNzEgMzQuOTE4LTExLjA5NCAzNC45MTgtMjQuNjc5IDAtMTIuMTUxLS40MDktNDQuMzM5LS42ODItODcuMDc0LTE0Mi40MDUgMzAuOTU5LTE3Mi40NzYtNjguNjQyLTE3Mi40NzYtNjguNjQyLTIzLjI3OS01OS4xMTktNTYuODMyLTc0Ljg4OC01Ni44MzItNzQuODg4LTQ2LjQ5LTMxLjc0NCAzLjUxNi0zMS4xMyAzLjUxNi0zMS4xMyA1MS4zNyAzLjYxOCA3OC40MzggNTIuNzcgNzguNDM4IDUyLjc3IDQ1LjY3IDc4LjI2OCAxMTkuODA4IDU1LjY3MiAxNDguOTkyIDQyLjU2NCA0LjY0Mi0zMy4xMDkgMTcuODg2LTU1LjY3MSAzMi40OTUtNjguNDcxLTExMy42OTgtMTIuOTAzLTIzMy4xOTktNTYuODMyLTIzMy4xOTktMjUzLjAzMSAwLTU1LjkxIDE5LjkzNC0xMDEuNjE0IDUyLjcwMi0xMzcuMzg2LTUuMjkxLTEyLjk3MS0yMi44MzUtNjUuMDI0IDUuMDE3LTEzNS41MSAwIDAgNDIuOTc0LTEzLjc1NSAxNDAuOCA1Mi40OThhNDkwLjA3IDQ5MC4wNyAwIDAgMSAxMjguMTcxLTE3LjIzOCA0OTAuODM2IDQ5MC44MzYgMCAwIDEgMTI4LjE3MSAxNy4yMzhjOTcuNzU4LTY2LjI1MyAxNDAuNjYzLTUyLjQ5OCAxNDAuNjYzLTUyLjQ5OCAyNy45MjEgNzAuNDg2IDEwLjM0MyAxMjIuNTM5IDUuMDg2IDEzNS41MSAzMi44MzYgMzUuNzcyIDUyLjYzNCA4MS40NzYgNTIuNjM0IDEzNy4zODYgMCAxOTYuNjc3LTExOS43MDYgMjM5Ljk1OC0yMzMuNzc5IDI1Mi42NTUgMTguMzk3IDE1LjgwNCAzNC43ODEgNDcuMDM2IDM0Ljc4MSA5NC43ODkgMCA2OC40NzEtLjY0OCAxMjMuNjk5LS42NDggMTQwLjQ1OCAwIDEzLjY4OCA5LjI1IDI5LjYyOCAzNS4yMjUgMjQuNjQ1Qzg3Ny40MzEgOTI5LjkyOSAxMDI0IDczOC4xNjcgMTAyNCA1MTIuMDM0IDEwMjQgMjI5LjIzOSA3OTQuNzI2IDAgNTExLjk2NiAwIiBmaWxsPSIjRjY2Ii8+PC9zdmc+")
}

.joe_cloud__logo._lz {
	background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjIiIGhlaWdodD0iMjIiPjxwYXRoIGQ9Ik02NzguNjQgNTE0LjAwN2ExNjguNDQ4IDE2OC40NDggMCAxIDAtMTY4LjQ0NyAxNjcuNzA2QTE2OC4wNyAxNjguMDcgMCAwIDAgNjc4LjY0IDUxNC4wMDd6IiBmaWxsPSIjRjRDQTFDIi8+PHBhdGggZD0iTTk4My4wNCA2MDMuNDEyYTI0Mi40ODggMjQyLjQ4OCAwIDAgMC0yODAuMzkyLTIzOC40MDdBMjUzLjMyMiAyNTMuMzIyIDAgMCAwIDI1Ni4yMiAyODcuMThhMjQ5LjEzNCAyNDkuMTM0IDAgMCAwLTQ4Ljk1NyAxNTMuMzg1QTIwMy4zOTcgMjAzLjM5NyAwIDAgMCAyNDAuMTg5IDg0NC44aDUyNy43NzVhMzEuOTkgMzEuOTkgMCAwIDAgMTQuNzUtMy43MTcgMjQyLjAzOCAyNDIuMDM4IDAgMCAwIDIwMC4zMjYtMjM3LjY3ek03NDAuNjA4IDc4MC43MTNIMjQwLjE4OWExMzkuMzg3IDEzOS4zODcgMCAxIDEgMC0yNzguNzY5IDMxLjk3IDMxLjk3IDAgMCAwIDguNzA0LTEuMzQxIDMxLjk2NCAzMS45NjQgMCAwIDAgMjQuODQ4LTM1Ljk5OSAxODcuODEyIDE4Ny44MTIgMCAwIDEgMTU3Ljc0Mi0yMTQuMDE2IDE4OC40NjIgMTg4LjQ2MiAwIDAgMSAyMDkuNTQxIDEzMi44MzkgMjQxLjYyOCAyNDEuNjI4IDAgMCAwLTE0Mi44NDggMjE5Ljk4NSAzMi4xOCAzMi4xOCAwIDAgMCA2NC4zNTggMCAxNzguMDY4IDE3OC4wNjggMCAxIDEgMTc4LjA3NCAxNzcuMzAxeiIgZmlsbD0iIzU5NUJCMyIvPjwvc3ZnPg==")
}

.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(--back-line-bottom);
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	text-align: center
}

.joe_detail {
	background: var(--background);
	border-radius: var(--radius-wrap);
	padding: 15px;
	box-shadow: var(--box-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: 24px;
	color: var(--main);
	text-shadow: var(--text-shadow);
	text-align: center;
	margin-bottom: 15px;
	word-break: break-word
}

.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: 35px;
	height: 35px;
	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(--theme)
}

.joe_detail__count-information .meta .author .link:hover {
	text-decoration: underline
}

.joe_detail__count-information .meta .item {
	display: flex;
	align-items: center;
	color: var(--minor);
	line-height: 16px
}

.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_detail__overdue {
	padding-top: 15px
}

.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: 15px;
	font-size: 15px;
	word-break: break-word;
	color: var(--routine)
}

.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);
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 1vh;
	position: relative;
}

.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: 2vh;
}

.joe_detail__article h1 {
	padding: 0 15px 0 20px
}

.joe_detail__article h1::before {
	content: '¶';
	color: var(--theme);
	position: absolute;
	top: 0;
	left: 0;
	font-size: 22px
}

.joe_detail__article h2 {
	padding: 0 15px
}

.joe_detail__article h2::before {
	content: '';
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 0;
	width: 4px;
	border-radius: 2px;
	background: var(--back-line-bottom);
}

.joe_detail__article h3 {
	padding: 0 15px
}

.joe_detail__article h3::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: var(--back-line-bottom);
	border-radius: 0 4px 4px 0
}

.joe_detail__article h4::before {
	content: '「';
	color: var(--theme);
	font-weight: 600;
	margin-right: 5px
}

.joe_detail__article h4::after {
	content: '」';
	color: var(--theme);
	font-weight: 600;
	margin-left: 5px
}

.joe_detail__article h5 {
	padding: 0 15px 0 28px
}

.joe_detail__article h5::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAC8klEQVRYR+3WP2gTURwH8O/vKnVRRHKXP52cBO3g4p/BqYNIhy4muajUQRBFKjQV1En6ZxJBcmlRCoJDRe3FDiJVwamLS3FwqbgIgss1l2ZQF5XeT3I1Z3NJ7u5dLlAwN9699/t97vfe7/EIO/yhHe5DD9jpCv3fFVTu856+Xzi62Y/35hj9CFPNrlUwWeRJAJfBGADwBcBNI0/PRZFdAdo4xlQLjCqKjBzogat7hZCRAgPghJGBgbFnxglAOvS7b/fLb+q+qnv5BHBCyEBAWTdnANy2IxOtWSC1qsY+1jOFwAVG+gIVvXyHQbcaKuZCxmf5iMQogXFQtEsBeO5JT6BcMu+Bcb1lUhcyqfExACUAB6JEtgUqi+U5JrrmmcyFHCjwSYtQO+tSUSFbAmXdnAdwJVASdyWLPAS2kbFA8xsHNS13EzCmlx8R6KJQcBcypfFpho3cKxRna3ADsgEo6+ZjAKMhgjZ1d2KWR2gTSyD0h4jnIB2gXDIXwciFCPZvSnMl0wwshYrJGDImaMUGKovlLBPVOrDjh8APzFx8zDkjNa7FzYoGZsKT9XEarQOHmei1aJA246cqOWW6/i2l8VMGzoWIPW/k6eq2Ja6UwCz8pw2JGZ8sS8pUz8fWau/jGp+SgLchcGBgZD1Py41NUuoI+ZloV8ZU93+ogZKzfBiWfXAPCgMJU8Y42avQdMzI4ZBfmSizocqrUeJaAmsvBZGGBCtTziXeRY1rCxRAViEhXckqK93AeQJ9kYTvlmVlqmcTdhNEtefc+9X3utVmuX+CkK6oyqtu4nwrWP8bF5IZdGYjJ79wDuMCz4D+XmhFWnZbt7ab5ltBB6mbkyAaBPFCJassuwMmNb4L4EZgXwBc4AoGTZrUeA6A9x1yK6tzzvnFDlxBv0D176kCP2TCpbbjBXCRV9DZk0VeAONCE1IQ1zWg3dlF1sFQHWQIXFeBNrLAw5BwHBZWjQl6E3SbbB8X+R4Mg/Ca0wN2WtFeBTut4B84mFI4VpekyAAAAABJRU5ErkJggg==");
	background-size: 100% 100%
}

.joe_detail__article h6 {
	padding: 0 15px 0 28px
}

.joe_detail__article h6::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAEI0lEQVRYR+3Xb2wTZRwH8G/vL22RPy5GW8fK6rJpGeFFY9RO3TRRE1HfmEAammEyjZmOSEg1RrPZaTD6xjhU/Ndlf0CZgwmD+qcgZBRIETeqY0Vcnc7pGonhRY2l3m2t5upqjq693l2vcy+8N81zz/NcPvf75fd7rjos8ku3yH34HyjK0PqlDLPzD56vMNL0VHxmpgXAoUIZXKgI3sMSpK+cNTAbylaj/9IkprnLM3+mkg8XQi4EsJ4lSL+ZNbAfVd+JG/XLcSERg3M8IAtZauBtDEkeNdN6fX9NfRqXueQiSwm00wQRMDMGw94snBJkqYBrSYIIXs/ojftqGq6IXHZRFIpkKYC2JSw9SJE663W0nthlqcMawwrJYpVCag1M48pNy1YNvLWRffGNIYSCv6Cnog7rjCtVIbUEXoG7qeqaNMj51F58dWoKPZY62JeWyUJG+ctcIplcIizWCpgTl9EIyODJn9BtceDWq/6B57tO/H4R688fFaZ7AWzWAiiJEyMDx39Ed6UDdyy7Ni/w1ekxbP95VJi/F8CRYoGycGLksaEJdFU6cPdy0zxkR/RbtE6FhPvHATQUm2JFODHSfyyCLmsd7lth/hf53q/jcE8OC+NTAG7PTKiNoCqcGPnpF+PotDrwwNXl+OC3H9A8cVqYPgPgFnFo1QCLwomRg4cvoPMGBzZHTgq3zwKwZ+ddKVATXAZhf+gdnPvuojAUqmJdrspRAtQU93pXEM+8clgwhQHU5itruUBNcTt6TsP9sl8weQC0S/VFOUBNcW/2folt2z+XhZPTZh6kSKJ79aqVRuFszRxfUm8sNbdz9xlsfekz2bhCQBvDMMM8z+ubN92Mjrb71brS+97dM4wtnk8U4SSBBEGErVarzeVywePxoHVLA1pb6lUh3+8bwZMv+BTjpIAVACa9Xq+uqakJ7e3tqpGd/WfR3Jr+81awIJS0mY0A+sLhMGw2W3qfGmTXvhAef/6gapxUBDuqqqoejUQiBvFbKUH2DHyNx54bLAqXF0jT9HBjY6Pd6/XOi7oc5K7936Dp2QNF4/IBrTqdLuLxeIi2tracRSGF/PDgKB55er8muHzATQB2m81m+P1+1NbmPoVyIfsOnUOj+2PNcPmAO1iWbeE4TmexWODz+WQhayrL4No2oCkuJ5Bl2VGO49ZmcisXObdeVSuRaq7ZZ3G10KBTqRQl3pQPGY1GEQgE4HQ6heVDAO5S1cklNmUDXQRB9KZSqXkfESaTCW63G7FYDKFQKDEyMoJoNKqfe/bbAJ7QGpcrxa8xDLOV5/k0kGXZv2ZnZ5FMJtNjmqYvURR1IpFInAcwAeD7ud/pUuDmAY1G41g8Hl9DkmScoqggx3FHAIyJMMlSQfI9V5zKagDC93dsoRFKimQx2dIWOV/U/yn6bx0WyDj8vgLOAAAAAElFTkSuQmCC");
	background-size: 100% 100%
}

.joe_detail__article hr {
	border: none;
	height: 1px;
	background-color: var(--classB);
	margin-bottom: 18px
}

.joe_detail__article p {
	line-height: 26px;
	margin-bottom: 18px
}

.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: 26px;
	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;*/
    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
}

.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;
	top: 9px;
	right: 15px;
	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
}

.joe_detail__article img:not([class]) {
	display: block;
	max-width: 100%;
	max-height: 450px;
	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
}

.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: 18px
}

.joe_detail__article-video .play,
.joe_detail__article-video .episodes {
	background: var(--classD);
	padding: 15px 15px 15px
}

.joe_detail__article-video .play .title,
.joe_detail__article-video .episodes .title {
	position: relative;
	left: -25px;
	background: var(--theme);
	color: #fff;
	font-weight: 500;
	box-shadow: 2px 5px 10px rgba(49, 58, 70, 0.15);
	padding: 0px 12px;
	padding-bottom: 5px;
    padding-top: 3px;
    margin-bottom: 15px;
	border-radius: 2px 2px 2px 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_detail__article-video .play .title::after,
.joe_detail__article-video .episodes .title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: -10px;
	border-style: solid;
	border-width: 10px;
	border-color: var(--theme) transparent transparent;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.joe_detail__article-video .play .box,
.joe_detail__article-video .episodes .box {
	border-top: 1px solid var(--classB);
	padding-top: 15px
}

.joe_detail__article-video .play {
	margin-bottom: 15px
}

.joe_detail__article-video .play .box iframe {
	background: #000;
	width: 100%;
	min-height: 520px
}

.joe_detail__article-video .episodes .box {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px
}

.joe_detail__article-video .episodes .box .item {
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
	background: var(--background);
	color: var(--routine);
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: box-shadow 0.35s, background 0.35s, color 0.35s, -webkit-transform 0.35s;
	transition: transform 0.35s, box-shadow 0.35s, background 0.35s, color 0.35s;
	transition: transform 0.35s, box-shadow 0.35s, background 0.35s, color 0.35s, -webkit-transform 0.35s;
	padding: 0 10px
}

.joe_detail__article-video .episodes .box .item.active {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	color: #fff;
	background: var(--theme);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1)
}

.joe_detail__article-video .episodes .box .item:hover {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1)
}

.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__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__operate {
	margin-bottom: 15px;
	color: var(--routine);
	display: flex;
	align-items: center
}

.joe_detail__operate-tags {
	flex-shrink: 0;
	flex: 1;
	display: flex;
	align-items: center;
	overflow-x: auto
}

.joe_detail__operate-tags::-webkit-scrollbar {
	display: none
}

.joe_detail__operate-tags a {
	flex-shrink: 0;
	position: relative;
	margin-right: 10px;
	font-size: 12px;
	background-color: var(--classD);
	color: var(--minor);
	border: 1px solid var(--classD);
	padding-right: 8px;
	padding-left: 29px;
	height: 26px;
	line-height: 26px;
	border-radius: 13px;
	max-width: 125px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: border 0.25s, color 0.25s
}

.joe_detail__operate-tags a:hover {
	color: var(--routine);
	border: 1px solid var(--classC)
}

.joe_detail__operate-tags a:last-child,
.joe_detail__operate-tags a:nth-child(5) {
	margin-right: 0
}

.joe_detail__operate-tags a:nth-child(n+6) {
	display: none
}

.joe_detail__operate-tags a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: var(--background);
	border-radius: 50%
}

.joe_detail__operate-tags a::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 12px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background: url(data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiPjxwYXRoIGQ9Ik02ODIuNjY3IDM1Ni44NDhIMzI1LjgxOGEzOC43ODggMzguNzg4IDAgMCAxLTM4Ljc4OC0zOC43ODcgMzguNzg4IDM4Ljc4OCAwIDAgMSAzOC43ODgtMzguNzg4aDM1Ni44NDlhMzguNzg4IDM4Ljc4OCAwIDAgMSAzOC43ODggMzguNzg4IDM4Ljc4OCAzOC43ODggMCAwIDEtMzguNzg4IDM4Ljc4N3oiIGZpbGw9IiM1NGI1ZGIiLz48cGF0aCBkPSJNOTA3LjYzNiAxMDI0aC0xNS41MTVMNTEyIDgwNi43ODhsLTM4MC4xMjEgMjA5LjQ1NEg5My4wOWE2Mi4wNiA2Mi4wNiAwIDAgMS0xNS41MTUtMzEuMDNWMTE2LjM2NEExMTYuMzY0IDExNi4zNjQgMCAwIDEgMTkzLjkzOSAwaDYzNi4xMjJhMTE2LjM2NCAxMTYuMzY0IDAgMCAxIDExNi4zNjMgMTE2LjM2NHY4NjguODQ4YTYyLjA2IDYyLjA2IDAgMCAxLTE1LjUxNSAzMS4wM3pNNTEyIDcyMS40NTVoMjMuMjczbDMzMy41NzUgMTg2LjE4MVYxMTYuMzY0YTM4Ljc4OCAzOC43ODggMCAwIDAtMzguNzg3LTM4Ljc4OEgxOTMuOTM5YTM4Ljc4OCAzOC43ODggMCAwIDAtMzguNzg3IDM4Ljc4OHY3OTkuMDNsMzQxLjMzMy0xODYuMTgyeiIgZmlsbD0iIzU0YjVkYiIvPjwvc3ZnPg==) no-repeat;
	background-size: 100% 100%
}

.joe_detail__operate-share {
	position: relative;
	margin-left: 15px
}

.joe_detail__operate-share svg {
	cursor: pointer;
	transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	transition: transform 0.35s, -webkit-transform 0.35s
}

.joe_detail__operate-share svg:hover {
	-webkit-transform: rotate(360deg) scale(1.25);
	transform: rotate(360deg) scale(1.25)
}

.joe_detail__operate-share .reach {
	position: absolute;
	z-index: 10;
	top: 34px;
	left: -1px;
	display: flex;
	flex-direction: column;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: translateY(25px);
	transform: translateY(25px);
	transition: visibility 0.25s, opacity 0.25s, -webkit-transform 0.25s;
	transition: visibility 0.25s, transform 0.25s, opacity 0.25s;
	transition: visibility 0.25s, transform 0.25s, opacity 0.25s, -webkit-transform 0.25s
}

.joe_detail__operate-share .reach a {
	margin-bottom: 5px
}

.joe_detail__operate-share .reach a:last-child {
	margin-bottom: 0
}

.joe_detail__operate-share.active .reach {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible
}

.joe_detail__copyright {
	padding-top: 15px;
	border-top: 1px solid var(--classC)
}

.joe_detail__copyright .content {
	background: var(--classD);
	padding: 15px;
	border-radius: var(--radius-inner)
}

.joe_detail__copyright .content .item {
	color: var(--minor);
	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(--minor)
}

.joe_detail__copyright .content .item .link:hover {
	color: var(--theme)
}

.joe_detail__related {
	padding-top: 15px
}

.joe_detail__related-title {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: var(--main);
	padding-left: 15px;
	margin-bottom: 15px
}

.joe_detail__related-title::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	border-radius: 2px;
	background: var(--back-line-bottom)
}

.joe_detail__related-content {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(4, 1fr)
}

.joe_detail__related-content .item {
	overflow: hidden;
	border-radius: var(--radius-inner);
	transition: box-shadow 0.25s, -webkit-transform 0.25s;
	transition: transform 0.25s, box-shadow 0.25s;
	transition: transform 0.25s, box-shadow 0.25s, -webkit-transform 0.25s
}

.joe_detail__related-content .item:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 34px 20px -24px rgba(136, 161, 206, 0.3);
	animation: index-link-active 1s cubic-bezier(0.315, 0.605, 0.375, 0.925) forwards;
}

.joe_detail__related-content .item img {
	width: 100%;
	height: 120px;
	-o-object-fit: cover;
	object-fit: cover
}

.joe_detail__related-content .item h6 {
	height: 32px;
	line-height: 32px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background: var(--classD);
	text-align: center;
	font-size: 13px;
	color: var(--minor);
	padding: 0 12px
}

.joe_detail__friends {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	margin-bottom: 15px
}

.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: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);
	animation: index-link-active 1s cubic-bezier(0.315, 0.605, 0.375, 0.925) forwards;
}

.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: flex-end;
	padding-top: 15px
}

.joe_pagination li {
	margin-left: 5px
}

.joe_pagination li.active a {
	background: var(--back-line-right);
	color: #fff;
	font-weight: 500
}

.joe_pagination li a {
	display: flex;
	align-items: center;
	height: 32px;
	color: var(--main);
	padding: 0 15px;
	background: var(--background);
	border-radius: 2px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.joe_pagination li a:hover {
	background: var(--back-line-right);
	color: #fff
}

.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: 90px;
	right: 30px;
	z-index: 333
}

.joe_action_item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--back-trn-6);
	border-radius: 50%;
	cursor: pointer;
	margin-top: 15px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.2)
}

.joe_action_item svg {
	position: absolute;
	width: 25px;
	height: 25px;
	fill: var(--theme)
}

.joe_action_item.scroll {
	visibility: hidden;
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: visibility 0.35s, -webkit-transform 0.35s;
	transition: visibility 0.35s, transform 0.35s;
	transition: visibility 0.35s, transform 0.35s, -webkit-transform 0.35s
}

.joe_action_item.scroll.active {
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.joe_action_item.mode svg {
	-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 svg.active {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1
}

.joe_comment {
	background: var(--background);
	border-radius: var(--radius-wrap);
	box-shadow: var(--box-shadow);
	padding: 15px
}

.joe_comment__title {
	font-weight: 500;
	text-align: center;
	font-size: 24px;
	color: var(--main);
	text-shadow: var(--text-shadow);
	border-bottom: 1px solid var(--classC);
	margin-bottom: 15px;
	padding-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(--classD);
	padding: 0 15px;
	height: 32px;
	color: var(--main);
	border: none;
}

.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: #fff;
	background: var(--back-line-right)
}

.joe_comment__respond-form {
	border-radius: 6px 0 6px 6px;
	background: var(--classD)
}

.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
}

.joe_comment__respond-form .foot .owo .seat {
	text-align: center;
	color: var(--routine);
	height: 26px;
	line-height: 26px;
	background: var(--background);
	opacity: 0.85;
	border-radius: 13px;
	width: 70px
}

.joe_comment__respond-form .foot .submit {
	position: absolute;
	top: 0;
	right: 15px;
	white-space: nowrap
}

.joe_comment__respond-form .foot .submit .cancle {
	display: none;
	color: var(--main);
	cursor: pointer;
	margin-right: 10px;
	transition: color 0.35s
}

.joe_comment__respond-form .foot .submit .cancle:hover {
	color: var(--theme)
}

.joe_comment__respond-form .foot .submit button {
	border-radius: 3px;
	height: 32px;
	padding: 0 15px;
	border: none;
	background: var(--back-line-right);
	color: #fff;
	font-size: 14px
}

.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 .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(--back-line-right);
	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(--classD);
	padding: 12px 15px;
	border-radius: 0 var(--radius-inner) var(--radius-inner) 10px;
	color: var(--main);
	margin-bottom: 8px;
	word-break: break-word;
	line-height: 24px
}

.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;
	background-image: var(--back-line-right);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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% / 5)
}

.joe_owo__contain .box .bar {
	display: flex;
	align-items: center;
	border-top: 1px solid var(--classC)
}

.joe_owo__contain .box .bar .item {
	line-height: 30px;
	padding: 0 10px;
	cursor: pointer;
	color: var(--routine);
	transition: background 0.25s, color 0.25s
}

.joe_owo__contain .box .bar .item.active {
	color: #fff;
	background: var(--back-line-right)
}

.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
}

@-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
}

/*网站浏览顶部进度条*/
#HeaderCounter{
    width: 0;
    height: 3px;
    z-index: 1001;
    background-image: var(--back-line-right);
    border-radius: 5px;
    transition: width 0.45s;
}

@keyframes index-link-active {
    0% {
        transform: perspective(2000px) rotateX(0) rotateY(0) translateZ(0);
    }
    16% {
        transform:perspective(2000px) rotateX(10deg) rotateY(5deg) translateZ(32px);
    }
    100% {
        transform: perspective(2000px) rotateX(0) rotateY(0) translateZ(65px);
    }
}