.itouzi-modal-mask {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.itouzi-modal {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: itouziModalIn 0.22s ease-out;
}
@keyframes itouziModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.itouzi-modal__head {
  padding: 18px 22px 0;
  text-align: center;
}
.itouzi-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff3f0;
  color: #ef5a50;
  font-size: 24px;
  line-height: 1;
}
.itouzi-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}
.itouzi-modal__body {
  padding: 14px 24px 22px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
.itouzi-modal__foot {
  padding: 0 24px 22px;
  text-align: center;
}
.itouzi-modal__btn {
  display: inline-block;
  min-width: 120px;
  padding: 10px 28px;
  border: none;
  border-radius: 3px;
  background: #ef5a50;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 1px rgba(200, 200, 200, 0.9);
}
.itouzi-modal__btn:hover {
  background: #e0483f;
}
