@charset "utf-8";
article {
  font-size: 14px;
  line-height: 2em;
  word-break: break-word; /* 文本行的任意字内断开 */
  word-wrap: break-word; /* IE */
  min-height: 100px;
}
article img {
  border: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 100%;
}
article em {
  font-style: italic;
}
article p {
  margin-top: 0px;
  margin-bottom: 20px;
}
article ol, article ul {
  list-style-position: outside;
  list-style-type: disc;
  margin-left: 1em;
}
article A:link, article A:visited {
  text-decoration: underline;
  color: #212121;
}
article A:hover {
  text-decoration: none;
  color: var(--blue1);
}
article h1, article h2, article h3, article h4, article h5, article h6 {
  color: #212121;
  line-height: 1.5em;
  font-weight: 600;
  margin-bottom: 5px;
}
article h1 {
  font-size: 20px;
}
article h2 {
  font-size: 18px;
}
article h3 {
  font-size: 16px;
}
article h4 {
  font-size: 15px;
}
article h5 {
  font-size: 14px;
}
article h6 {
  font-size: 13px;
}
article table {
  border-collapse: collapse;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
article table th {
  background-color: #F7F7F7;
  font-weight: bold;
  text-align: center;
}
article table .ue-table-interlace-color-single td {
  background-color: #FCFCFC;
}
article table .ue-table-interlace-color-double td {
  background-color: #F7FAFF;
}
article table td, table th {
  border: 1px solid #E0E0E0;
  padding: 2px 10px;
}
article table thead th {
  background-color: #7D7D7D;
  color: #FFFFFF;
  height: 30px;
}
/*代码*/
article pre {
  font-family: "Consolas";
  word-break: break-word; /* 文本行的任意字内断开 */
  word-wrap: break-word; /* IE */
  white-space: -hp-pre-wrap; /* HP printers */
  white-space: -o-pre-wrap; /* Opera 7 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  padding: 10px;
  background-color: #F8F8F8;
  border: 1px solid #E7EAED;
  border-radius: 2px;
}
/*引用*/
article blockquote {
  background-color: #F8F8F8;
  border: 1px solid #E7EAED;
  padding: 10px;
  word-break: break-word; /* 文本行的任意字内断开 */
  word-wrap: break-word; /* IE */
  white-space: -hp-pre-wrap; /* HP printers */
  white-space: -o-pre-wrap; /* Opera 7 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  border-radius: 2px;
  margin-block-start: 0px;
  margin-block-end: 20px;
}
article blockquote p {
  margin: 0px;
  margin-block-start: 0px;
  margin-block-end: 0px;
}