dialogbox.wxss 3.0 KB

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