:root {
				--c-primary: #2563eb;
				--c-primary-grad: linear-gradient(135deg, #2563eb, #4f46e5);
				--c-bg: #f8fafc;
				--c-surface: #ffffff;
				--c-border: #e2e8f0;
				--c-text: #0f172a;
				--c-text-secondary: #334155;
				--f-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', 'DM Sans', system-ui, sans-serif;
				--t-base: 0.875rem;
				--s-3: 16px;
				--s-4: 22px;
				--s-5: 30px;
				--dur-fast: 100ms;
			}
			*,
			*::before,
			*::after {
				box-sizing: border-box;
				margin: 0;
				padding: 0;
			}
			html {
				scroll-behavior: smooth;
				-webkit-font-smoothing: antialiased;
			}
			body {
				font-family: var(--f-sans);
				font-size: var(--t-base);
				font-weight: 400;
				color: var(--c-text);
				background: var(--c-bg);
				line-height: 1.5;
				padding-top: 68px;
			}
			a {
				text-decoration: none;
			}

			/* ==================== HEADER ==================== */
			.header-main {
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 50;
				background: #ffffff;
				border-bottom: 1px solid #e2e8f0;
				box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
				height: 68px;
			}
			.header-box {
				width: 100%;
				max-width: 1330px;
				margin: 0 auto;
				display: flex;
				justify-content: space-between;
				align-items: center;
				height: 100%;
				padding: 0 24px;
			}
			.logobox {
				flex-shrink: 0;
			}
			.logo {
				display: flex;
				align-items: center;
				height: 40px;
				margin: 0;
				flex-shrink: 0;
				cursor: pointer;
				gap: 10px;
			}
			.logo a {
				display: flex;
				align-items: center;
				height: 100%;
				gap: 10px;
				text-decoration: none;
			}
			.logo a img {
				height: 34px;
				width: auto;
			}
			.logo .logo-text {
				font-size: 24px;
				font-weight: 800;
				background: linear-gradient(to right, #2563eb, #4f46e5);
				-webkit-background-clip: text;
				-webkit-text-fill-color: transparent;
				background-clip: text;
			}
			.mainnav ul {
				list-style: none;
				margin: 0;
				padding: 0 20px;
				display: flex;
				align-items: center;
				gap: 4px;
			}
			.mainnav li {
				height: 64px;
				display: flex;
				align-items: center;
				padding: 0 6px;
				margin: 0 14px;
			}
			.mainnav li a {
				font-size: 20px;
				font-weight: 600;
				color: #0f172a;
				text-decoration: none;
				padding: 6px 14px;
				border-radius: 8px;
				line-height: 25px;
				white-space: nowrap;
				display: flex;
				align-items: center;
				gap: 4px;
				transition: color 0.2s, background-color 0.2s;
			}
			.mainnav li a:hover,
			.mainnav li a.is-active {
				color: #2563eb;
				background: #eff6ff;
			}
			.mainnav li a.nav-ai-link {
				padding: 0;
				border-radius: 0;
				background: none;
			}
			.mainnav li a.nav-ai-link img {
				width: 140px;
				display: block;
			}
			.nav-btnbox {
				display: flex;
				align-items: center;
				flex-shrink: 0;
				gap: 12px;
			}
			.nav-btn {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				height: 36px;
				line-height: 36px;
				padding: 0 18px;
				border-radius: 10px;
				font-size: 14px;
				font-weight: 600;
				text-decoration: none;
				white-space: nowrap;
				transition: all 0.2s ease;
			}
			.nav-btn.btn-member {
				color: #f97316;
				background: rgb(254.4, 241, 231.7);
				border: none;
				gap: 5px;
				margin-right: 14px;
			}
			.nav-btn.btn-member:hover {
				background: #f97316;
				border-color: #f97316;
				color: #ffffff;
			}
			.nav-btn.btn-member .btn-member-ico {
				font-size: 15px;
				line-height: 1;
			}
			.nav-btn.btn-login {
				background: linear-gradient(135deg, #2563eb, #4f46e5);
				color: #ffffff;
				box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
			}
			.nav-btn.btn-login:hover {
				opacity: 0.9;
				box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
			}
			.btn-base.btn-login {
				gap: 8px;
			}

			/* ==================== PAGE WRAP ==================== */
			.page-wrap {
				width: 80%;
				margin: 0 auto;
			}

			/* 大屏适配 */
			@media (min-width: 1440px) {
				.page-wrap {
					width: 72%;
				}
			}
			@media (min-width: 1920px) {
				.page-wrap {
					width: 70%;
				}
			}
			@media (min-width: 2400px) {
				.page-wrap {
					width: 68%;
				}
			}

			/* ==================== BREADCRUMB ==================== */
			.breadcrumb-list {
				display: flex;
				align-items: center;
				gap: 8px;
				font-size: 14px;
				height: 40px;
				line-height: 40px;
			}
			.breadcrumb-list a {
				color: #606266;
				font-weight: 700;
				text-decoration: none;
			}
			.breadcrumb-list a:hover {
				color: #409eff;
			}
			.breadcrumb-list .breadcrumb-separator {
				color: #c0c4cc;
			}
			.breadcrumb-list .active {
				color: #606266;
			}

			/* ==================== DETAIL LAYOUT ==================== */
			.detail-layout {
				display: flex;
				gap: 30px;
				align-items: flex-start;
			}
			.detail-main {
				flex: 1;
				min-width: 0;
			}

			/* ==================== CARD ==================== */
			.card {
				background: var(--c-surface);
				border: 1px solid var(--c-border);
				border-radius: 15px;
				padding: 20px;
				margin-bottom: 30px;
				box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
				color: #333333;
			}
			.card h3 {
				margin: 0 0 15px;
				font-weight: 400;
				font-size: 24px;
				color: #0f172a;
			}
			.card h4 {
				margin: 0 0 15px;
				font-weight: 400;
				font-size: 18px;
				color: #333;
			}

			/* ==================== TAGS ==================== */
			.tags {
				display: flex;
				flex-wrap: wrap;
				align-items: center;
				gap: 6px;
				flex: 1;
			}
			.tag {
				display: inline-flex;
				align-items: center;
				height: 20px;
				line-height: 18px;
				padding: 0 12px;
				border-radius: 12px;
				font-size: 12px;
				font-weight: 500;
				border: 1px solid transparent;
			}
			.tag-primary {
				color: #2563eb;
				background-color: rgb(233.2, 239.4, 253);
				border-color: rgb(211.4, 223.8, 251);
			}
			.tag-success {
				background-color: rgb(231.1, 248, 242.4);
				border-color: rgb(207.2, 241, 229.8);
				color: #10b981;
			}
			.tag-info {
				background-color: rgb(243.9, 244.2, 244.8);
				border-color: rgb(232.8, 233.4, 234.6);
				color: #909399;
			}
			.tag-plain {
				display: inline-flex;
				align-items: center;
				height: 20px;
				line-height: 18px;
				padding: 0 10px;
				border-radius: 4px;
				font-size: 11px;
				font-weight: 500;
				background: #fdf6ec;
				color: #e6a23c;
			}

			/* ==================== INFO HEADER ==================== */
			.info-header {
				display: flex;
				align-items: baseline;
				justify-content: space-between;
				gap: 12px;
			}
			.view-box {
				display: flex;
				align-items: center;
				gap: 12px;
				flex-shrink: 0;
				color: #888;
				font-size: 14px;
			}

			/* ==================== LIFE TAG ==================== */
			.life-tag {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				padding: 0 20px;
				border-radius: 20px;
				height: 24px;
				line-height: 24px;
				font-size: 12px;
				font-weight: 600;
				color: #fff;
				border: none;
			}
			.life-tag.success {
				background-color: #10b981;
			}
			.life-tag.primary {
				background-color: #2563eb;
			}
			.life-tag.warning {
				background-color: #f97316;
			}
			.life-tag.danger {
				background-color: #ef4444;
			}

			/* ==================== META SECTION ==================== */
			.meta-section {
				margin-top: 20px;
			}
			.meta-row {
				display: flex;
				align-items: baseline;
				gap: 10px;
				padding-top: 20px;
			}
			.meta-row:first-child {
				padding-top: 0;
			}
			.meta-label {
				font-size: 13px;
				color: #333;
				white-space: nowrap;
				flex-shrink: 0;
			}
			.meta-tags {
				display: flex;
				flex-wrap: wrap;
				gap: 6px;
			}

			/* ==================== DIVIDER ==================== */
			.divider {
				margin: 20px 0;
				border: none;
				border-top: 1px solid #e4e7ed;
			}

			/* ==================== INFOBOX ==================== */
			.infobox {
				margin-top: 30px;
				font-size: 13px;
				color: #3d3d3d;
				overflow: hidden;
			}
			.infobox dl {
				display: flex;
				align-items: center;
				float: left;
				width: 50%;
				margin: 0 0 14px;
			}
			.infobox dl:nth-child(odd) {
				padding-right: 40px;
			}
			.infobox dt {
				width: 108px;
				color: #3d3d3d;
				flex-shrink: 0;
			}
			.infobox dd {
				margin: 0;
				font-weight: 500;
				overflow: hidden;
				white-space: nowrap;
				text-overflow: ellipsis;
				flex: 1;
			}

			/* ==================== CONTENT SUMMARY ==================== */
			.detail-intro {
				font-size: 14px;
				color: #303133;
				line-height: 1.8;
			}
			.detail-intro p {
				margin: 0 0 10px;
				text-indent: 2em;
			}

			/* ==================== CATALOG ==================== */
			.catalog-header {
				display: flex;
				justify-content: space-between;
				align-items: center;
			}
			.catalog-header h4 {
				margin: 0;
			}
			.expand-btn {
				padding: 6px 14px;
				font-size: 12px;
				font-weight: 600;
				font-family: inherit;
				border: 1.5px solid var(--c-border);
				border-radius: 5px;
				background: var(--c-surface);
				color: var(--c-text-secondary);
				cursor: pointer;
				transition: all var(--dur-fast) ease;
			}
			.expand-btn:hover {
				border-color: var(--c-primary);
				color: var(--c-primary);
			}
			.catalog-content {
				margin-top: 15px;
				max-height: 600px;
				overflow-y: auto;
			}
		.catalog-list {
				list-style: none;
				padding: 0;
				margin: 0;
			}
			/* ===== Level 1 (顶层) ===== */
			.catalog-list > li {
				padding: 8px 6px 8px 0;
				font-size: 14px;
				color: #444;
				cursor: pointer;
				border-radius: 12px;
				position: relative;
			}
			.catalog-list > li:hover {
				color: #1474e2;
			}
			/* Level 1 有子级 */
			.catalog-list > li.has-children {
				padding-left: 0;
			}
			.catalog-list > li.has-children > .cat-title {
				display: flex;
				align-items: center;
				gap: 6px;
			}
			.catalog-list > li.has-children > .cat-title .cat-arrow {
				width: 0;
				height: 0;
				border-top: 4px solid transparent;
				border-bottom: 4px solid transparent;
				border-left: 6px solid #c0c4cc;
				transition: transform 0.2s ease;
				flex-shrink: 0;
			}
			.catalog-list > li.has-children.expanded > .cat-title .cat-arrow {
				transform: rotate(90deg);
			}
			.catalog-list > li.has-children > .cat-sub {
				display: none;
				padding-left: 22px;
				list-style: none;
				margin: 0;
			}
			.catalog-list > li.has-children.expanded > .cat-sub {
				display: block;
			}

			/* ===== Level 2+ (嵌套层级通用) ===== */
			.cat-sub li {
				padding: 6px 6px 6px 12px;
				font-size: 13px;
				color: #666;
				cursor: pointer;
				border-radius: 8px;
				position: relative;
			}
			.cat-sub li:hover {
				color: #1474e2;
			}
			/* Level 2+ 有子级：显示箭头 + cat-title 布局 */
			.cat-sub li.has-children {
				padding-left: 0;
			}
			.cat-sub li.has-children > .cat-title {
				display: flex;
				align-items: center;
				gap: 6px;
				padding: 6px 6px 6px 12px;
			}
			.cat-sub li.has-children > .cat-title .cat-arrow {
				width: 0;
				height: 0;
				border-top: 3px solid transparent;
				border-bottom: 3px solid transparent;
				border-left: 5px solid #bbb;
				transition: transform 0.2s ease;
				flex-shrink: 0;
			}
			.cat-sub li.has-children.expanded > .cat-title .cat-arrow {
				transform: rotate(90deg);
			}
			.cat-sub li.has-children > .cat-sub {
				display: none;
				padding-left: 18px;
				list-style: none;
				margin: 0;
			}
			.cat-sub li.has-children.expanded > .cat-sub {
				display: block;
			}

			/* ==================== PUBLISHING / AGENCY / PERSON ==================== */
			.pub-grid,
			.agency-grid {
				display: grid;
				grid-template-columns: 1fr 1fr 1fr;
			}
			.pub-item,
			.agency-item,
			.person-item {
				display: flex;
				align-items: center;
				margin-bottom: 12px;
				padding-bottom: 4px;
				border-bottom: 1px dashed #e5e5e5;
			}
			.pub-item label {
				font-size: 13px;
				color: #3d3d3d;
				flex-shrink: 0;
			}
			.pub-item span {
				font-size: 13px;
				color: #3d3d3d;
				font-weight: 500;
				margin-left: 6px;
				overflow: hidden;
				text-overflow: ellipsis;
				white-space: nowrap;
			}
			.agency-title {
				font-weight: 500;
				margin: 0 0 0 6px;
				font-size: 13px;
				color: #3d3d3d;
			}
			.person-grid {
				display: grid;
				grid-template-columns: repeat(4, 1fr);
			}

			/* ==================== REFERENCE FILES ==================== */
			.ref-grid {
				display: grid;
				grid-template-columns: 1fr 1fr 1fr;
			}
			.ref-item {
				display: block;
				width: 100%;
				margin-bottom: 12px;
				padding-bottom: 4px;
				border-bottom: 1px dashed #e5e5e5;
				color: #1474e2;
				cursor: pointer;
				font-size: 13px;
				white-space: nowrap;
				overflow: hidden;
				text-overflow: ellipsis;
				transition: color 0.3s;
			}
			.ref-item:hover {
				color: #409eff;
			}
			.ref-icon {
				margin-right: 4px;
			}

			/* ==================== MORE LINK ==================== */
			.more-link-box {
				text-align: center;
			}
			.more-link-btn {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				gap: 8px;
				padding: 12px 52px;
				border-radius: 30px;
				background: linear-gradient(135deg, #2563eb, #1d4ed8);
				color: #ffffff;
				font-size: 15px;
				font-weight: 600;
				box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
				transition: all 0.2s ease;
			}
			.more-link-btn:hover {
				box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
				transform: translateY(-2px);
			}
			.more-link-btn .arrow {
				transition: transform 0.2s ease;
			}
			.more-link-btn:hover .arrow {
				transform: translateX(3px);
			}

			/* ==================== FOOTER ==================== */
			.site-footer {
				background-color: #0f172a;
				color: #94a3b8;
				padding: 0;
				margin-top: var(--s-5);
			}
			.foot-box {
				width: 100%;
				max-width: 1280px;
				margin: 0 auto;
				padding: 60px 24px 40px;
				box-sizing: border-box;
			}
			.footlogobox {
				display: flex;
				align-items: center;
				gap: 10px;
				margin-bottom: 16px;
			}
			.footlogobox .logo {
				margin: 0;
				display: flex;
				align-items: center;
				gap: 10px;
			}
			.footlogobox .logo a {
				display: flex;
				align-items: center;
				gap: 10px;
				text-decoration: none;
				color: #ffffff;
			}
			.footlogobox .logo img {
				width: 40px;
				height: 40px;
				border-radius: 12px;
				padding: 6px;
				box-sizing: border-box;
			}
			.foot-brand-name {
				font-size: 20px;
				font-weight: 700;
				color: #ffffff;
			}
			.foot-brand-desc {
				color: #94a3b8;
				font-size: 14px;
				line-height: 1.7;
				margin: 0 0 20px;
				max-width: 360px;
			}
			.foot-contact .contact-item {
				display: flex;
				align-items: center;
				gap: 8px;
				font-size: 13px;
				color: #94a3b8;
				margin-bottom: 6px;
			}
			.foot-contact i {
				font-size: 14px;
				color: #64748b;
				font-style: normal;
			}
			.foot-content {
				display: flex;
				justify-content: space-between;
				padding-bottom: 40px;
				border-bottom: 1px solid #1e293b;
				gap: 40px;
			}
			.foot-brand-col {
				flex: 2;
				min-width: 0;
			}
			.menubox {
				display: flex;
				justify-content: space-between;
				flex: 2;
				gap: 20px;
			}
			.menu-list-box {
				flex: 1;
				min-width: 120px;
			}
			.menu-list-box h3 {
				margin: 0 0 16px;
				font-size: 16px;
				color: #ffffff;
				font-weight: 600;
			}
			.menu-list-box ul {
				margin: 0;
				padding: 0;
				list-style: none;
			}
			.menu-list-box li {
				list-style-type: none;
				margin-bottom: 8px;
			}
			.menu-list-box li a {
				text-decoration: none;
				color: #94a3b8;
				font-size: 14px;
				transition: color 0.2s;
			}
			.menu-list-box li a:hover {
				color: #ffffff;
			}
			.right-main {
				flex: 1.2;
				min-width: 220px;
			}
			.right-main h3 {
				margin: 0 0 16px;
				font-size: 16px;
				color: #ffffff;
				font-weight: 600;
			}
			.rightbox {
				display: flex;
				gap: 16px;
				flex-wrap: wrap;
			}
			.ercodebox,
			.phonebox,
			.miniprogrambox {
				display: flex;
				flex-direction: column;
				align-items: center;
				font-size: 12px;
				color: #64748b;
			}
			.ercodebox img,
			.phonebox img {
				margin-bottom: 8px;
				border-radius: 8px;
			}
			.miniprogrambox .miniprogramimg {
				background: #fff;
				padding: 3px 3px 0;
				border-radius: 8px;
				margin-bottom: 8px;
			}
			.miniprogrambox .miniprogramimg img {
				margin-bottom: 0;
			}
			.foot-copy {
				margin-top: 28px;
				font-size: 13px;
				color: #64748b;
				text-align: center;
			}
			.foot-copy a {
				color: #64748b;
				text-decoration: none;
				transition: color 0.2s;
				margin-right: 16px;
			}
			.foot-copy a:hover {
				color: #94a3b8;
			}
			.foot-copy p {
				margin: 12px 0 0;
				color: #475569;
			}

			/* ==================== RESPONSIVE ==================== */
			@media (max-width: 1024px) {
				.page-wrap {
					padding: var(--s-3) var(--s-4);
				}
				.detail-layout {
					flex-direction: column;
				}
				.infobox dl {
					width: 100%;
				}
				.pub-grid,
				.agency-grid {
					grid-template-columns: 1fr;
				}
				.person-grid {
					grid-template-columns: 1fr 1fr;
				}
				.ref-grid {
					grid-template-columns: 1fr 1fr;
				}
			}
			@media (max-width: 768px) {
				.page-wrap {
					padding: var(--s-3);
				}
				.header-main {
					height: 56px !important;
				}
				body {
					padding-top: 56px;
				}
				.header-box {
					padding: 0 12px;
				}
				.logo {
					height: 30px;
					gap: 6px;
				}
				.logo a {
					gap: 6px;
				}
				.logo a img {
					height: 24px;
				}
				.logo .logo-text {
					font-size: 17px;
				}
				.mainnav ul {
					padding: 0 8px;
					gap: 0;
				}
				.mainnav li {
					height: 52px;
					margin: 0 4px;
					padding: 0;
				}
				.mainnav li a {
					font-size: 13px;
					font-weight: 600;
					padding: 4px 8px;
				}
				.mainnav li a.nav-ai-link img {
					width: 80px;
				}
				.nav-btnbox {
					gap: 6px;
				}
				.nav-btn.btn-member {
					display: none;
				}
				.nav-btn {
					height: 32px;
					line-height: 32px;
					padding: 0 10px;
					font-size: 13px;
				}
				.ref-grid {
					grid-template-columns: 1fr;
				}
			}
			@media (prefers-reduced-motion: reduce) {
				*,
				*::before,
				*::after {
					transition-duration: 0.01ms !important;
				}
			}