/* 通用设置 */
body {
    background-color: #f5f5f5;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* 主页容器 */
#home {
    margin: 50px auto;
    padding: 30px;
    width: 80%;
    min-width: 980px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 标题区域 */
#blogTitle {
    height: 100px;
    background: none;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #ccc;
}
#blogTitle h1 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin: 0;
}
#blogTitle h2 {
    font-size: 16px;
    font-weight: normal;
    color: #666;
    margin: 0;
}

/* 导航栏 */
#navigator {
    background-color: #222;
    padding: 10px 15px;
}
#navList a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 20px;
}
#navList a:hover {
    text-decoration: underline;
}

/* 博客统计 */
.blogStats {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

/* 文章列表 */
.day {
    background: #fafafa;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #eee;
}
.postTitle {
    font-size: 20px;
    border-left: 4px solid #666;
    padding-left: 10px;
    margin: 0 0 10px 0;
}
.postTitle a {
    color: #000;
    text-decoration: none;
}
.postTitle a:hover {
    color: #555;
}

.postCon {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* 附加信息 */
.postDesc {
    font-size: 13px;
    color: #888;
    text-align: left;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/* 分类/侧边栏模块 */
.newsItem, .catListEssay, .catListLink, .catListNoteBook, .catListTag,
.catListPostCategory, .catListPostArchive, .catListImageCategory,
.catListArticleArchive, .catListView, .catListFeedback, .mySearch,
.catListComment, .catListBlogRank, .catList, .catListArticleCategory,
#blog-calendar, #topics, .entrylist {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 20px;
    padding: 15px;
}

/* 分类标题 */
.catListTitle, .CalTitle {
    font-weight: bold;
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}

/* 评论输入框 */
#tbCommentBody {
    width: 100%;
    height: 200px;
    background: #fff;
    border: 1px solid #ccc;
    font-size: 14px;
    padding: 10px;
}

/* 其他非必要组件隐藏或简化 */
.c_ad_block, .cnblogs_code_toolbar {
    display: none;
}

.cnblogs_code, .cnblogs_code div {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px;
    font-family: monospace;
    font-size: 14px;
    overflow-x: auto;
}

#main {
    min-width: 640px;
}

/* 搜索框 */
#q {
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px;
}
