html,body{
  height: 100%;
  width: 100%;
}
#root{
  width: 100%;
  height: 100%;
}
/* 解决tailwindcss下antd-button按钮背景透明问题,但仍然保留tailwindcss其他的基本样式 */
.ant-btn-primary{
  background-color: #1677ff !important;
}

/* 更改自定义model的样式 */
.lyq {
  .ant-modal-body{
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
    &::-webkit-scrollbar {
      width: 8px;
    }
    &::-webkit-scrollbar-thumb {
      border-radius:4px;
      background: #737a7f !important;
    }
  }
}

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