:root {
	--o-color-primary:#3b82f6;
	--o-color-primary-dark:#2563eb;
	--o-color-primary-light:#60a5fa;
	--o-color-primary-gradient:linear-gradient(135deg,#3b82f6 0%,#3b82f6 50%,#60a5fa 100%);
	--o-color-primary-gradient-hover:linear-gradient(135deg,#2563eb 0%,#3b82f6 50%,#60a5fa 100%);
	--o-color-accent:#f97316;
	--o-color-accent-dark:#ea580c;
	--o-color-accent-light:#fb923c;
	--o-color-accent-gradient:linear-gradient(135deg,#f97316 0%,#fb923c 100%);
	--o-color-accent-gradient-hover:linear-gradient(135deg,#ea580c 0%,#f97316 50%,#fb923c 100%);
	--o-color-gold:#eab308;
	--o-color-gold-light:#facc15;
	--o-color-gold-gradient:linear-gradient(135deg,#eab308 0%,#facc15 100%);
	--o-color-success:#22c55e;
	--o-color-danger:#ef4444;
	--o-color-info:#3b82f6;
	--o-color-warning:#f59e0b;
	--o-color-bg:#0c1222;
	--o-color-bg-alt:#1e293b;
	--o-color-bg-card:rgba(30,41,59,0.7);
	--o-color-bg-card-hover:rgba(51,65,85,0.8);
	--o-color-bg-overlay:rgba(12,18,34,0.95);
	--o-color-text-main:#f8fafc;
	--o-color-text-body:#e2e8f0;
	--o-color-text-muted:#94a3b8;
	--o-color-text-light:#64748b;
	--o-color-text-disabled:#475569;
	--o-color-border:rgba(148,163,184,0.2);
	--o-color-border-hover:rgba(148,163,184,0.4);
	--o-color-border-focus:rgba(96,165,250,0.5);
	--o-shadow-glass-sm:0 4px 6px -1px rgba(0,0,0,0.3),0 2px 4px -2px rgba(0,0,0,0.2);
	--o-shadow-glass-md:0 10px 15px -3px rgba(0,0,0,0.4),0 4px 6px -4px rgba(0,0,0,0.3);
	--o-shadow-glass-lg:0 20px 25px -5px rgba(0,0,0,0.5),0 8px 10px -6px rgba(0,0,0,0.4);
	--o-shadow-glow-blue:0 0 30px rgba(59,130,246,0.4);
	--o-shadow-glow-orange:0 0 30px rgba(249,115,22,0.3);
	--o-shadow-glow-gold:0 0 30px rgba(234,179,8,0.3);
	--o-shadow-glow-green:0 0 30px rgba(34,197,94,0.4);
	--o-radius-none:0;
	--o-radius-sm:8px;
	--o-radius-md:16px;
	--o-radius-lg:24px;
	--o-radius-xl:32px;
	--o-radius-2xl:48px;
	--o-radius-full:9999px;
	--o-space-0:0;
	--o-space-1:4px;
	--o-space-2:8px;
	--o-space-3:12px;
	--o-space-4:16px;
	--o-space-5:20px;
	--o-space-6:24px;
	--o-space-8:32px;
	--o-space-10:40px;
	--o-space-12:48px;
	--o-space-16:64px;
	--o-space-20:80px;
	--o-space-24:96px;
	--o-space-32:128px;
	--o-duration-instant:100ms;
	--o-duration-fast:200ms;
	--o-duration-base:300ms;
	--o-duration-slow:500ms;
	--o-duration-slower:700ms;
	--o-ease-out-back:cubic-bezier(0.34,1.56,0.64,1);
	--o-ease-out-expo:cubic-bezier(0.19,1,0.22,1);
	--o-ease-out-quart:cubic-bezier(0.25,1,0.5,1);
	--o-ease-spring:cubic-bezier(0.68,-0.6,0.32,1.6);
	--o-blur-sm:8px;
	--o-blur-md:12px;
	--o-blur-lg:20px;
	--o-blur-xl:32px;
	--o-gradient-bg:linear-gradient(135deg,#0c1222 0%,#1e293b 50%,#0c1222 100%);
	--o-gradient-text:linear-gradient(135deg,#60a5fa 0%,#3b82f6 50%,#2563eb 100%);
	--o-gradient-accent:linear-gradient(135deg,#f97316 0%,#ea580c 100%);
}
*,*::before,*::after {
	box-sizing:border-box;
	margin:0;
	padding:0;
}
html {
	font-size:16px;
	scroll-behavior:smooth;
	-webkit-text-size-adjust:100%;
	-moz-text-size-adjust:100%;
	text-size-adjust:100%;
}
body {
	font-family:'SF Pro Display',-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei','Helvetica Neue',Helvetica,Arial,sans-serif;
	font-size:1rem;
	font-weight:400;
	line-height:1.7;
	color:var(--o-color-text-body);
	background:var(--o-gradient-bg);
	background-attachment:fixed;
	min-height:100vh;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
a {
	color:var(--o-color-primary);
	text-decoration:none;
	transition:all var(--o-duration-fast) var(--o-ease-out-expo);
}
a:hover {
	color:var(--o-color-primary-light);
}
img {
	max-width:100%;
	height:auto;
	display:block;
	}

.o-card {
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-md));
	-webkit-backdrop-filter:blur(var(--o-blur-md));

	border-radius:var(--o-radius-lg);

}
.o-card-no-border {
	background:transparent !important;
	backdrop-filter:none !important;
	-webkit-backdrop-filter:none !important;
	border:none !important;
	box-shadow:none !important;
	outline:none !important;
}
.o-card:hover {
	background:var(--o-color-bg-card);
	border-color:var(--o-color-border);
	box-shadow:var(--o-shadow-glass-md);
}
.o-card-no-border:hover {
	background:transparent !important;
	backdrop-filter:none !important;
	-webkit-backdrop-filter:none !important;
	border:none !important;
	box-shadow:none !important;
	outline:none !important;
}
.o-video-grid {
	display:grid;
	grid-template-columns:repeat(5,1fr);
	gap:var(--o-space-1);
	margin-bottom:var(--o-space-3);
	padding:0 var(--o-space-1);
}
.o-video-item {
	animation:oFadeIn 0.6s var(--o-ease-out-back);
}
@media (max-width:992px) {
	.o-video-grid {
	grid-template-columns:repeat(2,1fr);
	gap:var(--o-space-3);
}
.o-video-card {
	border:none;
	border-radius:0;
}
.o-video-overlay,.o-video-play {
	display:none;
	opacity:0;
	visibility:hidden;
	pointer-events:none;
	z-index:-1;
}
.o-video-card:hover .o-video-overlay,.o-video-card:hover .o-video-play {
	display:none;
	opacity:0;
	visibility:hidden;
	pointer-events:none;
	z-index:-1;
}
.o-video-card:hover .o-card-cover img {
	transform:none;
}
.o-video-thumb {
	position:relative;
	width:100%;
	padding-top:56.25%;
	background:var(--o-color-bg-alt);
	overflow:hidden;
}
.o-video-thumb img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	max-width:100%;
	display:block;
	z-index:1;
	object-fit:cover;
	transform:none;
	-webkit-transform:none;
	backface-visibility:visible;
	-webkit-backface-visibility:visible;
}
.o-video-tag {
	position:static;
	padding:4px 8px;
	margin-bottom:var(--o-space-2);
	z-index:1;
}
.o-video-info {
	background:transparent;
	padding:3px;
}
}@keyframes oFadeIn {
	from {
	opacity:0;
	transform:translateY(30px);
}
to {
	opacity:1;
	transform:translateY(0);
}
}.o-video-card {
	background:var(--o-color-bg-card);
	border:1px solid var(--o-color-border);
	border-radius:0;
	cursor:pointer;
}
.o-video-card:hover {
	border-color:var(--o-color-border);
}
.o-video-card a {
	text-decoration:none;
	display:block;
}
.o-video-thumb {
	position:relative;
	width:100%;
	padding-top:56.25%;
	background:var(--o-color-bg-alt);
	overflow:hidden;
}
.o-video-thumb img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	z-index:1;
}
.o-video-overlay {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.4);
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	z-index:2;
}
.o-video-card:hover .o-video-overlay {
	opacity:0;
}
.o-video-play {
	width:50px;
	height:50px;
	background:var(--o-color-primary-gradient);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:1.5rem;
	color:#fff;
	z-index:3;
	border-radius:50%;
	line-height:1;
	padding:0;
	margin:0;
}
.o-video-tag {
	position:absolute;
	bottom:var(--o-space-2);
	left:var(--o-space-2);
	padding:var(--o-space-1) var(--o-space-2);
	background:var(--o-color-primary-gradient);
	font-size:0.75rem;
	font-weight:600;
	color:#fff;
	z-index:4;
}
.o-video-info {
	padding:3px;
}
.o-video-title {
	margin:0;
	font-size:0.7rem;
	font-weight:600;
	line-height:1.4;
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	color:var(--o-color-text-main);
}
.o-video-remarks {
	margin:0;
	font-size:0.65rem;
	color:var(--o-color-text-muted);
	display:-webkit-box;
	-webkit-line-clamp:1;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.o-card-cover {
	position:relative;
	width:100%;
	padding-top:56.25%;
	overflow:hidden;
}
.o-card-cover img {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	transition:transform var(--o-duration-slow) var(--o-ease-out-quart);
}
.o-video-card:hover .o-card-cover img {
	transform:scale(1);
}
.o-card-badge {
	position:absolute;
	top:var(--o-space-3);
	right:var(--o-space-3);
	padding:var(--o-space-1) var(--o-space-3);
	background:var(--o-color-primary-gradient);
	color:#fff;
	font-size:0.75rem;
	font-weight:600;
	border-radius:var(--o-radius-sm);
	box-shadow:var(--o-shadow-glass-sm);
	z-index:2;
}
.o-card-body {
	padding:var(--o-space-4);
}
.o-card-title {
	margin:0;
	font-size:1rem;
	font-weight:600;
	line-height:1.4;
	color:var(--o-color-text-main);
}
.o-card-title a {
	color:var(--o-color-text-main);
	display:-webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient:vertical;
	overflow:hidden;
	text-overflow:ellipsis;
}
.o-card-title a:hover {
	color:var(--o-color-primary);
}
.o-wrapper {
	width:100%;
	max-width:960px;
	margin:0 auto;
	padding-top:var(--o-space-2);
	overflow:visible;
}
@media (max-width:992px) {
	.o-wrapper {
	max-width:100%;
}
}
.o-section {
	padding:0;
	overflow:visible;
}
.o-grid {
	display:grid;
	gap:var(--o-space-5);
	grid-template-columns:repeat(5,1fr);
}
.o-grid-2 {
	grid-template-columns:repeat(2,1fr);
}
.o-grid-3 {
	grid-template-columns:repeat(3,1fr);
}
.o-grid-4 {
	grid-template-columns:repeat(4,1fr);
}
.o-grid-5 {
	grid-template-columns:repeat(5,1fr);
}
@media (max-width:1200px) {
	.o-grid-5 {
	grid-template-columns:repeat(4,1fr);
}
}@media (max-width:992px) {
	.o-grid-5,.o-grid-4 {
	grid-template-columns:repeat(3,1fr);
}
}@media (max-width:768px) {
	.o-grid-5,.o-grid-4,.o-grid-3 {
	grid-template-columns:repeat(2,1fr);
}
}@media (max-width:576px) {
	.o-grid-2,.o-grid-3,.o-grid-4,.o-grid-5 {
	grid-template-columns:1fr;
}
}/* ========== 分类导航 - PC�?========== */
.o-category-nav {
	display:flex;
	align-items:center;
	padding:var(--o-space-1);
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-sm));
}
.o-category-title {
	flex-shrink:0;
	display:flex;
	align-items:center;
	padding:var(--o-space-2) var(--o-space-2);
	border-radius:var(--o-radius-md);
	background:var(--o-color-primary-gradient);
}
.o-category-link {
	font-size:1.1rem;
	font-weight:700;
	color:#fff;
	text-decoration:none;
	display:block;
	white-space:nowrap;
}
.o-category-list {
	flex:1;
	display:flex;
	align-items:center;
	justify-content:space-between;
	list-style:none;
	padding:0;
	margin-left:var(--o-space-1);
}
.o-category-item {
	display:inline-block;
}
.o-category-item a {
	display:inline-block;
	padding:var(--o-space-1) var(--o-space-1);
	font-size:1.0rem;
	color:var(--o-color-text-body);
	background:var(--o-color-bg-alt);
	border-radius:var(--o-radius-sm);
	text-decoration:none;
	transition:all var(--o-duration-fast) var(--o-ease-out-back);
	text-align:center;
	white-space:nowrap;
	letter-spacing:normal;
}
.o-category-item a:hover {
	color:var(--o-color-primary);
	transform:translateY(-2px);
}
.o-category-item.active a {
	background:var(--o-color-primary-gradient);
	color:#fff;
}

/* ========== 分类导航 - H5�?========== */
@media (max-width:992px) {
	.o-category-nav {
		display:flex;
		flex-wrap:nowrap;
		align-items:center;
		padding:0 var(--o-space-1) ;
		background:var(--o-color-bg-card);
	}
	.o-category-title {
		flex-shrink:0;
		display:flex;
		align-items:center;
		justify-content:center;
		padding:var(--o-space-1) var(--o-space-2);
		background:var(--o-color-primary-gradient);
		border-radius:var(--o-radius-sm);
		white-space:nowrap;
	}
	.o-category-link {
		display:block;
		color:#fff;
		font-size:16px;
		font-weight:700;
		line-height:1.2;
		text-align:center;
		white-space:nowrap;
		text-decoration:none;
	}
	.o-category-list {
		flex:1;
		min-width:0;
		display:grid;
		grid-template-columns:repeat(4,1fr);
		list-style:none;
		padding:0;
		margin-left:var(--o-space-1);
		
	}
	.o-category-item {
		display:flex;
		justify-content:center;
		align-items:center;
		min-width:0;
		overflow:hidden;
	}
	.o-category-item a {
		display:flex;
		justify-content:center;
		align-items:center;
		width:100%;
		min-width:0;
		font-size:13px;
		border-radius:var(--o-space-1);
		text-decoration:none;
		transition:all var(--o-duration-fast) var(--o-ease-out-back);
		text-align:center;
		overflow:hidden;
		text-overflow:ellipsis;
	}
	.o-category-item a:hover {
		color:var(--o-color-primary);
		transform:translateY(-2px);
	}
	.o-category-item.active a {
		background:var(--o-color-primary-gradient);
		color:#fff;
	}
}.o-header {
	position:relative;
	top:0;
	z-index:100;
	background:var(--o-color-bg-overlay);
	backdrop-filter:blur(var(--o-blur-xl));
	-webkit-backdrop-filter:blur(var(--o-blur-xl));
	border-bottom:1px solid var(--o-color-border);
	box-shadow:var(--o-shadow-glass-sm);
}
.o-header-inner {
	display:flex;
	align-items:center;
	padding:var(--o-space-2) 0;
	gap:var(--o-space-6);
	margin:0 6px;
	max-width:calc(100% - 12px);
	width:calc(100% - 12px);
}
.o-brand {
	display:flex;
	align-items:center;
	gap:var(--o-space-3);
	font-size:0.8rem;
	font-weight:600;
	background:var(--o-gradient-text);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
	transition:transform var(--o-duration-fast) var(--o-ease-out-back);
}
.o-brand > div {
	display:flex;
	flex-direction:column;
}
.o-brand > div .o-brand-text {
	background:var(--o-gradient-text);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
}
.o-brand-logo {
	width:40px;
	height:40px;
	object-fit:contain;
}
.o-brand-tip {
	font-size:0.75rem;
	color:var(--o-color-text-muted);
	margin-top:2px;
}
.o-brand-tip a {
	color:var(--o-color-text-muted);
	text-decoration:none;
	transition:color var(--o-duration-fast) var(--o-ease-out-expo);
}
.o-header-actions {
	display:flex;
	align-items:center;
	gap:var(--o-space-3);
	margin-left:auto;
}
.o-share-btn {
	display:inline-flex;
	align-items:center;
	gap:var(--o-space-1);
	padding:var(--o-space-2) var(--o-space-4);
	font-size:0.85rem;
	font-weight:600;
	color:#fff;
	background:var(--o-color-primary-gradient);
	border:none;
	border-radius:var(--o-radius-sm);
	cursor:pointer;
	transition:all var(--o-duration-fast) var(--o-ease-out-back);
}

/* ========== 搜索�?- PC�?========== */
.o-search {
	position:relative;
	max-width:400px;
	width:100%;
	margin:var(--o-space-2) 0;
	padding-left:var(--o-space-2);
}
.o-search form {
	display:flex;
	gap:var(--o-space-2);
	align-items:center;
}
.o-search-input {
	flex:1;
	height:34px;
	padding:0 var(--o-space-4);
	font-size:0.9rem;
	color:var(--o-color-text-main);
	background:var(--o-color-bg-alt);
	border:2px solid var(--o-color-border);
	border-radius:var(--o-radius-sm);
	outline:none;
	box-sizing:border-box;
	transition:all var(--o-duration-fast) var(--o-ease-out-expo);
}
.o-search-input::placeholder {
	color:var(--o-color-text-muted);
}
.o-search-input:focus {
	border-color:var(--o-color-primary);
	background:var(--o-color-bg);
	box-shadow:0 0 20px rgba(59,130,246,0.2);
}
.o-search-btn {
	height:34px;
	padding:0 var(--o-space-4);
	background:var(--o-color-primary-gradient);
	border:none;
	border-radius:4px;
	color:#fff;
	font-size:0.9rem;
	cursor:pointer;
	transition:all var(--o-duration-fast) var(--o-ease-out-back);
	white-space:nowrap;
	box-sizing:border-box;
}
.o-search-btn:hover {
	background:var(--o-color-primary-gradient-hover);
	box-shadow:var(--o-shadow-glow-blue);
}
.o-page-header,
.o-card > .o-page-header {
	display:flex;
	align-items:center;
	justify-content:space-between;
	flex-wrap:wrap;
	gap:var(--o-space-3);
	margin-bottom:var(--o-space-1);
	padding:10px 20px;
	background:transparent;
	border:none;
	border-width:0;
	border-style:none;
	border-radius:0;
	box-shadow:none;
	outline:none;
	overflow:hidden;
}
.o-page-header-left,
.o-card > .o-page-header-left {
	display:flex;
	align-items:center;
	gap:6px;
	border:none;
	box-shadow:none;
	outline:none;
}
.o-page-header-icon,
.o-card > .o-page-header-icon {
	font-size:1.2rem;
	background:transparent;
	flex-shrink:0;
	border:none;
	box-shadow:none;
	outline:none;
	line-height:1;
	vertical-align:middle;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.o-page-header-title,
.o-card > .o-page-header-title {
	margin:0;
	font-size:1.1rem;
	font-weight:600;
	color:var(--o-color-text-main);
	line-height:1;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
	padding:0;
}
.o-page-header-title a,
.o-card > .o-page-header-title a {
	color:var(--o-color-text-main);
	transition:color var(--o-duration-fast) var(--o-ease-out-expo);
	border:none;
	box-shadow:none;
	outline:none;
	text-decoration:none;
}
.o-page-header-title a:hover,
.o-card > .o-page-header-title a:hover {
	background:var(--o-gradient-text);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
	border:none;
	box-shadow:none;
	outline:none;
}
.o-page-header-meta {
	font-size:0.9rem;
	color:var(--o-color-text-muted);
}
.o-page-header-right {
	display:flex;
	align-items:center;
	gap:8px;
}
.o-back-home-btn {
	padding:6px 12px;
	background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color:#fff;
	text-decoration:none;
	border-radius:4px;
	font-size:1rem;
	font-weight:500;
	transition:all 0.3s ease;
	box-shadow:0 2px 8px rgba(102,126,234,0.3);
}
.o-back-home-btn:hover {
	background:linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	box-shadow:0 4px 12px rgba(102,126,234,0.4);
	transform:translateY(-1px);
}
.o-back-home-btn:active {
	transform:translateY(0);
}
.o-tags {
	display:flex;
	flex-wrap:wrap;
	gap:var(--o-space-2);
	margin-left:var(--o-space-3);
}
.o-tag {
	padding:3px 8px;
	font-size:0.7rem;
	font-weight:400;
	color:var(--o-color-text-body);
	background:var(--o-color-bg-alt);
	border:1px solid var(--o-color-border);
	border-radius:var(--o-radius-md);
	transition:all var(--o-duration-fast) var(--o-ease-out-back);
	line-height:1.3;
	height:24px;
	display:flex;
	justify-content:center;
	align-items:center;
}
.o-tag:hover {
	background:var(--o-color-primary-gradient);
	color:#fff;
	border-color:var(--o-color-primary);
	box-shadow:var(--o-shadow-glow-blue);
	transform:translateY(-1px);
}
.o-tag.active {
	background:var(--o-color-primary-gradient);
	color:#fff;
	border-color:var(--o-color-primary);
}
.o-player-layout {
	display:block;
	overflow:hidden;
	max-width:100%;
	width:100%;
}
.o-player-main {
	min-height:400px;
	overflow:hidden;
	max-width:calc(100% - 8px);
	width:calc(100% - 8px);
	margin:0 4px;
}
.o-player-main > div:first-child {
	overflow:hidden;
	position:relative;
	max-width:100%;
	width:100%;
}
/* removed - unused player-sidebar */
.o-breadcrumb {
	display:flex;
	align-items:center;
	gap:var(--o-space-2);
	padding:var(--o-space-4);
	margin-bottom:0;
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-md));
	-webkit-backdrop-filter:blur(var(--o-blur-md));
	border:1px solid var(--o-color-border);
	border-radius:0;
	font-size:0.9rem;
	white-space:nowrap;
}
.o-player-main .o-breadcrumb {
	overflow-x:auto;
}
.o-player-main .o-breadcrumb::-webkit-scrollbar {
	height:4px;
}
.o-player-main .o-breadcrumb::-webkit-scrollbar-thumb {
	background:var(--o-color-border);
	border-radius:2px;
}
.o-breadcrumb a {
	color:var(--o-color-text-muted);
}
.o-breadcrumb a:hover {
	color:var(--o-color-primary);
}
.o-separator {
	color:var(--o-color-text-light);
}
.o-current {
	color:var(--o-color-text-main);
	font-weight:700;
	max-width:300px;
	display:inline-block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	vertical-align:middle;
	}

@media (max-width:768px) {
	.o-current {
	max-width:200px;
	display:inline-block;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	vertical-align:middle;
}
}.o-player-wrapper {
	margin-bottom:var(--o-space-6);
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-md));
	-webkit-backdrop-filter:blur(var(--o-blur-md));
	border:1px solid var(--o-color-border);
	border-radius:var(--o-radius-xl);
	box-shadow:var(--o-shadow-glass-md);
	overflow:hidden;
}
#mac-player {
	width:100%;
	height:500px;
	background:#000;
	overflow:hidden;
	position:relative;
	max-width:100%;
}
#mac-player > div,
#mac-player > .MacPlayer {
	width:100%;
	height:100%;
}
#mac-player iframe,
#mac-player video,
#mac-player .MacPlayer table,
#mac-player .MacPlayer #playleft {
	width:100% !important;
	height:100% !important;
	border:none !important;
	margin:0 !important;
	padding:0 !important;
}
.o-play-lines {
	padding:var(--o-space-1) var(--o-space-1);
	background:transparent;
	backdrop-filter:none;
	-webkit-backdrop-filter:none;
	border:none;
	border-radius:0;
	box-shadow:none;
}
.o-play-lines-title {
	
	font-size:1rem;
	font-weight:600;
	color:var(--o-color-text-main);
}
.o-play-line-grid {
	display:grid;
	gap:var(--o-space-3);
	grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
}
.o-play-line-btn {
	padding:6px var(--o-space-2);
	font-size:0.85rem;
	font-weight:500;
	color:var(--o-color-text-body);
	background:transparent;
	border:none;
	border-radius:var(--o-radius-md);
	text-align:center;
	cursor:pointer;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	text-decoration:none;
	line-height:1.2;
	height:auto;
	transition:all var(--o-duration-fast) var(--o-ease-out-back);
}
.o-play-line-btn:hover,.o-play-line-btn:active,.o-play-line-btn:focus {
	background:transparent;
	color:var(--o-color-text-body);
	border:none;
	box-shadow:none;
	transform:none;
	text-decoration:none;
}
.o-play-line-btn.active {
	color:var(--o-color-primary);
	font-weight:600;
	background:transparent;
}
.o-play-line-btn.loading {
	color:var(--o-color-primary);
	background:transparent;
}
.o-play-line-btn.loading::after {
	content:'...';
}
.o-article {
	padding:var(--o-space-8);
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-md));
	-webkit-backdrop-filter:blur(var(--o-blur-md));
	border:1px solid var(--o-color-border);

	box-shadow:var(--o-shadow-glass-md);
}
.o-article-title {
	margin-bottom:var(--o-space-6);
	font-size:2rem;
	font-weight:700;
	background:var(--o-gradient-text);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip:text;
}
.o-article-meta {
	margin-bottom:var(--o-space-8);
	padding-bottom:var(--o-space-6);
	border-bottom:1px solid var(--o-color-border);
}
.o-article-content {
	font-size:1.05rem;
	line-height:1.8;
	color:var(--o-color-text-body);
}
.o-article-content p {
	margin-bottom:var(--o-space-4);
}
.o-article-content img {
	display:block;
	max-width:100%;
	height:auto;
	margin:16px auto;
}
.o-article-list {
	display:flex;
	flex-direction:column;
	gap:var(--o-space-4);
	margin-bottom:var(--o-space-8);
}
.o-article-item {
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:var(--o-space-5);
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-md));
	-webkit-backdrop-filter:blur(var(--o-blur-md));
	border:1px solid var(--o-color-border);
	border-radius:var(--o-radius-lg);
	transition:all var(--o-duration-base) var(--o-ease-out-back);
}

