/* 全局样式 */
html {
  background: #f9f9f9; /* 使用浅灰色背景，营造明亮氛围 */
}
body {
  background: none;
  font-family: 'Helvetica Neue', Arial, sans-serif; /* 使用更现代的字体 */
  color: #333; /* 使用深色字体，增强对比度 */
}

/* 首页容器样式 */
#home {
  margin: 0 auto;
  opacity: 1;
  width: 70%;
  max-width: 1200px;
  height: 100%;
  min-width: 1000px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 使用轻微的阴影 */
  border-radius: 8px; /* 适中的圆角 */
  background-color: #fff; /* 白色背景 */
}

/* 博客标题样式 */
#blogTitle {
  text-align: center;
  margin-bottom: 30px;
}
#blogTitle h2 {
  clear: both !important;
  font-size: 2em;
  margin: 0;
  padding: 10px 0;
  border-bottom: 2px solid #0073e6; /* 使用蓝色作为主题色 */
}

/* 分类列表标题样式 */
.catListTitle {
  background-color: #f0f0f0; /* 浅灰色背景 */
  border-left: 6px solid #0073e6; /* 蓝色边框 */
  padding: 15px 0 15px 20px;
  font-size: 1.1em;
  color: #333;
}

/* 侧边栏标题样式 */
#sideBarMain h3 {
  color: #333;
  border-bottom: 2px solid #ddd; /* 浅灰色底部边框 */
  padding-bottom: 5px;
  font-size: 1em;
}

/* 雪花效果（若需保留，可调整透明度或移除） */
#Snow {
  display: none; /* 简洁风格下，可移除雪花效果 */
}

/* 推荐和反对按钮样式 */
#topics {
  position: relative;
}
#div_digg {
  position: absolute;
  bottom: 120px;
  width: 120px;
  right: 30px;
  border: 2px solid #0073e6;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}

/* 图标和链接样式 */
.icon_favorite {
  background: transparent url('https://images.cnblogs.com/cnblogs_com/shwee/1218109/o_kj.gif') no-repeat 0 0;
  padding-left: 20px;
}
#blog_post_info_block a {
  text-decoration: none;
  color: #0073e6;
  padding: 5px;
  border-bottom: 1px solid #0073e6; /* 使用实线下划线 */
  transition: color 0.3s;
}
#blog_post_info_block a:hover {
  color: #005bb5; /* 鼠标悬停时颜色变深 */
}