@charset "UTF-8";.n-modal-mask {
  background-color: rgba(0, 0, 0, 0.8) !important;
}
html,
body,
#app {
  overflow: hidden;
  font-family: Microsoft YaHei;
}

* {
  padding: 0;
  margin: 0;
  letter-spacing: 0.5px;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}

.r-bottom::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.r-bottom::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #2c3239;
}

.r-bottom::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #181d24;
}