.strike-through {
    display: inline-flex;
    align-items: center;
    color: black;
    text-decoration-color: red;
    text-decoration-line: line-through;
    text-decoration-thickness: 2px; /* 调整删除线的厚度 */
    vertical-align: middle; /* 确保与周围的文本对齐 */
  }

  h1 {
    /* 可以根据需要调整字体大小和行高 */
    font-size: 24px;
    line-height: 1.2; /* 调整行高以适应删除线 */
  }
