.app-container {
  background: #f0fcf0;
  padding: 20px;
}

.main {
  background: #fff;
  line-height: 28px;
  padding: 20px;
}

p {
  margin: 0;
  padding: 0;
}

.main .logo {
  width: 100%;
  margin: auto;
  text-align: center;
}

.main .logo img {
  width: 100px;
}

.tip {
  text-align: center;
  font-size: 14px;
}

.tip .import {
  color: #f00;
}

.userbox {
  max-width: 350px;
  margin: auto;
}

.form {
  width: fit-content;
  margin: auto;
}

.item {
  font-size: 16px;
}

.item .label {
  display: inline-block;
  text-align: right;
  width: 50px;
}

.item .copybtn {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #5dbf5d;
  line-height: 1;
  margin-left: 10px;
  color: #fff;
}

.foot {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.pay-button {
  display: block;
  width: 80%;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 0;
  text-align: center;
  background-color: #34b4ec;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  margin-top: 20px;
}

.pay-button:hover {
  background-color: #2d5aad;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.hidden {
  display: none;
}

.statistic {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000;
  font-variant: tabular-nums;
  list-style: none;
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
  text-align: center;
}

.number {
  font-family: Sans-serif;
  font-size: 20px;
  padding: 0 4px;
  display: inline-block;
  margin: 0;
  line-height: 100%;
}

.message {
  opacity: 0;
  z-index: 2021;
  color: #67c23a;
  align-items: center;
  background-color: #f0f9eb;
  box-sizing: border-box;
  display: flex;
  left: 50%;
  max-width: calc(100% - 32px);
  position: fixed;
  top: 20px;
  transform: translate(-50%);
  width: fit-content;
  border-color: #e1f3d8;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  gap: 8px;
  padding: 11px 15px;
  transition: opacity .3s, transform .4s, top .4s;
}

.message-error {
  background-color: #fef0f0;
  border-color: #fde2e2;
  color: #f56c6c;
}

#message {
  font-size: 14px;
}

.show {
  opacity: 1;
}