/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
  width: 5px;
  height: 2px;
  /*background-color: #F5F5F5;*/
  overflow-x: hidden;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 2px;
  background-color: #eee;
}
/* 去除底部滚动条 */
::-webkit-scrollbar {
  /*display: none;*/
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: green;
}

a{ text-decoration:none; }
a:link { text-decoration: none;}
a:active { text-decoration:none;}
a:hover { text-decoration:none;}
a:visited { text-decoration: none;}
li{ list-style-type: none;}

.active{color: red !important;font-weight: bold;}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: blue; /* 删除线颜色为红色 */
    text-decoration-thickness: 5px; /* 删除线厚度为2像素 */
}