/* ------------------------------
* 全局布局（护眼、柔和、现代）
* ------------------------------ */
body {
background: #f4f6f7;
color: #222;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
line-height: 1.7;
margin: 0;
padding: 0;
}


#mainContent, #home, #post_detail, #cnblogs_post_body {
max-width: 860px;
margin: 0 auto;
padding: 20px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


/* ------------------------------
* 页头
* ------------------------------ */
#header {
background: #ffffff;
padding: 20px 0;
border-bottom: 0.5px solid #d7dee2;
margin-bottom: 10px;
}

#blogTitle h1 {
margin: 0;
font-size: 30px;
font-weight: 700;
color: #111;
}


#blogTitle h2 {
margin: 0;
font-size: 15px;
color: #666;
}


/* ------------------------------
* 导航栏
* ------------------------------ */
#navigator {
padding: 14px 0;
background: #ffffff;
border-bottom: 1px solid #e1e4e6;
}


#navList {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
margin: 0;
padding: 0;
list-style: none;
}


#navList li {
display: inline-block;
}


#navList a {
padding: 8px 20px;
font-size: 15px;
border-radius: 8px;
color: #333;
text-decoration: none;
transition: 0.2s ease;
}


#navList a:hover {
background: #e9eef0;
color: #000;
box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}


/* ------------------------------
* 文章标题
* ------------------------------ */
.postTitle {
text-align: center;
}

.postTitle a {
color: #111 !important;
font-size: 22px;
font-weight: 700;
text-decoration: none;
}
.postTitle a:hover {
color: #0a84ff !important;
}


/* ------------------------------
* 正文区域
* ------------------------------ */
#cnblogs_post_body p {
margin: 12px 0;
font-size: 16px;
color: #333;
}


#cnblogs_post_body img {
max-width: 100%;
border-radius: 6px;
}


}