.ui.top.attached.block.header i.icon {
	font-size: 1em;
	vertical-align: initial;
}

img {
	max-height: 100%;
	max-width: 100%;
}

code {
	font-family: "Fira Mono", "Monaco", "Ubuntu Mono", "Consolas", Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

.CodeMirror {
	font-family: "Fira Mono", "Monaco", "Ubuntu Mono", "Consolas", Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif !important;
}

:not(pre)>code {
	display: inline-block;
	font-size: 0.94em;
	font-weight: bold;
	padding: 0 1px;
	vertical-align: bottom;
}

@keyframes colorChange {
	0% {
		color: red;
	}

	20% {
		color: blue;
	}

	40% {
		color: green;
	}

	60% {
		color: purple;
	}

	80% {
		color: orange;
	}

	100% {
		color: red;
	}
}

.important-text {
	animation: colorChange 0.8s infinite;
	font-size: 21px;
}

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
	width: 0px;
	/* 滚动条宽度 */
}

::-webkit-scrollbar-track {
	background: #f0f0f0;
	/* 滚动条轨道背景色 */
	border-radius: 10px;
	/* 轨道圆角 */
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #888, #555);
	/* 渐变滚动条 */
	border-radius: 10px;
	/* 滚动条圆角 */
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #666, #444);
	/* 悬浮时变深 */
}

.ui.glowing-gold.label {
	color: white;
	background: linear-gradient(135deg,
			rgba(255, 215, 0, 1) 43%,
			rgba(255, 215, 0, 0.3) 50%,
			rgba(255, 215, 0, 1) 57%);
	animation: glowing-background 3s ease-in-out infinite;
	background-size: 250% 250%;
	box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
	transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

.ui.glowing-gold.label:hover {
	color: white;
	background: linear-gradient(135deg,
			rgb(245, 208, 0) 43%,
			rgba(245, 208, 0, 0.3) 50%,
			rgb(245, 208, 0) 57%);
	animation: glowing-background 3s ease-in-out infinite;
	background-size: 250% 250%;
	box-shadow: 0 0 30px rgba(245, 208, 0, 0.8);
	transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

.ui.glowing-silver.label {
	color: white;
	background: linear-gradient(135deg,
			rgb(170, 168, 168) 43%,
			rgba(170, 168, 168, 0.3) 50%,
			rgba(170, 168, 168, 1) 57%);
	animation: glowing-background 3s ease-in-out infinite;
	background-size: 250% 250%;
	box-shadow: 0 0 20px rgba(170, 168, 168, 0.8);
	transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

.ui.glowing-silver.label:hover {
	color: white;
	background: linear-gradient(135deg,
			rgb(148, 146, 146) 43%,
			rgba(148, 146, 146, 0.3) 50%,
			rgb(148, 146, 146) 57%);
	box-shadow: 0 0 30px rgba(148, 146, 146, 0.8);
	animation: glowing-background 3s ease-in-out infinite;
	background-size: 250% 250%;
	transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

@keyframes glowing-background {
	0% {
		background-position: 0% 0%;
	}

	100% {
		background-position: 100% 100%;
	}
}