.o-article-item-title {
	flex:1;
	font-size:1rem;
	font-weight:600;
	color:var(--o-color-text-main);
	text-decoration:none;
	transition:color var(--o-duration-fast);
	display:-webkit-box;
	-webkit-line-clamp:1;
	-webkit-box-orient:vertical;
	overflow:hidden;
}
.o-article-item-title:hover {
}
.o-article-item-date {
	padding:var(--o-space-1) var(--o-space-3);
	font-size:0.85rem;
	color:var(--o-color-text-muted);
	white-space:nowrap;
}
.o-pagination {
	display:flex;
	align-items:center;
	justify-content:center;
	flex-wrap:wrap;
	gap:var(--o-space-2);
	margin-top:var(--o-space-8);
	padding:var(--o-space-6);
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-md));
	-webkit-backdrop-filter:blur(var(--o-blur-md));
	border:1px solid var(--o-color-border);
	border-radius:var(--o-radius-xl);
}
.o-page-link {
	padding:var(--o-space-3) var(--o-space-5);
	font-size:0.9rem;
	font-weight:600;
	color:var(--o-color-text-body);
	background:var(--o-color-bg-alt);
	border:2px solid var(--o-color-border);
	border-radius:var(--o-radius-md);
	transition:all var(--o-duration-fast) var(--o-ease-out-back);
}
.o-page-link:hover:not(.disabled):not(.active) {
	background:var(--o-color-primary-gradient);
	color:#fff;
	border-color:var(--o-color-primary);
	transform:scale(1.05);
	box-shadow:var(--o-shadow-glow-blue);
}
.o-page-link.active {
	background:var(--o-color-primary-gradient);
	color:#fff;
	border-color:var(--o-color-primary);
	box-shadow:var(--o-shadow-glow-blue);
}
.o-page-link.disabled {
	opacity:0.5;
	cursor:not-allowed;
}
.o-page-input {
	width:80px;
	padding:var(--o-space-3) var(--o-space-4);
	font-size:0.9rem;
	font-weight:600;
	color:var(--o-color-text-main);
	background:var(--o-color-bg-alt);
	border:2px solid var(--o-color-border);
	border-radius:var(--o-radius-md);
	text-align:center;
	transition:all var(--o-duration-fast) var(--o-ease-out-expo);
}
.o-page-input:focus {
	border-color:var(--o-color-primary);
	outline:none;
	box-shadow:var(--o-shadow-glow-blue);
}
/* removed - unused page-btn */
.o-footer {
	margin-top:var(--o-space-1);
	padding:var(--o-space-1) 0 4px 0;
	background:var(--o-color-bg-card);
	backdrop-filter:blur(var(--o-blur-xl));
	-webkit-backdrop-filter:blur(var(--o-blur-xl));
	border-top:1px solid var(--o-color-border);
}
.o-footer-content {
	text-align:center;
	padding:4px 0;
}
.o-footer-text {
	font-size:0.9rem;
	color:var(--o-color-text-muted);
	line-height:1.5;
	margin:0;
}
.o-footer-text a {
	color:var(--o-color-primary);
}
.o-footer-text a:hover {
	color:var(--o-color-primary-light);
}
.o-backtop {
	position:fixed;
	bottom:var(--o-space-6);
	right:var(--o-space-6);
	width:50px;
	height:50px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:1.5rem;
	font-weight:700;
	color:#fff;
	background:var(--o-color-primary-gradient);
	border:none;
	border-radius:var(--o-radius-sm);
	box-shadow:var(--o-shadow-glass-md);
	cursor:pointer;
	opacity:0;
	visibility:hidden;
	transform:translateY(20px);
	transition:all var(--o-duration-base) var(--o-ease-out-back);
	z-index:99;
}
.o-backtop.o-visible {
	opacity:1;
	visibility:visible;
	transform:translateY(0);
}
.o-backtop:hover {
	background:var(--o-color-primary-gradient-hover);
	transform:translateY(-4px) scale(1.1);
	box-shadow:var(--o-shadow-glow-blue);
}
.o-mb-6 {
	margin-bottom:var(--o-space-3);
}
.o-text-center {
	text-align:center;
}
@keyframes o-float {
	0%,100% {
	transform:translateY(0);
}
50% {
	transform:translateY(-10px);
}
}
@keyframes o-glow {
	0%,100% {
	box-shadow:var(--o-shadow-glow-blue);
}
50% {
	box-shadow:0 0 40px rgba(59,130,246,0.5);
}
}
@media (max-width:576px) {
	.o-brand-text {
	font-size:1.2rem;
}
.o-brand-tip {
	font-size:0.75rem;
	color:var(--o-color-text-muted);
	margin-top:2px;
}
.o-brand-tip a {
	color:var(--o-color-text-muted);
	text-decoration:none;
	transition:color var(--o-duration-fast) var(--o-ease-out-expo);
}
.o-header-inner {
	gap:var(--o-space-3);
}
	}

