ul {
  list-style-position: outside;
}

li {
  display: list-item;
}
li > p {
  display: inline;
}

a {
  /*color: #2563eb;  你想要的颜色，这里是蓝色示例 */
  /*text-decoration: underline; /* 显示下划线 */
  text-decoration: none; /* 直接去掉所有下划线 */
  text-decoration-color: #d1d5db; /* 下划线颜色（浅灰） */
  text-underline-offset: 2px;    /* 下划线离文字远一点，更好看 */

  /*border-bottom: 0 !important; */
  /*border-bottom: 1px solid red;  /* 它用边框当下划线！ */
}

a:hover {
  color: #1d4ed8;  /* 鼠标悬停颜色 */
  text-decoration: underline;
  text-decoration-color: #1d4ed8; /* 悬停下划线颜色 */
}
