* {
	margin: 0;
	padding: 0;
}
/*1*/
.alert {
        display: none ;
        padding: 15px;
        background-color: #489751;
        color: white;
        margin-bottom: 15px;
        border-radius: 4px;
        text-align: center; /* 将文本居中 */
        font-size: 1.25em;
    }    

/* 滑动提示框 */

.closebtn {

    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
 
    color: black;
}
.center_wz_box_2_1:empty::before {
        content: "正在分析中,请稍等...";
    }
.post_2_content > p {
      text-indent: 2em; /* 两个字符的缩进 */
      margin-top: 1em; /* 行间距为1个em，你可以根据需要调整 */
      font-size: 1.25em;
}



blockquote {
    margin-top: 1em;
    margin: 0 0 1em;  /* 设置上、下边距 */
    padding: 0.5em 1em;  /* 设置内边距，增加引用块的可读性 */
    border-left: 4px solid #538b57;  /* 左侧边框 */
    color: rgba(255, 255, 255, .6);  /* 引用块文字颜色 */
    font-style: italic;  /* 斜体字体样式，表示引用 */
}

/* 优化滚动条样式 */
/* 滚动条整体样式 */
::-webkit-scrollbar {
	width: 4px;
	/* 滚动条宽度 */
}

/* 滚动条轨道样式 */
::-webkit-scrollbar-track {
	background-color: #222;
	/* 轨道背景颜色 */
}

/* 滚动条滑块样式 */
::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, .2);
	/* 滑块背景颜色 */
	border-radius: 999px;
	/* 滑块圆角 */
}

/* 鼠标悬停在滚动条上时的滑块样式 */
::-webkit-scrollbar-thumb:hover {
	background-color: #555;
	/* 悬停时的滑块背景颜色 */
}

/* 滚动条边缘样式 */
::-webkit-scrollbar-corner {
	background-color: #222222;
	/* 边缘背景颜色 */
}



body,
html {
	background: #222;
	overflow-x: hidden;
}

header {
	width: 100%;
	height: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	padding: 10px 0;
	transition: -webkit-transform .4s;
	transition: transform .4s;
	transition: transform .4s, -webkit-transform .4s;
	z-index: 999;
	user-select: none;
}

/* 去除默认样式 */
a {
	text-decoration: none;
	outline: none;
	color: white;
}
.post_2_content h1 {
    background: #2B6695;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family:"微软雅黑", "宋体", "黑体", Arial;
    font-size: 18px;
    font-weight: bold;
    height: 25px;
    line-height: 25px;
    margin: 18px 0 !important;
    padding: 8px 0 8px 5px;
    text-shadow: 2px 2px 3px #222222;
}
.post_2_content h2 {
    background: #2B6600;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family:"微软雅黑", "宋体", "黑体", Arial;
    font-size: 15px;
    font-weight: bold;
    height: 24px;
    line-height: 23px;
    margin: 12px 0 !important;
    padding: 5px 0 5px 10px;
    text-shadow: 2px 2px 3px #222222;
}
.post_2_content h3 {
    background: #5B9600;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 0 1px #5F5A4B, 1px 1px 6px 1px rgba(10, 10, 0, 0.5);
    color: #FFFFFF;
    font-family:"微软雅黑", "宋体", "黑体", Arial;
    font-size: 13px;
    font-weight: bold;
    height: 24px;
    line-height: 20px;
    margin: 12px 0 !important;
    padding: 5px 0 5px 10px;
    text-shadow: 2px 2px 3px #222222;
}

li {
	list-style: none;
}