@media (max-width:768px) {
	.o-simple-nav {
	padding:var(--o-space-3) 0;
}
.o-simple-scroll {
	gap:var(--o-space-2);
	padding:var(--o-space-2) var(--o-space-3);
}
.o-simple-item {
	padding:var(--o-space-2) var(--o-space-4);
	font-size:0.85rem;
}
.o-simple-icon {
	font-size:1rem;
}
.o-simple-text {
	font-size:0.85rem;
}
}
@media (max-width:480px) {
	.o-video-title {
	font-size:0.8rem;
}
.o-video-remarks {
	display:none;
}
	}

@media (max-width:768px) {
	.o-simple-pagination {
	gap:var(--o-space-3);
	padding:var(--o-space-3) 0;
}
.o-page-prev,.o-page-next {
	padding:var(--o-space-2) var(--o-space-4);
	font-size:0.85rem;
	gap:var(--o-space-1);
}
.o-page-info {
	padding:var(--o-space-2) var(--o-space-4);
	font-size:0.85rem;
	background:var(--o-color-bg-alt);
	border-width:1px;
}
}
@media (max-width:480px) {
	.o-simple-pagination {
	flex-direction:column;
	gap:var(--o-space-2);
}
.o-page-prev,.o-page-next {
	width:100%;
	justify-content:center;
	padding:var(--o-space-3) var(--o-space-6);
}
.o-page-info {
	width:100%;
	text-align:center;
}
	}

