/* 全局設置 */
.post-content {
margin: 0 auto;
padding: 10px;
}
/* 圖片容器:上下間距 10px,確保與文字對稱 */
.img-container {
text-align: center;
margin: 10px auto;
}
.img-container img {
/* 移除強制 CSS width,改用 max-width 確保手機不爆版 */
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
/* 移除 border-radius 以呈現直角 */
/* border-radius: 8px; */
}
/* 描述文字樣式:18px, Times New Roman + 黑體, 黑色, 置中 */
.img-description {
text-align: center;
font-size: 18px;
color: #000000;
/* 優先使用 Times New Roman,後補黑體字 */
font-family: 'Times New Roman', Times, 'PingFang TC', 'Microsoft JhengHei', 'Heiti TC', sans-serif;
line-height: 1.5;
margin-top: 0px;
margin-bottom: 0px;
}
/* 日期標題樣式 */
.date-header {
text-align: center;
font-size: 18px;
font-family: 'Times New Roman', Times, serif;
color: #000000;
padding-bottom: 20px;
}