no message

This commit is contained in:
A1300399510 2024-12-18 15:10:46 +08:00
parent 95a00a582f
commit e4a404c8b8
2 changed files with 77 additions and 0 deletions

View File

@ -57,6 +57,42 @@
width: 22px; width: 22px;
height: 22px; height: 22px;
} }
.header-box .search .hint-list {
position: absolute;
width: 750px;
height: 0;
max-height: 400px;
top: 46px;
left: -1px;
background-color: #ffffff;
border-radius: 0 0 10px 10px;
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid #c4c7ce;
border-top: none;
box-shadow: 0px 5px 5px #dfdfdf;
}
@keyframes hintShow {
0% {
height: 0;
}
100% {
border-width: 1px;
height: auto;
}
}
.header-box .search .hint-list .item {
color: #333333;
font-size: 14px;
padding: 10px 20px;
cursor: pointer;
line-height: 30px;
display: block;
}
.header-box .search .hint-list .item:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
}
.header-box .btn .item { .header-box .btn .item {
width: 160px; width: 160px;
height: 40px; height: 40px;

View File

@ -61,6 +61,47 @@
width: 22px; width: 22px;
height: 22px; height: 22px;
} }
.hint-list {
position: absolute;
width: 750px;
height: 0;
max-height: 400px;
top: 46px;
left: -1px;
background-color: rgba(255, 255, 255, 1);
border-radius: 0 0 10px 10px;
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid #c4c7ce;
border-top: none;
box-shadow: 0px 5px 5px #dfdfdf;
@keyframes hintShow {
0% {
height: 0;
}
100% {
border-width: 1px;
height: auto;
}
}
.item {
color: #333333;
font-size: 14px;
padding: 10px 20px;
cursor: pointer;
line-height: 30px;
display: block;
&:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
}
}
}
} }
.btn { .btn {