2025-10-29 21:27:29 +00:00

74 lines
1.3 KiB
Plaintext

.chatlog {
width: 750rpx;
height: calc(100vh - 380rpx);
margin-top: 40rpx;
overflow-y: scroll;
}
.bottom {
position: fixed;
bottom: 0;
width: 750rpx;
background: white;
padding-bottom: 20rpx;
}
.bottom .quick-actions {
display: flex;
flex-direction: row;
padding: 20rpx 40rpx 10rpx;
flex-wrap: wrap;
}
.bottom .quick-action {
height: 60rpx;
font-size: 26rpx;
color: #ef4823;
background: #f5f5f5;
border-radius: 40rpx;
padding: 0 24rpx;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15rpx;
margin-bottom: 10rpx;
}
.bottom .input-container {
display: flex;
margin: 10rpx 30rpx 20rpx;
align-items: center;
background: #f5f5f5;
border-radius: 50rpx;
padding: 10rpx 20rpx;
}
.bottom .input-field {
flex: 1;
font-size: 28rpx;
padding: 10rpx 15rpx;
background: transparent;
}
.bottom .send-button {
min-width: 100rpx;
height: 60rpx;
background: #ddd;
color: #999;
border-radius: 40rpx;
display: flex;
align-items: center;
justify-content: center;
font-size: 28rpx;
margin-left: 15rpx;
transition: all 0.2s;
}
.bottom .send-button.active {
background: #4a90e2;
color: white;
}
.hidden {
display: none;
}