/*增加主题色*/
/*基本样式 公共样式*/
html {
  --bg-color: #FFF;
  --ft-title-color: #111;
  --ft-bold-color: #111;
  --ft-color: #666666;
  --ft-link-color: #4082FA;
}

html[theme=theme-black] {
  --bg-color: #1E2126;
  --ft-title-color: #FFF;
  --ft-bold-color: #FFF;
  --ft-color: #A8ACB3;
  --ft-link-color: #4082FA;
}

@font-face {
	font-family: 'HarmonyOS_Sans';
	font-weight: 400;
	src: url('https://lezhuan-info-prod.oss-cn-beijing.aliyuncs.com/static/HarmonyOS_Sans_Regular.ttf') format('truetype');
}

@font-face {
	font-family: 'HarmonyOS_Sans';
	font-weight: 500;
	src: url('https://lezhuan-info-prod.oss-cn-beijing.aliyuncs.com/static/HarmonyOS_Sans_Medium.ttf') format('truetype');
}

@font-face {
	font-family: 'HarmonyOS_Sans';
	font-weight: 600;
	src: url('https://lezhuan-info-prod.oss-cn-beijing.aliyuncs.com/static/HarmonyOS_Sans_Medium.ttf') format('truetype');
}

@font-face {
	font-family: 'HarmonyOS_Sans';
	font-weight: 700;
	src: url('https://lezhuan-info-prod.oss-cn-beijing.aliyuncs.com/static/HarmonyOS_Sans_Bold.ttf') format('truetype');
}

.ft-weight-normal,
.ft-weight-regular,
.ft-weight-400 {
  font-weight: 400;
}

.ft-weight-medium,
.ft-weight-500,
.ft-weight-600,
.MiSans-Medium,
.ft-num-bold {
  font-weight: 700;
  font-family: 'HarmonyOS_Sans_Medium', 'PingFangSC-Medium', 'PingFang SC', sans-serif;

  @supports (font: -apple-system-body) {
    font-weight: 500;
  }
}

.ft-weight-bold,
.ft-weight-700 {
  font-weight: 700;
  font-family: 'HarmonyOS_Sans_Bold', 'PingFangSC-Bold', 'PingFang SC', sans-serif;
}


  /* CSS Document */
  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  form,
  fieldset,
  input,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }

  body {
    font-size: 16px;
    font-family: 'HarmonyOS_Sans', 'PingFangSC', 'PingFang SC', "微软雅黑", sans-serif;
    position: relative;
  }

  p {
    padding: 0;
    margin: 0;
    text-indent: 2em;
  }

  p.no-indent {
    text-indent: 0;
  }

  a {
    font-size: 16px;
    font-family: "微软雅黑";
    cursor: pointer;
  }

  ol,
  ul {
    padding: 0;
    margin: 0;
  }

  ul li {
    list-style-type: none;
  }

  img {
    border: 0;
  }

  form {
    margin: 0px;
    padding: 0px;
  }

  html {
    background-color: var(--bg-color);
  }

  .Main {
    min-height: calc(100vh - 20px);
    padding: 8px 12px 0px 12px;
    overflow: auto;
    color: var(--ft-color);
  }

  /*外框样式*/
  .Box {
    margin-bottom: 60px;
  }

  .Main p {
    display: block;
    line-height: 22px;
    white-space: pre-wrap;
    margin: 18px 0;
  }

  .Main p.nullDiv {
    display: block;
    height: 26px;
    line-height: 26px;
  }

  .Main p.right {
    text-indent: 0;
    text-align: right;
  }

  .Main p.center {
    text-indent: 0;
    text-align: center;
  }

  .Main p.sub-title {
    font-weight: bold;
  }

  .Main .title {
    text-indent: 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    margin:0 0 12px;
    color: var(--ft-title-color);
  }

  .Main a {
    color: var(--ft-link-color);
    text-decoration: underline;
  }

  .underline {
    text-decoration: underline;
    text-underline-position: under;
  }

  table {
    color: inherit;
    font-size: inherit;
  }

  table p {
    text-indent: 0;
  }

  .scroll-box {
    overflow: auto;
    padding-bottom: 10px;
  }

  table {
    border-right: 1px solid;
    border-bottom: 1px solid;
    border-collapse: seperate;
    border-spacing: 0;
    margin: 2vw 0;
    width: 100%;
    box-sizing: border-box;
  }

  table.ft-samll{
    font-size: 10px;
  }

  table td {
    border-left: 1px solid;
    border-top: 1px solid;
    text-align: center;
  }

  th {
    text-align: center !important;
  }

  th,
  td {
    padding: 0 1.2vw;
    font-weight: normal;
    word-wrap: break-word;
    word-break: break-all;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  * {
    word-break: break-all;
  }

  strong, b {
    color: var(--ft-bold-color);
  }