.mask {
    background-color: rgba(231, 231, 231, 0.8) !important;
    /* 设置半透明背景 */
    opacity: 0.5 !important;
    /* 透明度设置为 50% */
  }

  /* 极简风格的滚动条 */
  ::-webkit-scrollbar {
    width: 4px;
    /* 调整滚动条的宽度 */
  }

  ::-webkit-scrollbar-track {
    background-color: transparent;
    /* 轨道透明 */
  }

  ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    /* 滑块颜色 */
    border-radius: 4px;
    /* 圆角 */
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
    /* 悬停时的滑块颜色 */
  }