/* 列表页css */
			* {
				margin: 0;
				padding: 0;
				box-sizing: border-box;
			}

			body {
				font-family: -apple-system, 'Segoe UI', 'Microsoft YaHei', '微软雅黑', 'Roboto', 'Helvetica', 'Arial', sans-serif;
				background: #d9e8ff29;
				/* 删掉原来padding: 40px 20px; 这行是底部被裁元凶 */
			}

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

			.hero {
				text-align: center;
				margin-top: calc(80px + 30px);
				margin-bottom: 50px;
			}

			.hero-tag a {
				display: inline-block;
				color: #5b7cfa;
				padding: 8px 16px;
				border-radius: 4px;
				font-size: 13px;
				margin-bottom: 16px;
				font-weight: 500;
			}

			.hero h1 {
				font-size: 46px;
				color: #1a1a1a;
				margin-bottom: 12px;
				font-weight: 700;
			}

			.hero p {
				color: #666;
				font-size: 16px;
			}

			/* 主容器 */
			.main-wrapper {
				display: flex;
				gap: 28px;
				margin-bottom: 50px;
			}

			/* 左侧分类 */
			.sidebar {
				flex: 0 0 254px;
			}

			.sidebar-card {
				background: #fff;
				border-radius: 8px;
				padding: 24px;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
			}

			.sidebar-title {
				color: #1a1a1a;
				font-size: 20px;
				font-weight: 700;
				margin-bottom: 20px;
				display: flex;
				align-items: center;
				gap: 8px;
			}

			.sidebar-list {
				list-style: none;
			}

			.sidebar-list li {
				margin-bottom: 12px;
			}

			.sidebar-list li:last-child {
				margin-bottom: 0;
			}

			.sidebar-list a {
				color: #666;
				font-size: 18px;
				text-decoration: none;
				display: block;
				padding: 12px 16px;
				border-radius: 4px;
				transition: all 0.3s ease;
				border-left: 3px solid transparent;
				position: relative;
			}

			.sidebar-list a:hover {
				background: #f5f7fa;
				color: #1a1a1a;
				border-left-color: #5b7cfa;
			}

			.sidebar-list a.active {
				background: #f0f2ff;
				color: #5b7cfa;
				font-weight: 600;
				border-left-color: #5b7cfa;
			}

			/* 右侧文章列表 */
			.content {
				flex: 1;
			}

			.article-item {
				background: #fff;
				border-radius: 8px;
				padding: 24px;
				margin-bottom: 28px;
				display: flex;
				gap: 24px;
				box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
				transition: all 0.3s ease;
			}

			.article-item:hover {
				box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
			}

			.article-image {
				flex: 0 0 180px;
				height: 135px;
				background: #f0f2ff;
				border-radius: 6px;
				overflow: hidden;
				flex-shrink: 0;
			}

			.article-image img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				display: block;
			}

			.article-body {
				flex: 1;
				display: flex;
				flex-direction: column;
				justify-content: space-between;
			}

			.article-header {
				display: flex;
				align-items: center;
				gap: 12px;
				margin-bottom: 14px;
				flex-wrap: wrap;
			}

			.article-badge {
				display: inline-block;
				background: linear-gradient(135deg, #ffd54f 0%, #ffb74d 50%, #ff8a80 100%);
				color: #9d2a03;
				padding: 4px 10px;
				border-radius: 12px;
				font-size: 12px;
				font-weight: 600;
				white-space: nowrap;
			}

			.article-meta {
				font-size: 14px;
				color: #999;
				line-height: 1.4;
				display: inline-flex;
				align-items: center;
				gap: 4px;
			}

			.article-title {
				font-size: 18px;
				color: #1a1a1a;
				font-weight: 600;
				margin: 12px 0;
				line-height: 1.5;
			}

			.article-title a {
				color: #1a1a1a;
				text-decoration: none;
				transition: color 0.3s ease;
			}

			.article-title a:hover {
				color: #5b7cfa;
			}

			.article-excerpt {
				font-size: 14px;
				color: #666;
				line-height: 1.6;
				margin-bottom: 14px;
				display: -webkit-box;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden;
			}

			.article-footer {
				display: flex;
				justify-content: space-between;
				align-items: center;
				font-size: 12px;
				color: #999;
			}

			.article-author {
				display: flex;
				gap: 5px;
			}

			.read-more {
				font-size: 14px;
				color: #333;
				text-decoration: none;
				font-weight: 600;
				cursor: pointer;
				transition: color 0.3s ease;
				white-space: nowrap;
			}

			.read-more:hover {
				color: #748ffc;
			}

			/* 分页 */
			.pagination {
				display: flex;
				justify-content: center;
				align-items: center;
				gap: 8px;
				margin-top: 48px;
			}

			.pagination button,
			.pagination a {
				min-width: 36px;
				height: 36px;
				padding: 0 8px;
				border: 1px solid #e0e0e0;
				background: #fff;
				color: #1a1a1a;
				border-radius: 4px;
				cursor: pointer;
				font-size: 14px;
				transition: all 0.3s ease;
				display: flex;
				align-items: center;
				justify-content: center;
				text-decoration: none;
				font-weight: 500;
			}

			.pagination button:hover,
			.pagination a:hover {
				border-color: #5b7cfa;
				color: #5b7cfa;
			}

			.pagination .active {
				background: #5b7cfa;
				color: #fff;
				border-color: #5b7cfa;
			}

			.pagination .prev,
			.pagination .next {
				min-width: auto;
				padding: 0 12px;
			}

			/* 响应式 */
			@media (max-width: 768px) {
				.main-wrapper {
					flex-direction: column;
					gap: 24px;
				}

				.sidebar {
					flex: 0 0 auto;
				}

				.hero h1 {
					font-size: 28px;
				}

				.article-item {
					flex-direction: column;
					gap: 16px;
				}

				.article-image {
					width: 100%;
					height: 160px;
					flex: 1 0 auto;
				}
			}
			
			

.hero-tag-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid #cce0ff;
    border-radius: 999px;
    background: #f0f6ff33;
    font-size: 14px;
    color: #2563ebe6;
    margin-top: 40px;    /* 距顶部距离，改数字即可：10/20/30px */
    font-weight: 600;    /* 字体粗细：400常规｜500中等｜600加粗｜700粗体 */
}