.post_2_content ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.post_2_content ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}
.post_2_content li {
    display: list-item;
    list-style: disc;
    text-align: -webkit-match-parent;
    margin-top: 1em;
    font-size: 1.25em;
}
.post_2_content code {
  display: block;
  font-family: 'Courier New', monospace;
  background-color: #2d2d2d; /* 暗色背景 */
  color: #ffffff; /* 白色文本 */

  padding: 10px 2em;
  margin: 10px 2em;;
  border: 1px solid #444;
  border-radius: 4px;
  overflow: auto;
  text-indent: 1ch; /* 左缩进两个字符 */
  padding-left: 2ch; /* 左内边距两个字符 */
}
p > img {
    max-width: 300px;
    margin-left: 2em;
    height: auto;  /* 让浏览器根据宽度自动调整高度，保持图片比例 */
    display: inline-block;  /* 让图片表现为行内块元素，使其能够水平居中 */
}
a > img {
    max-width: 80%;
    margin-left: 2em;
    height: auto;  /* 让浏览器根据宽度自动调整高度，保持图片比例 */
    display: inline-block;  /* 让图片表现为行内块元素，使其能够水平居中 */
}

header {
	background: rgba(34, 34, 34, 0.1);
	-webkit-backdrop-filter: saturate(200%) blur(20px);
	backdrop-filter: saturate(100%) blur(20px);
	-webkit-mask-image: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 1) 50%, transparent 100%);
}

.header_box {
	height: 40px;
	font-size: 24px;
	color: white;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}

.header_box_logo {
	flex-grow: 1;
	color: white
}

.header_box img {
	height: 25px;
	float: left;
	padding-top: 7.5px;
}

.header_box_nav_li li {
	display: inline-block;
	margin-right: 10px;
	line-height: 38px;
}

.header_box_nav_li li a {
	font-size: 16px;
	color: #fff;
}

.header_box_nav {
	display: flex;
}

.header_box_nav_li_btn {
	display: flex;
}

.header_box_nav_li_btn_openurl {
	margin-left: 20px;
}

.header_box_nav_li_btn_seaerch {
	margin-left: 20px;
}

/* 侧边栏 */
.sidebar {
	margin-right: 20px;
	user-select: none;
}

#sidebar_box {
	transition: .2s;
}

.sidebar_li {
	margin-bottom: 5px;
}

.sidebar_li_box {
	display: flex;
	width: 200px;
	padding: 10px;
	border-radius: 8px;
	transition: .2s;
}

.sidebar_li_box_gl {
	display: flex;
	width: 200px;
	padding: 10px;
	background: #4c4c4c;
	border-radius: 8px;
}

.sidebar_title {
	font-size: 14px;
	color: #fff;
	flex-grow: 1;
}

.sidebar_count {
	font-size: 12px;
	color: #fff;
	padding: 0px 4px;
	background: #707070;
	border-radius: 999px;
	line-height: 20px;
	min-width: 20px;
	text-align: center;
}

.sidebar_li_box:hover {
	background: #4c4c4c;
}

/* 居中内容 */
.center {
	max-width: 1200px;
	flex-grow: 1;
	border-radius: 40px 0px 0px 40px;
	padding-top: 20px;
	margin: 0 auto;
	display: flex;
}

.center_sidebar {
	min-width: 220px;
	margin-right: 20px;
}

.center_wz {
	flex-grow: 1;
	margin-top: 10px;
	padding: 10px 2px 15px 2px;
}

.center_wz_box {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 8px;
	margin-bottom: 20px;
	/*max-width: 920px;*/
}

.center_wz_box_1 {
	font-size: 12px;
	color: rgba(0, 0, 0, .0);
}

.center_wz_box_1 span {
	color: rgba(255, 255, 255, .4);
}

.center_wz_box_1 a {
	color: rgba(255, 255, 255, .6);
	padding: 2px 8px;
	background: rgba(255, 255, 255, .1);
	border-radius: 2px;
	transition: .2s;
	margin-right: 4px;
}

.center_wz_box_1 a:hover {
	color: rgba(255, 255, 255, 1);
}

.center_wz_box_2 {
	display: block;
	margin-top: 20px;
}

.center_wz_box_2_1 {
	font-size: 20px;
	color: #fff;
}

