#notification .mask { top: 0; left: 0; width: 100%; height: 100%; z-index: 9998; position: fixed; background: rgba(0, 0, 0, 0.5); -webkit-animation-duration: 500ms; animation-duration: 500ms; } #notification .content { position: fixed; min-width: 80%; max-width: calc(100% - 20px); z-index: 9999; background: #fff; border-radius: 5px; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-animation-duration: 500ms; animation-duration: 500ms; padding: 10px; color: #000; } #notification .content .title { text-align: center; font-size: 14px; font-weight: 600; } #notification .content .borderBottom { margin: 5px 0; border-bottom: 1px rgb(214, 214, 214) solid; } #notification .content .ctn { display: flex; flex-wrap: wrap; } #notification .content .ctn > div { width: 50%; font-size: 13px; }