.post__header {
  margin-bottom: 50px;
  font-size: 1em;
}

.post__date {
  color: #4677da;
  font-size: 1.1em;
}

.post__title {
  width: 75%;
  margin: 5px 0 10px;
  line-height: 1.6;
  word-break: break-all;
}

.post__author {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.post__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 12px;
}

.post__content {
  margin-top: 50px;
  font-size: 1em;
}

.post__content h3,
.post__content p,
.post__content span,
.post__content td {
  font-family:
    Helvetica Neue,
    Arial,
    PingFang SC,
    Microsoft YaHei,
    WenQuanYi Micro Hei,
    sans-serif !important;
  font-size: !important;
  line-height: 26px !important;
  color: #555 !important;
}

.post__content p {
  word-wrap: break-word;
}

.post__content div,
.post__content figure,
.post__content p,
.post__content section,
.post__content span,
.post__content table {
  max-width: 100%;
  overflow: scroll;
}

.post__content table {
  display: inline-block;
}

.mp-posts {
  margin-top: 50px;
}

.article-list__title {
  margin-bottom: 30px;
}

.article-list__link {
  color: #999;
}

.article-list {
  padding: 20px 0;
  border-bottom: 1px solid #f5f5f5;
}

.article-list:last-of-type {
  border-bottom: 0;
}

.article-item__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.article-item__title {
  display: block;
}

.article-item__date {
  font-size: 1.1em;
}

.article-item__cover {
  width: 100px;
  height: 60px;
  margin-right: 15px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}

.article-item__cover-placeholder {
  background: #f3f8f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-item__cover-placeholder .iconfont {
  font-size: 2.5em;
  opacity: 0.2;
}

.post-orilink {
  margin: 30px 0 40px;
}

.post-orilink__link {
  color: #49c5b6;
  display: block;
}

.post-orilink__link + .post-orilink__link {
  margin-top: 20px;
}

.post-tags {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 40px;
}

.post-tags,
.post-tags__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-tags__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2em;
  line-height: 32px;
  border: 0;
  border-radius: 10px;
  padding: 0 12px;
  margin-right: 12px;
  margin-bottom: 12px;
  color: #fff;
  background: #49c5b6;
  font-weight: 700;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.post-tags__item:hover {
  background: #47b9ac;
  color: #fff;
}

.post-tags__item .icon-tag {
  margin-right: 8px;
  color: #fff;
}

.post-related {
  margin: 30px 0;
}

.article-list + .mp-info {
  margin-top: 30px;
}

.post-operation {
  position: fixed;
  right: 25px;
  bottom: 150px;
  z-index: 50;
}

.post-operation__star {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}

.post-operation__star .iconfont {
  font-size: 1.6em;
  display: inline-block;
}

.post-operation__star .iconfont,
.post-operation__star:after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.post-operation__star:after {
  content: "\6536\85CF";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 1.1em;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.post-operation__star.is-favorited {
  background: #57c5b6;
  color: #fff;
}

.post-operation__star.is-favorited:after {
  content: "\5DF2\6536\85CF";
}

.post-operation__star:hover .iconfont {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.post-operation__star:hover:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.post-operation__download:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 1.1em;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

@media screen and (max-width: 1023px) {
  .post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .post-aside {
    display: none;
  }
}

.main-content {
  min-height: 150px;
}

@media screen and (max-width: 1023px) and (min-width: 830px) {
  .post .aside,
  .post .main-content {
    max-width: 730px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .article-item__cover {
    width: 200px;
    height: 120px;
    margin-right: 25px;
  }
}

@media screen and (max-width: 625px) {
  .post__header {
    margin-bottom: 60px;
  }
  .post__title {
    width: 100%;
    font-size: 1.7em;
  }
}

.sp-box {
  display: block;
  width: 100%;
  margin: 25px 0;
}

.fix-app {
  padding: 10px 15px;
}

.dev-ad-block {
  background-color: red;
}

.rich_pages {
  width: 70%;
  @media only screen and (max-width: 600px) {
    width: 90%;
  }
}