@media (max-width:768px) {
	.o-article-list {
	gap:var(--o-space-4);
}
.o-article-item {
	flex-direction:column;
	align-items:flex-start;
	gap:var(--o-space-2);
}
.o-article-item-date {
	align-self:flex-end;
}
}
@media (max-width:480px) {
	.o-article-item-title {
	font-size:0.95rem;
}
.o-article-item-date {
	font-size:0.8rem;
}
	}

@media (max-width:768px) {
	.o-simple-category-header {
	padding:var(--o-space-6) var(--o-space-4);
}
.o-simple-category-title {
	font-size:1.5rem;
}
.o-simple-category-desc {
	font-size:0.9rem;
}
}
@media (max-width:480px) {
	.o-simple-category-header {
	padding:var(--o-space-5) var(--o-space-3);
}
.o-simple-category-title {
	font-size:1.25rem;
}
.o-simple-category-desc {
	font-size:0.85rem;
}
	}

@media (max-width:768px) {
	.o-page-header {
	flex-direction:row;
	align-items:center;
	justify-content:space-between;
	gap:4px;
	padding:12px 16px;
	margin-bottom:8px;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
	border-radius:0;
	overflow:hidden;
}
	.o-page-header-left,
	.o-card > .o-page-header-left {
	width:auto;
	display:flex;
	align-items:center;
	gap:4px;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
}
	.o-page-header-icon,
	.o-card > .o-page-header-icon {
	font-size:1.2rem;
	flex-shrink:0;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
	line-height:1;
}
	.o-page-header-title,
	.o-card > .o-page-header-title {
	font-size:0.95rem;
	line-height:1;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
	padding:0;
}
.o-page-header-meta {
	font-size:0.75rem;
	width:auto;
	line-height:1.3;
}
.o-page-header-right {
	display:flex;
	align-items:center;
	gap:6px;
}
.o-back-home-btn {
	padding:4px 10px;
	font-size:0.9rem;
	border-radius:3px;
}
.o-list-count {
	flex-shrink:0;
}
}
@media (max-width:480px) {
	.o-page-header,
	.o-card > .o-page-header {
	padding:10px 12px;
	gap:3px;
	margin-bottom:8px;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
	flex-direction:row;
	justify-content:space-between;
}
	.o-page-header-title,
	.o-card > .o-page-header-title {
	font-size:1.35rem;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
	padding:0;
}
	.o-page-header-icon,
	.o-card > .o-page-header-icon {
	font-size:1.1rem;
	background:transparent;
	border:none;
	box-shadow:none;
	outline:none;
}
.o-page-header-right {
	display:flex;
	align-items:center;
	gap:4px;
}
.o-back-home-btn {
	padding:3px 8px;
	font-size:0.85rem;
	border-radius:2px;
}
	}

