.module-title {
  display: flex;
  align-items: center;
  height: 20px;
  font-size: 16px;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
  font-weight: bold;
  color: #1e2639;
  line-height: 20px;
}

.module-title::before {
  display: block;
  content: '';
  margin-right: 6px;
  width: 3px;
  height: 18px;
  background: #dc1a36;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-32 {
  margin-top: 32px;
}
.mt-16 {
  margin-top: 16px;
}
.ml-16 {
  margin-left: 16px !important;
}
.ml-14 {
  margin-left: 14px !important;
}

.mb-16 {
  margin-bottom: 16px ;
}

.mr-6 {
  margin-right: 6px;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: 0px 1px 3px #fff inset;
  /*滚动条的背景区域的内阴影*/
  border-radius: 10px;
  /*滚动条的背景区域的圆角*/
  background-color: #fff;
  /*滚动条的背景颜色*/
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  /*滚动条的内阴影*/
  box-shadow: 0px 1px 3px #fbe1e0 inset;
  /*滚动条的圆角*/
  border-radius: 10px;
  /*滚动条的背景颜色*/
  background-color: #fbe1e0;
}

.flex {
  display: flex;
}

.diy-warning {
  background: url('~@/assets/images/base/warning.png') no-repeat left top/100% 100%;
  width: 24px;
  height: 24px;
}