@charset "UTF-8";.x-modal{padding:15vh 0;margin:0 auto;width:450px;box-sizing:border-box}.x-modal.is-fixed-screen{height:100%;padding:10vh 0}.x-modal.is-fixed-screen .x-modal__wrap{display:flex;flex-direction:column;max-height:100%}.x-modal.is-fixed-screen .x-modal__body{flex:1;height:0;display:flex}.x-modal.is-fixed-screen .x-modal__render-content{overflow-y:auto;width:100%}.x-modal__wrap{background-color:#fff;border-radius:12px}.x-modal__header{padding:24px;display:flex;align-items:center;justify-content:space-between}.x-modal__body{padding:0 24px 24px;font-size:14px;line-height:1.6;word-break:break-word}.x-modal__footer{padding:0 24px 16px;text-align:right}.x-modal__title{font-size:16px;margin:0;font-weight:400;white-space:nowrap}.x-modal__close{opacity:.5;font-size:10px;cursor:pointer}.x-modal-enter-from,.x-modal-leave-to{opacity:0}.x-modal-enter-active .x-modal{animation:dialogFadeIn .2s}.x-modal-leave-active .x-modal{animation:dialogFadeOut .2s}@keyframes dialogFadeIn{0%{transform:translateY(-30px);opacity:0}100%{transform:translateY(0);opacity:1}}@keyframes dialogFadeOut{0%{transform:translateY(0);opacity:1}100%{transform:translateY(-30px);opacity:0}}