<style>
  .no-underline-link {
    color: white;
    text-decoration: none;
  }
  .no-underline-link:hover {
    text-decoration: none; /* 显式禁用下划线 */
    /* 可选：保持颜色不变 */
    color: white;
  }
  .no-underline-link,
  .no-underline-link:hover,
  .no-underline-link:active,
  .no-underline-link:focus {
    text-decoration: none !important;
  }
</style>