
/* 设置主页和详情页字体 */
body {
  color: #1a1a1a;
  font-size: 1em;
  background: #eee;
}
#cnblogs_post_body {
    color: #1a1a1a;
}

.catListTitle, .sidebar-block h3, .dayTitle, .CalTitle {
    background-color: #25bb9b;
}
.catListTitle, .sidebar-block h3{
  border: none;
}

#navigator {
  background: #3C4556;
  border: 2px solid #3d444c;
}
.Cal {
  background: #fff;
}
#navList a:link {
    text-shadow: none;
}

/* 隐藏系统标题 */
#blogTitle {
  display: none;
}

/* 头像和社交 */
.c-portrait {
  text-align: center;
  padding: 50px 0;
  background: #3C4556;
  color: #fff;
  margin-bottom: -40px;
}
/* 头像 */
.c-portrait > img {
  display: inline-block;
  height: 80px;
  border-radius: 50%;
}
/* 标题和签名 */
.c-portrait h1 {
  font-size: 25px;
  font-weight: bold;
  margin: 5px 0;
}
.c-portrait h1 a {
  color: #fff;
}
.c-portrait h2 {
  font-size: 16px;
  margin: 7px 0 10px;
  color: #ccc;
}
/* 社交图标 */
.c-social a {
  color: #959da5;
  display: inline-block;
  vertical-align: middle;
}

/* **********************
 * 隐藏广告
 * **********************/
#ad_t2,
#opt_under_post,
.c_ad_block,
#under_post_news,
#under_post_kb {
  display: none !important;
}

/*
使用了Monokai Sublime的黑色主题皮肤，但是还存在样式冲突，需要自己修改
这个样式只适合使用makedown编写的博客
Monokai Sublime style. Derived from Monokai by noformnocontent https://nn.mit-license.org/
*/
pre {
    /*控制代码不换行*/
    white-space: pre;
    word-wrap: normal;
}
.cnblogs-markdown .hljs {
    display: block;
    overflow: auto;
    padding: 1.3em 2em !important;
    font-size: 1em !important;
    background: #272822 !important;
    color: #FFF;
    max-height: 2000px;
}
.hljs,
.hljs-tag,
.hljs-subst {
    color: #f8f8f2;
}
.hljs-strong,
.hljs-emphasis {
    color: #a8a8a2;
}
.hljs-bullet,
.hljs-quote,
.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-link {
    color: #ae81ff;
}
.hljs-code,
.hljs-title,
.hljs-section,
.hljs-selector-class {
    color: #a6e22e;
}
.hljs-strong {
    font-weight: bold;
}
.hljs-emphasis {
    font-style: italic;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-name,
.hljs-attr {
    color: #f92672;
}
.hljs-symbol,
.hljs-attribute {
    color: #66d9ef;
}
.hljs-params,
.hljs-class .hljs-title {
    color: #f8f8f2;
}
.hljs-string,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-selector-id,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-addition,
.hljs-variable,
.hljs-template-variable {
    color: #e6db74;
}
.hljs-comment,
.hljs-deletion,
.hljs-meta {
    color: #75715e;
}
/* 黑色主题makedown代码结束 */
/*makedown行间代码样式 */
.cnblogs-markdown code {
    color: #c7254e;
    border: none !important;
    font-size: 1em !important;
    background-color: #f9f2f4 !important;
    font-family: sans-serif !important;
}