* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: fontsc, PingFang SC, Helvetica Neue For Number, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
}

:root {
  --loading-grey: #ededed;
}

html {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

a {
  text-decoration: none;
  color: black;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background:none;
}

.disabled {
  pointer-events: none
}

.line-clamp {
  white-space: nowrap;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  /* for Opera */
  overflow: hidden;
}

.line-clamp2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.line-clamp3 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.block {
  display: block;
}

.inline_block {
  display: inline-block
}

.flex {
  display: flex;
}

em {
  font-style: normal;
}

.jusConCenter {
  justify-content: center;
}

.jusSpaceBet {
  justify-content: space-between;
}

.alignItemCenter {
  align-items: center;
}

.chiaroscuro {
  background: #e5e5e5 !important;
  animation-duration: 1.5s;
  animation-name: blink;
  animation-iteration-count: infinite;
}

.amton_chiaroscuro {
  background-color: var(--loading-grey);
  background: linear-gradient(100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%) var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 120%;
  animation: 1s loading ease-in-out infinite;
}

@keyframes loading {
  to {
    background-position-x: -20%;
  }
}

::-webkit-scrollbar {
  width: 5px;
  height: px;
  position: absolute;
}

::-webkit-scrollbar-thumb {
  background: #D8D8D8;
  border-radius: 10px;
  /* 设置倒角 */
}

::-webkit-scrollbar-track {
  /* background-color: #FFFFFF; */
}

::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
  background-color: #808080;
}

ul,
ol {
  list-style: none;
}

@keyframes move123 {
  0% {
    transform: scale(0.9);

  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.9);
  }
}


@keyframes move456 {
  0% {
    transform: scale(0.9) translateX(-50%);

  }

  50% {
    transform: scale(1) translateX(-50%);
  }

  100% {
    transform: scale(0.9) translateX(-50%);
  }
}