@tailwind base;
@tailwind components;
@tailwind utilities;

html,body,#app{
  width: 100%;
  height: 100%;
  min-width: 1420px;
}

/* 过渡动画 */
.fade-enter-active {
  transition: all 0.3s ease-out;
}
.fade-leave-active {
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
.fade-enter-from,.fade-leave-to{
  transform: translateX(20px);
  opacity: 0;
}


