.modalVue {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modalVue__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
}
.modalVue__content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 472px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 1;
}
.modalVue__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}
.modalVue__title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modalVue__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f0f5ff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  margin-left: auto;
}
.modalVue__close::before,
.modalVue__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #333;
  border-radius: 2px;
}
.modalVue__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modalVue__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.modalVue__body {
  padding: 16px 24px 24px;
}
.modalVue__text {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.modal-enter-active, .modal-leave-active { transition: opacity 0.25s ease; }
.modal-enter, .modal-leave-to { opacity: 0; }
