html,
body {
  background: #101114;
  width: 100%;
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
}
#preload {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#preload .logo {
  width: 174px;
  height: 65px;
  animation: pulse 2s infinite;
}
#customerService {
  visibility: hidden;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#customerService .loadingTip {
  font-family: PingFang SC;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  color: #ffffff;
}
#customerService .subTip {
  font-family: PingFang SC;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: #8e8e99;
  margin: 15px 0 30px;
}
#customerService .customerServiceBtn {
  width: 160px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffcb4c;
  font-family: PingFang SC;
  font-size: 18px;
  font-weight: 600;
  color: #4d2e0f;
  text-decoration: none;
  cursor: pointer;
}
.news {
  display: none;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
