/* 加微弹窗样式 */
.sms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.sms-modal-overlay.is-visible {
  display: flex;
}

.sms-modal-card {
  background: #fff;
  border-radius: 16px;
  width: 340px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.sms-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sms-modal-close.is-hidden {
  display: none;
}

.sms-modal-header {
  background: linear-gradient(135deg, #E8EAF6, #F5F7FF);
  padding: 28px 24px 20px;
  text-align: left;
}

.sms-modal-subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 4px;
}

.sms-modal-title {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}

.sms-modal-benefits {
  font-size: 13px;
  color: #666;
}

.sms-modal-body {
  padding: 24px;
  text-align: center;
}

.sms-modal-qrcode {
  width: 180px;
  height: 180px;
  display: block;
  margin: 0 auto 12px;
  /* border: 1px solid #eee; */
  border-radius: 8px;
}

.sms-modal-bindnum {
  font-size: 13px;
  color: #999;
  margin: 0 0 8px;
}

.sms-modal-bindnum.is-hidden {
  display: none;
}

.sms-modal-tip {
  font-size: 13px;
  color: #999;
  margin: 0 0 20px;
}

.sms-modal-cta {
  width: 85%;
  padding: 13px 0;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  transition: all 0.2s;
  display: block;
  margin: 0 auto;
}

.sms-modal-cta:hover {
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
  transform: translateY(-1px);
}