新讨论测试

This commit is contained in:
A1300399510
2025-02-17 19:00:34 +08:00
parent d45e8484a5
commit 08fd75e930
4 changed files with 314 additions and 27 deletions

View File

@@ -856,6 +856,61 @@ a {
box-shadow: 0 0 3px rgba(0, 0, 0, 0.117647058823529);
padding: 18px 22px;
.edit-comment {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
z-index: 12;
.box {
width: 650px;
// height: 500px;
border-radius: 10px;
background: #fff;
padding: 20px 15px;
.text {
font-size: 18px;
font-weight: 650;
margin-bottom: 15px;
color: #000;
}
.input-box {
margin-right: 0;
.bottom {
border-top: 1px solid #ebebeb;
}
}
.btn-list {
padding: 15px 0;
justify-content: flex-end;
.btn {
font-size: 14px;
color: #333;
width: 80px;
height: 28px;
line-height: 28px;
text-align: center;
border-radius: 43px;
cursor: pointer;
background-color: #fff;
border: 1px solid #ebebeb;
margin-left: 20px;
&.send {
background-color: #fddf6d;
border: 1px solid #fddf6d;
}
}
}
}
}
.header {
font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
font-weight: 650;
@@ -1572,7 +1627,7 @@ a {
.menu-box {
position: relative;
&:hover .report-box {
&:hover .operate-boxx {
display: flex;
}
@@ -1582,20 +1637,26 @@ a {
cursor: pointer;
}
.report-box {
.operate-boxx {
display: none;
flex-direction: column;
position: absolute;
top: 24px;
right: 0;
width: 60px;
height: 24px;
background-color: rgba(246, 246, 246, 1);
border: 1px solid rgba(215, 215, 215, 1);
border-radius: 5px;
font-size: 12px;
color: #7f7f7f;
cursor: pointer;
width: 60px;
z-index: 2;
border-radius: 5px;
background-color: rgba(246, 246, 246, 1);
border: 1px solid rgba(215, 215, 215, 1);
.item {
height: 24px;
&:not(:last-of-type) {
border-bottom: 1px solid rgba(215, 215, 215, 1);
}
}
&::after {
content: "";
width: 58px;
@@ -1603,6 +1664,7 @@ a {
position: absolute;
top: -14px;
right: 0;
z-index: -1;
}
}
}