dialogbox.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. page {
  2. background-color: #ffffff;
  3. padding: 0;
  4. }
  5. .gxtips {
  6. font-size: 24rpx;
  7. font-family: PingFangSC-Medium, PingFang SC;
  8. margin-right: 20rpx;
  9. }
  10. .header {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. width: 100vw;
  18. height: 92rpx;
  19. background-color: #f6f7f8;
  20. z-index: 99;
  21. box-shadow: 0px -4rpx 16rpx 0px rgba(0, 0, 0, 0.05);
  22. }
  23. .header_title {
  24. font-size: 32rpx;
  25. font-family: PingFangSC-Medium, PingFang SC;
  26. color: #000000;
  27. height: 52rpx;
  28. line-height: 52rpx;
  29. margin-left: 40rpx;
  30. font-weight: 550;
  31. }
  32. .head-bot-class {
  33. text-align: center !important;
  34. width: 140rpx !important;
  35. height: 52rpx !important;
  36. border-radius: 10rpx !important;
  37. margin-right: 20rpx !important;
  38. padding: 0 !important;
  39. font-size: 24rpx !important;
  40. }
  41. .head-bot-l {
  42. background: rgba(255, 182, 0, 0.1) !important;
  43. border: 2rpx solid rgba(255, 182, 0, 0.6) !important;
  44. box-sizing: border-box !important;
  45. color: #FFB600 !important;
  46. }
  47. .head-bot-r {
  48. background: linear-gradient(180deg, #FFDC00 0%, #FFB600 100%) !important;
  49. font-family: PingFangSC-Medium, PingFang SC !important;
  50. color: #FFFFFF !important;
  51. border: 0 !important;
  52. }
  53. /* 聊天可视区 */
  54. .chatFrame {
  55. width: 100vw;
  56. max-height: 100vh;
  57. }
  58. /* 粘底输入框 */
  59. .input-box {
  60. position: fixed;
  61. width: 100vw;
  62. background-color: #F6F7F8;
  63. left: 0;
  64. bottom: 0;
  65. z-index: 99;
  66. }
  67. .input-text {
  68. position: relative;
  69. width: 710rpx;
  70. height: 64rpx;
  71. line-height: 64rpx;
  72. background-color: #ffffff;
  73. border-radius: 32rpx;
  74. margin: 20rpx auto !important;
  75. padding: 0 25rpx 0;
  76. box-sizing: border-box;
  77. }
  78. /* 功能 */
  79. .functionalZone {
  80. display: flex;
  81. justify-content: space-around;
  82. height: 40rpx;
  83. width: 80vw;
  84. margin: 0 auto;
  85. padding-bottom: 26rpx;
  86. }
  87. .functionalZone image {
  88. height: 100%;
  89. }
  90. .multi-row {
  91. line-height: 44rpx;
  92. }
  93. .meme-box {
  94. width: 90vw;
  95. height: 385rpx;
  96. margin: 0 auto;
  97. padding-bottom: 15rpx;
  98. }
  99. .meme-item {
  100. float: left;
  101. display: flex;
  102. justify-content: center;
  103. align-items: center;
  104. width: 12.5%;
  105. height: 80rpx;
  106. }
  107. .meme-item image {
  108. width: 50rpx;
  109. height: 50rpx;
  110. }
  111. .popup-class {
  112. width: 100vw;
  113. background-color: #F6F7F8;
  114. }
  115. /* 遮罩层 */
  116. .mask-layer {
  117. position: fixed;
  118. width: 100vw;
  119. height: 100vh;
  120. top: 0;
  121. left: 0;
  122. z-index: 9;
  123. }
  124. /* 群聊编辑按钮 */
  125. .compile {
  126. width: 118rpx !important;
  127. height: 52rpx !important;
  128. background: #FFB600 !important;
  129. border-radius: 10rpx;
  130. padding: 0;
  131. margin-right: 20rpx;
  132. font-size: 24rpx;
  133. font-family: PingFangSC-Medium, PingFang SC;
  134. color: #FFFFFF;
  135. }
  136. /* 群聊按钮 */
  137. .gambit {
  138. position: absolute;
  139. display: flex;
  140. align-items: center;
  141. justify-content: center;
  142. width: 710rpx;
  143. height: 100%;
  144. background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
  145. box-shadow: 0px 0px 4rpx 0px rgba(0, 0, 0, 0.1);
  146. left: 0;
  147. top: 0;
  148. z-index: 9999999999999;
  149. font-size: 24rpx;
  150. color: rgba(0, 0, 0, 0.5);
  151. }
  152. .gambit-end {
  153. position: absolute;
  154. display: flex;
  155. align-items: center;
  156. justify-content: center;
  157. width: 126rpx;
  158. height: 52rpx;
  159. background: #4BBECF;
  160. box-shadow: 0px 2rpx 4rpx 0px rgba(0, 0, 0, 0.15);
  161. border-radius: 32rpx;
  162. top: 6rpx;
  163. right: 6rpx;
  164. }
  165. .gambit-end image {
  166. width: 34rpx;
  167. height: 36rpx;
  168. z-index: 999999999;
  169. }