/*
 ** 头部标题
*/
#blogTitle {
    position: relative;
    top: 90px;
    left: 0;
    width: 100%;
    height: 75px;
    margin: 0;
    border: none;
    padding: 0;
    background: none;
    text-align: center;
}
#blogTitle h1 {
    float: inherit;
    margin: 0;
    border: none;
    padding: 0;
}
#header {
    height: 210px;
}
#navigator {
    top: 0px;
}
/*
  ** 左右对调
*/
#mainContent {
    float: left;
}
#sideBar {
    width: 205px;
    height: auto;
    float: right;
}
/*
  ** 描述多行隐藏
*/
.c_b_p_desc {
    word-wrap: break-word;
    word-break: break-all;
    overflow: hidden;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/*
  ** 隐藏主页每项描述
*/
.c_b_p_desc {
    display: none;
}
/*
  ** 隐藏主页每项阅读状况
*/
.postDesc {
    display: none;
}
.postTitle {
    border-bottom: #ccc 1px dashed;
}
.day {
    position: relative;
    width: 500px;
    height: auto;
    margin: 0 20px 0 20px;
    border: none;
    padding: 0;
}
.postTitle {
    width: 500px;
}
#mainContent .forFlow {
    width: 500px;
}
#sideBar {
    width: 400px;
}

/*
   ** 左侧导航部分
**/
#nav {
    z-index: 101;
    position: fixed;
    left: 0px;
    top: 200px;
    width: 150px;
    text-align: center;
    animation: mymove 3s;
    color: #fff;
    font-weight: 800;
}
@keyframes mymove {
    from {
        left: -150px
    }
    to {
       left: 0px
    }
}
#nav ul li {
    width: 100%;
    height: 40px;
    line-height: 18px;
    margin-bottom: 10px;
    font-size: 40px;    
    background: rgba(0,0,0,.4);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
#nav ul li a {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 40px;
    text-decoration: none;
    position: relative;
    transition: all 0.5s 0.5s;
}
#nav ul li a:hover {
    color: #000;
}
#nav ul li a:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background: #fff;
    left: -20px;
    transform: skewX(-36deg);
    background: rgba(255,255,255,1);
}
#nav ul li a:hover:before {
    transform: translateX(180px) skewX(-36deg);
    opacity: 0;
    transition: all 1s;
}
/*
   ** 隐藏二级页面的广告部分
*/
#ad_t2, #cnblogs_c1, #under_post_news, #cnblogs_c2, #under_post_kb, #HistoryToday{
    display: none;
}
/*
  ** 设置右部显示
*/
#leftcontentcontainer {
    position: relative;
    width: 450px;
    height: auto;
    margin: 0;
    border: none;
    padding: 0;
    background: none;
}
/*
    **标题居中
*/
.catListTitle {
    width: 450px;
    height: auto;
    text-align: center;
    font-size: 20px;
}
/*
    *** 每一行的展示
*/
#sideBarMain ul {
    width: 450px;
}
#sideBarMain ul li {
    height: 40px;
    margin-bottom: 5px;
    transition: all 0.2s;
}
#sideBarMain ul li a{
    display: block;
    height: 100%;
    text-decoration: none;
    line-height: 40px;
    font-size: 18px;
}
#sideBarMain ul li:hover{
    transform: scale(1.1)
}
#sideBarMain ul li:hover a{
    color: #000;
}
/*
  ** 二级页面的展示问题
*/
.entrylistPosttitle a{
        font-size: 18px;
}
.entrylistDescription, .entrylistTitle {
    display: none;
}
div.commentform textarea {
    width: 119%;
    height: 100px;
    font-size: 13px;
    border: 1px solid #ccc;
    font-family: 'PingFang SC','Helvetica Neue','Helvetica','Arial',sans-serif;
}
/*
  ** 导航栏的适配
*/
@media only screen and (max-width: 500px){
  #nav {
      width: 100%;
      position: relative;
      top: 0;
  }
  #nav ul li a:hover:before {
      transform: translateX(500px) skewX(-36deg);
          opacity: 0;
          transition: all 1s;
  }
  #TopViewPostsBlock a {
      margin-left: 15%;
  }
}