/* 页面整体样式 */
body {
    background: url('https://example.com/mountain-water.jpg') no-repeat center center fixed; /* 替换为水墨山水背景图 */
    background-size: cover;
    color: #333333; /* 字体颜色为深灰色 */
    font-family: 'KaiTi', 'SimSun', sans-serif; /* 使用默认字体 */
    margin: 0;
    padding: 0;
}

#home {
    margin: 0 auto;
    width: 80%;
    min-width: 980px;
    background-color: rgba(255, 255, 255, 0.95); /* 白色背景，半透明 */
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
    border-radius: 10px;
    border: 1px solid #e0e0e0; /* 轻微边框 */
}

/* 博客标题样式 */
#blogTitle {
    height: 100px;
    clear: both;
    background: linear-gradient(90deg, #f0f0f0, #e0e0e0); /* 浅灰色渐变 */
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

#blogTitle h1 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.8em;
    margin-top: 10px;
    color: #333333;
    text-shadow: 0 0 5px #ffffff; /* 轻微阴影 */
}

#blogTitle h2 {
    font-weight: normal;
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
}

/* 导航栏样式 */
#navigator {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 10px;
}

#navList a:link, #navList a:visited, #navList a:active {
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

#navList a:hover {
    text-shadow: 0 0 5px #ffffff;
    color: #000000;
}

/* 文章标题和内容样式 */
.postTitle {
    border-left: 8px solid #666666; /* 深灰色边框 */
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 24px;
    float: right;
    width: 100%;
    clear: both;
}

.postTitle a:link, .postTitle a:visited, .postTitle a:active {
    color: #333333;
    transition: all 0.4s linear 0s;
}

.postTitle a:hover {
    margin-left: 30px;
    color: #000000;
    text-decoration: none;
    text-shadow: 0 0 5px #ffffff;
}

.postCon {
    float: right;
    line-height: 1.5em;
    width: 100%;
    clear: both;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 文章附加信息样式 */
.postDesc {
    background: rgba(255, 255, 255, 0.95);
    color: #666666;
    float: left;
    width: 100%;
    clear: both;
    text-align: left;
    font-size: 12px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 侧边栏和其他模块样式 */
.newsItem, .catListEssay, .catListLink, .catListNoteBook, .catListTag, .catListPostCategory,
.catListPostArchive, .catListImageCategory, .catListArticleArchive, .catListView,
.catListFeedback, .mySearch, .catListComment, .catListBlogRank, .catList, .catListArticleCategory, #blog-calendar {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    word-wrap: break-word;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.catListTitle {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
}

/* 隐藏广告 */
.c_ad_block {
    display: none;
}
div#loadingDiv {
    display: none;
}