/* 内容页css */
			html {
				font-size: 100%;
				overflow-y: scroll;
				-webkit-text-size-adjust: 100%;
				-ms-text-size-adjust: 100%;
				text-rendering: optimizelegibility;
				color: #333;
				background: #f2f5f9;
			}

			*,
			*:after,
			*:before {
				-webkit-box-sizing: border-box;
				-moz-box-sizing: border-box;
				box-sizing: border-box;
			}

			article,
			aside,
			blockquote,
			body,
			button,
			code,
			dd,
			details,
			dl,
			dt,
			fieldset,
			figcaption,
			figure,
			footer,
			form,
			h1,
			h2,
			h3,
			h4,
			h5,
			h6,
			header,
			hr,
			html,
			input,
			legend,
			li,
			menu,
			nav,
			ol,
			p,
			pre,
			section,
			td,
			textarea,
			th,
			ul {
				margin: 0;
				padding: 0;
			}

			body {
				font: 400 14px/1.8 "PingFang SC", "Lantinghei SC", "Microsoft Yahei", "Hiragino Sans GB", "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans;
			}

			ul,
			li {
				list-style: none;
			}

			a {
				text-decoration: none;
				color: #333;
			}

			a:hover {
				color: #21b47c;
			}

			img {
				max-width: 100%;
				border: 0;
			}

			input,
			button,
			textarea {
				outline: 0;
			}

			h1,
			h2,
			h3,
			h4,
			h5,
			h6 {
				font-family: "PingFang SC", Verdana, "Helvetica Neue", "Microsoft Yahei", "Hiragino Sans GB", "Microsoft Sans Serif", "WenQuanYi Micro Hei", sans-serif;
				font-size: 100%;
				font-weight: 600;
				color: #fff;
				line-height: 1.35;
			}

			.clearfix:after {
				content: ".";
				display: block;
				height: 0;
				clear: both;
				visibility: hidden;
			}

			.clearfix {
				zoom: 1;
			}

			.fl {
				float: left;
			}

			.fr {
				float: right;
			}

			.mb {
				margin-bottom: 25px;
			}

			.mb10 {
				margin-bottom: 10px;
			}

			.br {
				border-radius: 2px;
			}

			.sb {
				box-shadow: 1px 1px 1px #e6e6eb;
				border-bottom: 1px solid #eef1f5;
				background: #fff;
			}

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

			.ellipsis {
				overflow: hidden;
				text-overflow: ellipsis;
				white-space: nowrap;
			}

			.iconfont {
				font-family: "iconfont" !important;
				font-style: normal;
				-webkit-font-smoothing: antialiased;
				-moz-osx-font-smoothing: grayscale;
			}


			.content {
				transform: none;
				padding-top: 4px;
			}

			#mainbox {
				width: 76%;
			}

			.article-box {
				width: 100%;
			}

			.art-main {
				padding: 3em;
			}

			.art-head {
				text-align: center;
				border-bottom: 1px solid #eee;
				padding-bottom: 20px;
			}

			.art-title {
				font-size: 26px;
				font-weight: normal;
				color: #333;
			}

			.head-info {
				color: #999;
				padding-top: 5px;
			}

			.head-info span,
			.head-info time {
				padding-right: 1em;
			}

			.art-content {
				padding-top: 10px;
				position: relative;
				font-size: 16px;
				width: 100%;
				word-break: break-all;
			}

			.art-content p {
				font-weight: 400;
				margin-bottom: 1rem;
			}

			.art-content a {
				color: #21b47c;
			}

			.art-content a:hover {
				border-bottom: 1px dashed #21b47c;
			}

			.prev-next {
				padding: 1.5em;
			}

			.prev-next .post-prev,
			.prev-next .post-next {
				width: 46%;
				color: #999;
				font-size: 16px;
			}

			.prev-next .post-next {
				text-align: right;
			}

			.prev-next .next,
			.prev-next .prev {
				display: block;
				font-size: 14px;
			}

			.prev-next strong a {
				font-weight: normal;
			}

			/* 相关文章 & 热门推荐公用 */
			.related-art {
				padding: 1.5em;
			}

			.c-title {
				font-size: 18px;
				padding-bottom: .5em;
				margin-top: -.5em;
				position: relative;
				padding-left: 16px;
			}

			.c-title:after {
				content: "#";
				color: #21b47c;
				opacity: .7;
				left: 0;
				width: 5px;
				height: 20px;
				top: 0;
				position: absolute;
				transition: .5s;
			}

			.related-art li {
				width: 46%;
				margin: 1px 0;
			}

			.related-art li:nth-child(odd) {
				margin-right: 8%;
			}

			.related-art li .title {
				width: 100%;
				display: block;
				font-size: 16px;
			}

			/* 侧边栏 */
			#sidebar {
				width: 22%;
			}

			.widget {
				padding: 1.5em;
			}

			/* 热门应用/游戏 tab卡片 */
			.table_card .tab {
				height: 51px;
				font-size: 16px;
				border-bottom: 1px #e6e6e6 solid;
				background: #fcfcfc;
				display: flex;
			}

			.table_card .tab li {
				float: left;
				height: 50px;
				line-height: 50px;
				width: 50%;
				text-align: center;
				background: #fcfcfc;
				border-right: 1px #e6e6e6 solid;
				cursor: pointer;
				list-style: none;
			}

			.table_card .tab li:last-child {
				border-right: none;
			}

			.table_card .tab li.active {
				height: 51px !important;
				background: #fff !important;
				color: #21b47c;
			}

			.table_card .tabCon {
				background: #fff;
				padding: 11px 1.5em;
			}

			.table_card .tabCon ul {
				display: none;
			}

			.table_card .tabCon .on {
				display: block;
			}

			.table_card .item {
				width: 100%;
				padding: 11px 0;
				border-bottom: 1px solid #f0f0f0;
			}

			.table_card .item:last-child {
				border-bottom: none;
			}

			.table_card .image-link img {
				width: 100%;
				height: auto;
				border-radius: 8px;
				display: block;
			}

			.table_card .thumbnail {
				width: 60px;
				height: 60px;
				overflow: hidden;
				margin-right: 12px;
			}

			.table_card .img {
				width: 60px;
				height: 60px;
				object-fit: cover;
				border-radius: 10px;
			}

			.table_card .fr-wrap {
				flex: 1;
			}

			.table_card .title-wrap h2 {
				font-size: 16px;
				font-weight: normal;
				margin: 0;
			}

			.table_card .intro {
				font-size: 12px;
				color: #888;
			}

			.table_card .iconfont {
				font-size: 28px;
				margin-right: 10px;
				position: relative;
				color: #ccc;
			}

			.table_card .list-1.iconfont {
				color: #f00;
			}

			.table_card .list-2.iconfont {
				color: #ff7100;
			}

			.table_card .list-3.iconfont {
				color: #f7aa00;
			}

			.table_card .iconfont small {
				position: absolute;
				top: 9px;
				left: 9px;
				font-size: 16px;
				font-weight: bold;
				color: #666;
			}

			.table_card .list-1 small,
			.table_card .list-2 small,
			.table_card .list-3 small {
				color: #fff;
			}

			.clearfix .fl {
				float: left;
			}

			.table_card .clearfix {
				display: flex;
				align-items: center;
			}

			/* 标签列表 */
			#divTags ul {
				margin-top: -.5em;
			}

			#divTags li {
				display: inline-block;
			}

			#divTags li a {
				display: inline-block;
				text-align: center;
				padding: .2em .6em;
				margin: .5em .2em 0 0;
				border-radius: 3px;
				opacity: 1;
				background-color: #eef2f7;
				color: #333;
				font-size: 13px;
			}

			#divTags li:nth-child(1) a {
				background-color: #d9f2fb;
				color: #1aa9fb;
			}

			#divTags li:nth-child(2) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(3) a {
				background-color: #fff3d0;
				color: #f67c23;
			}

			#divTags li:nth-child(4) a {
				background-color: #f8cbff;
				color: #a123db;
			}

			#divTags li:nth-child(5) a {
				background-color: #bbf1f2;
				color: #04839d;
			}

			#divTags li:nth-child(6) a {
				background-color: #ffdede;
				color: #e84f4f;
			}

			#divTags li:nth-child(7) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(8) a {
				background-color: #d9f2fb;
				color: #1aa9fb;
			}

			#divTags li:nth-child(9) a {
				background-color: #ffdede;
				color: #e84f4f;
			}

			#divTags li:nth-child(10) a {
				background-color: #f8cbff;
				color: #a123db;
			}

			#divTags li:nth-child(11) a {
				background-color: #fff3d0;
				color: #f67c23;
			}

			#divTags li:nth-child(12) a {
				background-color: #bbf1f2;
				color: #04839d;
			}

			#divTags li:nth-child(13) a {
				background-color: #bbf1f2;
				color: #04839d;
			}

			#divTags li:nth-child(14) a {
				background-color: #ffdede;
				color: #e84f4f;
			}

			#divTags li:nth-child(15) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(16) a {
				background-color: #d9f2fb;
				color: #1aa9fb;
			}

			#divTags li:nth-child(18) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(19) a {
				background-color: #f8cbff;
				color: #a123db;
			}

			#divTags li:nth-child(20) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(21) a {
				background-color: #bbf1f2;
				color: #04839d;
			}

			#divTags li:nth-child(22) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(23) a {
				background-color: #f8cbff;
				color: #a123db;
			}

			#divTags li:nth-child(25) a {
				background-color: #ffdede;
				color: #e84f4f;
			}

			#divTags li:nth-child(26) a {
				background-color: #fff3d0;
				color: #f67c23;
			}

			#divTags li:nth-child(27) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(28) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(29) a {
				background-color: #d9fcda;
				color: #3ab14a;
			}

			#divTags li:nth-child(30) a {
				background-color: #f8cbff;
				color: #a123db;
			}

			#divTags li a:hover {
				opacity: 0.8;
				transition: all ease .2s;
			}

			/* 响应式 */
			@media screen and(max-width:1200px) {
				#mainbox {
					width: 100%;
				}

				#sidebar {
					width: 100%;
					margin-top: 20px;
				}

				.hidden-sm-md-lg {
					display: none !important;
				}

				.art-main {
					padding: 4vw;
				}

				.art-title {
					font-size: 22px;
				}

				.related-art li {
					width: 100%;
					margin-right: 0;
				}

				.related-art li:nth-child(odd) {
					margin-right: 0;
				}

				.prev-next .post-prev,
				.prev-next .post-next {
					width: 100%;
					text-align: left;
					margin-bottom: 8px;
				}

				.prev-next .post-next {
					text-align: left;
				}
			}

			/* 辅助显示 */
			.img-cover {
				object-fit: cover;
			}

			.widget-content {
				margin-top: 5px;
			}

			.table_card .item .clearfix {
				display: flex;
				align-items: center;
			}

			/* ========== 修复导航遮挡内容（仅本页面生效） ========== */
			.content.container {
				padding-top: 90px !important;
			}
			
			/* ========== 面包屑导航样式 ========== */
			.breadcrumb {
				text-align: left;
				font-size: 14px;
				color: #666;
				margin-bottom: 15px;
			}
			.breadcrumb a {
				color: #666;
			}
			.breadcrumb span {
				color: #666;
				margin: 0 5px;
			}

