/* 基础字体设置 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* 主内容区调整 */
#main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 20px;
}

/* 文章区域 */
#mainContent {
    flex-grow: 1;
    background: #fff;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 4px;
}

/* 标题样式 */
.postTitle {
    font-size: 2.2em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}