/*
Theme Name: 创想鸟 Premium
Description: 高级样式 - 1400px满宽 + 现代设计
Version: 2.4.0
*/

/* ========== 1400px 满宽容器系统 ========== */
:root {
	--cxb-container-max: 1400px;
}
.container-1400,
.container {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}
/* 内容间距由子元素控制，容器自身无内边距 */
.content-area > div,
.site-main > .container > div,
.site-main > .container-1400 > div {
	min-width: 0;
}
/* 内容区 — 非文章页使用 grid 双栏布局 */
.content-area:not(.singular .content-area) {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	margin-top: 32px;
}
/* 文章页内容区 — 保持 main.css 的 flex 布局但去除 padding */
.singular .content-area,
.singular.has-sidebar .content-area {
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	width: 100% !important;
}
/* 文章正文宽度限制 — 靠文章卡片自身控制 */
.singular .entry-content {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.singular .entry-header,
.singular .entry-footer,
.singular .post-thumbnail {
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}
/* 内容网格用 gap */
.content-area,
.posts-grid {
	gap: 24px;
}
.content-area > * {
	min-width: 0;
}
/* 全宽对齐 */
.wp-block-cover.alignfull,
.alignfull {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
	width: 100vw;
}
/* 强制所有使用 .container 的地方都遵循 1400px */
.wp-block-cover.alignfull,
.alignfull {
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
	width: 100vw;
}

/* ========== 全站基础 ========== */
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1a1a2e;
	background: #f5f6fa;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.site-main {
	flex: 1;
	padding-top: 0;
	padding-bottom: 60px;
}

/* ========== 头部导航 ========== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0,0,0,0.06);
	transition: background .3s;
}
.header-main {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
	padding: 0 24px;
}
.header-left {
	display: flex;
	align-items: center;
	gap: 12px;
}
.site-title {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.5px;
}
.site-title a {
	color: #1a1a2e;
	text-decoration: none;
}
.site-logo img {
	max-height: 36px;
	width: auto;
}
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 4px;
}
.menu-toggle .bar {
	display: block;
	width: 22px;
	height: 2px;
	background: #1a1a2e;
	border-radius: 2px;
	transition: all .3s;
}

/* 主导航 */
.main-navigation {
	display: flex;
	align-items: center;
}
.main-navigation #primary-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2px;
}
.main-navigation #primary-menu > li {
	position: relative;
}
.main-navigation #primary-menu > li > a {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
	color: #4a4a6a;
	text-decoration: none;
	border-radius: 8px;
	transition: all .2s;
	white-space: nowrap;
}
.main-navigation #primary-menu > li > a:hover,
.main-navigation #primary-menu > li.current-menu-item > a {
	color: #2d8cf0;
	background: rgba(45,140,240,0.06);
}
.main-navigation #primary-menu > li.menu-item-has-children > a::after {
	content: '';
	margin-left: 4px;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	opacity: .5;
}
.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.12);
	padding: 6px;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .25s;
	z-index: 100;
}
.main-navigation #primary-menu > li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(4px);
}
.main-navigation .sub-menu a {
	display: block;
	padding: 8px 14px;
	font-size: 13px;
	color: #4a4a6a;
	text-decoration: none;
	border-radius: 6px;
	transition: all .15s;
}
.main-navigation .sub-menu a:hover {
	background: rgba(45,140,240,0.06);
	color: #2d8cf0;
}

/* 头部右侧按钮 */
.header-right {
	display: flex;
	align-items: center;
	gap: 6px;
}
.header-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #4a4a6a;
	transition: all .2s;
}
.header-icon-btn:hover {
	background: rgba(0,0,0,0.05);
	color: #2d8cf0;
}
.header-avatar-btn img {
	border-radius: 50%;
	width: 28px;
	height: 28px;
	object-fit: cover;
}
.header-login-btn,
.header-register-btn {
	padding: 7px 18px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all .2s;
	font-family: inherit;
}
.header-login-btn {
	color: #2d8cf0;
	background: rgba(45,140,240,0.08);
}
.header-login-btn:hover {
	background: rgba(45,140,240,0.15);
}
.header-register-btn {
	color: #fff;
	background: #2d8cf0;
	margin-left: 4px;
}
.header-register-btn:hover {
	background: #1a6fc9;
}

/* 深色模式切换 */
.sun-icon { display: none; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: block; }