@media (max-width:768px) {
	.o-card-cover {
	padding-top:56.25%;
}
.o-card-badge {
	font-size:0.7rem;
	padding:var(--o-space-1) var(--o-space-2);
}
.o-card-title {
	font-size:0.9rem;
}
}@media (max-width:480px) {
	.o-card-badge {
	font-size:0.65rem;
	top:var(--o-space-2);
	right:var(--o-space-2);
}
}@media (max-width:768px) {
	.o-article {
	padding:var(--o-space-6);
}
.o-article-title {
	font-size:1.5rem;
}
.o-article-meta {
	font-size:0.85rem;
	margin-bottom:var(--o-space-5);
	padding-bottom:var(--o-space-4);
}
.o-article-content {
	font-size:1rem;
}
}
@media (max-width:480px) {
	.o-article {
	padding:var(--o-space-2);
}
.o-article-title {
	font-size:1.25rem;
}
	}

@media (max-width:768px) {
	body > .o-wrapper,.o-wrapper.o-section {
	padding-top:5px;
}
#mac-player {
	height:200px;
	max-width:100%;
}
#mac-player > div {
	height:200px;
	max-width:100%;
}
#mac-player iframe,#mac-player video,#mac-player .dplayer,#mac-player .jwplayer,#mac-player .artplayer,#mac-player .mac-player {
	width:100% !important;
	height:100% !important;
	max-width:100% !important;
	max-height:100% !important;
	min-width:100% !important;
	min-height:100% !important;
	box-sizing:border-box;
	overflow:hidden !important;
	position:absolute;
	top:0 !important;
	left:0 !important;
	border:none !important;
	margin:0 !important;
	padding:0 !important;
}
.o-player-main {
	min-height:auto;
	max-height:none;
	max-width:calc(100% - 8px);
	width:calc(100% - 8px);
	overflow:hidden;
	margin:0 4px;
}
.o-player-main > div:first-child {
	overflow:hidden;
	position:relative;
	max-width:100%;
	width:100%;
}
.o-breadcrumb {
	padding:var(--o-space-1) var(--o-space-2);
	font-size:0.75rem;
	overflow-x:auto;
	white-space:nowrap;
}
.o-breadcrumb::-webkit-scrollbar {
	height:4px;
}
.o-breadcrumb::-webkit-scrollbar-thumb {
	background:var(--o-color-border);
	border-radius:2px;
}
.o-play-lines {
	padding:var(--o-space-1) var(--o-space-1);
	padding-bottom:var(--o-space-1);
}
.o-play-lines-title {
	font-size:0.75rem;
	margin-bottom:var(--o-space-1);
}
.o-play-line-grid {
	margin-top:10px;
	gap:var(--o-space-2);
	grid-template-columns:repeat(auto-fill,minmax(75px,1fr));
	justify-items:center;
	justify-content:center;
}
.o-play-line-btn {
	padding:4px var(--o-space-2);
	font-size:0.9rem;
	margin:0;
	width:auto;
	min-width:auto;
	line-height:1.2;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	height:auto;
}
.o-card {
	padding:0;
	overflow:visible;
}
.o-page-header {
	padding:5px 6px;
	margin-bottom:4px;
}
.o-wrapper .o-card.o-card-no-border .o-tags:empty {
	display:none;
	margin-left:0;
}
.o-grid-2 {
	gap:var(--o-space-2);
}
}@media (max-width:480px) {
	.o-play-line-grid {
		margin-top:8px;
		grid-template-columns:repeat(auto-fill,minmax(60px,1fr));
	}
	.o-play-line-btn {
		padding:1px var(--o-space-1);
		font-size:0.85rem;
		line-height:1.2;
		height:auto;
	}
}
@media (max-width:768px) {
	.o-tags {
	gap:var(--o-space-1);
	margin-left:8px;
}
.o-tag {
	padding:2px 6px;
	font-size:0.65rem;
	height:22px;
}
}@media (max-width:480px) {
	.o-tags {
	gap:4px;
	margin-left:4px;
}
.o-tag {
	padding:2px 5px;
	font-size:0.6rem;
	height:20px;
}
}@media (max-width:768px) {
	.o-backtop {
	bottom:var(--o-space-4);
	right:var(--o-space-4);
	width:44px;
	height:44px;
	font-size:1.25rem;
	border-radius:var(--o-radius-lg);
}
}@media (max-width:480px) {
	.o-backtop {
	bottom:var(--o-space-3);
	right:var(--o-space-3);
	width:40px;
	height:40px;
	font-size:1.1rem;
}
}@media (max-width:768px) {
	.o-footer {
	padding:var(--o-space-2) 0;
}
.o-footer-text {
	font-size:0.85rem;
	line-height:1.6;
}
}@media (max-width:480px) {
	.o-footer-text {
	font-size:0.8rem;
}
}@media (max-width:768px) {
	.o-wrapper {
	padding:0;
}
.o-section {
	padding:var(--o-space-6) 0;
}
html {
	font-size:14px;
}
body {
	line-height:1.6;
}
}@media (max-width:480px) {
	.o-wrapper {
	padding:0;
}
.o-section {
	padding:var(--o-space-1) 0;
}
html {
	font-size:13px;
}
}@media (hover:none) and (pointer:coarse) {
	.o-video-card:hover,.o-card:hover,.o-article-item:hover,.o-simple-item:hover {
	transform:none;
}
.o-video-card:active,.o-card:active,.o-article-item:active,.o-simple-item:active {
	transform:scale(1);
	border-color:var(--o-color-border);
}
.o-card:hover .o-card-cover img {
	transform:scale(1);
}
	}

@media (max-width:768px) {
	*{-webkit-tap-highlight-color:transparent;
}
}
.o-simple-nav {
	-webkit-overflow-scrolling:touch;
}
@media (prefers-reduced-motion:reduce) {
	*,*::before,*::after {
	animation-duration:0.01ms !important;
	animation-iteration-count:1 !important;
	transition-duration:0.01ms !important;
}
}@media (max-width:992px) and (orientation:landscape) {
	.o-simple-category-header {
	padding:var(--o-space-4) var(--o-space-6);
}
.o-video-grid {
	grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
}
}@media (min-width:768px) and (max-width:1024px) {
	.o-video-grid {
	grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
	gap:var(--o-space-1);
}
.o-simple-pagination {
	gap:var(--o-space-4);
}
.o-page-prev,.o-page-next {
	padding:var(--o-space-3) var(--o-space-6);
	font-size:0.9rem;
}
}@media (prefers-color-scheme:dark) {
	:root {
	--o-color-bg:#0a0a0a;
	--o-color-bg-alt:#1a1a1a;
	--o-color-bg-card:rgba(26,26,26,0.8);
	--o-color-text-main:#f5f5f5;
	--o-color-text-body:#e5e5e5;
	--o-color-text-muted:#888888;
}
}@media (max-width:768px) {
	.o-simple-nav {
	background:linear-gradient(90deg,transparent,rgba(0,0,0,0.3),transparent);
	}
}
/* ========== 搜索�?- H5�?========== */
@media (max-width:768px) {
	.o-search {
		max-width:280px;
	}
	.o-search-input {
		height:32px;
		padding:0 var(--o-space-3);
		font-size:0.85rem;
		box-sizing:border-box;
	}
	.o-search-btn {
		height:32px;
		padding:0 var(--o-space-3);
		border-radius:var(--o-radius-sm);
		font-size:0.85rem;
		white-space:nowrap;
		box-sizing:border-box;
	}
}
input,textarea,select {
	font-size:16px;
	}

