/* 主体统一间距与字体 */
body {
  font-family: 'Microsoft YaHei', sans-serif;
  line-height: 1.8;
  color: #333;
  background-color: #f9f9f9;
}

.section {
  padding: 3rem 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  max-width: 960px;
}


/* 标题样式 */
h1, h2 {
  font-weight: bold;
  color: #0056b3;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* 引导语或小标题 */
.lead {
  color: #555;
  font-size: 1.25rem;
}

/* 图片占位样式 */
.img-placeholder {
  background-color: #e9ecef;
  border: 2px dashed #adb5bd;
  height: 220px;
  text-align: center;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* 图片圆角化（如果你使用真实图片） */
img.img-fluid {
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

/* 有序列表优化 */
ol {
  padding-left: 1.2rem;
}
ol li {
  margin-bottom: 0.75rem;
}

/* 页脚美化 */
footer {
  font-size: 0.95rem;
}

/* 移动端间距优化 */
@media (max-width: 768px) {
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
