html,
body,
#app {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.avue-home {
  background-color: #303133;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.avue-home__main {
  user-select: none;
  width: 100%;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.avue-home__footer {
  width: 100%;
  flex-grow: 0;
  text-align: center;
  padding: 1em 0;
}

.avue-home__footer > a {
  font-size: 12px;
  color: #ABABAB;
  text-decoration: none;
}

.avue-home__loading {
  height: 32px;
  width: 32px;
  margin-bottom: 20px;
}

.avue-home__title {
  color: #FFF;
  font-size: 14px;
  margin-bottom: 10px;
}

.avue-home__sub-title {
  color: #ABABAB;
  font-size: 12px;
}

/*FIXME 修改搜索item全局样式*/
.search-item > .el-form-item {
  margin-bottom: 2px !important;
}

/*修正table搜索按钮位置*/
.avue-crud-search__menu {
  display: block !important;
  text-align: left;
  margin: 0;
}

.avue-crud__menu {
  min-height: 0px !important;
  margin-bottom: 4px!important;
}

.el-table__fixed-right::before, .el-table__fixed::before{
  z-index: -1!important;
}
.el-input.is-disabled .el-input__inner{
  color: #606266!important;
  font-weight: 500;
  /* padding-left: 1px!important; 会令带图标的输入框文字、图标重叠 */
  padding-right: 1px!important;
}

.detail-group-title {
  font-size: 18px;
  color: #000;
  padding: 0 0 20px 0;
  display: flex;
  justify-content: space-between;
}
.detail-group-title-operate{
  padding-right: 28px;
}

.detail-group-divider {
  height: 1px;
  overflow: hidden;
  width: 100%;
  background: #e8eaec;
  margin-bottom: 30px;
}

.filter-box {
  display: flex;
  align-items: center;
}

.filter-item {
  display: flex;
  align-items: center;
  margin: 0 0 10px 10px;
}

.filter-item:first-child {
  margin-left: 0;
}

.filter-label {
  margin: 0 10px 0 0;
  display: inline-block;
  white-space: nowrap;
}
/*搜索条件展开收起动画*/
.search-fade-enter-active {
  height: 48px;
  transition: all linear .1s;
}

.search-fade-leave-active {
  height: 0px;
  opacity: 0;
  transition: all linear .1s;
}

.search-fade-leave{
  height: 48px;
  opacity: 1;
}

.search-fade-enter
  /* .slide-fade-leave-active for below version 2.1.8 */
{
  height: 0px;
  opacity: 0;
}
/*表单展开收起动画*/
.form-fade-enter-active {
  height: 50px;
  transition: all linear .1s;
}

.form-fade-leave-active {
  height: 0px;
  opacity: 0;
  transition: all linear .1s;
}

.form-fade-leave{
  height: 50px;
  opacity: 1;
}

.form-fade-enter
  /* .slide-fade-leave-active for below version 2.1.8 */
{
  height: 0px;
  opacity: 0;
}

/* wuhua */
.loadmore {
  margin: 10px 0; 
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.el-table__fixed, .el-table__fixed-right {
  height: calc(100% - 15px)!important;
}
