:root {
	/* 白色背景主题 */
	--light-bg-primary: #f8fafc;
	--light-bg-secondary: #ffffff;
	--light-bg-tertiary: #f1f5f9;
	--light-border-color: #e2e8f0;
	--light-text-primary: #1e293b;
	--light-text-secondary: #475569;
	--light-text-tertiary: #64748b;
	--light-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);

	/* 彩色背景主题 */
	--colorful-bg-primary: #0f172a;
	--colorful-bg-secondary: #1e293b;
	--colorful-bg-tertiary: #334155;
	--colorful-border-color: #475569;
	--colorful-text-primary: #f8fafc;
	--colorful-text-secondary: #cbd5e1;
	--colorful-text-tertiary: #94a3b8;

	/* Linear App黑色主题 */
	--linear-bg-primary: #0d0d0d;
	--linear-bg-secondary: #151515;
	--linear-bg-tertiary: #1f1f1f;
	--linear-border-color: #333333;
	--linear-text-primary: #ffffff;
	--linear-text-secondary: #a0a0a0;
	--linear-text-tertiary: #666666;

	/* 通用颜色 */
	--primary-color: #6c63ff;
	--primary-light: rgba(108, 99, 255, 0.3);
	--primary-dark: #5a52d9;

	--accent-color: #ff6b8b;
	--accent-light: rgba(255, 107, 139, 0.3);
	--accent-dark: #e55a7a;

	--success-color: #10b981;
	--warning-color: #f59e0b;
	--info-color: #3b82f6;

	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 16px;

	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	line-height: 1.5;
	min-height: 100vh;
	min-width: 1280px;
	margin: 0;
	padding: 0;
	background:
		radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 20%),
		radial-gradient(circle at 90% 80%, rgba(255, 107, 139, 0.05) 0%, transparent 20%),
		linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
	color: var(--light-text-primary);
}

/* ============ 左右布局 ============ */
.app-layout {
	display: flex;
	min-height: 100vh;
}

/* 左侧预览区 */
.preview-panel {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.preview-header {
	text-align: center;
	padding: 20px 20px 10px;
}

.preview-header h1 {
	font-size: 1.8rem;
	margin-bottom: 6px;
}

/* ============ Tab 选项卡 ============ */
.tab-bar {
	display: flex;
	gap: 0;
	padding: 0 20px;
	border-bottom: 2px solid var(--light-border-color);
	background: var(--light-bg-secondary);
}

.tab-btn {
	flex: 1;
	padding: 12px 16px;
	border: none;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	color: var(--light-text-tertiary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: var(--transition);
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	font-family: inherit;
}

.tab-btn:hover {
	color: var(--primary-color);
	background: rgba(108, 99, 255, 0.04);
}

.tab-btn.active {
	color: var(--primary-color);
	border-bottom-color: var(--primary-color);
}

.tab-content {
	display: none;
	flex-direction: column;
	flex: 1;
	min-height: 0;
}

.tab-content.active {
	display: flex;
}

.tab-action-bar {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	border-bottom: 1px solid var(--light-border-color);
	background: var(--light-bg-tertiary);
}

.button-sm {
	padding: 8px 16px;
	font-size: 13px;
}

/* ============ Tab 内表单样式 ============ */
.tab-form {
	padding: 16px 20px;
	border-bottom: 1px solid var(--light-border-color);
	background: var(--light-bg-secondary);
	max-height: 360px;
	overflow-y: auto;
}

.tab-form .form-group {
	margin-bottom: 12px;
}

.tab-form .form-row {
	display: flex;
	gap: 12px;
}

.tab-form .form-row .form-group {
	flex: 1;
	min-width: 0;
}

.tab-form .form-label {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	color: var(--light-text-secondary);
	margin-bottom: 5px;
}

.tab-form .form-label i {
	font-size: 13px;
	color: var(--primary-color);
	opacity: 0.7;
}

.tab-form .form-control {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid var(--light-border-color);
	border-radius: var(--radius-sm);
	font-size: 13px;
	font-family: inherit;
	color: var(--light-text-primary);
	background: var(--light-bg-primary);
	transition: var(--transition);
	line-height: 1.5;
	resize: vertical;
}

.tab-form .form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px var(--primary-light);
}

.tab-form .form-control::placeholder {
	color: var(--light-text-tertiary);
	opacity: 0.6;
}

.tab-form .form-hint {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	color: var(--light-text-tertiary);
}

/* 表单卡片（内容页的卡片分组） */
.form-card {
	background: var(--light-bg-tertiary);
	border: 1px solid var(--light-border-color);
	border-radius: var(--radius-sm);
	padding: 12px;
	margin-bottom: 12px;
}

.form-card-header {
	font-size: 13px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding-bottom: 8px;
	border-bottom: 1px dashed var(--light-border-color);
}

.form-card .form-group {
	margin-bottom: 8px;
}

.form-card .form-group:last-child {
	margin-bottom: 0;
}

.preview-scroll {
	flex: 1;
	overflow-y: auto;
	padding: 0 20px 20px;
}

/* 右侧工具栏 */
.toolbar-panel {
	width: 340px;
	min-width: 340px;
	background: var(--light-bg-secondary);
	border-left: 1px solid var(--light-border-color);
	display: flex;
	flex-direction: column;
	height: 100vh;
	position: sticky;
	top: 0;
	overflow-y: auto;
}

.toolbar-header {
	padding: 20px 20px 12px;
	border-bottom: 1px solid var(--light-border-color);
}

.toolbar-header h2 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--light-text-primary);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.status-bar {
	margin: 12px 20px;
	padding: 8px 14px;
	background: #1e293b;
	color: #f1f5f9;
	border-radius: var(--radius-sm);
	font-size: 13px;
	line-height: 1.5;
}

