no message

This commit is contained in:
A1300399510 2024-12-18 12:32:05 +08:00
parent 8cb646a77e
commit e79705b001
6 changed files with 91 additions and 88 deletions

View File

@ -739,3 +739,45 @@ body {
padding-bottom: 60px;
margin-top: 20px;
}
.hint-mask {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
.hint-list {
position: absolute;
width: 100%;
height: 0;
max-height: 400px;
top: 48px;
left: 0;
background-color: #ffffff;
border-radius: 10px;
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid #ebebeb;
box-shadow: 0px 5px 5px #dfdfdf;
}
@keyframes hintShow {
0% {
height: 0;
}
100% {
border-width: 1px;
height: auto;
}
}
.hint-list .item {
color: #333333;
font-size: 14px;
padding: 10px;
cursor: pointer;
line-height: 30px;
}
.hint-list .item:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
}

View File

@ -837,3 +837,50 @@ body {
padding-bottom: 60px;
margin-top: 20px;
}
.hint-mask {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
.hint-list {
position: absolute;
width: 100%;
height: 0;
max-height: 400px;
top: 48px;
left: 0;
background-color: rgba(255, 255, 255, 1);
border-radius: 10px;
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid rgba(235, 235, 235, 1);
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;
cursor: pointer;
line-height: 30px;
&:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
}
}
}

View File

@ -37,6 +37,7 @@
border-radius: 183px;
padding: 0 20px;
cursor: pointer;
position: relative;
}
.header-box .search .input {
height: 48px;

View File

@ -40,6 +40,7 @@
border-radius: 183px;
padding: 0 20px;
cursor: pointer;
position: relative;
.input {
height: 48px;

View File

@ -71,48 +71,6 @@
height: 18px;
cursor: pointer;
}
.boxbox .body .left .input-box .hint-mask {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
.boxbox .body .left .input-box .hint-list {
position: absolute;
width: 100%;
height: 0;
max-height: 400px;
top: 48px;
left: 0;
background-color: #ffffff;
border-radius: 10px;
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid #ebebeb;
box-shadow: 0px 5px 5px #dfdfdf;
}
@keyframes hintShow {
0% {
height: 0;
}
100% {
border-width: 1px;
height: auto;
}
}
.boxbox .body .left .input-box .hint-list .item {
color: #333333;
font-size: 14px;
padding: 10px;
cursor: pointer;
line-height: 30px;
}
.boxbox .body .left .input-box .hint-list .item:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
}
.boxbox .body .left .total {
font-size: 14px;
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;

View File

@ -74,52 +74,6 @@
cursor: pointer;
}
.hint-mask {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1;
}
.hint-list {
position: absolute;
width: 100%;
height: 0;
max-height: 400px;
top: 48px;
left: 0;
background-color: rgba(255, 255, 255, 1);
border-radius: 10px;
z-index: 10;
overflow: auto;
animation: hintShow 0.3s forwards;
border: 0px solid rgba(235, 235, 235, 1);
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;
cursor: pointer;
line-height: 30px;
&:not(:last-of-type) {
border-bottom: 1px #e6e4e4 dotted;
}
}
}
}
.total {