body {
	margin: 0;
}

.ssr-body {
	animation: ssr-fade-in .2s forwards;
	background: repeating-linear-gradient(-45deg, #25292f, #25292f 2px, #272c31 0, #272c31 6px);
	box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1), inset 0 1px hsla(0, 0%, 100%, 0.08);
}

@keyframes ssr-fade-in {
	0% {
		opacity: .01
	}

	99% {
		opacity: .01
	}

	100% {
		opacity: 1
	}
}

.article-info {
	flex: 1;
}

.ssr-body a {
	color: inherit;
	text-decoration: none;
}

.ssr-body a:hover {
	color: #FFA000;
}

.ssr-body .banner {
	background: radial-gradient(at top center, rgba(32, 46, 62, .0), rgba(32, 46, 62, .4));
	padding: 3em 1em 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	position: relative;
}

.ssr-body .banner .notice {
	position: absolute;
	left: 5vw;
	top: -5px;
	width: 330px;
	height: 100%;
	background: url('./imgs/xz-bg.png') no-repeat center;
	background-size: contain;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	box-sizing: border-box;
	padding: 40px 50px;
}

.ssr-body .banner .notice p {
	margin: 0;
	color: #fff;
	font-size: 14px;
}

.ssr-body .banner .notice .notice-title {
	font-size: 18px;
	font-weight: bold;
}

.ssr-body li {
	display: block;
	list-style: none;
}

.ssr-body nav.category-nav {
	max-width: 100%;
	overflow-x: auto;
	/*padding: 16px 16px 0;*/
	margin-top: 3em;
	background-color: #6d7178;
	margin: auto;
	box-shadow: 0 0 10px rgba(32, 46, 62, .3);
	border-radius: 5px 5px 0 0;
}

a {
	transition: .7s cubic-bezier(.6, .1, 0, 1), background-position 0s;
}

.ssr-body nav.category-nav ul {
	padding: .75em 1em;
	margin: 0;
	display: inline-flex;
	text-align: center;
	gap: 16px;
	white-space: nowrap;
}

.ssr-body .article-list {
	padding: 0;
	margin: 0;
}

.ssr-body .article-list li {
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.ssr-body .article-list li a {
	transition: .35s;
}

.ssr-body .wrapper {
	display: flex;
	width: 90vw;
	margin: auto;
	min-height: 80vh;
}

.ssr-body .main {
	width: calc(100% - 300px);
	flex-grow: 0;
	flex-shrink: 0;
	box-shadow: 1px 0 rgba(255, 255, 255, .1);
	padding: 16px;
}

.ssr-body .main h3,
.ssr-body aside h4 {
	margin-bottom: 20px;
}

.ssr-body aside {
	width: 300px;
	flex-grow: 0;
	flex-shrink: 0;
	box-shadow: 1px 0 rgba(255, 255, 255, .1) inset;
	padding: 16px;
}

@media (max-width: 768px) {
	.ssr-body aside {
		display: none;
	}

	.ssr-body .banner .notice {
		position: static;
		padding-top: 50px;
		display: none;
	}

	.ssr-body .main {
		width: 100%;
		box-shadow: none;
	}
}

.ssr-body .article-list a {
	padding: 0.5em 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(255, 255, 255, .1);
	margin-bottom: 1px;
	transition: .35s;
}

.ssr-body .article-list a:hover {
	background-color: rgba(255, 255, 255, .3);
}

.ssr-body .article-list a img {
	width: 100px;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
}

.ssr-body .article-list h4 {
	margin: 0 0 .5em 0;
}

.ssr-body aside .article-list a img {
	width: 80px;
	height: 60px;
	margin-left: 10px;
}

.ssr-body aside {
	font-size: 87.5%;
}

.ssr-body aside .article-list h4 {
	font-weight: normal;
	margin: 0;
}

.ssr-body footer {
	background: repeating-linear-gradient(-45deg, #25292f, #25292f 2px, #272c31 0, #272c31 6px);
	box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.1), inset 0 1px hsla(0, 0%, 100%, 0.08);
	border-top: 1px solid #0d1117;
	text-align: center;
	padding: 2em 0;
	font-size: 14px;
}

.ssr-body footer .links {
	display: flex;
	gap: 1em;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1em;
}

.ssr-body footer img {
	height: 20px;
	vertical-align: middle;
}

.ssr-body ul.term-list {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
	margin-bottom: 20px;
}

.ssr-body ul.term-list a {
	display: block;
	background-color: rgba(255, 255, 255, .5);
	padding: 4px 6px;
	border-radius: 4px;
	transition: .35s;
}

.ssr-body ul.term-list a:hover {
	background-color: #fff;
}

.ssr-body article.post-wrapper {
	background-color: rgba(255, 255, 255, .2);
	padding: 1em 2em;
}

.ssr-body article.post-wrapper li {
	display: list-item;
	list-style: unset;
}

.ssr-body article.post-wrapper table {
	border: 1px solid;
	border-collapse: collapse;
	text-align: left;
}

.ssr-body article.post-wrapper table th,
.ssr-body article.post-wrapper table td {
	border: 1px solid;
	padding: .5em;
}

.ssr-body article.post-wrapper img,
video {
	max-width: 100%;
}
