聊天框区域设为半透明

This commit is contained in:
张梦南 2025-04-14 20:39:02 +08:00
parent a122cd3d2b
commit a08557d728

View File

@ -3,11 +3,13 @@
bottom: 50px; bottom: 50px;
left: 0; left: 0;
width: 100%; width: 100%;
background: #fff; background: rgba(255, 255, 255, 0.05); /* 几乎全透明 */
box-shadow: 0 -2px 5px #fff; backdrop-filter: blur(4px); /* 模糊背景 */
-webkit-backdrop-filter: blur(4px);
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
z-index: 5;
} }
.chat-box { .chat-box {
@ -15,7 +17,9 @@
min-height: 20px; min-height: 20px;
max-height: 50vh; max-height: 50vh;
overflow-y: auto; overflow-y: auto;
background: #f5f5f5; background: rgba(200, 200, 200, 0.1); /* 淡灰半透明 */
backdrop-filter: blur(8px); /* 背景模糊 */
-webkit-backdrop-filter: blur(8px); /* Safari 兼容 */
margin-bottom: 10px; margin-bottom: 10px;
padding: 10px; padding: 10px;
border-radius: 8px; border-radius: 8px;