@media (max-width:768px) {
	[title]:hover::after {
	display:none;
}
}
.o-category-nav {
	margin-bottom:var(--o-space-1);
}
.o-category-nav::-webkit-scrollbar {
	display:none;
	}

@media (max-width:768px) {
	.o-category-nav {
	margin-bottom:2px;
}
}@media (max-width:480px) {
	.o-category-nav {
	margin-bottom:5px;
}
}.o-category-nav::-webkit-scrollbar {
	display:none;
}



/* .o-load-more removed - unused */
/* removed */
/* removed */
/* removed */
/* removed */
/* removed */
@keyframes oSpin {
	to {
	transform:rotate(360deg);
}
}
@media (max-width:768px) {
	.o-video-card,.o-card,.o-article-item,.o-simple-item {
	-webkit-tap-highlight-color:transparent;
	tap-highlight-color:transparent;
}
.o-video-card:active,.o-card:active,.o-article-item:active,.o-simple-item:active {
	transform:scale(1);
}
	}

@supports (padding:max(0px)) {
	.o-footer {
	padding-bottom:calc(var(--o-space-2) + env(safe-area-inset-bottom));
}
.o-backtop {
	bottom:calc(var(--o-space-6) + env(safe-area-inset-bottom));
	right:calc(var(--o-space-6) + env(safe-area-inset-right));
}
}@supports (-webkit-touch-callout:none) {
	.o-video-card,.o-card {
	-webkit-touch-callout:none;
}
.o-video-title,.o-card-title {
	-webkit-user-select:none;
	user-select:none;
}
}@media (max-width:768px) {
	input[type="text"],input[type="search"],textarea {
	font-size:16px;
	-webkit-appearance:none;
}
.o-search-input {
	font-size:16px;
}
}@media (max-width:768px) {
	html,body {
	-webkit-overflow-scrolling:touch;
	overscroll-behavior-y:contain;
}
}
@media (max-width:768px) and (prefers-reduced-motion:no-preference) {
	.o-video-card:hover,.o-card:hover {
	will-change:auto;
}
}@media (max-width:768px) and (prefers-color-scheme:dark) {
	:root {
	--o-color-bg:#000000;
	--o-color-bg-alt:#1a1a1a;
	--o-color-bg-card:rgba(26,26,26,0.9);
	--o-color-text-main:#ffffff;
	--o-color-text-body:#e0e0e0;
}
}@media (max-width:768px) and (orientation:portrait) {
	.o-video-grid {
	grid-template-columns:repeat(2,1fr);
	gap:var(--o-space-1);
}
.o-article-list {
	gap:var(--o-space-3);
}
}@media (max-width:768px) and (orientation:landscape) {
	.o-simple-category-header {
		padding:var(--o-space-4) var(--o-space-6);
	}
	.o-video-grid {
		grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
		gap:var(--o-space-3);
	}
}
@media (min-width:768px) and (max-width:1024px) and (-webkit-touch-callout:none) {
	.o-simple-nav {
	padding:var(--o-space-3) 0;
}
.o-simple-item {
	padding:var(--o-space-2) var(--o-space-4);
	font-size:0.9rem;
}
}@media (max-width:768px) {
	.o-video-thumb img,.o-card-cover img {
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	user-select:none;
}
}@media (max-width:480px) {
	html {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	text-rendering:optimizeLegibility;
}
}@media (max-width:768px) {
	.o-video-play,.o-play-line-btn,.o-simple-item,.o-page-prev,.o-page-next {
	min-height:28px;
	min-width:44px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
}@media (max-width:768px) {
	.o-video-thumb img,.o-card-cover img {
	transition:opacity 0.3s ease;
}
.o-video-thumb img.o-loading,.o-card-cover img.o-loading {
	opacity:0.5;
	filter:none;
	-webkit-filter:none;
}
}@media (max-width:768px) {
	.o-page-prev,.o-page-next {
	min-width:44px;
	min-height:44px;
	padding:var(--o-space-3) var(--o-space-5);
}
.o-page-prev:active,.o-page-next:active {
	transform:scale(0.95);
	background:var(--o-color-primary-gradient-hover);
}
	}

@media (max-width:768px) {
	.o-footer-text {
	font-size:0.8rem;
	line-height:1.8;
	padding:0 var(--o-space-2);
}
}@media (max-width:768px) {
	.o-backtop {
	min-width:48px;
	min-height:48px;
	width:48px;
	height:48px;
	border-radius:var(--o-radius-sm);
	right:var(--o-space-3);
	bottom:var(--o-space-16);
}
}@media (max-width:768px) {
	.o-article-item {
	padding:var(--o-space-4) var(--o-space-3);
	border-radius:var(--o-radius-md);
}
.o-article-item-title {
	font-size:0.95rem;
	-webkit-line-clamp:2;
	line-height:1.4;
}
.o-article-item-date {
	font-size:0.75rem;
}
}@media (max-width:768px) {
	.o-simple-nav {
	margin-bottom:var(--o-space-6);
	padding:var(--o-space-2) var(--o-space-3);
}
.o-simple-scroll {
	gap:var(--o-space-2);
}
.o-simple-item {
	padding:var(--o-space-2) var(--o-space-4);
	font-size:0.85rem;
	min-width:max-content;
}
}@media (max-width:768px) {
	.o-video-card,.o-card,.o-article-item {
	contain:layout style paint;
}
.o-video-thumb img,.o-card-cover img {
	will-change:auto;
	}
}
@media (max-width:768px) {
	body {
	font-size:14px;
	line-height:1.6;
	-webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5,h6 {
	line-height:1.3;
}
}
@media (max-width:768px) {
	.o-video-card:hover,.o-card:hover {
	box-shadow:var(--o-shadow-glass-md);
}
}@media (max-width:480px) {
	.o-video-card,.o-card,.o-article-item {
	border-radius:0;
}
.o-video-thumb {
	border-radius:0;
}
.o-simple-category-header {
	text-align:center;
	padding:var(--o-space-8);
	margin-bottom:var(--o-space-6);
}
.o-simple-category-title {
	margin:0 0 var(--o-space-3) 0;
	font-size:1.75rem;
	font-weight:700;
	background:var(--o-gradient-text);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
}
.o-simple-category-desc {
	margin:0;
	font-size:1rem;
	color:var(--o-color-text-muted);
}
.o-simple-category-desc .o-highlight {
	color:var(--o-color-primary);
	font-weight:700;
	}
}
@media (max-width:768px) {
	.o-simple-category-header {
	padding:var(--o-space-2) var(--o-space-4);
	margin-bottom:var(--o-space-3);
	display:flex;
	align-items:center;
	justify-content:center;
	gap:var(--o-space-2);
	flex-wrap:wrap;
}
.o-simple-category-title {
	font-size:1rem;
	margin:0;
	flex-shrink:0;
}
.o-simple-category-desc {
	font-size:0.8rem;
	margin:0;
}
}@media (max-width:480px) {
	.o-simple-category-header {
	padding:var(--o-space-1) var(--o-space-1);
}
.o-simple-category-title {
	font-size:1.25rem;
}
.o-simple-category-desc {
	font-size:0.85rem;
}
}
.o-wrapper-no-padding {
	padding:0 !important;
}
.photo-header-title-content-text-dallor {
	width:100%;
	list-style:none;
	padding:0;
	margin:0;
}
/* === 公共提示�?=== */
.o-page-notice {
	padding-top:100px;
	padding-bottom:100px;
	text-align:center;
}
.o-page-notice .o-card {
	padding:var(--o-space-10);
	max-width:600px;
	margin:0 auto;
}
.o-page-notice .o-card > p {
	font-size:16px;
	color:var(--o-color-text-body);
	line-height:1.8;
}
.o-page-notice .o-card > p.o-msg-intro {
	margin-bottom:var(--o-space-8);
}
/* === 跳转�?=== */
.o-jump-box {
	background:var(--o-color-bg-alt);
	padding:var(--o-space-8);
	border-radius:var(--o-radius-md);
	border:1px solid var(--o-color-border);
	margin-top:var(--o-space-6);
}
.o-jump-box > p {
	margin-bottom:var(--o-space-3);
	font-size:15px;
	color:var(--o-color-text-body);
}
.o-jump-box > p a {
	color:var(--o-color-primary);
	font-weight:700;
}
.o-jump-box .o-wait-text {
	font-size:14px;
	color:var(--o-color-text-muted);
}
.o-jump-box .o-wait-text b {
	font-size:18px;
	color:var(--o-color-text-main);
}
/* === 维护�?=== */
.o-close-box {
	background:var(--o-color-bg-alt);
	padding:var(--o-space-5);
	border-radius:var(--o-radius-md);
	border:1px solid var(--o-color-border);
}
.o-close-box h3 {
	font-size:18px;
	font-weight:700;
	margin-bottom:var(--o-space-3);
	color:var(--o-color-text-main);
}
.o-close-box p {
	font-size:15px;
	line-height:1.8;
	color:var(--o-color-text-body);
}
/* === 更新列表 === */
.o-update-list .o-video-card {
	border:none;
}

/* === 图标导航 === */
.o-icon-nav {
	display:flex;
	justify-content:center;
	align-items:center;
	gap:20px;
}
.o-icon-nav-item {
	display:flex;
	flex-direction:column;
	align-items:center;
	gap:6px;
	text-decoration:none;
	color:var(--o-color-text-body);
	font-size:12px;
	transition:color 0.2s,transform 0.2s;
}
.o-icon-nav-item:hover {
	color:var(--o-color-primary-light);
	transform:translateY(-2px);
}
.o-icon-nav-img {
	width:48px;
	height:48px;
	object-fit:contain;
	border-radius:var(--o-radius-sm);
}
.o-icon-nav-text {
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
	max-width:70px;
	text-align:center;
}

/* === 分享操作 === */
.o-share-bar {
	display:flex;
	justify-content:center;
	align-items:center;
	padding:15px 20px;
	border-radius:8px;
}
.o-share-bar-btn {
	display:inline-block;
	padding:8px 20px;
	background:var(--o-color-primary-gradient);
	color:white;
	border-radius:12px;
	font-size:14px;
	font-weight:500;
	text-decoration:none;
	line-height:1.5;
	border:none;
	height:42px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.o-share-bar-btn:first-child {
	border-top-right-radius:0;
	border-bottom-right-radius:0;
}
.o-share-bar-btn:last-child {
	border-top-left-radius:0;
	border-bottom-left-radius:0;
}
.o-share-bar-url {
	text-align:center;
	font-size:14px;
	color:#666;
	margin:0;
	background:#fff;
	padding:8px 100px;
	line-height:1.5;
	height:42px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}

/* === 分享弹窗 === */
.o-share-modal {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:9999;
}
.o-share-modal.show,
.o-share-modal[style*="flex"] {
	display:flex;
	align-items:center;
	justify-content:center;
}
.o-share-modal-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.85);
}
.o-share-modal-content {
	position:fixed;
	top:env(safe-area-inset-top, 0);
	left:env(safe-area-inset-left, 0);
	right:env(safe-area-inset-right, 0);
	bottom:env(safe-area-inset-bottom, 0);
	display:flex;
	align-items:center;
	justify-content:center;
}
.o-share-modal-img {
	max-width:calc(100% - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
	max-height:calc(100% - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
	width:auto;
	height:auto;
	display:block;
	cursor:pointer;
	object-fit:contain;
}

/* === 收藏提示弹窗 === */
.o-collect-modal {
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:9998;
}
.o-collect-modal.show {
	display:block;
}
.o-collect-modal-overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.7);
}
.o-collect-modal-content {
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
	padding:30px;
	border-radius:12px;
	text-align:center;
	color:#fff;
	max-width:400px;
	width:90%;
	box-shadow:0 10px 40px rgba(0,0,0,0.3);
}
.o-collect-modal-close {
	position:absolute;
	top:10px;
	right:15px;
	font-size:28px;
	cursor:pointer;
	color:rgba(255,255,255,0.8);
	line-height:1;
}
.o-collect-modal-close:hover {
	color:#fff;
}
.o-collect-modal-text h3 {
	margin:0 0 20px 0;
	font-size:22px;
	font-weight:600;
}
.o-collect-modal-text p {
	margin:10px 0;
	font-size:15px;
	line-height:1.6;
	opacity:0.95;
}
.o-collect-modal-btn {
	background:#fff;
	color:#667eea;
	border:none;
	padding:12px 30px;
	border-radius:25px;
	font-size:16px;
	font-weight:600;
	cursor:pointer;
	margin:15px 0;
	transition:all 0.3s ease;
	box-shadow:0 4px 15px rgba(0,0,0,0.2);
}
.o-collect-modal-btn:hover {
	transform:translateY(-2px);
	box-shadow:0 6px 20px rgba(0,0,0,0.3);
}
.o-collect-modal-btn:active {
	transform:translateY(0);
}
.o-collect-hint {
	font-size:13px;
	opacity:0.8;
	margin-top:5px;
}
.o-collect-modal-close-btn {
	background:transparent;
	border:2px solid rgba(255,255,255,0.5);
	color:#fff;
	padding:10px 25px;
	border-radius:20px;
	font-size:14px;
	font-weight:500;
	cursor:pointer;
	margin-top:10px;
	transition:all 0.3s ease;
}
.o-collect-modal-close-btn:hover {
	background:rgba(255,255,255,0.2);
	border-color:#fff;
}
.o-collect-highlight {
	color:#ff4757;
	font-weight:600;
}
/* removed */
.o-collect-domain {
	background:rgba(255,255,255,0.15);
	padding:8px 12px;
	border-radius:6px;
	margin:8px 0;
	font-size:13px;
	white-space:nowrap;
	overflow:hidden;
}
.o-collect-domain-label {
	font-weight:500;
	opacity:0.9;
}
/* removed - unused domain-value */

/* === 帮助页面 === */
.o-help-content {
	max-width:800px;
	margin:0 auto;
	padding:0 20px;
}
.o-help-section {
	background:var(--o-color-bg-card);
	padding:25px;
	border-radius:12px;
	margin-bottom:20px;
	border:1px solid var(--o-color-border);
	box-shadow:0 2px 10px rgba(0,0,0,0.1);
}
.o-help-title {
	font-size:20px;
	font-weight:600;
	color:var(--o-color-text-primary);
	margin-bottom:15px;
	display:flex;
	align-items:center;
	gap:8px;
}
/* removed */
.o-help-content p {
	margin:10px 0;
	line-height:1.8;
	color:var(--o-color-text-body);
	font-size:15px;
}
.o-help-content strong {
	color:var(--o-color-primary);
	font-weight:600;
}
.o-help-tip {
	background:rgba(255,215,42,0.1);
	padding:12px;
	border-radius:8px;
	border-left:3px solid #ffd32a;
	margin-top:10px;
}
.o-feedback-form {
	display:flex;
	flex-direction:column;
	gap:15px;
}
.o-feedback-input {
	width:100%;
	padding:12px 15px;
	border:1px solid var(--o-color-border);
	border-radius:8px;
	background:var(--o-color-bg-card);
	color:var(--o-color-text-body);
	font-size:14px;
	line-height:1.6;
	resize:vertical;
	transition:all 0.3s ease;
}
.o-feedback-input:focus {
	outline:none;
	border-color:var(--o-color-primary);
	box-shadow:0 0 0 3px rgba(96,165,250,0.1);
}
.o-feedback-input::placeholder {
	color:var(--o-color-text-muted);
}
.o-feedback-actions {
	display:flex;
	justify-content:flex-end;
}
.o-feedback-submit {
	padding:10px 24px;
	background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color:#fff;
	border:none;
	border-radius:6px;
	font-size:14px;
	font-weight:500;
	cursor:pointer;
	transition:all 0.3s ease;
	box-shadow:0 2px 8px rgba(102,126,234,0.3);
}
.o-feedback-submit:hover {
	background:linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	box-shadow:0 4px 12px rgba(102,126,234,0.4);
	transform:translateY(-1px);
}
.o-feedback-submit:active {
	transform:translateY(0);
}
.o-feedback-toast {
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%) scale(0.8);
	background:rgba(0,0,0,0.85);
	color:#fff;
	padding:15px 25px;
	border-radius:8px;
	font-size:14px;
	z-index:9999;
	opacity:0;
	pointer-events:none;
	transition:all 0.3s ease;
}
.o-feedback-toast.show {
	opacity:1;
	transform:translate(-50%, -50%) scale(1);
}
.o-feedback-list {
	display:flex;
	flex-direction:column;
	gap:15px;
}
.o-feedback-loading {
	text-align:center;
	padding:40px;
	color:var(--o-color-text-muted);
}
.o-feedback-empty {
	text-align:center;
	padding:40px;
	color:var(--o-color-text-muted);
	font-size:14px;
}
.o-feedback-item {
	background:var(--o-color-bg-alt);
	padding:15px;
	border-radius:8px;
}
.o-feedback-item-header {
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom:10px;
	padding-bottom:10px;
}
.o-feedback-item-user {
	font-weight:600;
	color:var(--o-color-primary);
	font-size:14px;
}
.o-feedback-item-time {
	color:var(--o-color-text-muted);
	font-size:12px;
}
.o-feedback-item-content {
	color:var(--o-color-text-body);
	font-size:14px;
	line-height:1.6;
}
.o-feedback-row {
	display:flex;
	align-items:center;
	gap:8px;
	flex-wrap:nowrap;
}
#o-copy-toast {
	display:none;
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	background:rgba(0,0,0,0.8);
	color:#fff;
	padding:12px 24px;
	border-radius:8px;
	z-index:9999;
}

