diff --git a/src/pages/ai/chat.vue b/src/pages/ai/chat.vue index 9f336b2..61b853b 100644 --- a/src/pages/ai/chat.vue +++ b/src/pages/ai/chat.vue @@ -1619,6 +1619,38 @@ onLoad(async () => { padding: 0 20rpx; } +// 快捷按钮栏样式 +.quick-actions-bar { + display: flex; + flex-wrap: wrap; + gap: 16rpx; + padding: 16rpx 0; +} + +.quick-action-btn { + height: 64rpx; + padding: 0 24rpx; + background-color: #ffffff; + border: 1px solid #e5e5e5; + border-radius: 12rpx; + font-size: 26rpx; + color: #333333; + display: flex; + align-items: center; + justify-content: center; + transition: all 0.2s ease; + white-space: nowrap; + + &:active { + transform: scale(0.98); + background-color: #f8f8f8; + } + + text { + display: block; + } +} + .image-preview-list { display: flex; flex-wrap: wrap;