    /* 强制表格居中 */
    table.ptyx {
      margin: 0 auto; /* 水平居中 */
      border-collapse: collapse; /* 防止双线 */
    }

    /* 去掉所有表格线条 */
    table.ptyx, table.ptyx th, table.ptyx td {
      border: none !important; /* 去掉所有边框 */
    }

    /* 设置单元格内容居中 */
    .ptyx td {
      text-align: center; /* 水平居中 */
      vertical-align: middle; /* 垂直居中 */
      font-weight: bold; /* 文字加粗 */
    }

    /* 隐藏标题行 */
    tr:first-child {
      display: none !important;
    }

    /* 设置底色 */
    tr:nth-child(odd) {
      background-color: #fff; /* 设置底色（奇数行） */
    }

    tr:nth-child(even) {
      background-color: #e6f9e6; /* 设置底色（偶数行） */
    }