body {
  margin: 0;
  /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',*/
  /*'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',*/
  /*sans-serif;*/
  /*font-family: 'PingFangSC-Regular', 'PingFang SC', 'Segoe UI', 'Roboto', 'Oxygen',*/
  /*  'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',*/
  /*  sans-serif;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; /* 提高字体的可读性 */
}
html ::-webkit-scrollbar{
  display: none;
}

body ::-webkit-scrollbar{
  display: none;
}

code {
  /*font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',*/
  /*  monospace;*/
}


.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animate__fadeInUp {
  animation-name: fadeInUp
}


.ant-modal-content{
  padding:0 !important;
  border-radius:20px !important;
}

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0,30px,0)
  }

  to {
    opacity: 1;
    transform: translateZ(0)
  }
}

