/* 一级标题 */
h1 {
    text-align: center;
}

/* 二级标题 */
h2 {
  font-size: 1.5em;
}
/* 二级标题内容 */
h2 .content {
  display: inline-block;
  font-weight: bold;
  background: rgb(239, 112, 96);
  color: #ffffff;
  width:100%;
  padding: 3px 1px;
  border-radius: 10px;
}
/* 二级标题修饰 请参考有实例的主题 */
h2:after {
  display: inline-block;
  content: " ";
  vertical-align: bottom;
}
/* 三级标题 */
#cnblogs_post_body h3 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin: 10px 0;
  font-size: 20px;
  color : #ee5d15;
  border-bottom: #ee5d15;
  border-bottom-style: solid;
  width:fit-content;
  width:-webkit-fit-content;
  width:-moz-fit-content;
}

#cnblogs_post_body h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

h4 {
  color : #ee5d15;
  font-size: 1em;
}

#cnblogs_post_body h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}
h5 {
   color : #ee5d15
}

/* 无序列表整体样式
 * list-style-type: square|circle|disc;
 */
ul {
  list-style-type:circle;
}
/* 有序列表整体样式
 * list-style-type: upper-roman|lower-greek|lower-alpha;
 */
ol {
  list-style-type: lower-alpha;
}
/* 列表内容，不要设置li
 */
li section {
}
/* 引用
 * 左边缘颜色 border-left-color: black;
 * 背景色 background: gray;
 */
.multiquote-1 {
  border-left-color: rgb(239, 112, 96);
  background: #fff9f9;
}
/* 引用文字 */
.multiquote-1 p {
}
/* 链接 
 * border-bottom: 1px solid #009688;
 */

/* 加粗 */
strong {
}
/* 斜体 */
em {
}
/* 加粗斜体 */
em strong {
}
/* 删除线 */
del {
}
/* 分隔线
 * 粗细、样式和颜色
 * border-top: 1px solid #3e3e3e;
 */
hr {
}
/* 图片
 * 宽度 width: 80%;
 * 居中 margin: 0 auto;
 * 居左 margin: 0 0;
 */
img {
}
/* 图片描述文字 */
figcaption {
}
/* 行内代码 */
p code, #nice li code {
  color: rgb(239, 112, 96);
}
/* 非微信代码块
 * 代码块不换行 display: -webkit-box !important;
 * 代码块换行 display: block;
 */
pre code {
}
/*
 * 表格内的单元格
 * 字体大小 font-size: 16px;
 * 边框 border: 1px solid #ccc;
 * 内边距 padding: 5px 10px;
 */
table tr th,
table tr td {
}
/* 脚注文字 */
.footnote-word {
  color: #ff3502;
}
/* 脚注上标 */
.footnote-ref {
  color: rgb(239, 112, 96);
}
/* "参考资料"四个字 
 * 内容 content: "参考资料";
 */
.footnotes-sep:before {
}
/* 参考资料编号 */
.footnote-num {
}
/* 参考资料文字 */
.footnote-item p { 
}
/* 参考资料解释 */
.footnote-item p em {
}
/* 行间公式
 * 最大宽度 max-width: 300% !important;
 */
.block-equation svg {
}
/* 行内公式
 */
.inline-equation svg {  
}