/* ==================== Content Page Layout ==================== */

/* 内容页主容器 */
.main {
  background-color: #eff1f3;
  padding: 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* ==================== Article Breadcrumb ==================== */
.article-breadcrumb {
  font-size: 12px;
  text-align: right;
  color: var(--text-gray);
  padding: 15px 0 10px;
}

.article-breadcrumb a {
  color: var(--text-gray);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ==================== Article ==================== */
#article {
  background-color: white;
  padding: 50px 15%;
  margin-bottom: 14px;
  min-height: 500px;
}

@media (max-width: 768px) {
  #article {
    padding: 40px 5%;
  }
}

/* 文章标题 */
#article-title {
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  color: var(--primary);
  font-weight: bold;
  margin: 0 auto;
}

/* 文章信息 */
#article-info {
  font-size: 12px;
  text-align: center;
  margin-top: 40px;
  color: var(--text-gray);
}

#article-info .article-info-item {
  padding-right: 14px;
}

/* 分隔线 */
.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

/* 文章内容 */
.article-content {
  text-align: left;
  font-size: 16px;
  line-height: 2em;
  color: var(--text-dark);
}

/* 段落样式 */
.article-content p {
  line-height: 1.5em;
  margin-bottom: 5px;
  margin-top: 5px;
  text-indent: 42px;
  text-align: left;
}

/* 加粗文字 */
.article-content strong {
  font-weight: bold;
  color: var(--text-dark);
}

/* 图片 */
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  width: 676px;
}

/* 图片容器居中 */
.article-content p[style*="text-align: center"] {
  text-align: center;
}

/* 文章底部 */
#article-foot {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: var(--text-gray);
}

#article-foot .article-foot-item {
  padding: 40px;
}