/* 文章详情公用样式 */
.article-content {
  padding-bottom: 5rem;
}

.position-relative {
  position: relative;
}

.section-card {
  padding: 5rem;
  border-radius: 2rem;
  background: var(--light-primary);
  overflow: hidden;
}

.section-margin {
  margin-top: 2rem;
}

/* 内容部分 */
.mce-content {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--font-color-6);
}

/* 标题部分 */
.title {
  font-size: 2.8rem;
  color: var(--red-light-1);
  font-weight: bold;
}
.subtitle {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--font-color-6);
  margin-top: 3rem;
}

/* 来源、审核内容 */
.content-footer {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  color: #b2b2b2;
}
.footer-item {
  margin-top: 0.7rem;
}

/* 上、下篇文章 */
.article-footer {
  margin-top: 5rem;
  font-size: 1.4rem;
  color: var(--font-color-6);
  line-height: 2;
}

@media (max-width: 767px) {
  .article-footer {
    margin-top: 1.25rem;
    font-size: 0.7rem;
    line-height: 1.05rem; 
  }
}