/* 基础段落样式 */
p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1em;
  text-indent: 2em; /* 新增：段首缩进2字符 */
}

/* 特殊段落样式（通过 class 引用） */
.text-style {
  text-align: justify;  /* 两端对齐 */
  padding: 10px;        /* 内边距 */
  background: #f5f5f5;  /* 浅灰色背景 */
  border-left: 3px solid #666; /* 左侧装饰线 */
  text-indent: 2em;     /* 确保特殊样式也保持缩进 */
}

/* 不需要缩进的段落可以单独设置 */
.no-indent {
  text-indent: 0; /* 取消缩进 */
}