/*整体设置*/
body{
   background-color: #f5fff7;
}
#home{
   width: 79%;
   box-shadow: 0px 5px 6px #8ec885;
}
a:hover{
   color: #008dd3;
   text-shadow: 0px 0px 6px #6fcbf8;
}

/*头部签名部分*/
#blogTitle{
    padding-right: 22em;
    text-align: center;
}
#blogTitle h2{
   float: none;
}

#blogTitle h1{
   margin-top: 5px;
}
#blogTitle h1 a{
   transition: color .3s ease;
}
#blogTitle:hover h1 a{
   color: #008dd3;
   text-shadow: 0px 0px 6px #6fcbf8;
}
#blogTitle h2{
   color: #000;
   transition: color .3s ease;
}
#blogTitle:hover h1 + h2{
  color: #008dd3;
   text-shadow: 0px 0px 6px #6fcbf8;
}

/*nav 部分*/
#navigator{
   margin-top: 15px;
}
#navList li{
   margin: 0;
}
#navList a{
   padding-top: 18px;
}

/*主体部分*/
.postTitle{
    border-left: 0px solid #008dd3;
    margin-top: 3px;
    margin-bottom: 5px;
}
#cb_post_title_url.postTitle2{
    color: #008dd3;
}
.day .postTitle a {
    padding-left: 2px;
    color: #000;
}
.postTitle a{
    color: #008dd3;
    transition: color .3s ease,
                    margin .3s ease;
}
.postTitle a:link{
    color: #008dd3;
}
.postTitle a:hover {
    margin-left: 3px;
    color: #008dd3;
    text-decoration: none;
    text-shadow: 0px 0px 6px #6fcbf8;
}

.c_b_p_desc{
    color: #8b9b90;
    transition: color 1s ease;
}
.c_b_p_desc:hover{
   color: #000;
}

.postDesc{
   margin-top: 2px;
}

/*其它杂项*/
#EntryTag a:hover {
    background: #008dd3;
    transition: all 0.4s ease;
}
#MySignature{
   text-align: right;
}