| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- @import '../../../../themes/t.cell.scss';
- @import '../../common.scss';
- .consult-wrapper {
- padding-bottom: 180rpx;
-
- &.consult-ended {
- padding-bottom: 0;
- }
- }
- .message-content {
- display: flex;
- justify-content: center;
- align-items: center;
- min-height: 72rpx;
- font-size: 28rpx;
- color: #333;
- }
- .message-image {
- width: 200rpx;
- height: 200rpx;
- border-radius: 16rpx;
- display: block;
- }
- .input-panel {
- position: fixed;
- left: 0;
- right: 0;
- display: flex;
- flex-direction: column;
- align-items: stretch;
- padding: 16rpx 24rpx;
- box-sizing: border-box;
- z-index: 10;
- transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
- will-change: bottom;
- }
- .action-bar {
- display: flex;
- justify-content: center;
- align-items: center;
- margin-bottom: 12rpx;
- gap: 24rpx;
- }
- .action-btn {
- display: inline-flex;
- align-items: center;
- padding: 0 24rpx;
- height: 64rpx;
- line-height: 64rpx;
- border-radius: 12rpx;
- font-size: 30rpx;
- }
- .action-btn.secondary {
- color: black;
- }
- .action-btn.danger {
- color: #1d6ff6;
- }
- .action-text {
- margin-left: 8rpx;
- }
- .input-row {
- display: flex;
- align-items: center;
- }
- .text-input {
- flex: 1;
- height: 76rpx;
- line-height: 76rpx;
- padding: 0 24rpx;
- background: #ffffff;
- border-radius: 12rpx;
- border: 1rpx solid #e6e6e6;
- color: #333333;
- }
- .send-btn {
- margin-left: 20rpx;
- padding: 0 28rpx;
- height: 76rpx;
- line-height: 76rpx;
- background: #1d6ff6;
- color: #ffffff;
- border-radius: 12rpx;
- font-size: 28rpx;
- }
- .media-bar {
- margin-top: 5rpx;
- }
- .media-btn {
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background: #ffffff;
- // border: 1rpx solid #e6e6e6;
- border-radius: 12rpx;
- padding:0 5rpx;
- }
- .media-text {
- // margin-top: 8rpx;
- color: #1d6ff6;
- font-size: 26rpx;
- }
- /* 系统消息样式 */
- .system-wrapper {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: 6px 0;
- .title {
- padding: 4px 12px;
- font-size: 12px;
- color: #999999;
- border-radius: 5px;
- }
- .date {
- font-size: 12px;
- color: #999;
- margin-bottom: 6px;
- }
- }
- .chat-box{
- padding:15rpx 0 15rpx 30rpx !important;
- }
|