* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wrap {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(241, 241, 241, 0.5);
}
.box {
  width: 900px;
  min-height: 600px;
  border-radius: 2px;
  background-color: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  color: #333333;
}
.left {
  width: 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}
.amount {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.amount > div:first-of-type {
  font-size: 15px;
  font-weight: bold;
}
.amount > div:nth-of-type(2) {
  font-size: 26px;
  font-weight: bold;
  color: #4480f6;
  cursor: pointer;
}
.amount > div:last-of-type {
  font-size: 14px;
  color: #747b86;
}
.address {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}
.address > div:first-of-type {
  font-weight: bold;
  font-size: 15px;
}
.address > img {
  width: 200px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
  margin: 10px 0;
}
.address > div:last-of-type {
  color: #7188a0;
  font-size: 15px;
  cursor: pointer;
}
.address > div:last-of-type > svg {
  margin-bottom: -2px;
}
.tips {
  width: 100%;
  margin-top: 20px;
  color: #979eab;
}
.tips > div {
  font-size: 13px;
  margin-bottom: 5px;
}
.tips > p {
  font-size: 12px;
  position: relative;
  padding-left: 10px;
  line-height: 18px;
}
.tips > p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background-color: #979eab;
}
.right {
  flex: 1;
  background-color: #f5f7fe;
  padding: 30px;
}
.time {
  font-size: 16px;
  font-weight: bold;
}
.time > span {
  color: #4480f6;
}
.order {
  font-size: 14px;
  color: #666666;
  margin-top: 5px;
}
.step {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
  gap: 30px;
}
.step > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a2a8b4;
  font-size: 14px;
}
.no {
  font-size: 14px;
  line-height: 14px;
  border: 1px solid #a2a8b4;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step > div:not(:last-of-type) > .no:after {
  bottom: -26px;
  position: absolute;
  content: "";
  height: 20px;
  width: 1px;
  background-color: #a2a8b4;
}
.active > .no {
  border: 1px solid #4480f6 !important;
  color: #4480f6 !important;
}
.active > div {
  color: #333333;
}
.buy > div:first-of-type {
  font-weight: bold;
}
.buy > div:last-of-type {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.buy > a {
  font-size: 16px;
  color: #4480f6;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  margin-top: 5px;
}
.buy > a > svg {
  margin-top: 2px;
}
.error {
  color: #333333;
  font-size: 28px;
}
.success {
  font-size: 28px;
  color: rgb(29, 168, 29);
}
.invisible {
  visibility: hidden;
}
@media (max-width: 900px) {
  .wrap {
    width: 100%;
    min-height: 100vh;
    display: unset;
  }
  .box {
    width: 100%;
    flex-direction: column;
  }
  .left {
    width: 100%;
  }
}
