/* 禁止页面缩放 */
body {
  touch-action: pan-x pan-y;
  user-scalable: no;
}
body::-webkit-scrollbar-track-piece {
    background-color: #f1f1f1;
    border-left: 1px solid #e6ebf5;
  }
  body::-webkit-scrollbar {
      width: 10px;
      height: 10px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
  }
  body::-webkit-scrollbar-thumb {
      background-color: #c1c1c1;
      background-clip: padding-box;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
      min-height: 28px;
  }
  body::-webkit-scrollbar-thumb:hover {
      background-color: #787878;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
  }
  .vxe-table--body-wrapper::-webkit-scrollbar-track-piece {
    background-color: #f1f1f1;
    border-left: 1px solid #e6ebf5;
  }
  .vxe-table--body-wrapper::-webkit-scrollbar {
      width: 10px;
      height: 10px;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
  }
  .vxe-table--body-wrapper::-webkit-scrollbar-thumb {
      background-color: #c1c1c1;
      background-clip: padding-box;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
      min-height: 28px;
  }
  .vxe-table--body-wrapper::-webkit-scrollbar-thumb:hover {
      background-color: #787878;
      -webkit-border-radius: 15px;
      -moz-border-radius: 15px;
      border-radius: 15px;
  }
  .el-popup-parent--hidden{
    overflow: hidden;
    padding-right: 0px !important;
  }
  .big {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
.big_img {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}