#o-share-toast {
	position:fixed;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	background:rgba(0,0,0,0.8);
	color:#fff;
	padding:12px 24px;
	border-radius:8px;
	z-index:9999;
	font-size:14px;
}

/* === 帮助页面 - 紧凑布局 === */
.o-help-content {
	padding:10px;
}
.o-help-section {
	margin-bottom:12px;
	padding:12px;
}
.o-help-section-title {
	margin:0 0 10px 0;
	font-size:14px;
	color:var(--o-color-text-main);
}
.o-help-section-title-lg {
	font-size:15px;
}
.o-help-text {
	font-size:13px;
	line-height:1.7;
	color:var(--o-color-text-body);
}
.o-help-text p {
	margin:0 0 8px 0;
}
.o-help-text p:last-child {
	margin-bottom:0;
}
.o-help-text p.small {
	margin:0 0 5px 0;
}
.o-help-note {
	color:var(--o-color-text-muted);
	font-size:11px;
	margin-top:6px;
}
.o-help-tip {
	margin-bottom:12px;
}
.o-help-tip-text {
	font-size:12px;
	line-height:1.6;
	color:var(--o-color-text-body);
}
.o-help-tip-text strong {
	color:#ffd32a;
}
.o-feedback-textarea {
	width:100%;
	padding:8px;
	background:var(--o-color-bg-alt);
	border:1px solid var(--o-color-border);
	border-radius:var(--o-radius-sm);
	resize:none;
	font-size:13px;
	color:var(--o-color-text-body);
}
.o-feedback-captcha {
	width:70px;
	padding:6px 8px;
	background:var(--o-color-bg-alt);
	border:1px solid var(--o-color-border);
	border-radius:var(--o-radius-sm);
	font-size:13px;
	color:var(--o-color-text-body);
	flex-shrink:0;
}
.o-feedback-captcha-img {
	cursor:pointer;
	height:32px;
	border-radius:var(--o-radius-sm);
	flex-shrink:0;
}
.o-feedback-submit-btn {
	margin-left:auto;
	padding:6px 14px;
	font-size:13px;
	white-space:nowrap;
	background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color:#fff;
	border:none;
	border-radius:var(--o-radius-sm);
	cursor:pointer;
}
.o-feedback-item-compact {
	padding:8px 0;
}
.o-feedback-item-header-compact {
	display:flex;
	justify-content:space-between;
	margin-bottom:4px;
	padding-bottom:8px;
}
.o-feedback-item-user-compact {
	color:var(--o-color-primary);
	font-weight:600;
	font-size:13px;
}
.o-feedback-item-time-compact {
	color:var(--o-color-text-muted);
	font-size:11px;
}
.o-feedback-item-content-compact {
	color:var(--o-color-text-body);
	font-size:13px;
	line-height:1.5;
}
.o-feedback-reply {
	margin-top:6px;
	padding:6px 8px;
	background:var(--o-color-bg-alt);
	font-size:12px;
}
.o-feedback-reply-label {
	color:var(--o-color-success);
	font-weight:bold;
}
.o-feedback-reply-content {
	color:var(--o-color-text-body);
}
.o-back-home-btn-help {
	padding:6px 12px;
	background:var(--o-color-bg-alt);
	color:var(--o-color-text-body);
	border-radius:var(--o-radius-sm);
	font-size:13px;
}
.o-email-link {
	color:var(--o-color-primary);
}
.o-page-header-help {
	margin-bottom:10px;
}
.o-help-text strong {
	color:var(--o-color-text-main);
}
.o-help-text strong.primary {
	color:var(--o-color-primary);
}

