no message

This commit is contained in:
A1300399510 2024-11-11 14:46:31 +08:00
parent d56d823bba
commit 5b6f187fba
2 changed files with 91 additions and 0 deletions

View File

@ -479,12 +479,55 @@
font-size: 14px;
color: #000000;
cursor: pointer;
position: relative;
}
.content .body .right .h .sort .img {
width: 20px;
height: 20px;
margin-left: 8px;
}
.content .body .right .h .sort .sort-mask {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 101;
}
.content .body .right .h .sort .sort-list {
width: 100%;
background-color: #ffffff;
border: 1px solid #e4e7ed;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.078);
position: absolute;
top: 25px;
left: 50%;
z-index: 102;
transform: translateX(-50%);
animation: sortShow 0.3s;
overflow: hidden;
}
@keyframes sortShow {
0% {
height: 0;
}
100% {
height: 150px;
}
}
.content .body .right .h .sort .sort-list .sort-item {
height: 50px;
line-height: 50px;
text-align: center;
}
.content .body .right .h .sort .sort-list .sort-item:not(:last-of-type) {
border-bottom: 1px solid #e4e7ed;
}
.content .body .right .h .sort .sort-list .sort-item.pitch {
color: #9a9d02;
font-weight: 650;
}
.content .body .right .list {
flex-wrap: wrap;
justify-content: space-between;

View File

@ -543,6 +543,54 @@
height: 20px;
margin-left: 8px;
}
position: relative;
.sort-mask {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 101;
}
.sort-list {
width: 100%;
background-color: #ffffff;
border: 1px solid #e4e7ed;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0, 0, 0, 0.078);
position: absolute;
top: 25px;
left: 50%;
z-index: 102;
transform: translateX(-50%);
animation: sortShow 0.3s;
overflow: hidden;
@keyframes sortShow {
0% {
height: 0;
}
100% {
height: 150px;
}
}
.sort-item {
height: 50px;
line-height: 50px;
text-align: center;
&:not(:last-of-type) {
border-bottom: 1px solid #e4e7ed;
}
&.pitch {
color: #9a9d02;
font-weight: 650;
}
}
}
}
}