.pay-body {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pay-main {
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
}

.pay-main .pay-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  margin: 5px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #dedede;
}

.pay-main .pay-info {
  padding-top: 30px;
}

.pay-info .info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 30px;
  margin-bottom: 20px;
}

.pay-info .info-line img {
  height: 40px;
}

.pay-list .pay-item {
  display: flex;
  justify-content: center;
  margin: 10px 0;
  width: 100%;
}

.pay-list .pay-item img {
  display: flex;
  width: 100%;
  justify-content: center;
}
.pay-loading{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999999999999;
}
.pay-loading::after {
  content: '';
  border: 16px solid #353535;
  /* Light grey */
  border-top: 16px solid #ffffff;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}