.center_wz_box_2_2 {
	margin-top: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	font-weight: 300;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 40px;
}

.center_wz_box_2_2 * {
	font-size: 14px;
	margin-top: 0px;
	color: rgba(255, 255, 255, .6);
	font-weight: 300;
}

.center_wz_box_3 {
	display: flex;
	margin-top: 20px;
	position: relative;
}

.center_wz_box_3_fx {
	height: 20px;
	margin-right: 20px;
	cursor: pointer;
}

.center_wz_box_3_pl {
	height: 20px;
	margin-right: 20px;
}

.center_wz_box_3_plicon {
	font-size: 12px;
	color: #fff;
	background: #222;
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 0px 4px;
	border-radius: 999px;
	position: absolute;
	top: -7px;
	left: 53px;
}

.footer {
	margin: 100px 0 20px 0;
	text-align: center;
}

.footer_1 {
	font-size: 12px;
	color: #fff;
	margin-bottom: 10px;
}

/* 设置伪元素的内容和样式 */
.foot_d {
	height: 10px;
}

.footer_a {
	color: rgba(255, 255, 255, 1);
	transition: .2s;
}

.footer_2 {
	font-size: 12px;
	color: #fff;
}

.footer_a:hover {
	color: rgba(255, 255, 255, .6);
}

.tc_center_wz_box {
	position: fixed;
	top: -46px;
	left: 50%;
	margin-left: -230px;
	width: calc(460px - 40px);
	height: 46px;
	background: white;
	z-index: 9999;
	border-radius: 4px;
	display: flex;
	padding: 0 10px;
	user-select: none;
	transition: .2s;
}

.tc_center_wz_box img {
	width: 20px;
}

.tc_center_wz_box p {
	font-size: 14px;
	line-height: 46px;
	color: #222;
	margin-left: 10px;
}

.page-navigator {
	display: flex;
}

.page-navigator li {
	display: flex;
}

.page-navigator li a {
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	margin-right: 20px;
	transition: .2s;
}

.current a {
	color: white !important;
}

.page-navigator li a:hover {
	color: #fff;
}

/* 文章 */
.post_wz_box {
	padding: 0 !important;
	border: 0 !important;
	max-width: 1200px;
}

.post_wz_title {
	font-size: 24px;
	color: #fff;
	margin-top: 30px;
	margin-bottom: 20px;
}

.post_wz_box_1 {
	display: flex;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.post_wz_box_1_time {
	flex-grow: 1;
	line-height: 21px;
}

.post_wz_box_1_ask {
	line-height: 21px;
	margin: 0 4px;
}

.post_wz_box_1_tj {
	line-height: 21px;
}

.post_2 {
	margin-top: 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	font-weight: 300;
}

.post_2_content {
	margin-bottom: 20px;
}

.tags {
	color: rgba(255, 255, 255, 0);
}

.tags a {
	padding: 4px 10px;
	background: rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .6);
	font-size: 12px;
	border-radius: 2px;
	transition: .2s;
}

.tags a:hover {
	color: rgba(255, 255, 255, 1);
}

.post-near li {
	padding: 20px 20px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, .1);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.post-near li a {
	color: #fff;
}

#comments {
	margin-top: 20px;
}

.comment-author span {
	display: none;
}

.commnets_box {
	padding: 20px;
	background: rgba(255, 255, 255, .1);
	border-radius: 8px;
}

.commnets_box textarea {
	width: 100%;
	background: none;
	border: 0;
	outline: none;
	color: #fff;
	resize: none;
	font-size: 14px;
}

.commnets_box_center {
	display: flex;
}

.commnets_box_center_left {
	flex-grow: 1;
	display: flex;
}

.commnets_box_center_left p {
	margin-right: 10px;
}

