/*navbar*/
.header {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header:before, .header:after {
  display: none;
}
.header .logo-wrapper .logo {
  font-size: 20px;
  font-weight: bold;
}

/**/
.main{
  display: flex;
  justify-content: center;
}
.content-wrapper {
  padding: 50px 20px;
}
@media screen and (min-width: 768px){
  .content-wrapper {
    width: 600px;
    padding: 15px 20px;
  }
}



/*文章*/

.post .post-header .post-title {
  margin: 0;
  font-size: 40px;
  font-weight: bold;
}
#posts .post-header .post-title {
  font-size: 24px;
  font-weight: bold;
}
.post .post-header .post-meta .post-category a::before {
  content: '';
}

.post .post-content {
  word-break: break-all;
}

.post .post-content h2{
  font-weight: bold;
  font-size: 20px;
}

.post-time{
  display: none;
}

.post .post-content img{
  border: 1px solid #ededed;
  margin-bottom: 30px;
}



/*页脚*/
.footer .social-links a[title=rss]{
  display: none;
}
.copyright .power-by,
.copyright .division,
.copyright .theme-info{
  display: none;
}



.back-to-top{
  bottom: 45%;
  background: #c05b4d;
  color: #fff;
  width: 30px;
  height: 40px;
  font-size: 18px;
  border-radius: 2px;
  line-height: 40px;
  text-align: center;
}




