```html
body {
fontfamily: Arial, sansserif;
margin: 0;
padding: 0;
display: flex;
justifycontent: center;
alignitems: center;
height: 100vh;
backgroundcolor: f4f4f4;
}
.popupcontainer {
backgroundcolor: fff;
boxshadow: 0 2px 5px rgba(0,0,0,0.1);
borderradius: 5px;
padding: 20px;
maxwidth: 400px;
textalign: center;
}
h2 {
margintop: 0;
}
button {
padding: 10px 20px;
backgroundcolor: 007bff;
color: fff;
border: none;
borderradius: 3px;
cursor: pointer;
transition: backgroundcolor 0.3s ease;
}
button:hover {
backgroundcolor: 0056b3;
}
你可以在这里放一些内容,如表单、通知或其他信息。
function closePopup() {
window.close();
}