a:link, .postDesc a:link, .postDesc a, #post_next_prev a,#topics .postTitle a {
  color: #74b9ff;
}
.blogpost-body blockquote {
  color: #fff
}
#cnblogs_ch, #under_post_card1, #under_post_card2{
    display: none
}
#leftcontentcontainer {
    margin-top: 0px!important;
}
.sidebar-block {
    margin-bottom: 0px;
}
.comment_textarea {
    max-width: 100%;
}
.comment-nav-right {
    font-size: 0px;
}

#topics {
    background-color: rgba(255, 255, 255, 0.3);
}
#topics .postTitle, #cnblogs_post_body, .blogpost-body, #topics .postDesc {
    color: #fff;
}

#post_detail {
    border-radius: 10px;
    overflow: hidden;
}
#comment_nav {
    margin:0px
}
#comment_form_container {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3)
}
.comment_textarea, #tbCommentBody {
    background: tan;
}
#comment_form_container p {
    font-size: 12px;
}
#sidebar_recentposts, .catListView, .sidebar-block {
  background-color: transparent;
}
#sideBar ul, #sidebar_topviewedposts ul {
  background-color: rgba(255, 255, 255, 0.3);
}
#sideBar ul a {
  color: #fff;
}
#cnblogs_post_body th, .blogpost-body th {
  background-color: #059669;
}
/* 评论区按钮 start */
#commentbox_opt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 提交评论按钮 */
#commentbox_opt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* 提交评论按钮 */
.comment_btn {
  position: relative;
  padding: 6px 20px;
  min-width: 90px;
  height: 32px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.35);
  overflow: hidden;
  outline: none;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comment_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.comment_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.comment_btn:hover::before {
  left: 100%;
}

.comment_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* 取消编辑按钮 */
#span_comment_canceledit a {
  position: relative;
  padding: 6px 16px;
  height: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#span_comment_canceledit a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

#span_comment_canceledit a:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 107, 107, 0.5);
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

#span_comment_canceledit a:hover::before {
  left: 100%;
}

/* 退出按钮 */
#commentbox_opt > a {
  position: relative;
  padding: 0px 16px;
  height: 32px;
  border-radius: 16px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(116, 185, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#commentbox_opt > a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

#commentbox_opt > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(116, 185, 255, 0.5);
  background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

#commentbox_opt > a:hover::before {
  left: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
  #commentbox_opt {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .comment_btn {
    padding: 6px 18px;
    font-size: 12px;
    min-width: 80px;
  }
  
  #span_comment_canceledit a,
  #commentbox_opt > a {
    padding: 6px 14px;
    font-size: 12px;
  }
}
/* 评论区按钮 end */

/* 评论区标题样式 start */
#commentform_title {
  background-image: none;
  padding-left: 0px;
}
#commentform_title a {
    display: none;
}

#commentform_title label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px 8px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

/* 方法1: 使用 content 属性替换文字 */
#commentform_title label {
  font-size: 0; /* 隐藏原始文字 */
}

#commentform_title label::before {
  content: '💬 写下你的想法';
  font-size: 16px; /* 恢复字体大小 */
  width: auto;
  height: auto;
  margin-right: 0;
  background-image: none;
  color: #1f2937;
  font-weight: 600;
}

/* 方法2: 如果想要图标+自定义文字 */
/*
#commentform_title label {
  text-indent: -9999px; // 隐藏原文字的另一种方法
  overflow: hidden;
}

#commentform_title label::after {
  content: '📝 发表你的评论';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  text-indent: 0;
  font-size: 16px;
  color: #1f2937;
}
*/

#commentform_title label:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* 响应式设计 */
@media (max-width: 768px) {
  #commentform_title label {
    font-size: 14px;
    padding: 6px 12px 6px 10px;
  }
  
  #commentform_title label::before {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
}
/* 评论区标题样式 end */

/* 作者资料样式 */
#author_profile_detail {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#author_profile_detail a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

#author_profile_detail a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.follower-count {
  font-size: 0;
}

.follower-count::before {
  content: '75943';
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
}


.following-count {
  font-size: 0;
}

.following-count::before {
  content: '13983';
  font-size: 14px;
  font-weight: 600;
  color: #059669;
}
#post_view_count {
    font-size: 0px;
}
#post_view_count::before {
    content: '103920';
  font-size: 14px;

}


/* 推荐反对按钮 - 固定在右下角 */
#div_digg {
  position: fixed;
  bottom: 0px;
  right: 120px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  align-items: center;
}

/* 推荐按钮 */
.diggit {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.diggit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.diggit:active {
  transform: translateY(-1px) scale(1.02);
}

/* 推荐按钮图标 */
.diggit::before {
  content: '👍';
  font-size: 20px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* 推荐数字 */
.diggnum {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0px;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 8px;
}
.diggnum::before {
  font-size: 14px;
  content: '3562';
}

/* 反对按钮 */
.buryit {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  margin-left: 0px;
}

.buryit:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.6);
}

.buryit:active {
  transform: translateY(-1px) scale(1.02);
}

/* 反对按钮图标 */
.buryit::before {
  content: '👎';
  font-size: 20px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* 反对数字 - 支持四位数 */
.burynum {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 14px;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 8px;
  margin-left: 0px;
}

/* 清除浮动 */
.clear {
  clear: both;
}

/* 提示文字 */
.diggword {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.diggword {
  display: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
  #div_digg {
    bottom: 20px;
    right: 20px;
    gap: 6px;
  }
  
  .diggit, .buryit {
    width: 60px;
    height: 60px;
  }
  
  .diggit::before, .buryit::before {
    font-size: 18px;
    top: 10px;
  }
  
  .diggnum, .burynum {
    font-size: 9px;
    bottom: 6px;
    min-width: 40px;
    padding: 1px 3px;
  }
}

