@import url(./el-reset.scss);

body {
  input,
  textarea {
    caret-color: white;
  }

  div {
    /* 滚动条整体部分 */
    &::-webkit-scrollbar {
      width: 6px !important;
      height: 6px !important;
      padding: 15px;
    }

    /* 滚动条的轨道 */
    &::-webkit-scrollbar-track {
      background: rgba(17, 72, 90, 0.4);
      border-radius: 4px;
    }

    /* 滚动条的滑块按钮 */
    &::-webkit-scrollbar-thumb {
      background: #3785a0;
      border-radius: 4px;
    }

    /* 上下箭头 */
    &::-webkit-scrollbar-button {
      display: none;
    }

    /* 滚动条角 */
    &::-webkit-scrollbar-corner {
      display: none;
    }
  }
}