no message
This commit is contained in:
parent
8cb646a77e
commit
e79705b001
@ -739,3 +739,45 @@ body {
|
|||||||
padding-bottom: 60px;
|
padding-bottom: 60px;
|
||||||
margin-top: 20px;
|
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;
|
||||||
|
}
|
||||||
|
@ -837,3 +837,50 @@ body {
|
|||||||
padding-bottom: 60px;
|
padding-bottom: 60px;
|
||||||
margin-top: 20px;
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
border-radius: 183px;
|
border-radius: 183px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
.header-box .search .input {
|
.header-box .search .input {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
|
@ -40,6 +40,7 @@
|
|||||||
border-radius: 183px;
|
border-radius: 183px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
.input {
|
.input {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
|
@ -71,48 +71,6 @@
|
|||||||
height: 18px;
|
height: 18px;
|
||||||
cursor: pointer;
|
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 {
|
.boxbox .body .left .total {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
font-family: "PingFangSC-Regular", "PingFang SC", sans-serif;
|
||||||
|
@ -74,52 +74,6 @@
|
|||||||
cursor: pointer;
|
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 {
|
.total {
|
||||||
|
Loading…
Reference in New Issue
Block a user