.tool-section {
	padding: 16px 20px;
	border-bottom: 1px solid var(--light-border-color);
}

.tool-section-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--light-text-primary);
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.tool-section-desc {
	font-size: 12px;
	color: var(--light-text-tertiary);
	margin: 0 0 10px;
}

/* 上传区域 */
.upload-area {
	border: 2px dashed var(--light-border-color);
	border-radius: var(--radius);
	padding: 24px 16px;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	background: var(--light-bg-tertiary);
}

.upload-area:hover {
	border-color: var(--primary-color);
	background: rgba(108, 99, 255, 0.04);
}

.upload-area.drag-over {
	border-color: var(--primary-color);
	background: rgba(108, 99, 255, 0.08);
}

.upload-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	color: var(--light-text-tertiary);
}

.upload-placeholder i {
	font-size: 28px;
	color: var(--primary-color);
	opacity: 0.6;
}

.upload-placeholder span {
	font-size: 14px;
	font-weight: 500;
}

.upload-placeholder small {
	font-size: 12px;
	opacity: 0.6;
}

.upload-preview {
	display: flex;
	align-items: center;
	gap: 10px;
}

.upload-preview img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	border: 1px solid var(--light-border-color);
}

.upload-preview-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex: 1;
	min-width: 0;
}

.upload-preview-info span {
	font-size: 13px;
	color: var(--light-text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn-remove-cover {
	background: none;
	border: none;
	color: var(--accent-color);
	cursor: pointer;
	font-size: 16px;
	padding: 2px;
	transition: var(--transition);
	align-self: flex-start;
}

.btn-remove-cover:hover {
	color: var(--accent-dark);
	transform: scale(1.2);
}

/* 工具栏按钮组 */
.tool-btn-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.button-primary {
	width: 100%;
}

.button-secondary {
	width: 100%;
}

/* ============ 响应式 ============ */
/* PC-only 页面，不做移动端适配，手机打开仍显示 PC 布局 */

/* ============ 通用组件样式 ============ */
h1 {
	font-size: 1.8rem;
	margin-bottom: 6px;
	font-weight: 800;
	background: linear-gradient(to right, #6c63ff, #ff6b8b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -0.5px;
}

.subtitle {
	font-size: 0.95rem;
	color: var(--light-text-secondary);
	margin: 0;
}

.form-control {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--light-border-color);
	border-radius: var(--radius-sm);
	font-size: 14px;
	background-color: var(--light-bg-secondary);
	color: var(--light-text-primary);
	transition: var(--transition);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.button {
	padding: 10px 18px;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.button:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.button:active {
	transform: translateY(0);
}

.button-primary {
	background: var(--primary-color);
}

.button-secondary {
	background: transparent;
	color: var(--light-text-secondary);
	border: 1px solid var(--light-border-color);
}

.button-secondary:hover {
	background: var(--light-bg-tertiary);
	color: var(--light-text-primary);
	border-color: var(--light-text-tertiary);
}

.preview-container {
	max-width: 800px;
	margin: 0 auto;
}

.preview-panel {
	width: 540px;
	margin: 0 auto;
}

/* 封面图样式 */
.cover-section,
.page-section {
	width: 540px;
	height: 720px;
	border-radius: 0px;
	overflow: hidden;
	position: relative;
	margin: 20px auto;
	/*
	transform: scale(0.9);
	transform-origin: top center;
	transition: var(--transition);
	*/
	background-color: var(--light-bg-secondary);
	background-repeat: no-repeat;
	background-position: center;
	/*
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border: 0px solid rgba(255, 255, 255, 0.5);
	*/
}

.cover-section .content,
.page-section .content {
	position: relative;
	z-index: 2;
	height: 100%;
	width: 100%;
	padding: 30px;
}

.cover-btn {
	padding: 0px;
	margin-bottom: 30px;
	text-align: right;
	position: relative;
}

.cover-btn a {
	display: inline-block;
	line-height: 2.5;
	padding: 0 15px;
	border-radius: 30px;
	font-size: 12px;
	border: 1px solid var(--primary-color);
	background-color: var(--primary-color);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.cover-title {
	height: 230px;
	overflow: hidden;
}

.cover-title-0 {
	font-weight: 400;
	color: var(--light-text-primary);
	font-size: 24px;
	margin-bottom: 10px;
	display: none !important;
	text-align: right;
}

.cover-title-1 {
	color: var(--light-text-primary);
	text-align: right;
	font-weight: 900;
	font-size: 52px;
	margin-top: 0px;
	line-height: 1.35;
}

.cover-title-1 u {
	text-decoration: none;
	color: var(--primary-color);
	position: relative;
}

.cover-title-1 u::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 3px;
	width: 100%;
	height: 8px;
	background-color: var(--primary-light);
	z-index: -1;
	border-radius: 4px;
}

.cover-subtitle {
	color: var(--primary-color);
	font-family: unset;
	font-weight: 600;
	font-size: 18px;
	border-left: 0px solid var(--primary-color);
	padding-left: 10px;
	position: relative;
	z-index: 11;
	text-align: right;
}

.cover-photo-div {
	position: absolute;
	z-index: 2;
	width: 480px;
	height: 300px;
	bottom: 50px;
}

.cover-photo-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: var(--radius);
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--primary-color);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cover-photo-container p {
	font-size: 80px;
	line-height: 300px;
	font-weight: 900;
	color: #fff;
	text-align: center;
}

/* 新增：背景图片容器和伪元素 */
.cover-photo-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--bg-image, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.5;
	z-index: 0;
	border-radius: var(--radius);
}

.cover-photo-container>* {
	position: relative;
	z-index: 4;
}

.cover-photo-source {
	position: absolute;
	z-index: 23;
	width: 480px;
	left: 30px;
	right: 30px;
	bottom: 25px;
	font-size: 14px;
	opacity: 0.7;
	text-align: left;
	font-weight: 400;
}

/*svg*/
.cover-tip {
	position: absolute;
	z-index: 10;
	left: 0px;
	bottom: -30px;
	width: 180px;
	height: 180px;
	transform: rotate(10deg);
	display: none;
}

.cover-tip svg {
	width: 100%;
	height: 100%;
}

.cover-tip svg .sticker-path {
	fill: var(--primary-color);
	;
	/* 改变填充颜色 */
	stroke: #fff;
	/* 改变描边颜色 */
	stroke-width: 0px;
	/* 描边宽度 */
}

.cover-tip .tip-svg .shadow-path {
	fill: rgba(0, 0, 0, 0.75);
	/* 改变阴影颜色 */
}

.cover-line {
	position: absolute;
	left: -80px;
	bottom: -120px;
	width: 700px;
	height: 700px;
	z-index: 9;
	transform: rotate(0deg);
	display: none;
}

.cover-line svg {
	width: 100%;
	height: 100%;
}

.cover-line svg .sticker-path2 {
	stroke: #000;
	stroke: var(--primary-dark);
	stroke-width: .75px;
}

.cover-svg-mask {
	position: absolute;
	left: -80px;
	bottom: -130px;
	width: 700px !important;
	height: 700px !important;
	z-index: 8;
	/*
	transform: rotate(1deg);
	transform: scaleX(-1);
	*/
	display: none;
}

.cover-svg-mask svg {
	width: 100%;
	height: 100%;
}

.cover-svg-mask svg .sticker-path3 {
	stroke: green;
	stroke-width: 0px;
}

/*svg fengmian*/
.cover-svg .cover-photo-div {
	width: 100%;
	left: 0;
	height: 350px;
}

.cover-svg .cover-line,
.cover-svg .cover-svg-mask {
	display: block;
}

.cover-svg .cover-subtitle {
	border: none;
	margin-top: -40px;
	color: var(--primary-color);
	font-weight: normal;
	font-style: italic;
	font-size: 14px;
}

/*
.cover-svg .cover-subtitle {
	position: absolute;
	left: 40px;
	bottom: 20px;
	font-size: 10px !important;
	width: 100px;
	height: 80px;
	border: none;
	color: #fff;
	font-weight: 400;
	line-height: 1.5;
}
*/

/**/
.page-main {
	padding: 0;
	margin: 0;
}

.page-item {
	height: 180px;
	margin-bottom: 20px;
	clear: both;
}

.item-left {
	width: 25%;
	padding-right: 20px;
	float: left;
}

.item-leftimg {
	margin-top: 7px;
	height: 100px;
	background-color: var(--primary-color);
}

.item-leftimg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	opacity: 0.9;
	box-shadow: var(--light-shadow);
	border: 1px solid var(--light-border-color);
}

/* 图标样式 - 现代化设计 */
.item-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	line-height: 80px;
	text-align: center;
	color: var(--primary-color);
	background: var(--light-bg-tertiary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.item-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
	z-index: 0;
}

.item-icon i {
	font-size: 30px;
	position: relative;
	z-index: 1;
}

.item-right {
	width: 75%;
	float: right;
	height: 180px;
	border-bottom: 0px solid var(--light-border-color);
}

.page-item:last-child .item-right {
	border: none !important;
}

.item-title {
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
	letter-spacing: -0.3px;
}

.item-title span {
	margin-right: 5px;
	margin-bottom: 10px;
}

.item-text {
	font-size: 16px;
	color: var(--light-text-primary);
	line-height: 30px;
	max-height: 90px;
	overflow: hidden;
	margin-bottom: 5px;
}

.item-comment {
	color: var(--light-text-tertiary);
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	font-weight: 600;
	text-align: right;
}

.item-comment i {
	margin-right: 5px;
}

.item-meta {
	padding: 10px 0 !important;
}

.item-meta,
.item-meta li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.item-meta li {
	display: inline-block;
	width: 48%;
	height: 25px;
	line-height: 25px;
	overflow: hidden;
}

.item-meta li strong {
	font-size: 12px;
}

.page-section-taobao .page-item {
	height: 280px;
}

/* 白色背景主题 */
.section--style-1 {
	--primary-color: #6c63ff;
	--primary-light: rgba(108, 99, 255, 0.3);
	--primary-dark: #5a52d9;
	background-color: var(--light-bg-secondary);
	color: var(--light-text-primary);
}

.section--style-2 {
	--primary-color: #ff9f1c;
	--primary-light: rgba(255, 159, 28, 0.3);
	--primary-dark: #e08714;
	background-color: var(--light-bg-secondary);
	color: var(--light-text-primary);
}

.section--style-2 .cover-btn a {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.section--style-3 {
	--primary-color: #1d9321;
	--primary-light: rgba(31, 147, 34, 0.3);
	--primary-dark: #157518;
	background-color: var(--light-bg-secondary);
	color: var(--light-text-primary);
}

.section--style-3 .cover-btn a {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.page-section.section--style-3 .item-icon {
	background: var(--primary-color);
	color: rgba(255, 255, 255, 0.8);
}

/* 彩色背景主题 */
.section--style-4 {
	--primary-color: #ff6b8b;
	--primary-light: rgba(255, 107, 139, 0.3);
	--primary-dark: #e55a7a;
	background: linear-gradient(135deg, #6c63ff 0%, #ff6b8b 100%);
	color: var(--colorful-text-primary);
}

.section--style-4 .cover-btn a {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: white;
}

.section--style-4 .cover-title-1 {
	color: white;
}

.section--style-4 .cover-title-1 u {
	color: #ffe6a2;
}

.section--style-4 .cover-title-1 u::after {
	background-color: rgba(255, 230, 162, 0.3);
}

.section--style-4 .cover-subtitle {
	color: rgba(255, 255, 255, 0.9);
	border-left: 5px solid rgba(255, 255, 255, 0.7);
}

.section--style-4 .cover-photo-container {
	background-color: rgba(255, 255, 255, 0.2);
}

.section--style-4 .cover-photo-source {
	color: rgba(255, 255, 255, 0.8);
}

.page-section.section--style-4 {
	background-color: var(--light-bg-secondary);
	color: var(--light-text-primary);
}

.page-section.section--style-4 .item-icon {
	background: rgba(255, 255, 255, 0.1);
}

.page-section.section--style-4 .item-title {
	color: var(--primary-color);
}

.page-section.section--style-4 .item-text,
.page-section.section--style-4 .item-comment {
	color: #fff;
}

.page-section.section--style-4 .item-right {
	border-color: rgba(255, 107, 139, 0.1);
}

.section--style-4 .cover-title-1,
.section--style-4 .cover-subtitle {
	border: none;
}

/* 样式5 - 霓虹效果增强版 */
.section--style-5 {
	--primary-color: #6c63ff;
	--primary-light: rgba(108, 99, 255, 0.3);
	--primary-dark: #5a52d9;
	background:
		radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 20%),
		radial-gradient(circle at 90% 80%, rgba(255, 107, 139, 0.1) 0%, transparent 20%),
		linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.section--style-5::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.1) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255, 107, 139, 0.1) 0%, transparent 40%);
	z-index: 0;
}

