* {
  margin: 0;
  padding: 0;
  outline: unset !important;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
*::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: rgba(144, 147, 153, 0.3);
}
*::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
}
*::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}

a, a:active, a:visited, a:hover {
  color: inherit;
  text-decoration: none;
}

html, body, #root {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  color: #E3E3E3;
  font-size: 14px;
  user-select: none;
  font-family: PingFang SC;
}


.v-app {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: url(./background.png) center top no-repeat;
}
.v-app .logo {
  position: absolute;
  width: 262px;
  height: 42px;
  background: url(./logo.png) center top no-repeat;
  left: calc(50% - 697px);
  top: 11px;
}
.v-app .button {
  position: absolute;
  width: 339px;
  height: 92px;
  background: url(./download.png) center top no-repeat;
  cursor: pointer;
  left: calc(50% - 697px);
  top: 615px;
}
.v-app .mask {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-app .tips-box {
  width: 660px;
  background: #FFF;
  border-radius: 8px;
  padding: 16px;
  box-sizing: border-box;
  color: #333;
}
.v-app .tips-box .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.v-app .tips-box img {
  display: block;
  width: 100%;
}
.v-app .tips-box .h1 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}
.v-app .tips-box .p {
  font-size: 16px;
  margin-top: 6px;
}
.v-app .tips-box .p + .p {
  margin-top: 0;
}
.v-app .tips-box .divider {
  height: 1px;
  background: #E6E6E6;
  margin: 16px 0;
}
.v-app .tips-box .btn {
  width: 360px;
  height: 44px;
  text-align: center;
  background: #ff3d3d;
  border-radius: 8px;
  color: #FFF;
  font-size: 16px;
  line-height: 44px;
  margin: 16px auto 0;
  cursor: pointer;
}


@media screen and (max-width: 700px)  {
  .v-app {
    background: url(./m-background.png) center top no-repeat;
  }
  .v-app .logo {
    width: 330px;
    height: 104px;
    left: calc(50% - 160px);
    top: 120px;
    background: url(./m-logo.png) center top no-repeat;
  }
  .v-app .button {
    width: 272px;
    height: 74px;
    left: calc(50% - 136px);
    background: url(./m-download.png) center top no-repeat;
  }
  .v-app .tips-box {
    width: 360px;
  }
  .v-app .tips-box .title {
    font-size: 16px;
  }
  .v-app .tips-box .h1 {
    font-size: 14px;
  }
  .v-app .tips-box .p {
    font-size: 14px;
  }
  .v-app .tips-box .btn {
    width: 100%;
  }
}