/*------------------------------ banner头信息 --------------------------*/
/*设置文本选中颜色，看起来更酷一些*/
::selection { 
    color:white;
    background-color:#334960;
}
::-moz-selection { 
    color:white;
    background-color:#334960;
}
::-webkit-selection { 
    color:white;
    background-color:#334960;
}

/*****home和头部开始**************************/
#home {
 /*   margin: 0 auto;*/
    width: 72%;/*原始65*/
    min-width: 980px;/*页面的最低宽度,也就是页面顶部的宽度*/
    background-color: #fff;
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
/*博客标题*/
#blogTitle {
    height: 360px;  /*高度*/
    clear: both;
}
    /*主标题格式*/
    #blogTitle h1 {
        font-size: 50px;
        font-weight: bold;
        line-height: 1.8em;/*原始 1.6em*/
        margin-top: 10px;/*原始 15px */
    }

        #blogTitle h1 a {
            color: yellow;
        }
            /*超链接颜色*/
            #blogTitle h1 a:hover {
                color: red;
            }
    /*次标题格式*/
    #blogTitle h2 {
        font-weight: normal;
        font-family: Microsoft Yahei;
        font-size: 18px;/*原始 16px ；font-size: 1.0rem;*/      
        line-height: 1.8;
        color: #757575;
        float: left;        
    }

/*博文内容*/
.postBody {
    position: relative;
    /*width: 690px;*/
    width: 100%;
    height: auto;
    margin: 0;
    border: none;
    padding: 0;
    /*color: #494949;*/
    /*color:#111;*/ /*默认的颜色好看是好看但是太不利于阅读了*/
    /*font-family: Arial,Helvetica,sans-serif;*/
    font-family: 华文仿宋,Arial,Helvetica,sans-serif;
    font-size: 18px;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.6;
}

.cnblogs_code pre {
font-family: Courier New!important;
font-size: 15px!important;
word-wrap: break-word;
white-space: pre-wrap;
}

.cnblogs_code span {
font-family: Courier New!important;
font-size: 15px!important;
line-height: 1.5!important;
}