.section--style-5>* {
	position: relative;
	z-index: 1;
}

.section--style-5 .cover-btn a {
	background-color: transparent;
	border: 1px solid rgba(108, 99, 255, 0.7);
	color: rgba(108, 99, 255, 0.9);
	border-radius: 30px;
	backdrop-filter: blur(10px);
	background: rgba(15, 15, 30, 0.9);
	/*box-shadow: 
			        0 0 15px rgba(108, 99, 255, 0.7), 
			        0 0 30px rgba(108, 99, 255, 0.5);
					*/
	transition: var(--transition);
	text-shadow: 0 0 10px rgba(108, 99, 255, 0.9);
}

.section--style-5 .cover-title-1 {
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section--style-5 .cover-title-1 u {
	color: #a5f3fc;
	text-shadow:
		0 0 10px rgba(165, 243, 252, 0.5),
		0 0 20px rgba(165, 243, 252, 0.3);
}

.section--style-5 .cover-title-1 u::after {
	background-color: rgba(165, 243, 252, 0.3);
	height: 12px;
	bottom: 0;
	border-radius: 6px;
}

.section--style-5 .cover-subtitle {
	color: rgba(255, 255, 255, 0.9);
	padding-left: 10px;
	font-weight: 500;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section--style-5 .cover-photo-container {
	background-color: rgba(15, 15, 30, 0.9);
	backdrop-filter: blur(10px);
	border: 0px solid rgba(108, 99, 255, 0.8);
	box-shadow:
		0 0 10px rgba(108, 99, 255, 0.5),
		0 0 40px rgba(108, 99, 255, 0.2),
		0 0 60px rgba(108, 99, 255, 0.1),
		inset 0 0 20px rgba(108, 99, 255, 0.2);
	color: rgba(108, 99, 255, 0.9);
	/*
				text-shadow: 
			        0 0 10px rgba(108, 99, 255, 0.9),
			        0 0 20px rgba(108, 99, 255, 0.7);
					*/
	position: relative;
}

.section--style-5 .cover-photo-source {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-section.section--style-5 {
	background-color: rgba(15, 15, 30, 0.9);
	color: white;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-section.section--style-5 .item-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	background-color: rgba(15, 15, 30, 0.9);
	box-shadow:
		0 0 10px rgba(108, 99, 255, 0.5),
		0 0 40px rgba(108, 99, 255, 0.2),
		0 0 60px rgba(108, 99, 255, 0.1),
		inset 0 0 20px rgba(108, 99, 255, 0.2);
	border: 1px solid rgba(108, 99, 255, 0.7);
	text-shadow:
		0 0 10px rgba(108, 99, 255, 0.9),
		0 0 20px rgba(108, 99, 255, 0.7);
	position: relative;
}

.page-section.section--style-5 .item-icon::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border-radius: 24px;
	background: linear-gradient(45deg, #6c63ff, #ff6b8b, #6c63ff);
	z-index: -1;
	opacity: 0.4;
	filter: blur(8px);
}

.page-section.section--style-5 .item-icon i {
	font-size: 30px;
	position: relative;
	z-index: 1;
}

.page-section.section--style-5 .item-title {
	color: var(--primary-color);
	text-shadow: 0 0 10px rgba(108, 99, 255, 0.5);
}

.page-section.section--style-5 .item-text,
.page-section.section--style-5 .item-comment {
	color: rgba(255, 255, 255, 0.9);
}

.page-section.section--style-5 .item-right {
	border-color: rgba(108, 99, 255, 0.3);
}

/* 样式6 - 玻璃态效果增强版 */
.section--style-6 {
	--primary-color: #6c63ff;
	--primary-light: rgba(108, 99, 255, 0.3);
	--primary-dark: #5a52d9;
	background:
		radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 20%),
		radial-gradient(circle at 90% 80%, rgba(255, 107, 139, 0.1) 0%, transparent 20%),
		linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
	color: white;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.section--style-6::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.1) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255, 107, 139, 0.1) 0%, transparent 40%);
	z-index: 0;
}

