/* 复刻 mayibao src/pages/open/_components/ArticleCard.module.less */
.page {
  min-height: 100vh;
  background: #f5f5f5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 48px;
  box-sizing: border-box;
}

.article {
  background: #fff;
  border-radius: 8px;
  margin-top: 24px;
  padding: 48px 102px;
  box-sizing: border-box;
}

.date {
  font-size: 14px;
  font-family: 'PingFang SC', sans-serif;
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
  margin-bottom: 16px;
}

.title {
  font-size: 40px;
  font-family: 'PingFang SC', sans-serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  line-height: 56px;
  margin: 0 0 24px;
  word-break: break-word;
}

.summary {
  background: #f5f7fa;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 32px;
}

.summaryTitle {
  font-size: 16px;
  font-family: 'PingFang SC', sans-serif;
  font-weight: 600;
  color: #1677ff;
  margin-bottom: 12px;
  line-height: 22px;
}

.summaryPoint {
  font-size: 14px;
  font-family: 'PingFang SC', sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
}

.content {
  font-size: 16px;
  font-family: 'PingFang SC', sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
}

.content h2,
.content h3,
.content h4 {
  color: rgba(0, 0, 0, 0.85);
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 600;
}

.content h2 { font-size: 24px; line-height: 34px; }
.content h3 { font-size: 20px; line-height: 28px; }
.content h4 { font-size: 18px; line-height: 26px; }

.content p { margin-bottom: 16px; }

.content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}

.content ul,
.content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content li { margin-bottom: 8px; }

.content strong { color: #1677ff; }

.content blockquote {
  border-left: 4px solid #1677ff;
  padding: 12px 20px;
  background: #f0f5ff;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
}

.content a {
  color: #1677ff;
  text-decoration: none;
}

.content a:hover { text-decoration: underline; }

/* 正文内联语义高亮（原各页 index.module.less 的 .keyword / .warn） */
.keyword { color: #1677ff; font-weight: 600; }
.warn { color: #e71648; font-weight: 600; }

/* ============ 响应式 ============ */
@media (max-width: 970px) {
  .container { padding: 0 20px 32px; }
  .article { padding: 32px 48px; }
  .title { font-size: 32px; line-height: 44px; }
}

@media (max-width: 750px) {
  .container { padding: 0 16px 24px; }
  .article {
    padding: 20px 16px;
    margin-top: 16px;
    border-radius: 8px;
  }
  .date { font-size: 12px; margin-bottom: 8px; line-height: 18px; }
  .title { font-size: 22px; line-height: 30px; margin-bottom: 16px; }
  .summary { padding: 14px 16px; margin-bottom: 20px; border-radius: 8px; }
  .summaryTitle { font-size: 14px; margin-bottom: 10px; }
  .summaryPoint { font-size: 13px; line-height: 18px; }
  .content { font-size: 15px; line-height: 22px; }
  .content h2,
  .content h3,
  .content h4 { margin-top: 24px; margin-bottom: 12px; }
  .content h2 { font-size: 18px; line-height: 26px; }
  .content h3 { font-size: 16px; line-height: 24px; }
  .content h4 { font-size: 15px; line-height: 22px; }
  .content p { margin-bottom: 12px; }
  .content img { border-radius: 8px; margin: 12px 0; }
  .content ul,
  .content ol { padding-left: 20px; margin-bottom: 12px; }
}