*{
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: 'htstd'; /* 重命名字体名 */
    src: url('../font/htstd.otf');
    font-weight: normal;
    font-style: normal;
}
body{
    font-family: "htstd";
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: #000000;
}
li{
    list-style: none;
}
a:hover{
    text-decoration: none;
}
a:active{
    text-decoration: none;
}
a:focus{
    text-decoration: none;
}
a:visited{
    text-decoration: none;
}
body::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 10px; 
    height: 1px;
}
body::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    height: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #10C0FE;
}
body::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ffffff;
}