body{
	background-color: rgba(227, 233, 234, 1);
}
.post-header {
	height: 400px;
	background-color: rgb(154, 203, 218);
	padding-top: 18px;
}

.post-header>div {
	height: 400px;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 90px;
}

.post-header>div>.title {
	width: 755px;
	font-weight: 400;
	font-style: normal;
	font-size: 54px;
	color: rgb(227, 233, 234);
	text-align: center;
	line-height: 65px;
	position: relative;
	z-index: 2;
	max-height: 200px;
	overflow: hidden;
	text-overflow: ellipsis; /* 使用省略号显示溢出文本 */
}

.post-header>div>.date {
	display: flex;
	gap: 20px;
	font-weight: 500;
	font-style: normal;
	font-size: 15px;
	color: rgb(227, 233, 234);
	text-align: center;
	line-height: 26px;
	position: relative;
	z-index: 2;
}

.text-with-shadow {
	text-shadow: 0px 2px 4px rgb(0, 0, 0, 0.5);
}

.post-header > .mask{
	width: 100%;
	height: 400px;
	background-color:black;
	position: absolute;
	top: 89px;
	z-index: 1;
	opacity: 0.2;
}
.post-content {
	padding-top: 100px;
	padding-bottom: 100px;
	display: flex;
	gap: 20px;
	flex-direction: column;
	font-weight: 400;
	color: #442F2F;
	font-size: 14pt;
	line-height: 1.7;
	margin: 0 auto;
	text-align: justify;
	width: 65%;
}
/*.post-content img{*/
/*	display: block;*/
/*	width: 100%;*/
/*	height: auto;*/
/*	object-fit: contain;*/
/*}*/
.post-content img{
    display: block;
	margin: 0 auto;
}
.post-content p,
.post-content section{
	display: block;
	height: auto;
}
.post-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;
}
.post-footer > .left{
	display: flex;
	gap: 15px;
}
.post-footer > .left > img {
	width: 80px;
	height: 80px;
	display: block;
}
.post-footer > .left > div {
	font-weight: 400;
	    font-style: normal;
	    font-size: 14px;
	    color: #442F2F;
	    line-height: 24px;
		display: flex;
		align-items: flex-start;
		flex-direction: column;
		justify-content: space-between;
}
.post-footer > .right{
	display: flex;
	align-items: center;
}
.post-footer > .right > img {
	width: 400px;
}

@media (max-width: 1600px) {
	.post-content {
		width: calc(100% - 80px);
	}
}

@media (min-width: 1px) and (max-width: 1200px) {
	.post-header>div>.title{
		width: calc(100% - 80px);
	}
}
@media (min-width: 680px) and (max-width: 959px) {
	.post-footer {
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-top: 20px;
	}
	.post-footer > .right > img {
		width: 100%;
	}
}
@media (max-width: 679px) {
	.post-footer {
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-top: 20px;
	}
	.post-footer > .right > img {
		width: 100%;
	}
	.post-header>div>.title{
		font-size: 24px;
		line-height: 36px;
	}
	.post-header,
	.post-header>div{
		height: 300px;
		gap: 70px;
	}
	.post-content{
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

h1 {
    font-size: 30pt;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
}

h2 {
    font-size: 24pt;
    line-height: 1.4;
    text-align: center;
    font-weight: 400;
}

h3 {
    font-size: 20pt;
    line-height: 1.4;
    font-weight: 400;
}

h4 {
    font-size: 17pt;
    line-height: 1.4;
    font-weight: bold;
}

h5 {
    font-size: 15pt;
    line-height: 1.4;
    font-weight: bold;
}

h6 {
    font-size: 14pt;
    line-height: 1.4;
    color: #808080;
    font-weight: 400;
}