body {
	background-color: #F5F7F9;
}

.container2 {
	width: 96%;
	min-width: 1200px;
	max-width: 1440px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
	display: flex;
	align-items: center;
	padding: 20px 0 20px 0;
	margin-top: 0;
	margin-bottom: 0;
	font-size: 14px;
	color: #64748b;
	width: 100%;
}

.breadcrumb-item {
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
	display: inline-flex;
	align-items: center;
	line-height: 1.5;
}

.breadcrumb-item:hover {
	color: var(--color);
}

.breadcrumb-item.breadcrumb-current {
	color: #64748b;
	font-weight: normal;
	cursor: default;
	pointer-events: none;
}

.breadcrumb-separator {
	margin: 0 10px;
	color: #64748b;
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.breadcrumb-separator.hide,
.breadcrumb-item.hide {
	display: none;
}

.bodycontent {
	width: 96%;
	max-width: 1440px;
	min-width: 1200px;
	margin: 0 auto 30px;
	display: flex;
	gap: 24px;
	min-height: 400px;
}

.bodycontentLeft {
	width: 300px;
	flex-shrink: 0;
}

.bodycontentRight {
	flex: 1;
	min-width: 0;
}
/* 文章分类容器 */
.bodycontent .bodycontentLeftHeader {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

/* 文章分类标题 */
.bodycontent .bodycontentLeft .articleType {
	height: 48px;
	line-height: 48px;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 600;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	color: #334155;
	border-bottom: 2px solid #e2e8f0;
	margin: 0;
}

/* 文章分类列表容器 */
.bodycontent .bodycontentLeft .articleTypeInfo {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}

/* 文章分类项 */
.bodycontent .bodycontentLeft .articleTypeInfoList {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	height: 48px;
	padding: 0 16px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	color: #475569;
	transition: all 0.2s ease;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	gap: 12px;
}

.bodycontent .bodycontentLeft .articleTypeInfoList:last-child {
	border-bottom: none;
}

.bodycontent .bodycontentLeft .articleTypeInfoList:hover {
	color: var(--color);
	background: rgba(59, 130, 246, 0.05);
	padding-left: 20px;
}

.bodycontent .bodycontentLeft .articleTypeInfoList.now {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
	color: var(--color);
	font-weight: 600;
	border-left: 3px solid var(--color);
	padding-left: 13px;
}

/* 文章分类图标 */
.bodycontent .bodycontentLeft .articleTypeInfoList .articleTypeIcon {
	font-size: 18px;
	width: 20px;
	text-align: center;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.bodycontent .bodycontentLeft .articleTypeInfoList:hover .articleTypeIcon {
	transform: scale(1.1);
}

.bodycontent .bodycontentLeft .articleTypeInfoList.now .articleTypeIcon {
	color: var(--color);
}

/* 文章分类文字 */
.bodycontent .bodycontentLeft .articleTypeInfoList .articleTypeText {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 右侧文章列表容器 */
.bodycontentRight .articleListContainer {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

/* 文章列表标题 */
.bodycontentRight .articleListContainer .articleTitle {
	height: 48px;
	line-height: 48px;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 600;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	color: #334155;
	border-bottom: 2px solid #e2e8f0;
	margin: 0;
}

/* 文章列表容器 */
.bodycontentRight .articleTitleInfo {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* 文章列表项 */
.bodycontentRight .articleTitleInfoList {
	height: 44px;
	line-height: 44px;
	font-size: 13px;
	padding: 0 20px;
	cursor: pointer;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
	color: #475569;
	border-bottom: 1px solid #f1f5f9;
	transition: all 0.2s ease;
	position: relative;
	padding-left: 40px;
}

.bodycontentRight .articleTitleInfoList::before {
	content: "•";
	position: absolute;
	left: 20px;
	color: #cbd5e1;
	font-size: 16px;
	transition: color 0.2s ease;
}

.bodycontentRight .articleTitleInfoList:hover {
	color: var(--color);
	background: rgba(59, 130, 246, 0.05);
	padding-left: 44px;
}

.bodycontentRight .articleTitleInfoList:hover::before {
	color: var(--color);
}

.bodycontentRight .articleTitleInfoList.now {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
	color: var(--color);
	font-weight: 600;
	border-left: 3px solid var(--color);
	padding-left: 37px;
}

.bodycontentRight .articleTitleInfoList.now::before {
	color: var(--color);
}
/* 右侧内容区域 */
.bodycontentRight {
	width: 100%;
	box-sizing: border-box;
	flex: 1;
	min-width: 0;
}

/* 文章内容区域 */
.bodycontentRight .articleContent {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 30px 40px;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	min-height: 500px;
}

/* 文章内容样式 */
.bodycontentRight .articleContent h1,
.bodycontentRight .articleContent h2,
.bodycontentRight .articleContent h3,
.bodycontentRight .articleContent h4,
.bodycontentRight .articleContent h5,
.bodycontentRight .articleContent h6 {
	color: #1e293b;
	margin-top: 24px;
	margin-bottom: 16px;
	font-weight: 600;
	line-height: 1.4;
}

.bodycontentRight .articleContent h1 {
	font-size: 28px;
	border-bottom: 2px solid #e2e8f0;
	padding-bottom: 12px;
	margin-top: 0;
}

.bodycontentRight .articleContent h2 {
	font-size: 24px;
}

.bodycontentRight .articleContent h3 {
	font-size: 20px;
}

.bodycontentRight .articleContent h4 {
	font-size: 18px;
}

.bodycontentRight .articleContent p {
	color: #475569;
	line-height: 1.8;
	margin-bottom: 16px;
	font-size: 15px;
}

.bodycontentRight .articleContent img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	margin: 20px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.bodycontentRight .articleContent a {
	color: var(--color);
	text-decoration: none;
	transition: color 0.2s ease;
	font-weight: 500;
}

.bodycontentRight .articleContent a:hover {
	color: #2563eb;
	text-decoration: underline;
}

.bodycontentRight .articleContent ul,
.bodycontentRight .articleContent ol {
	margin: 16px 0;
	padding-left: 30px;
	color: #475569;
	line-height: 1.8;
}

.bodycontentRight .articleContent li {
	margin-bottom: 8px;
	font-size: 15px;
}

.bodycontentRight .articleContent blockquote {
	border-left: 4px solid var(--color);
	padding-left: 20px;
	margin: 20px 0;
	color: #64748b;
	font-style: italic;
	background: #f8fafc;
	padding: 16px 20px;
	border-radius: 4px;
}

.bodycontentRight .articleContent code {
	background: #f1f5f9;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 14px;
	color: #e11d48;
	font-family: 'Courier New', monospace;
}

.bodycontentRight .articleContent pre {
	background: #1e293b;
	color: #e2e8f0;
	padding: 16px;
	border-radius: 6px;
	overflow-x: auto;
	margin: 20px 0;
}

.bodycontentRight .articleContent pre code {
	background: transparent;
	color: inherit;
	padding: 0;
}

.bodycontentRight .articleContent table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
}

.bodycontentRight .articleContent table th,
.bodycontentRight .articleContent table td {
	border: 1px solid #e2e8f0;
	padding: 12px;
	text-align: left;
}

.bodycontentRight .articleContent table th {
	background: #f8fafc;
	font-weight: 600;
	color: #334155;
}

.bodycontentRight .articleContent table tr:hover {
	background: #f8fafc;
}

/* 文章详细页面布局调整（无左侧栏） */
.bodycontent-detail {
	justify-content: flex-start;
}

.bodycontentRight-detail {
	width: 100%;
	max-width: 100%;
}

/* 文章详细页面容器 */
.bodycontentRight .articleDetailContainer {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* 文章详细页面头部 */
.bodycontentRight .articleDetailHeader {
	padding: 30px 40px;
	border-bottom: 1px solid #e2e8f0;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.bodycontentRight .articleDetailTitle {
	font-size: 28px;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 16px 0;
	line-height: 1.4;
}

.bodycontentRight .articleDetailMeta {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 14px;
	color: #64748b;
	flex-wrap: wrap;
}

.bodycontentRight .articleDetailCategory {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
	color: var(--color);
	border-radius: 4px;
	font-weight: 500;
	font-size: 13px;
}

.bodycontentRight .articleDetailDate {
	display: flex;
	align-items: center;
	gap: 6px;
}

.bodycontentRight .articleDetailDate::before {
	content: "📅";
	font-size: 14px;
}

/* 文章详细页面内容 */
.bodycontentRight .articleDetailContent {
	padding: 40px;
	min-height: 400px;
}

/* 正文作者署名块（避免与站点 <footer> 样式冲突） */
.bodycontentRight .articleDetailContent footer.article-author,
.bodycontentRight .articleDetailContent .article-author {
	display: block;
	width: auto;
	margin: 28px 0 8px;
	padding: 16px 18px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #475569;
	font-size: 14px;
	line-height: 1.7;
	box-sizing: border-box;
}
.bodycontentRight .articleDetailContent footer.article-author p,
.bodycontentRight .articleDetailContent .article-author p {
	margin: 0 0 8px;
	color: #475569;
}
.bodycontentRight .articleDetailContent footer.article-author p:last-child,
.bodycontentRight .articleDetailContent .article-author p:last-child {
	margin-bottom: 0;
}
.bodycontentRight .articleDetailContent footer.article-author a,
.bodycontentRight .articleDetailContent .article-author a {
	color: #2563eb;
	text-decoration: underline;
}

/* 文章详细页面底部 */
.bodycontentRight .articleDetailFooter {
	padding: 20px 40px;
	border-top: 1px solid #e2e8f0;
	background: #f8fafc;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bodycontentRight .articleDetailShare {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bodycontentRight .articleDetailShare .shareLabel {
	font-size: 14px;
	color: #64748b;
	font-weight: 500;
}

.bodycontentRight .articleDetailShare .shareBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
	color: #ffffff;
}

.bodycontentRight .articleDetailShare .shareBtn svg {
	width: 20px;
	height: 20px;
}

.bodycontentRight .articleDetailShare .shareBtn-wechat {
	background: #07c160;
}

.bodycontentRight .articleDetailShare .shareBtn-wechat:hover {
	background: #06ad56;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(7, 193, 96, 0.3);
}

.bodycontentRight .articleDetailShare .shareBtn-weibo {
	background: #e6162d;
}

.bodycontentRight .articleDetailShare .shareBtn-weibo:hover {
	background: #c91428;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(230, 22, 45, 0.3);
}

.bodycontentRight .articleDetailShare .shareBtn-facebook {
	background: #1877f2;
}

.bodycontentRight .articleDetailShare .shareBtn-facebook:hover {
	background: #166fe5;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(24, 119, 242, 0.3);
}

.bodycontentRight .articleDetailShare .shareBtn-twitter {
	background: #1da1f2;
}

.bodycontentRight .articleDetailShare .shareBtn-twitter:hover {
	background: #1a91da;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(29, 161, 242, 0.3);
}

.bodycontentRight .articleDetailShare .shareBtn-linkedin {
	background: #0077b5;
}

.bodycontentRight .articleDetailShare .shareBtn-linkedin:hover {
	background: #006699;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.bodycontentRight .articleBackBtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: linear-gradient(135deg, var(--color) 0%, #2563eb 100%);
	color: #ffffff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.bodycontentRight .articleBackBtn:hover {
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
	transform: translateY(-1px);
}

.bodycontentRight .articleBackBtn .articleBackIcon {
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
}

/* 面包屑中的分类链接 */
.breadcrumb-item.article-category-link {
	color: #64748b;
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumb-item.article-category-link:hover {
	color: var(--color);
}