.flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.flex-start {
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-between {
  justify-content: space-between;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-direction-column {
  flex-direction: column;
  flex-wrap: nowrap;
}



ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

/* 滚动条样式 start */
::-webkit-scrollbar {
  width: 4px;
  /* 滚动条宽度， width：对应竖滚动条的宽度  height：对应横滚动条的高度*/
  background: #fff;
}

/*定义滚动条轨道（凹槽）样式*/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0);
  /* 较少使用 */
  border-radius: 3px;
}

/*定义滑块 样式*/
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  height: 100px;
  /* 滚动条滑块长度 */
  background-color: #DBDBDB;
}

/* 滚动条样式 end */

/* 超出一行省略号 start */
.wordSingle {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* 超出一行省略号 end */

/* 超出两行省略号 start */
.wordDouble {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 超出两行省略号 end */
html,
body {
  padding: 0;
}

.el-main {
  background: #EBEFF2;
  padding-top: 0 !important;
}

.oecp-md-element-list {
  background-color: #fff;
}



/* tag start */
/* .el-tag--plain {
  background-color: #EDF2FF;
  border-color: #90AFFF;
  color: #497EE1;
  cursor: pointer;
}

.el-tag--dark {
  background-color: #73B9FF;
  border-color: #7399FF;
  color: #fff;
} */

/* tag end */



/deep/.el-input-group--append .el-input__inner,
/deep/.el-input-group__prepend {
  border-top-left-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
  height: 36px !important;
  background-color: #fff;
  border: none;
}

/deep/.el-input-group--prepend .el-input__inner,
/deep/.el-input-group__append {
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
  background-color: #fff;
  border: none;
}

/deep/.el-icon-search {
  color: #2468f2 !important;
  font-size: 20px;
}

/deep/.el-input-group--append .el-input__inner {
  border-top-left-radius: 30px !important;
  border-bottom-left-radius: 30px !important;
  height: 36px !important;
}

/deep/.el-input-group__append {
  padding-right: 8px;
  border-top-right-radius: 30px !important;
  border-bottom-right-radius: 30px !important;
}