/* simplememory */
/* 1. 隐藏广告元素 */
#google_ad_c1, #google_ad_c2 { display: none; }
#ad_under_post_holder #google_ad_c1, #google_ad_c2 { display: none; }

/* 2. syntaxhighlighter 字体统一（继承代替逐元素设置） */
.syntaxhighlighter { font-size: 14px; }

/* 3. 主容器 */
#home {
  opacity: 0.75;
  margin: 30px auto 50px;
  width: 85%;
  min-width: 950px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}

/* 4. 博客标题 */
#blogTitle h1 {
  font-size: 30px;
  font-weight: bold;
  font-family: "Comic Sans MS";
  line-height: 1.5em;
  margin-top: 20px;
  color: #515151;
}

/* 5. 导航 */
#navigator {
  font-size: 15px;
  border-bottom: 1px solid #ededed;
  border-top: 1px solid #ededed;
  height: 50px;
  clear: both;
  margin-top: 25px;
}

#navList a {
  display: block;
  width: 5em;
  height: 22px;
  float: left;
  text-align: center;
  padding-top: 18px;
}

#navList a:hover {
  color: #4C9ED9;
  text-decoration: none;
}

/* 6. 分类标题 */
.catListTitle {
  margin-top: 21px;
  margin-bottom: 10.5px;
  text-align: left;
  border-left: 10px solid rgba(82, 168, 236, 0.8);
  padding: 10px 0 14px 10px;
  background-color: #f5f5f5;
}

/* 7. 页面 body */
body {
  color: #000;
  background: url(https://images2.alphacoders.com/998/998287.jpg) center / cover no-repeat fixed;
  font-family: "Helvetica Neue", Helvetica, Verdana, Arial, sans-serif;
  font-size: 12px;
}

/* 8. 文章标题 */
#topics .postTitle {
  border: 0;
  font-size: 200%;
  font-weight: bold;
  float: left;
  line-height: 1.5;
  width: 100%;
  padding-left: 5px;
}

/* 9. 评论表单 */
div.commentform p { margin-bottom: 10px; }

#comment_form .comment_btn {
  padding: 5px 10px;
  height: 35px;
  width: 90px;
  border: 0;
  border-radius: 5px;
  background: #ddd;
  color: #999;
  cursor: pointer;
  font-family: "Lato", "Helvetica Neue", Helvetica, "Microsoft Yahei", 宋体, Arial, sans-serif;
  text-shadow: 0 0 1px #fff;
  display: inline;
}

/* 10. 评论区域 */
#blog-comments-placeholder, #comment_form {
  padding: 20px;
  background: #fff;
  box-shadow: 1px 2px 3px #ddd;
  margin-bottom: 50px;
}

.feedback_area_title {
  margin-bottom: 15px;
  font-size: 1.8em;
}

.feedbackItem {
  border-bottom: 1px solid #CCC;
  margin: 10px 0;
  padding: 5px;
  background: rgb(248, 248, 248);
}

#comment_form .title {
  font-weight: normal;
  margin-bottom: 15px;
}

/* 11. 动画（使用标准属性） */
.color_shine { background: rgb(226, 242, 255); }

.feedbackItem:hover {
  animation-name: color_shine;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}