message-consult.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. @import '../../../../themes/t.cell.scss';
  2. @import '../../common.scss';
  3. .consult-wrapper {
  4. padding-bottom: 180rpx;
  5. &.consult-ended {
  6. padding-bottom: 0;
  7. }
  8. }
  9. .message-content {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. min-height: 72rpx;
  14. font-size: 28rpx;
  15. color: #333;
  16. }
  17. .message-image {
  18. width: 200rpx;
  19. height: 200rpx;
  20. border-radius: 16rpx;
  21. display: block;
  22. }
  23. .input-panel {
  24. position: fixed;
  25. left: 0;
  26. right: 0;
  27. display: flex;
  28. flex-direction: column;
  29. align-items: stretch;
  30. padding: 16rpx 24rpx;
  31. box-sizing: border-box;
  32. z-index: 10;
  33. transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  34. will-change: bottom;
  35. }
  36. .action-bar {
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. margin-bottom: 12rpx;
  41. gap: 24rpx;
  42. }
  43. .action-btn {
  44. display: inline-flex;
  45. align-items: center;
  46. padding: 0 24rpx;
  47. height: 64rpx;
  48. line-height: 64rpx;
  49. border-radius: 12rpx;
  50. font-size: 30rpx;
  51. }
  52. .action-btn.secondary {
  53. color: black;
  54. }
  55. .action-btn.danger {
  56. color: #1d6ff6;
  57. }
  58. .action-text {
  59. margin-left: 8rpx;
  60. }
  61. .input-row {
  62. display: flex;
  63. align-items: center;
  64. }
  65. .text-input {
  66. flex: 1;
  67. height: 76rpx;
  68. line-height: 76rpx;
  69. padding: 0 24rpx;
  70. background: #ffffff;
  71. border-radius: 12rpx;
  72. border: 1rpx solid #e6e6e6;
  73. color: #333333;
  74. }
  75. .send-btn {
  76. margin-left: 20rpx;
  77. padding: 0 28rpx;
  78. height: 76rpx;
  79. line-height: 76rpx;
  80. background: #1d6ff6;
  81. color: #ffffff;
  82. border-radius: 12rpx;
  83. font-size: 28rpx;
  84. }
  85. .media-bar {
  86. margin-top: 5rpx;
  87. }
  88. .media-btn {
  89. display: inline-flex;
  90. flex-direction: column;
  91. align-items: center;
  92. justify-content: center;
  93. background: #ffffff;
  94. // border: 1rpx solid #e6e6e6;
  95. border-radius: 12rpx;
  96. padding:0 5rpx;
  97. }
  98. .media-text {
  99. // margin-top: 8rpx;
  100. color: #1d6ff6;
  101. font-size: 26rpx;
  102. }
  103. /* 系统消息样式 */
  104. .system-wrapper {
  105. display: flex;
  106. flex-direction: column;
  107. align-items: center;
  108. margin: 6px 0;
  109. .title {
  110. padding: 4px 12px;
  111. font-size: 12px;
  112. color: #999999;
  113. border-radius: 5px;
  114. }
  115. .date {
  116. font-size: 12px;
  117. color: #999;
  118. margin-bottom: 6px;
  119. }
  120. }
  121. .chat-box{
  122. padding:15rpx 0 15rpx 30rpx !important;
  123. }