.section--style-6>* {
	position: relative;
	z-index: 1;
}

.section--style-6 .cover-btn a {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	border-radius: 30px;
	backdrop-filter: blur(20px);
	background: rgba(108, 99, 255, 0.12);
	/*
				box-shadow: 
			        0 10px 30px rgba(0, 0, 0, 0.3),
			        inset 0 1px 0 rgba(255, 255, 255, 0.2),
			        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
			    transition: var(--transition);
				*/
}

.section--style-6 .cover-title-1 {
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section--style-6 .cover-title-1 u {
	color: #a5f3fc;
}

.section--style-6 .cover-title-1 u::after {
	background-color: rgba(165, 243, 252, 0.3);
	height: 12px;
	bottom: 0;
	border-radius: 6px;
}

.section--style-6 .cover-subtitle {
	color: rgba(255, 255, 255, 0.9);
	border-left: 0px solid #fff;
	padding-left: 10px;
	font-weight: 500;
	/*font-style: italic;*/
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section--style-6 .cover-photo-container {
	background: rgba(108, 99, 255, 0.12);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	color: white;
	position: relative;
	overflow: hidden;
}

.section--style-6 .cover-photo-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: var(--radius);
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
	mix-blend-mode: overlay;
}

.section--style-6 .cover-photo-source {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-section.section--style-6 {
	background-color: rgba(15, 15, 30, 0.9);
	color: white;
	box-shadow:
		0 20px 40px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-section.section--style-6 .item-icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	background: rgba(108, 99, 255, 0.12);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -1px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.page-section.section--style-6 .item-icon::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(-15deg);
}

.page-section.section--style-6 .item-icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(108, 99, 255, 0.1) 0%, transparent 50%);
	mix-blend-mode: overlay;
}