/* ========== 底部 ========== */
.site-footer {
	background: #1a1a2e;
	color: rgba(255,255,255,0.7);
	margin-top: auto;
}
.footer-wave {
	line-height: 0;
	overflow: hidden;
}
.footer-main {
	padding: 60px 0 40px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
}
@media (max-width: 900px) {
	.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
	.footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 8px;
	letter-spacing: -0.5px;
}
.footer-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.55);
	margin: 0 0 16px;
	max-width: 320px;
}
.footer-social {
	display: flex;
	gap: 10px;
}
.footer-social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.6);
	transition: all .25s;
}
.footer-social-icon:hover {
	background: rgba(45,140,240,0.2);
	color: #fff;
	transform: translateY(-2px);
}
.footer-heading {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.footer-main ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-main ul li {
	margin-bottom: 8px;
}
.footer-main ul li a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 14px;
	transition: color .2s;
}
.footer-main ul li a:hover {
	color: #5cabf5;
}
.footer-widgets-area {
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-widgets-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	font-size: 13px;
}
.footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}
.footer-copyright a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-copyright a:hover { color: #5cabf5; }
.footer-powered a { color: #5cabf5; text-decoration: none; }

/* ========== 内容区域 ========== */
.content-area {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	margin-top: 32px;
}
@media (max-width: 900px) {
	.content-area { grid-template-columns: 1fr; }
}
.content-area-full {
	grid-template-columns: 1fr;
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
}

/* ========== 文章卡片 ========== */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}
.post-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	transition: all .3s ease;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.post-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.post-card-thumbnail {
	display: block;
	overflow: hidden;
	aspect-ratio: 16/9;
	position: relative;
}
.post-card-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}
.post-card:hover .post-card-thumbnail img {
	transform: scale(1.05);
}
.post-card-body {
	padding: 20px;
}
.post-card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	color: #999;
}
.post-card-category a {
	color: #2d8cf0;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 11px;
}
.post-card-category a:hover { opacity: .8; }
.post-card-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 10px;
}
.post-card-title a {
	color: #1a1a2e;
	text-decoration: none;
	transition: color .2s;
}
.post-card-title a:hover { color: #2d8cf0; }
.post-card-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 14px;
}
.post-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid #f0f0f0;
	font-size: 13px;
	color: #999;
}
.post-card-author {
	display: flex;
	align-items: center;
	gap: 6px;
}
.post-card-author-avatar {
	border-radius: 50%;
	width: 22px;
	height: 22px;
}
.post-card-author a {
	color: #555;
	text-decoration: none;
	font-weight: 500;
}
.post-card-stats {
	display: flex;
	gap: 12px;
}

/* ========== 页面标题区 ========== */
.page-header {
	margin-bottom: 28px;
}
.page-title {
	font-size: 32px;
	font-weight: 800;
	color: #1a1a2e;
	margin: 0;
	letter-spacing: -0.5px;
}
.archive-description {
	font-size: 15px;
	color: #666;
	margin-top: 8px;
}

/* ========== 按钮 ========== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	font-family: inherit;
	transition: all .25s;
}
.btn-primary {
	background: #2d8cf0;
	color: #fff;
}
.btn-primary:hover {
	background: #1a6fc9;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(45,140,240,0.3);
}
.btn-outline {
	background: transparent;
	color: #555;
	border: 1px solid #dde0e8;
}
.btn-outline:hover {
	border-color: #2d8cf0;
	color: #2d8cf0;
	background: rgba(45,140,240,0.04);
}

/* ========== 分页 ========== */
.cxb-pagination {
	margin-top: 32px;
	text-align: center;
}
.cxb-pagination a,
.cxb-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	margin: 0 3px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	color: #555;
	transition: all .2s;
}
.cxb-pagination a:hover {
	border-color: #2d8cf0;
	color: #2d8cf0;
	background: rgba(45,140,240,0.04);
}
.cxb-pagination span.current {
	background: #2d8cf0;
	color: #fff;
	border-color: #2d8cf0;
	font-weight: 700;
}

/* ========== 移动端导航 ========== */
@media (max-width: 768px) {
	.menu-toggle { display: flex; }
	.main-navigation {
		position: fixed;
		top: 64px;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255,255,255,0.98);
		backdrop-filter: blur(12px);
		padding: 20px;
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		transition: all .3s ease;
		z-index: 999;
		overflow-y: auto;
	}
	.main-navigation.toggled {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}
	.main-navigation #primary-menu {
		flex-direction: column;
		gap: 4px;
	}
	.main-navigation #primary-menu > li > a {
		padding: 12px 16px;
		font-size: 16px;
	}
	.main-navigation .sub-menu {
		position: static;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		padding: 0 0 0 16px;
		margin-bottom: 8px;
		background: transparent;
	}
	.header-register-btn { display: none; }
	.header-login-btn { background: #2d8cf0; color: #fff; border-radius: 8px; }
}

