.copyright {
    width: 100%;
    height: 100px;
    background: #003A8C;

}

.footer {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    height: 100px;
    align-items: center;
}

.footer p {
   
font-size:14px
}

.footer span {
    color: #fff;
    margin-left: 8px;
}
.ms-controller{
    visibility: hidden;
}
html,body,#app,.indexBox{
    height: 100%;
  }
  .indexBox {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
z-index: 999999;
left: 0;
top: 0;
  }
  .indexLoading {
    animation: spinnerFour 1s linear infinite;
    border: solid 10px transparent;
    border-top: solid 7px #b4b5b6;
    border-radius: 100%;
    width: 100px;
    height: 100px;
  }
  @keyframes spinnerFour {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }