增加生成图片弹窗和给学弟学妹留言

This commit is contained in:
A1300399510
2024-09-10 14:27:42 +08:00
parent a3dcccb93d
commit 7e4169a74e
4 changed files with 143 additions and 13 deletions

View File

@@ -444,3 +444,46 @@
height: 20px;
margin-left: 6px;
}
.pop-up {
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.4);
position: fixed;
top: 0;
left: 0;
z-index: 1;
}
.pop-up .select {
width: 600px;
height: 500px;
background: #fff;
border-radius: 20px;
flex-direction: column;
justify-content: center;
align-items: center;
}
.pop-up .select .title {
font-weight: 650;
font-size: 20px;
margin-bottom: 10px;
}
.pop-up .select .img-box {
width: 400px;
height: 400px;
overflow: hidden;
}
.pop-up .select .img-box .img {
height: 400px;
object-fit: contain;
}
.pop-up .select .btn {
padding: 0 20px;
height: 40px;
border: 1px solid #eee;
border-radius: 20px;
text-align: center;
line-height: 40px;
cursor: pointer;
color: #000;
text-decoration: none;
}

View File

@@ -518,3 +518,49 @@
margin-left: 6px;
}
}
.pop-up {
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.4);
position: fixed;
top: 0;
left: 0;
z-index: 1;
.select {
width: 600px;
height: 500px;
background: #fff;
border-radius: 20px;
flex-direction: column;
justify-content: center;
align-items: center;
.title {
font-weight: 650;
font-size: 20px;
margin-bottom: 10px;
}
.img-box {
width: 400px;
height: 400px;
overflow: hidden;
.img {
// width: 400px;
height: 400px;
object-fit: contain;
}
}
.btn {
padding: 0 20px;
height: 40px;
border: 1px solid #eee;
border-radius: 20px;
text-align: center;
line-height: 40px;
cursor: pointer;
color: #000;
text-decoration: none;
}
}
}