.sscard_content {
  padding: 0 14px;
  box-sizing: content-box;
  word-break: break-all;
  white-space: normal;
  font-size: 14px;
  color: #2f3238;
  min-height: 24px;
  padding-right: 24px;
  overflow: auto;
  height: 100%;
  h1 {
    margin-bottom: 10px;
    line-height: 30px;
  }
  h2 {
    margin-bottom: 10px;
  }
  h3 {
    margin-bottom: 10px;
  }
  h4 {
    margin-bottom: 10px;
  }
  blockquote {
    border-left: 3px solid rgba(110, 120, 197, 0.1);
    padding-left: 5px;
    color: #757b82;
  }
  & > p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 12px;
    &:last-child {
      margin-bottom: 0;
    }
  }
  ul {
    // 增加针对Markdown里的ul标签的处理  目前覆盖了okr消息在私聊群聊里的效果
    margin-left: 18px;
    margin-top: 18px;
  }
  ol {
    position: relative;
    counter-reset: list-number;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding-left: 0;
    margin-inline-start: 2em;

    & > li {
      counter-increment: list-number;
    }
  }
  ol ol,
  ol ul,
  ul ol,
  ul ul {
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 1em;
  }
  pre {
    margin: 0;
    white-space: break-spaces;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f6fb;

    code {
      display: inline-grid;
    }
  }
  a {
    color: #286cfb;
  }

  table {
    background: #ffffff;
    border-collapse: collapse;
    display: inline-block !important;
    font-size: 12px;
    width: auto;
    max-width: 100%;
    overflow-x: auto;
    word-break: break-word;

    font-size: 14px;
    font-family: SFProDisplay-Regular, SFProDisplay;
    font-weight: 400;
    color: #1f2227;
    line-height: 16px;

    &::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
  }
  tr {
    th,
    td {
      min-width: 120px;
      border: 1px solid #edeff4;
      padding: 8px 16px;
    }

    th {
      background: #f5f6fb;
      text-align: center;
    }
  }

  hr {
    border: none;
    border-top: 1px solid rgba(110, 120, 197, 0.1);
  }
  img {
    max-width: 100%;
  }
}