/* ========== 滚动条 ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ========== 选中文本 ========== */
::selection { background: rgba(45,140,240,0.2); color: inherit; }

/* ========== 侧边栏 ========== */
.widget-area {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.widget {
	background: #fff;
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	border: 1px solid #f0f2f5;
	transition: box-shadow .25s;
}
.widget:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.widget-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f0f0f0;
	color: #1a1a2e;
	display: flex;
	align-items: center;
	gap: 8px;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { 
	color: #555; 
	text-decoration: none; 
	font-size: 14px; 
	transition: all .2s;
	display: block;
	line-height: 1.5;
}
.widget ul li a:hover { 
	color: #2d8cf0; 
	padding-left: 4px;
}
/* 小工具分类列表数字 */
.widget ul li .post-count,
.widget ul li .children .post-count {
	color: #9ca3af;
	font-size: 12px;
	margin-left: 4px;
}
/* 标签云 */
.widget_tag_cloud a {
	display: inline-block;
	padding: 4px 12px;
	margin: 3px;
	background: #f5f6fa;
	border: 1px solid #eef0f5;
	border-radius: 8px;
	font-size: 13px !important;
	color: #555;
	text-decoration: none;
	transition: all .2s;
}
.widget_tag_cloud a:hover {
	background: #2d8cf0;
	color: #fff !important;
	border-color: #2d8cf0;
	transform: translateY(-1px);
}
/* 搜索小工具 */
.widget_search .search-form {
	display: flex;
	gap: 8px;
}
.widget_search input[type="search"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
	transition: border-color .2s;
}
.widget_search input[type="search"]:focus {
	outline: none;
	border-color: #2d8cf0;
	box-shadow: 0 0 0 3px rgba(45,140,240,0.1);
}
.widget_search input[type="submit"] {
	padding: 10px 18px;
	background: #2d8cf0;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background .2s;
}
.widget_search input[type="submit"]:hover {
	background: #1a6fc9;
}
/* 日历小工具 */
.widget_calendar table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}
.widget_calendar th,
.widget_calendar td {
	padding: 6px;
	text-align: center;
	border: 1px solid #f0f0f0;
}
.widget_calendar th {
	background: #f5f6fa;
	font-weight: 600;
}
.widget_calendar #today {
	background: rgba(45,140,240,0.1);
	font-weight: 700;
	color: #2d8cf0;
}
.widget_calendar a {
	color: #2d8cf0;
	font-weight: 600;
	text-decoration: none;
}
/* 评论小工具 */
.widget_recent_comments li {
	padding: 10px 0 !important;
	font-size: 13px;
	color: #6b7280;
	line-height: 1.5;
}
.widget_recent_comments li a {
	display: inline !important;
	color: #374151 !important;
	font-weight: 600;
}
.widget_recent_comments li a:hover {
	color: #2d8cf0 !important;
	padding-left: 0 !important;
}