/* === 响应�?=== */
@media (max-width:768px) {
	.o-help-section {
		padding:20px;
	}
	.o-help-content {
		font-size:14px;
		padding:0 15px;
	}
	.o-feedback-input {
		padding:10px 12px;
		font-size:13px;
	}
	.o-feedback-submit {
		padding:8px 20px;
		font-size:13px;
	}
	.o-feedback-toast {
		font-size:13px;
		padding:12px 20px;
	}
	.o-feedback-item {
		padding:12px;
	}
	.o-feedback-item-user {
		font-size:13px;
	}
	.o-feedback-item-time {
		font-size:11px;
	}
	.o-feedback-item-content {
		font-size:13px;
	}
	.o-icon-nav {
		gap:15px;
	}
.o-share-bar {
	padding:12px 15px;
}
.o-share-bar-btn {
	padding:6px 20px;
	font-size:13px;
	height:42px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.o-share-bar-url {
	font-size:13px;
	padding:6px 10px;
	height:42px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
}
@media (max-width:480px) {
	.o-help-section {
		padding:15px;
	}
	.o-help-content {
		font-size:13px;
		padding:0 12px;
	}
	.o-feedback-input {
		padding:8px 10px;
		font-size:12px;
	}
	.o-feedback-submit {
		padding:6px 16px;
		font-size:12px;
	}
	.o-feedback-toast {
		font-size:12px;
		padding:10px 18px;
	}
	.o-feedback-item {
		padding:10px;
	}
	.o-feedback-item-header {
		flex-direction:column;
		align-items:flex-start;
		gap:5px;
	}
	.o-feedback-item-user {
		font-size:12px;
	}
	.o-feedback-item-time {
		font-size:11px;
	}
	.o-feedback-item-content {
		font-size:12px;
	}
	.o-icon-nav {
		gap:10px;
	}
.o-share-bar {
	padding:4px;
}
.o-share-bar-btn {
	padding:4px 6px;
	font-size:12px;
	height:32px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
.o-share-bar-url {
	font-size:12px;
	padding:4px 8px;
	height:32px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
}
}

/* ====== 收藏域名提示栏（独立样式�?===== */
.o-favorite-bar {
	text-align:center;
	margin:10px auto 0;
	padding:0;
}
.o-favorite-bar-link {
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:10px 24px;
	background:linear-gradient(135deg, rgba(59,130,246,0.3) 0%, rgba(59,130,246,0.2) 50%, rgba(59,130,246,0.3) 100%);
	border:1px solid rgba(96,165,250,0.5);
	border-radius:var(--o-radius-lg);
	color:#fff;
	text-decoration:none;
	box-shadow:0 0 20px rgba(59,130,246,0.25), inset 0 1px 0 rgba(255,255,255,0.1), var(--o-shadow-glass-md);
}
.o-favorite-bar-icon {
	font-size:1.15rem;
	flex-shrink:0;
}
.o-favorite-bar-text {
	font-size:1rem;
	font-weight:600;
	letter-spacing:0.3px;
	color:#fff;
	white-space:nowrap;
}
.o-favorite-bar-action {
	font-size:1.08rem;
	font-weight:500;
	color:var(--o-color-accent-light);
	white-space:nowrap;
	padding-left:6px;
	border-left:1px solid rgba(249,115,22,0.35);
}
.o-favorite-bar-url {
	font-size:1.28rem;
	font-weight:700;
	color:#facc15;
	white-space:nowrap;
	letter-spacing:0.3px;
	font-style:normal;
}

/* 移动端收藏栏 */
@media (max-width:768px) {
	.o-favorite-bar {
		margin:8px auto 0;
		padding:0 4px;
	}
	.o-favorite-bar-link {
		padding:9px 16px;
		gap:6px;
		border-radius:var(--o-radius-md);
		flex-wrap:wrap;
		justify-content:center;
		max-width:100%;
	}
	.o-favorite-bar-icon { font-size:1rem; }
	.o-favorite-bar-text { font-size:0.88rem; }
	.o-favorite-bar-action {
		font-size:1.08rem;
		white-space:nowrap;
		padding-left:6px;
		border-left:1px solid rgba(249,115,22,0.3);
	}
	.o-favorite-bar-url {
		font-size:1.02rem;
		white-space:nowrap;
	}
}