* {
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Courier New', Courier, monospace;
}

body {
  cursor: url(../img/cursor.png), default;
}


::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #999;
}

/*定义滚动条轨道*/
::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #999;
}

/*定义滑块*/
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #666;
}