main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.post {
  display: flex;
  max-width: 800px;
  width: 100%;
  border-radius: 2.5rem;
  overflow: hidden;
  margin: 30px 0;
  align-items: stretch;     /* 让子项等高！ */
}
.post_img {
  flex: 1.3;
  min-width: 200px;
  max-width: 1000px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.post_img a, .post_img img {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  text-decoration-color: black;
}
.post_img img {
  object-fit: cover;
  transition: all 0.5s;
}

.post_page {
  flex: 1.2;
  padding: 25px 30px;
  background: rgb(238,228,219);
  box-sizing: border-box;
}

.post:hover .post_img a img{
	transform: scale(1.3) ;
}
.post:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 1.5px 3px rgba(0,0,0,0.10);
}

.post_page_title{
	word-break: break-all;
	/* background-color: black; */
}
.post_page_title a{
	text-decoration: none;
}
.post_page_title a h1{
	font-size: 25px;
	/* text-color: green; */
	color: #2d3a4a;
}
/* 文章卡片中的标签样式 */
.meta-row {
  color: #7d8595;
  font-size: 1.1em;
  display: flex;
  flex-wrap: wrap; /* 如果空间不够会自动折行 */
  gap: 18px;      /* 项之间的间隔 */
  align-items: center;
  font-family: 'Segoe UI', '微软雅黑', Arial, sans-serif;
}
.meta-row .meta-group {
  display: flex;
  align-items: center;
  gap: 5px;       /* 图标和文字之间的小间隙 */
}

.meta-row .meta-group strong {
  color: #63bfa5;
  font-weight: bold;
}

.meta-row .meta-group i, .meta-row .meta-group svg {
  margin-right: 3px;
  font-size: 1em;
  vertical-align: middle;
}
.meta-row .meta-group .muted {
  color: #7d8595;
  font-weight: normal;
}
.post_content{
	margin-top: 10px;
	padding: 10px;
	word-break: break-all;
	font-size: 20px;
}


