commentBox.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .empty.data-v-64343b3a {
  28. display: flex;
  29. flex-direction: row;
  30. align-items: center;
  31. justify-content: center;
  32. padding: 24rpx 50rpx;
  33. color: #999999;
  34. }
  35. .listbox.data-v-64343b3a {
  36. white-space: pre-wrap;
  37. letter-spacing: 1px;
  38. margin-bottom: 16rpx;
  39. }
  40. .list-name.data-v-64343b3a {
  41. flex-shrink: 0;
  42. font-family: PingFang SC, PingFang SC;
  43. font-weight: 600;
  44. font-size: 28rpx;
  45. color: #222222;
  46. margin-right: 16rpx;
  47. }
  48. .my.data-v-64343b3a {
  49. color: #FF5C03;
  50. }
  51. .list-con.data-v-64343b3a {
  52. font-family: PingFang SC, PingFang SC;
  53. font-size: 28rpx;
  54. color: #222222;
  55. }
  56. .nav-bar.data-v-64343b3a {
  57. position: fixed;
  58. z-index: 9999;
  59. top: 0;
  60. left: 0;
  61. width: 100%;
  62. overflow: hidden;
  63. }
  64. .nav-bar .nav-bg.data-v-64343b3a {
  65. width: 100%;
  66. height: 100%;
  67. position: absolute;
  68. left: 0;
  69. top: 0;
  70. z-index: 1;
  71. background-color: #fff;
  72. }
  73. .nav-bar-box.data-v-64343b3a {
  74. position: relative;
  75. padding: 0 24rpx;
  76. display: flex;
  77. flex-direction: row;
  78. align-items: center;
  79. justify-content: flex-start;
  80. height: 88rpx;
  81. box-sizing: border-box;
  82. z-index: 3;
  83. }
  84. .nav-bar-left.data-v-64343b3a {
  85. width: 100%;
  86. display: flex;
  87. flex-direction: row;
  88. align-items: center;
  89. justify-content: flex-start;
  90. overflow: hidden;
  91. }
  92. .nav-bar-left image.data-v-64343b3a {
  93. flex-shrink: 0;
  94. width: 64rpx;
  95. height: 64rpx;
  96. border-radius: 12rpx 12rpx 12rpx 12rpx;
  97. }
  98. .nav-bar-name.data-v-64343b3a {
  99. font-family: PingFang SC, PingFang SC;
  100. font-weight: 600;
  101. font-size: 28rpx;
  102. color: #222222;
  103. }
  104. .nav-bar-head.data-v-64343b3a {
  105. flex: 1;
  106. overflow: hidden;
  107. margin-left: 22rpx;
  108. margin-right: 22rpx;
  109. font-family: PingFang SC, PingFang SC;
  110. font-weight: 400;
  111. font-size: 23rpx;
  112. color: #999999;
  113. }
  114. .page-bg.data-v-64343b3a {
  115. position: absolute;
  116. top: 0;
  117. left: 0;
  118. }
  119. .container-body.data-v-64343b3a {
  120. padding: 32rpx 30rpx;
  121. box-sizing: border-box;
  122. }
  123. .TUI-message-list.data-v-64343b3a {
  124. width: 100%;
  125. box-sizing: border-box;
  126. }
  127. .chatinput.data-v-64343b3a {
  128. position: fixed;
  129. left: 32rpx;
  130. right: 32rpx;
  131. z-index: 999;
  132. bottom: calc(0px + 24rpx);
  133. height: 96rpx;
  134. background-color: green;
  135. background: #FFFFFF;
  136. box-shadow: 0rpx 8rpx 21rpx 0rpx rgba(0, 0, 0, 0.1);
  137. border-radius: 24rpx 24rpx 24rpx 24rpx;
  138. display: flex;
  139. flex-direction: row;
  140. align-items: center;
  141. justify-content: center;
  142. padding: 0 24rpx;
  143. box-sizing: border-box;
  144. }
  145. .chatinput .uni-input.data-v-64343b3a {
  146. flex: 1;
  147. margin-right: 32rpx;
  148. font-size: 30rpx;
  149. }
  150. .chatinput .send.data-v-64343b3a {
  151. font-family: PingFang SC, PingFang SC;
  152. font-weight: 400;
  153. font-size: 28rpx;
  154. color: #FFFFFF !important;
  155. flex-shrink: 0;
  156. padding: 0 20rpx;
  157. height: 72rpx;
  158. background: #FF5C03 !important;
  159. border-radius: 8rpx 8rpx 8rpx 8rpx;
  160. }
  161. .chatinput .send.data-v-64343b3a::after {
  162. border: none;
  163. }