diff --git a/public/css/chat.css b/public/css/chat.css index 80b6422..5808cea 100644 --- a/public/css/chat.css +++ b/public/css/chat.css @@ -682,7 +682,7 @@ a:hover { top: 35%; right: 10px; display: flex; - flex-direction: row; + flex-direction: column; gap: 8px; z-index: 500; } @@ -691,23 +691,26 @@ a:hover { width: 44px; height: 44px; border-radius: 50%; - border: none; - background: var(--bg-header); - color: #fff; + border: 1px solid rgba(51, 102, 153, 0.4); + background: rgba(255, 255, 255, 0.82); + backdrop-filter: blur(8px); + -webkit-backdrop-filter: blur(8px); + color: #336699; font-size: 18px; cursor: pointer; - box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35); + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18); display: flex; align-items: center; justify-content: center; - transition: transform 0.15s, background 0.15s; + transition: transform 0.15s, background 0.15s, box-shadow 0.15s; user-select: none; -webkit-tap-highlight-color: transparent; } .mobile-fab:active { transform: scale(0.92); - background: var(--border-blue); + background: rgba(51, 102, 153, 0.15); + box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2); } /* ── 抽屉遮罩 ── */