
  /* 封装所有样式在模块容器内 */
  #policy-module {
    --bg-color: #ffffff;
    --text-color: #333333;
    --select-text-bg-color: #b5d6fc;
    all: initial;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
    isolation: isolate;
    /* 样式隔离 */
  }

  #policy-module * {
    all: revert;
    /* 重置继承样式 */
    box-sizing: border-box;
  }

  #policy-module .typora-export-content {
    padding: 30px;
    padding-bottom: 100px;
  }

  /* 精确复制原始样式 */
  #policy-module h2 {
    font-size: 1.75em;
    border-bottom: 1px solid #eee;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  #policy-module h3 {
    font-size: 1.5em;
    line-height: 1.43;
  }

  #policy-module p {
    margin: 0.8em 0;
    line-height: 1.6;
  }

  #policy-module ul {
    padding-left: 30px;
    margin: 0.8em 0;
  }

  #policy-module blockquote {
    border-left: 4px solid #dfe2e5;
    padding: 0 15px;
    color: #777777;
  }

  #policy-module hr {
    height: 2px;
    background-color: #e7e7e7;
    margin: 16px 0;
  }

  /* 保持所有原始样式规则 */
  #policy-module a {
    color: #4183c4;
    text-decoration: none;
  }

  #policy-module code {
    background-color: #f3f4f4;
    padding: 0 2px;
    font-family: "Lucida Console", Consolas, "Courier", monospace;
  }
