*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

.maintenance-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.tip-img {
  display: block;
  max-width: 600px;
  width: 90%;
  height: auto;
}

.tip-text {
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 0;
}

@media (max-width: 768px) {
  .maintenance-container {
    padding: 16px;
  }

  .tip-img {
    width: 85%;
  }

  .tip-text {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .maintenance-container {
    padding: 0 20px;
  }

  .tip-text {
    font-size: 13px;
  }
}
