/* 弹窗样式 */
.common-modal {
  display: none;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* max-width: 430px; */
  width: 90%;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 8px;
  --animate-duration: .3s;
  animation-duration: .3s;
  z-index: 9999;
}

.common-modal.show {
  display: block;
}

.common-modal .common-modal-title {
  position: relative;
  padding: 17px 32px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid #E7E7E7;
  z-index: 1;
}

.common-modal .common-modal-title .close-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 22px;
  top: 10px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: all .3s ease;
  border-radius: 4px;
}

.common-modal .common-modal-title .close-btn img {
  width: 22px;
  height: 22px;
}

.common-modal .common-modal-title .close-btn:hover {
  background: #f3f3f3;
}

.common-modal .common-modal-body {
  padding: 24px 32px;
  border-bottom: 1px solid #E7E7E7;
}

.common-modal .common-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 11px 32px;
}

.common-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 5, 38, .7);
  z-index: 9998;
}