.linenums{
    background: #f7f7f9;
}
li{
    list-style: inside;
}
/*
 * Responsive Content div width
 *
 * @file        cnblogs.css
 * @version     v1.0.0
 * @description Expanding MainContent div's width with large screen
 * @license     MIT License
 * @author      Moonache
 * {@link       }
 * @updateTime  2017-4-1;
*/
@media screen and (min-width: 1918px) and (max-width: 1922px) {
    #navList,#blogTitle,#main{
        width: 1518px;
    }
    #blogTitle h1{
        left: 176px;
    }
    #mainContent {
        width: 1200px;
    }
}

/*
 * block ads
 *
 * @file        cnblogs.css
 * @version     v1.2.0
 * @description block terrible baidu ads
 * @license     MIT License
 * @author      Moonache
 * {@link       }
 * @updateTime  2017-1-13;
*/

#sideBar {visibility:hidden !important;}

#sideBarMain {visibility:visible !important;}

/*
 * customed markdown css
 *
 * @file        cnblogs.css
 * @version     v1.1.0
 * @description reference github markdown css to enhance apperance,and amplify font-size a little
 * @license     MIT License
 * @author      Moonache
 * {@link       }
 * @updateTime  2017-1-23;
*/
#cnblogs_post_body {
    font-family: Helvetica, "Hiragino Sans GB", "微软雅黑", "Microsoft YaHei UI", SimSun, SimHei, arial, sans-serif;
    line-height: 1.6;
    margin: 0 auto;
    padding: 20px 36px;
    color:#333333;
}

#cnblogs_post_body,
#cnblogs_post_body p,
#cnblogs_post_body div {
    font-size: 16px;
}

#cnblogs_post_body h1 {
    padding-bottom: 0.3em;
    font-size: 2.25em;
    line-height: 1.2;
}

#cnblogs_post_body h2 {
    padding-bottom: 0.3em;
    font-size: 1.75em;
    line-height: 1.225;
}

#cnblogs_post_body h3 {
    font-size: 1.5em;
    line-height: 1.43;
}

#cnblogs_post_body h4 {
    font-size: 1.25em;
}

#cnblogs_post_body h5 {
    font-size: 1em;
}

#cnblogs_post_body h6 {
    font-size: 1em;
    color: #777;
}

#cnblogs_post_body a {
    color: #4183c4;
    text-decoration: none;
}

#cnblogs_post_body a:link {
    color: #4183c4;
    text-decoration: none;
}

#cnblogs_post_body a:hover {
    text-decoration: underline;
}

#cnblogs_post_body hr {
  height: 0;
  margin: 15px 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9a9a9a;
}

#cnblogs_post_body ol{
    margin: 1em 0 1em 40px;
}

.cnblogs_code{
    border: 1px solid #e1e1e8;
    background: #f7f7f9;
}
.cnblogs_code pre{
    margin: 0;
    padding: 0;
    white-space: pre;
    word-wrap: break-word;
    max-width: 100%;
    border: none;
    background: #f7f7f9;
}

.cnblogs_code_toolbar{
    display:none !important;
}


/*wiz code highlight
现在用不上，因为wiz直接发布的代码空格都没了，所以必须重新插入成博客园的代码
*/
.postBody pre, .postBody code {
    font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
    margin: 0 2px;
    padding: 2px 4px;
    white-space: pre-wrap;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

.postBody .pln {
    color: #48484C;
}

.postBody .str {
    color: #DD1144;
}

.postBody .kwd {
    color: #1E347B;
}

.postBody .com {
    color: #93A1A1;
}

.postBody .typ {
    color: teal;
}

.postBody .lit {
    color: #195F91;
}

.postBody .pun {
    color: #93A1A1;
}

.postBody .opn {
    color: #93A1A1;
}

.postBody .clo {
    color: #93A1A1;
}

.postBody .tag {
    color: #008;
}

.postBody .atn {
    color: teal;
}

.postBody .atv {
    color: #DD1144;
}

.postBody .dec {
    color: teal;
}

.postBody .var {
    color: teal;
}

.postBody .fun {
    color: #DC322F;
}

/* Put a border around prettyprinted code snippets. */
.postBody pre.prettyprint {
    background-color: #F7F7F9;
    padding: 0;
    border: 1px solid #E1E1E8;
}

.postBody pre.prettyprint.linenums {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}


.postBody pre.prettyprint.linenums ol.linenums li {
    color: #BEBEC5;
    line-height: 18px;
}

.wiz-list-level1 li{
    list-style-type: decimal-leading-zero !important;
}