diff --git a/src/App.vue b/src/App.vue index 664cd3bc9f067098342323ef1bc6a67be5256903..01aa816b8b3cda994a13b30de647db242e432c4b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,39 +1,50 @@ + - \ No newline at end of file +.avatar-ai { + width: 40px; + height: 40px; + border-radius: 50%; + margin-right: 10px; /* AI 头像左侧间距 */ +} +.input-area { + display: flex; + align-items: center; + position: fixed; /* 将 input-area 固定 */ + bottom: 0; /* 置于页面底部 */ + left: 0; /* 使其与页面左侧对齐 */ + right: 0; /* 使其与页面右侧对齐 */ + padding: 10px; + background-color: white; /* 添加背景色 */ + box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */ +} +.input-area Input { + flex: 1; + margin-right: 10px; +} + +