快速筛选优化 增加公告

This commit is contained in:
yml
2026-06-08 22:25:15 +08:00
parent 9b802c1a5c
commit 870ea72996
6 changed files with 720 additions and 32 deletions
@@ -97,6 +97,7 @@
background: #fffdf0;
color: #8a6d1b;
font-size: 12px;
text-decoration: none;
}
.fraud-dot {
@@ -120,6 +121,11 @@
white-space: nowrap;
}
.fraud-more {
flex: 0 0 auto;
color: #c08a12;
}
.mobile-content {
padding: 12px;
}
@@ -257,8 +263,8 @@
.zone-strip {
display: flex;
gap: 8px;
margin: 0 -12px 12px;
gap: 6px;
margin: 0 -12px 10px;
padding: 0 12px 2px;
overflow-x: auto;
overscroll-behavior-x: contain;
@@ -270,55 +276,57 @@
}
.zone-pill {
display: grid;
grid-template-columns: auto auto;
grid-template-areas:
'label count'
'hint hint';
column-gap: 6px;
row-gap: 3px;
flex: 0 0 74px;
min-height: 54px;
display: inline-flex;
flex: 0 0 auto;
gap: 5px;
height: 34px;
min-width: 62px;
align-items: center;
padding: 8px 9px;
border: 1px solid #e2e8f0;
border-radius: 8px;
justify-content: center;
padding: 0 11px;
border: 1px solid #dbe3ee;
border-radius: 999px;
background: #fff;
color: #334155;
color: #475569;
}
.zone-pill strong {
grid-area: label;
font-size: 14px;
font-size: 13px;
font-weight: 800;
line-height: 1;
}
.zone-pill span {
grid-area: count;
color: #ff6a00;
font-size: 13px;
display: grid;
min-width: 17px;
height: 17px;
place-items: center;
padding: 0 4px;
border-radius: 999px;
background: #f1f5f9;
color: #64748b;
font-size: 11px;
font-weight: 900;
text-align: right;
line-height: 1;
}
.zone-pill small {
grid-area: hint;
overflow: hidden;
color: #7b8798;
font-size: 10px;
line-height: 1.2;
text-overflow: ellipsis;
white-space: nowrap;
display: none;
}
.zone-pill.active {
border-color: #ff6a00;
background: #fff7ed;
color: #9a3412;
color: #c2410c;
}
.zone-pill.active span {
color: #ff6a00;
background: #ff6a00;
color: #fff;
}
.zone-pill:active {
transform: translateY(1px);
}
.list-toolbar {
@@ -689,6 +697,27 @@
font-size: 12px;
}
.back-top-button {
position: fixed;
right: max(14px, calc((100vw - 430px) / 2 + 14px));
bottom: calc(64px + env(safe-area-inset-bottom));
z-index: 110;
display: grid;
width: 42px;
height: 42px;
place-items: center;
border: 1px solid #fed7aa;
border-radius: 999px;
background: rgba(255, 255, 255, 0.96);
color: #ff6a00;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}
.back-top-button:active {
background: #fff7ed;
transform: translateY(1px);
}
@media (max-width: 360px) {
.mobile-brand small {
display: none;
@@ -719,4 +748,10 @@
.card-title-row h2 {
font-size: 13px;
}
.back-top-button {
right: 12px;
width: 40px;
height: 40px;
}
}