@charset "utf-8";
/* 有序列表基础样式 */
.con ol,.con ol li {
  list-style-type: decimal; /* 默认数字序号 */
  margin-left: 20px;
}

/* 无序列表基础样式 */
.con ul,.con ul li {
  list-style-type: disc; /* 默认实心圆点 */
  margin-left: 20px;
  font-size:14px;
}
.con ul,.con ul li::marker {
    color:gray;
}
.con h2,.con h3,.con h4{
    margin-top:8px;
    color: #2d374b;
    font-size: 18px;
    font-weight: 600;
}
/* 自定义列表标记 */
.con ul.custom-circle { list-style-type: circle; } /* 空心圆点 */
.con ul.custom-square { list-style-type: square; } /* 方块标记 */
.con ol.upper-roman { list-style-type: upper-roman; } /* 大写罗马数字 */
.con ol.lower-alpha { list-style-type: lower-alpha; } /* 小写字母 */

/* 使用图片作为标记 */
.con ul.image-marker {
  list-style-image: url('marker.png');
}

/* 清除默认样式 */
.no-style {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
}
