/* 模架详情页标题 */
.article-detail .article-detail-title {
  margin: 0;
  padding-top: 48px;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  text-align: center;
  word-break: break-word;
}
.article-detail .article-detail-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 16px auto 0;
  border-radius: 2px;
}
@media screen and (max-width: 992px) {
  .article-detail .article-detail-title {
    padding-top: 24px;
    font-size: 22px;
  }
  .article-detail .article-detail-title::after {
    width: 40px;
    margin-top: 12px;
  }
}