/* ========== 分享按钮（高级版） ========== */
.cxb-share-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 20px 0;
	margin-bottom: 0;
	flex-wrap: wrap;
	border-top: 1px solid #f0f0f0;
}
.cxb-share-label {
	font-size: 14px;
	font-weight: 600;
	color: #9ca3af;
	letter-spacing: 0.5px;
}
.cxb-share-buttons {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}
.cxb-share-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	padding: 8px 16px !important;
	border-radius: 10px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	border: 1px solid transparent !important;
	cursor: pointer !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
	color: #4a4a6a !important;
	background: #f5f6fa !important;
	font-family: inherit !important;
	line-height: 1 !important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
	width: auto !important;
	height: auto !important;
	min-width: unset !important;
	min-height: unset !important;
}
.cxb-share-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}
.cxb-share-icon {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
}
/* 微博按钮 */
.cxb-share-weibo {
	border-color: rgba(230,22,45,0.15);
	color: #e6162d;
}
.cxb-share-weibo:hover {
	background: #e6162d;
	color: #fff;
	border-color: #e6162d;
	box-shadow: 0 4px 14px rgba(230,22,45,0.35);
}
/* Twitter (X) 按钮 */
.cxb-share-twitter {
	border-color: rgba(0,0,0,0.1);
	color: #000;
}
.cxb-share-twitter:hover {
	background: #000;
	color: #fff;
	border-color: #000;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
/* 复制链接按钮 */
.cxb-share-link {
	border-color: rgba(16,185,129,0.15);
	color: #10b981;
}
.cxb-share-link:hover {
	background: #10b981;
	color: #fff;
	border-color: #10b981;
	box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

/* ========== 私信中心（高级版） ========== */
.cxb-msg-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cxb-msg-item {
	display: flex;
	gap: 16px;
	padding: 20px;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	transition: all .25s ease;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.cxb-msg-item:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	border-color: #d1d5db;
}
.cxb-msg-unread {
	background: #f8faff;
	border-left: 3px solid #2d8cf0;
}
.cxb-msg-avatar {
	flex-shrink: 0;
}
.cxb-msg-avatar img {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	object-fit: cover;
}
.cxb-msg-body {
	flex: 1;
	min-width: 0;
}
.cxb-msg-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}
.cxb-msg-from {
	font-weight: 600;
	font-size: 14px;
	color: #1a1a2e;
}
.cxb-msg-badge {
	display: inline-block;
	padding: 1px 8px;
	background: #2d8cf0;
	color: #fff;
	border-radius: 10px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5;
}
.cxb-msg-date {
	font-size: 12px;
	color: #9ca3af;
	margin-left: auto;
}
.cxb-msg-subject {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: #1a1a2e;
}
.cxb-msg-content {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	margin-bottom: 12px;
}
.cxb-msg-actions {
	display: flex;
	gap: 8px;
	align-items: center;
}
.cxb-msg-actions .btn-sm {
	padding: 5px 14px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
	font-family: inherit;
	text-decoration: none;
}
.cxb-msg-reply-btn {
	background: #e0e7ff;
	color: #4338ca;
}
.cxb-msg-reply-btn:hover {
	background: #c7d2fe;
}
.cxb-msg-delete-btn {
	background: #fee2e2;
	color: #dc2626;
}
.cxb-msg-delete-btn:hover {
	background: #fecaca;
}

/* 写私信表单 */
.cxb-compose-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 32px;
	border-radius: 16px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
	background: #fff;
}
.cxb-compose-form .cxb-form-field {
	margin-bottom: 16px;
}
.cxb-compose-form label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
	color: #374151;
}
.cxb-compose-form select,
.cxb-compose-form input[type="text"],
.cxb-compose-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	font-size: 14px;
	box-sizing: border-box;
	font-family: inherit;
	transition: border-color .2s;
	background: #fafafa;
}
.cxb-compose-form select:focus,
.cxb-compose-form input[type="text"]:focus,
.cxb-compose-form textarea:focus {
	outline: none;
	border-color: #2d8cf0;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(45,140,240,0.1);
}
.cxb-compose-form textarea {
	resize: vertical;
	min-height: 120px;
}

/* 消息页空状态 */
.cxb-msg-list .cxb-empty-state a.btn {
	display: inline-block;
	padding: 10px 28px;
	background: #2d8cf0;
	color: #fff;
	border-radius: 10px;
	font-weight: 600;
	text-decoration: none;
	transition: all .2s;
}
.cxb-msg-list .cxb-empty-state a.btn:hover {
	background: #1a6fc9;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(45,140,240,0.3);
}

/* ========== 仪表盘 & 管理页面（1400px满宽适配） ========== */
.cxb-dashboard,
.cxb-user-list-page,
.cxb-submit-wrap,
.cxb-messages,
.cxb-admin {
	max-width: none !important;
}
.cxb-admin-content {
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
}
.cxb-admin-header {
	max-width: none !important;
}
.cxb-admin-tabs {
	max-width: none !important;
}

/* ========== 首页增强样式 ========== */
/* 分类标签悬停 */
.home [style*="display:flex;flex-wrap:wrap;gap:10px"] a:hover {
	border-color: #2d8cf0 !important;
	color: #2d8cf0 !important;
	background: rgba(45,140,240,0.04) !important;
	transform: translateY(-1px);
}
/* 精选推荐卡片悬停 */
.home [style*="grid-template-columns:1.5fr 1fr"] a:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}
/* 查看全部链接 */
.home a[href*="查看全部"]:hover svg {
	transform: translateX(2px);
	transition: transform .2s;
}