.page-section.section--style-6 .item-icon i {
	font-size: 30px;
	position: relative;
	z-index: 1;
}

.page-section.section--style-6 .item-title {
	color: var(--primary-color);
}

.page-section.section--style-6 .item-text,
.page-section.section--style-6 .item-comment {
	color: rgba(255, 255, 255, 0.9);
}

.page-section.section--style-6 .item-right {
	border-color: rgba(255, 255, 255, 0.1);
}

/* Linear App黑色风格 - 样式7 */
.section--style-7 {
	--primary-color: #6c63ff;
	--primary-light: rgba(108, 99, 255, 0.3);
	--primary-dark: #5a52d9;
	background: var(--linear-bg-primary);
	color: var(--linear-text-primary);
	border: 1px solid var(--linear-border-color);
}

.section--style-7 .cover-btn a {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	border-radius: 6px;
}

.section--style-7 .cover-title-1 {
	color: var(--linear-text-primary);
}

.section--style-7 .cover-subtitle {
	color: var(--primary-color);
	border-left: 5px solid var(--primary-color);
}

.section--style-7 .cover-photo-container {
	background-color: var(--linear-bg-tertiary);
	border: 1px solid var(--linear-border-color);
}

.section--style-7 .cover-photo-source {
	color: var(--linear-text-tertiary);
}

