html,
body {
  min-width: 1400px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.fadeInleft1 {
  animation: 2s fadeInleft1 linear;
}

.addDonghuaR {
  animation: 0.5s fadeInRight linear;
}

.addDonghuaL {
  animation: 0.5s fadeInleft linear;

}

@keyframes fadeInRight {
  from {
    left: 600px;
    -webkit-transform: translate(600px, 0);
    transform: translate(600px, 0);
  }

  to {
    left: 0;
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
}

@keyframes fadeInleft1 {
  from {
    opacity: 0;
    margin-top: 140px;
  }

  to {
    margin-top: 0px;
    opacity: 1;
  }
}

@keyframes fadeInleft {
  from {
    left: 600px;
    -webkit-transform: translate(600px, 0);
    transform: translate(600px, 0);
  }

  to {
    left: 0;
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }
}

/* 在你的全局样式表中添加 */
.el-button,
.el-input,
.el-table,
.el-dialog,
.el-message

/* 以及其他你需要重置的 Element UI 组件 */
  {
  font-size: 14px !important;
  /* 重置为 Element UI 默认的字体大小 */
}

.el-dialog {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

/* 对于尺寸属性，如果也被转换了，可能需要单独重置 */
.el-button {
  padding: 12px 20px !important;
  border-radius: 4px !important;
}