/* pages/aiBot/aiBot.wxss */ .container-box{ position: relative; width: 100vw; height: 100vh; background: rgb(245, 245, 245); overflow: hidden; box-sizing: border-box; } .container-box-article { position: relative; padding-top:0px; width: 100%; height: calc(100vh - 88px); box-shadow: inset 5px 5px #262626; overflow: auto; user-select: text; } .scroll-answer { height: calc(100vh - 100px); } .chat-container { width: 100%; height: 100vh; overflow-y: auto; overflow-x: hidden; position: relative; } .paste-btn { background: rgba(16, 116, 187); color: #ffffff; /* transform: scale(.7); */ border-radius: 5px; } .clear-btn { background: rgba(16, 116, 187); color: #ffffff; /* transform: scale(.7); */ border-radius: 5px; } .paste-btn:hover { border: none; background: rgb(221, 0, 66); } .user-image-box { width: 300px; text-align: center; align-items: center; } .user-image { position: relative; width: 15px; height: 15px; border-radius: 50%; background-color: transparent; background: transparent; } .ai-image { position: relative; width: 20px; height: 20px; border-radius: 50%; } .questioned-box-container { display: flex; } .questioned-box { position: relative; max-width: calc(100vw - 90px); height: auto; overflow-x: auto; background-color: rgb(255, 255, 255); border-radius: 10px; right: -5px; padding: 0 10px; z-index: 999; color: #333; font-family: PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif; font-weight: 300; font-size: 32rpx; user-select: text; box-shadow: -5rpx 3rpx 1rpx -4rpx #c8c3c3; } .questioned-box-poly { position: relative; top: 15px; width: 0; height: 0; border-radius: 5px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 12px solid rgb(255, 255, 255); box-shadow: 0rpx 0rpx 0rpx 0rpx #c8c3c3; } .clear-paste-btn{ width:70%; display: flex; } .submit-input { box-shadow: 0 2rpx 5rpx 5rpx #c8c3c3; width: 70%; } .send-input { height: 60px; background: rgba(255, 255, 255, .8); width: 100%; height: 100px; position: relative; text-indent: 8px; /* padding-left: 5px; */ color: rgb(0, 114, 221); } .send-btn::after{ position: absolute; left:0; top:0; width: 100px; height: 100%; background-color: rgba(255, 255, 255, .8); } .up-down-btn{ width:30%; } .send-btn { box-shadow: 0 2rpx 5rpx 5rpx #c8c3c3; width: 30%; background-color:rgba(16, 116, 187); color: #ffffff; height: 100px; line-height: 100px; /* border-radius: 10px 0 0 10px; */ text-align: center; } .empty-reponse-msg { position: relative; max-width: calc(100vw - 90px); height: auto; overflow-x: auto; background-color: rgb(255, 255, 255); border-radius: 10px; left: -5px; padding: 0 10px; z-index: 999; color: #333; font-family: PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif; font-weight: 300; font-size: 32rpx; user-select: text; } .create-time { width: 100%; text-align: center; color: rgb(255, 255, 255); background: rgb(218, 218, 218); margin: 5px auto; box-shadow: inset 0 1rpx 2rpx 1rpx rgba(0, 0, 0, 0.2); } .form-response-user { background-color: rgba(0, 72, 94, 0); color: #fff; } .form-response-box-poly { position: relative; top: 15px; width: 0; height: 0; border-radius: 5px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-right: 12px solid rgb(255, 255, 255); } .form-response-box { position: relative; max-width: calc(100vw - 50px); /* word-break:keep-all; */ /* white-space: pre-wrap; */ white-space: pre-line; height: auto; overflow-x: auto; background-color: rgb(255, 255, 255); border-radius: 10px; color: #333; font-family: PingFang SC, Lantinghei SC, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif; font-weight: 300; font-size: 32rpx; left: -5px; box-sizing: content-box; z-index: 999; user-select: text; box-shadow: 5rpx 3rpx 1rpx -4rpx #c8c3c3; } .form-request { display: block; width: 100%; color: #fff; background-color: rgba(37, 0, 97, 0); line-height: 50px; } .form-response { position: relative; width: 100%; margin-top: 10px; display: block; margin-bottom: 10px; color: #fff; background-color: rgba(0, 72, 94, 0); box-sizing: border-box; min-height: 60px; } .form-response-user { background-color: rgba(0, 72, 94, 0); color: #fff; } .form-request-user { background-color: rgba(37, 0, 97, 0); color: #fff; } .bottom-box { display: flex; width: 100%; display: absolute; bottom: 100px; }