/* 面包屑导航样式 */
.breadcrumb-nav {
	width: 100%;
	margin: 18px 0 0 0;
	font-size: 1.08em;
	background: none;
	box-shadow: none;
}
.breadcrumb-nav ol {
	display: flex;
	align-items: center;
	gap: 0.5em;
	list-style: none;
	padding: 0;
	margin: 0;
}
.breadcrumb-nav li {
	color: #888;
	font-weight: 500;
}
.breadcrumb-nav a {
	color: #31c27c;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.2s;
}
.breadcrumb-nav a:hover {
	color: #129c4b;
	text-decoration: underline;
}
.breadcrumb-sep {
	color: #bbb;
	font-size: 1.1em;
	font-weight: normal;
	user-select: none;
}
/* 分类按钮选中状态 */
.category-btn.selected,
.category-btn:active {
	background: #31c27c !important;
	color: #fff !important;
	font-weight: 900 !important;
	font-size: 1.18em !important;
	border: none !important;
	outline: none !important;
	transform: scale(1.00) !important;
	box-shadow: none !important;
	text-shadow: none !important;
	border-radius: 20px !important;
}
/* 分类按钮统一样式 */
.category-btn {
	background: #eafaf3;
	color: #222;
	border: none;
	max-width: 140px;
	min-width: 120px;
	border-radius: 8px;
	padding: 0.6em 1.4em;
	font-size: 1.1em;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	margin-bottom: 0.5em;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(49,194,124,0.06);
}
.category-btn:hover {
  background: #31c27c;
  color: #fff;
  box-shadow: 0 2px 8px rgba(49,194,124,0.18);
}
.category-rock,

header {
		background: linear-gradient(90deg, #181818 60%, #31c27c 100%);
		padding: 0.5em 0 0.5em 0;
		border-bottom: none;
		box-shadow: none;
}
nav {
	display: flex;
	justify-content: center;
	gap: 2em;
	margin-bottom: 0.5em;
}
html {
  scroll-behavior: smooth;
}
nav a {
	color: #fff;
	font-size: 1.08em;
	font-weight: 600;
	text-decoration: none;
	padding: 0.5em 1.2em;
	border-radius: 8px;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav a:hover {
	background: #31c27c;
	color: #181818;
	box-shadow: 0 2px 8px rgba(49,194,124,0.12);
}
/* 星星投票动画 */
.star.voted {
	animation: star-vote-bounce 0.5s cubic-bezier(.36,.07,.19,.97) both, star-vote-glow 0.8s linear both;
}
@keyframes star-vote-bounce {
	0% { transform: scale(1); }
	30% { transform: scale(1.4); }
	60% { transform: scale(0.9); }
	100% { transform: scale(1); }
}
@keyframes star-vote-glow {
	0% { box-shadow: 0 0 0px #ffd700; }
	50% { box-shadow: 0 0 16px #ffd700; }
	100% { box-shadow: 0 0 0px #ffd700; }
}
/* 评分区块美化 */
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  max-width: none;
  font-size: 1em;
  padding: 2em 0;
  background: #7c8197;
  border-radius: 0;
  box-shadow: none;
	margin: 2.5em 0 0 0;
}
.rating-label {
  font-weight: bold;
  color: #444;
  font-size: 1.1em;
  margin-right: 1em;
}
.star {
	font-size: 1.5em;
	margin: 0 0.18em;
	color: #ffd700;
}
.rating-score {
  font-weight: bold;
  color: #fff;
  font-size: 1.1em;
  margin-left: 0.8em;
  margin-right: 0.2em;
  line-height: 1;
  white-space: nowrap;
}
.rating-votes {
  color: #fff;
  font-size: 1em;
  margin-left: 0.5em;
  line-height: 1;
  white-space: nowrap;
}
/* 文字内容区域美化（SEO区块、FAQ等） */
#seo-content {
	max-width: 800px;
	margin: 40px auto 0 auto;
	padding: 32px 28px;
	color: #222;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 16px rgba(49,194,124,0.08);
	font-family: 'Noto Sans', Arial, sans-serif;
}
#seo-content h2 {
	font-size: 2em;
	margin-bottom: 0.7em;
	color: #31c27c;
	font-weight: 700;
	letter-spacing: 1px;
}
#seo-content h3 {
	font-size: 1.2em;
	margin: 1.2em 0 0.5em 0;
	color: #129c4b;
	font-weight: 600;
}
#seo-content p {
	font-size: 1.08em;
	line-height: 1.8;
	margin-bottom: 1.1em;
	color: #222;
}
#seo-content ul, #seo-content ol {
	margin: 1em 0 1em 2em;
	font-size: 1em;
	color: #222;
}
#seo-content strong {
	color: #31c27c;
	font-weight: bold;
}
#seo-content em {
	color: #129c4b;
	font-style: italic;
}
/* Footer 样式美化 */
.site-footer {
	text-align: center;
	padding: 2em 0;
	color: #888;
	font-size: 1em;
	background: linear-gradient(90deg, #222 60%, #31c27c 100%);
	border-top: 2px solid #31c27c;
	box-shadow: 0 -2px 12px rgba(49,194,124,0.08);
}
.site-footer a {
	color: #31c27c;
	margin: 0 0.5em;
	text-decoration: none;
	transition: color 0.2s;
}
.site-footer a:hover {
	color: #129c4b;
	text-decoration: underline;
}
.powered-by {
	margin-top: 1em;
	font-size: 0.95em;
	color: #31c27c;
	letter-spacing: 1px;
	font-family: 'Noto Sans', Arial, sans-serif;
	background: rgba(49,194,124,0.08);
	border-radius: 6px;
	display: inline-block;
	padding: 0.5em 1.2em;
	box-shadow: 0 1px 6px rgba(49,194,124,0.06);
}
.powered-by-note {
	margin-top: 0.5em;
	font-size: 0.9em;
	color: #555;
	font-style: italic;
	display: block;
}
