.agc-loading-container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  text-align: center;
}
.agc-loading-container .agc-loading-pic {
  display: inline-block;
  width: 96px;
  height: 96px;
  background: url('./static/images/loading.png');
  transition-property: transform;
  transition-duration: 1.3s;
  -webkit-transition-property: -webkit-transform;
  -webkit-transition-duration: 1.3s;
  -moz-transition-property: -moz-transform;
  -moz-transition-duration: 1.3s;
  -webkit-animation: rotate 1.3s linear infinite;
  -moz-animation: rotate 1.3s linear infinite;
  -o-animation: rotate 1.3s linear infinite;
  animation: rotate 1.3s linear infinite;
}
