.post_wrap {
	width: 100%;
	font-size: 16px;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	align-items: center;
	/* height: 93vh; */
	overflow: auto;
	justify-content: center;
}

.post_title {
	width: 100%;
	height: 500px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
  color:white;
	letter-spacing: 3px;
  line-height: 50px;
  text-align: center;
	background-position: center center;
	/* 背景图不平铺 */
	background-repeat: no-repeat;
	/* 当内容高度大于图片高度时，背景图像的位置相对于viewport固定 */
	/* background-attachment: fixed; */
	/* 让背景图基于容器大小伸缩 */
	background-size: cover;
	/* 设置背景颜色，背景图加载过程中会显示背景色 */
	background-color: #424141;
}
.post_wrap_content {
	flex-grow: 1;
	display: flex;
	width: 1500px;
	margin-top: 40px;
	/* align-items: center; */
	/* justify-content: space-around; */
}
/* .post_info {
	background-color: rgb(255, 255, 255);
} */
.post_content {
	height: 100%;
	border-right: 1px solid #d8d5d5;
	min-width: 1000px;
	margin-top: 10px;
	padding: 40px;
}
.post_content::-webkit-scrollbar{
	width: 0px;
	height: 0px;
}
.post_sidebar_right {
	min-width: 400px;
	max-width: 400px;
	margin-top: 10px;
	padding: 0px 10px;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	justify-content: start;
}
.post_sidebar_left {
	width: 300px;
	margin-top: 10px;
	padding: 0px 20px;
	display: flex;
	flex-direction: column;
	justify-content: start;
}
.post_sidebar_content,
.post_sidebar_advert {
	min-height: 300px;
	margin-bottom: 20px;
	padding: 10px 0px;
	border-radius: 10px;
}
.post_main {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	line-height: 2.5em;
}
.post_content_title {
	border-left: 5px solid blue;
	padding-left: 16px;
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 1.5em;
	text-align: start;
}
.post_content_img {
	width: 100%;
	height: 460px;
	margin-bottom: 60px;
}

.post_content_time {
	line-height: 2.5em;
	margin-bottom: 40px;
	color: #d1d1d1;
	text-align: start;
}
.post_sidebar_content {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	/* padding: 20px; */
}
.post_sidebar_title {

	font-size: 16px;
	margin-bottom: 20px;
	text-align: start;
}
.post_recommend {
	font-size: 16px;
	line-height: 1.5em;
	display: block;
	padding: 0px 5px;
	margin: 5px;
	text-align: start;
}
.post_recommend_wrap {
	display: flex;
	/* justify-content: center; */
	align-items: center;
	border-bottom: 1px solid #d8d5d5;
	padding: 5px 2px;
	margin-bottom: 20px;
	/* border-radius: 10px; */
}
.post_recommend_wrap:hover {
	border-bottom: 1px solid #a09e9e;
	font-size: 16px;
}

.post_sidebar_user, .post_sidebar_advert{
	min-height: 150px;
	margin-bottom: 20px;
	padding: 20px;
	border-radius: 10px;
}
.post_sidebar_user{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.user_logo {
	width: 80px;
	height: 80px;
	margin-bottom: 20px;
	border-radius: 40px;
}
.user_name,
.user_bio {
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.post_sidebar_advert_category {
	border-left: 5px solid blue;
	padding-left: 10px;
	font-size: 16px;
	margin-bottom: 20px;
	text-align: start;
}
.post_sidebar_advert_info {
	margin-bottom: 20px;
}
