/* Custom Reset Extensions */

html, body {
  -webkit-tap-highlight-color: transparent; /* 点击无蓝色闪 */
  -webkit-touch-callout: none; /* 禁止长按菜单 */
  -webkit-text-size-adjust: 100%; /* 禁止字体缩放 */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fff;
}

button, input {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}

* {
  font-family: PingFang SC, Microsoft YaHei, Avenir, Tahoma, Arial, sans-serif;
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  background: #fff;
}

button,
fieldset,
img,
input {
  border: none;
  padding: 0;
  margin: 0;
  outline-style: none;
}

/* Page Styles */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.logo {
  width: 180px;
  height: auto;
}

.logo img {
  width: 100%;
  height: auto;
}

.message {
  color: #000;
  width: 313px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  margin-top: 32px;

  font-family: PingFang SC;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;

}

.ok-button {
  background-color: #513EFF;
  color: #fff;
  width: 220px;
  height: 54px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;

  font-family: PingFang SC;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;

}

.ok-button:hover {
  background-color: #4535d9;
}

.ok-button:active {
  background-color: #3928c2;
}