.commnets_box_right button {
	font-family: "微软雅黑";
	font-size: 14px;
	line-height: 40px;
	background-color: #333;
	text-align: center;
	color: #FFFFFF;
	border-radius: 999px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	transform: rotate(0deg);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
	padding: 0 20px;
}

.commnets_box_center_left_input {
	outline: none;
	border: 0;
	height: 40px;
	border-radius: 999px;
	padding: 0 20px;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	margin-right: 10px;
}

#comment_list {
	margin-top: 20px;
}

#comment_list li {
	margin-bottom: 10px;
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 20px;
	border-radius: 8px;
	transition: .2s;
}

.comment_data {
	font-size: 12px;
}

.fn a {
	color: #fff;
	font-size: 16px;
}

.comment_body {
	margin-top: 6px;
	color: #fff;
}

#comment_list li:hover {
	background: rgba(255, 255, 255, .1);
}

.commnets_box_center_left_user a {
	color: #fff;
}

.commnets_box_center_left_user {
	line-height: 40px;
}

.conmments_list_number {
	margin-bottom: 10px;
}

.conmments_list_number_1 {
	font-size: 24px;
	color: #fff;
}

.comment-content p {
	font-size: 14px;
	color: #fff;
}

.comment-meta a time {
	color: rgba(255, 255, 255, .6);
	font-size: 12px;
}

.comment-reply {
	display: none;
}

.comment-children {
	margin-top: 10px;
}

.comment-children .comment-list li {
	margin-bottom: 0 !important;
}

.comment-content {
	margin-top: 10px;
}

.tc_center_search {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .4);
	z-index: 999;
	transition: .2s;
}

.tc_center_search_box {
	width: 1200px;
	margin: 0 auto;
}

#search {
	background: #fff;
	display: flex;
	padding: 0 20px;
	margin-top: -46px;
	border-radius: 8px;
	height: 46px;
	transition: .2s;
}

#search img {
	height: 24px;
	padding-top: 10px;
	margin-right: 10px;
}

#search input {
	width: 100%;
	outline: none;
	border: 0;
	font-size: 14px;
	background: none;
}

.page_center {
	width: 1200px;
	margin: 0 auto;
	padding-top: 80px;
	text-align: center;
	font-size: 16px;
	color: rgba(255, 255, 255, .6);
	text-align: left;
}

.header_box_nav_li_btn_3,
.header_box_nav_li_btn_4 {
	display: none;
}

/* 关于我们 */


/* 移动端适配 */
.media_nav_box {
	position: fixed;
	top: 0;
	left: 0;
	height: calc(100% - 0px);
	width: 100%;
	background: #222;
	z-index: 998;
	display: none;
}

.media_nav_box_box {
	padding: 140px 40px 0px 40px;
	color: #fff;
}

#media_search {
	display: flex;
	width: calc(100% - 40px);
	background: rgba(255, 255, 255, .1);
	padding: 20px;
	border-radius: 16px;
}

#media_search input {
	border: 0;
	outline: none;
	flex-grow: 1;
	background: none;
	color: #fff;
	font-size: 28px;
}

#media_search img {
	height: 40px;
	margin-right: 20px;
}

.media_nav_box_box_2 {
	margin-top: 20px;
}

.media_nav_box_box_2 li {
	display: flex;
	padding: 30px 0;
}

.media_nav_box_box_2 li a {
	font-size: 36px;
	color: rgba(255, 255, 255, .6);
	flex-grow: 1;
	padding-left: 100px;
	opacity: 0;
	transition: .2s;
}

/* markdown样式优化 */
pre code {
	white-space: pre-wrap;
	word-wrap: break-word;
}

.post_2_ner {

	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

.post-near {
	transition: .2s;
}

.post-near:hover {
	background: rgba(255, 255, 255, .1);
}

#scrollToTopBtn {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: rgba(90, 113, 93, 0.8);
            color: #fff;
            border: none;
            border-radius: 5px;
            padding: 10px;
            cursor: pointer;
        }