.page-section.section--style-7 {
	background-color: var(--linear-bg-secondary);
	color: var(--linear-text-primary);
}

.page-section.section--style-7 .item-icon {
	background: var(--linear-bg-tertiary);
	border: 1px solid var(--linear-border-color);
}

.page-section.section--style-7 .item-right {
	border-color: var(--linear-border-color);
}

.page-section.section--style-7 .item-title {
	color: var(--primary-color);
}

.page-section.section--style-7 .item-text {
	color: var(--linear-text-secondary);
}

.page-section.section--style-7 .item-comment {
	color: var(--linear-text-tertiary);
}

.page-section.section--style-7 .item-text,
.page-section.section--style-7 .item-comment {
	color: #fff;
}

.page-section.section--style-7 .item-right {
	border-color: rgba(255, 255, 255, 0.3);
}

/*杂志风*/
.section--style-8 {
	--primary-color: #5F4634;
	--primary-light: rgba(255, 159, 28, 0.3);
	--primary-dark: #5F4634;
	background-color: #E9DFCE;
	color: var(--light-text-primary);
}

/* 状态消息样式 */
#status-message {
	padding: 12px 16px;
	margin: 10px auto 20px;
	border-radius: var(--radius-sm);
	text-align: center;
	font-size: 14px;
	background-color: var(--light-bg-tertiary);
	color: var(--light-text-secondary);
	max-width: 800px;
	border-left: 4px solid var(--primary-color);
}

.decorative-circle {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
	/* 去掉模糊效果，保持简单半透明 */
}

.over-svg .decorative-circle {
	z-index: 100;
}

/*3d ball*/
.sphere-box {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	z-index: 14;
	/*
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	background: linear-gradient(135deg, #ff6b6b, #ffa500);
	*/
}

.sphere-container {
	width: 100%;
	height: 100%;
	position: relative;
	perspective: 1000px;
}

.sphere {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
}

.sphere span {
	position: absolute;
	color: white;
	white-space: nowrap;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	transform-origin: center center;
	top: 50%;
	left: 50%;
}

.sphere-outline {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	pointer-events: none;
}