/* ========== 文章详情页专用样式 ========== */

/* 页面主体容器 */
#other {
  width: 100%;
  background: #ffffff;
}

#other .container {
  box-sizing: border-box;
  width: 100%;
  position: relative;
  align-items: flex-start;
}

.article-page {
  padding-top: 24px;
  padding-bottom: 64px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-size: 14px;
  margin-bottom: 24px;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.article-page .article-item {
  width: 680px;
  margin: 0 auto;
}

.article-page .title {
  margin-top: 0;
  font-size: 24px;
  line-height: 36px;
  color: var(--text-main);
}

.article-item .subTitle {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin: 20px 0;
}

.article-body {
  padding-bottom: 44px;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 28px;
  color: #555555;
}

.article-body h2 {
  margin-top: 22px;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
}

.article-body h3 {
  margin-top: 18px;
  font-size: 17px;
  line-height: 26px;
  color: #333333;
  font-weight: normal;
}

.article-body ul {
  margin: 16px 0 0 18px;
}

.article-body li {
  margin-top: 10px;
  font-size: 14px;
  line-height: 26px;
  color: #555555;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
}

.article-body .w-full {
  width: 100%;
}

.article-body .m-center {
  margin: 0 auto;
}

.article-body table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border-spacing: 0;
  border-bottom: 1px solid #dc3545;
}

.article-body table thead {
  background-color: #f8d7da;
  border: 1px solid #dc3545;
}

.article-body table thead th {
  border: 1px solid #dc3545;
  padding: 8px;
  text-align: left;
}

.article-body table th,
.article-body table td {
  border: 1px dashed #dc3545;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.article-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #fffdf7;
  border: 1px solid rgba(211, 176, 116, 0.24);
  font-size: 13px;
  line-height: 24px;
  color: #7a6644;
}
