/* 标题 */
h2  
{
color: rgb(163,148,128);
padding-left : 10px;
background-image: linear-gradient(to right, rgba(171,213,227,0.5), rgba(171,213,227,1));
box-shadow: 10px 2px 5px  1px lightblue;
border-radius: 50px;
/*color: #F0FFF0;*/
}
h3  
{
color : #9C661F;
padding-left : 10px;
background-image: linear-gradient(to right, rgba(240,230,140,0.5), rgba(240,230,140,1));
box-shadow: 10px 2px 5px  1px lightyellow;
border-radius: 50px;
/*color: #F0FFF0;*/
}


/* 目录覆盖博客园样式 */
.catalog
{
color : #9C661F;
}
#cnblogs_post_body a {
    box-shadow: inset 0 0 0 0 #CDBE70;
    
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .4s ease-in-out, box-shadow .4s ease-in-out;

}
#cnblogs_post_body a:link {
    text-decoration: none;/*ID内超链接css优先级更大，需要手动覆盖*/
}
#cnblogs_post_body a:hover  {
     text-decoration:none;/*ID内超链接css优先级更大，需要手动覆盖*/
     box-shadow: inset 100px 0 0 0 #CDBE70;
     color: white;
}
/* 覆盖我自己定义的样式 */
#blogTitle h2 {
    background-image: none ;
    box-shadow: none;
    border-radius: none;
}




/* 内容 */

div.content
{
font-size : 1.12em;
/*background-color : #D2B48C;*/
border-style: outset;
border-color: #A39480;
padding: 20px 20px; /*内边距*/
margin : 5px;
//博客园markdowncss单行注释相当于把后面的全部注释，而非一行注释
//margin: 5px ;//三个值代表上左右下
}


/*分割*/
div.segment
{
font-size : 2em;
/*background-color : #D2B48C;*/
border-style: dashed;
border-color: #DCDCDC;
padding: 20px 20px; /*内边距*/
//博客园markdowncss单行注释相当于把后面的全部注释，而非一行注释
//margin: 5px ;//三个值代表上左右下
}

/**控制从里侧滑出**/
.popCatalogAnimate:hover
{
    transition:'0.3s all ease-in';
    right:0px;

}


/** 设置内部以及悬浮窗位置 **/
    .popCatalogAnimate {
	/** 边框设置 **/
        border:1px solid #000000;
	
	/** 空间设置 **/
        padding: 15px;
        background-color: #E0E0E0;
        height: 550px;
        width: 304px;
        right: -290px;
        position: fixed;
        
        
        transition: right .35s ease-in-out;
		
        /**流式布局**/
       box-sizing: border-box;
        /**标题过长自动换行设置**/
       overflow:auto;
       /**中文导致的过长不会自动换行需要设置该参数（强制文字在同一行显示使其达成英文过长换行效果，不设置中文不会过长会自动换行）**/
       white-space:nowrap;
    }
