::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 10px;
  background-color: #cfd3d6;
}
::-webkit-scrollbar-thumb:hover {
  border: 2px solid transparent;
  background-color: #a3a7ad;
}
::-webkit-scrollbar-corner {
  background-color: transparent;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-vertical-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-horizontal-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-all-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@-webkit-keyframes gradient-bg {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes gradient-bg {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.no-access-page {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 152px;
}
.no-access-page .no-access-page-img {
  width: 200px;
  height: 200px;
  text-align: center;
}
.no-access-page .no-access-page-tip {
  font-size: 16px;
  font-weight: bold;
  color: #515a6e;
  line-height: 24px;
  text-align: center;
  margin-top: 20px;
}
.no-access-page .no-access-page-reason {
  font-size: 14px;
  color: #808696;
  text-align: center;
  line-height: 22px;
  margin-top: 6px;
}
