  /*基本样式 公共样式*/

  /* 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 {
    background-color: #ededed;
    color: #434343;
    font-size: 14px;
    font-family: "微软雅黑";
    position: relative;
  }

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

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

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

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

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

  img {
    border: 0;
  }

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

  .Main {
    padding: 10px 10px 0px 10px;
    background: #ededed;
    overflow: auto;
  }

  /*外框样式*/
  .Box {
    background: #fff;
    border: #d0d0d0 1px solid;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 20px;
    min-height: calc(100vh - 20px);
    box-sizing: border-box;
  }

  .Main p {
    display: block;
    line-height: 26px;
    white-space: pre-wrap;
  }

  .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: 20px;
    line-height: 2em;
  }

  .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;
  }