/*顶部菜单*/
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding-left: 100px;
    padding-right: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
}

/*顶部-博客名横栏*/
#top {
    font-weight: normal;
    text-decoration: none;
    text-align: left;
    color: #333;
    font-size: 1.75em;
    padding-top: 0;
    padding-bottom: 15px;
    margin-right: 100px;
    margin-left: 100px;
    height: 60px;
}
#author_profile {
  font-size: 14px;
}
#div_digg {
  font-size: 14px;
}
/*正文字体大小*/
#cnblogs_post_body p {
  font-size: 15px;
  text-indent: 0;
}
#BlogPostCategory {
  font-size: 14px;
}

/*代码字体大小*/
pre > code[class*="language-"] {
  font-size: 1.1em;
}
body {
  font-size: 14.5px;
}
/*下一篇字体大小*/
#post_next_prev {
  line-height: 1.8;
  font-size: 14px;
}
.pager {
  text-align: right;
}

#leftmenu ul {
  list-style: none;
  color: #036;
  font-size: 14px;
}

#leftmenu h3 {
  font-size: 0.85em;
}
/*左侧菜单*/
#leftmenu {
    border:1px solid #e5e5e5;
    position: absolute;
    left: 100px;
    padding-left: 10px;
    margin-top: 0;
    width: 190px;
    top: 120px;
}

/*显示页面*/
#main {
  margin-left: 330px;
  margin-right: 330px;
  padding: 0;
  border-left: 1 solid #555;
  border-bottom: 0 solid #47f;
  text-decoration: none;
}
#taglist_title {
  margin-bottom: 10px;
  text-align: left;
}

/*文章标题*/
div.post h2 {
  font-size: 1.5em;
  text-align: left;
  color: #606060;
  font-weight: bold;
  background: #fff;
  padding-top: 0;
  margin-top: 0px;
  text-decoration: none;
}

/*h2标题*/
#cnblogs_post_body h2 {
  color: #000000;
  text-align: left;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0;
}
/*h5标题*/
h5 {
  margin: 0;
  padding: 0;
  padding-top: 0px;
  padding-bottom: 8px;
  font-size: 16px;
}
p.postfoot {
  font-size: 0.98em;
  color: #000;
  padding-top: 0;
  padding-bottom: 16px;
}

div.post {
  background: #fff;
  text-decoration: none;
  margin-bottom: 16px;
}

/*生成博客目录的CSS*/
#uprightsideBar{
    font-size:13px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:left;
    position:fixed;/*将div的位置固定到距离top:50px，right:0px的位置，这样div就会处在最右边的位置，距离顶部50px*/
    top:50px;
    right:0px;
    width: auto;
    height: auto; 
}
#sideBarTab{
    float:left;
    width:0px; 
    height: 0px;
    border:0px solid #e5e5e5;
    border-right:none;
    border-top:none;
    text-align:center;
    background:#ffffff;
}

/*目录内容*/
#sideBarContents{
    overflow:auto; 
    overflow-x:hidden;!important;
    float:left;
    width:300px;
    min-height:250px;
    max-height:700px;
    border:1px solid #e5e5e5;
    background:#ffffff;
}
#sideBarContents dl{
    margin:0;
    padding:0;
}

#sideBarContents dt{
    margin-top:5px;
    margin-left:5px;
}

#sideBarContents dd, dt {
    cursor: pointer;
}

#sideBarContents dd:hover, dt:hover {
    color:#A7995A;
}
#sideBarContents dd{
    margin-left:17px;
}
#sideBarContents dd.indent3{
    margin-left:29px;
}
#sideBarContents dd.indent4{
    margin-left:41px;
}
#sideBarContents dd.indent5{
    margin-left:53px;
}
#sideBarContents dd.indent6{
    margin-left:65px;
}

/*关掉底部不需要的内容*/
.comment_textarea {
  padding: 8px 14px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ddd;
  width: 1250px;
  max-width: 100%;
  border-radius: 3px;
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  margin-bottom: 10px;
}

/*回到顶部*/
#back-to-top {
    background-color:#ffffff;
    bottom: 0;
    color: #000000;
    border:1px solid #e5e5e5;
    border-bottom:none;
    padding: 10px 10px;
    position: fixed;
    right: 20px;
    cursor: pointer;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

/*页脚*/
#footer {
  margin: 0;
  padding-top: 100px;
  text-align: center;
  font-size: 13px;
  padding-right: 10px;
}


 