* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
  min-width: 1440px;
  min-height: 900px;
  background-color: #f6f8fc;
}
body {
  width: 100%;
  height: 100%;
}
body > #app {
  width: 100%;
  height: 100%;
  background-color: #f6f8fc;
  /* overflow: hidden; */
}
/* 补充阿里图标 */
.t-button .iconfont + .t-button__text:not(:empty) {
  margin-left: 8px;
}
div.t-image__wrapper {
  background-color: #0000;
}
::-webkit-scrollbar {
  width: 0px;
  height: 8px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 5px;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar-thumb:hover {
  background: #909090;
}

::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 5px;
}

::-webkit-scrollbar-track-piece {
  border-radius: 10px;
}

.use-global-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 999999999;
  background-color: rgba(255, 255, 255, 0.4);
  overflow: auto;
}
.use-global-loading::before {
  content: '';
  display: block;
  height: 5px;
  width: 00%;
  background-color: #2554fe;
  animation-name: l16;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  background: linear-gradient(to right, #000000 0%, #926e64 11%, #ffb6e6 22%, #a3deff 33%, #ffffff 44%, #ff0000 55%, #ffe462 66%, #0acf83 77%, #1abcfe 88%, #a259ff 100%);
}
.use-global-loading.complete::before {
  animation-name: none;
  width: 100%;
}

@keyframes l16 {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
