* {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif';
  font-weight: 400;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

div {
  box-sizing: border-box;
}

img,
picture,
video,
canvas,
svg {
  display: block;
}

ul,
li {
  list-style: none;
}

/*这是竖向滚动条的宽度。如果是横向滚动条则设置height */
::-webkit-scrollbar {
  width: 6px;
  cursor: pointer;
}

::-webkit-scrollbar:horizontal {
  height: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #0003;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  cursor: pointer;
  background-color: #0000004d;
}

/* 全局通用样式 */
/* 超出一行显示.... */
.elipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.boxloder .el-dialog {
  border-radius: 0 !important;
  --el-dialog-width: 400px !important;
}