dialogbox.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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: #FCFCFD;
  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. width: 710rpx;
  63. height: 64rpx;
  64. line-height: 64rpx;
  65. background-color: #ffffff;
  66. border-radius: 32rpx;
  67. margin: 20rpx auto !important;
  68. padding: 0 25rpx 0;
  69. box-sizing: border-box;
  70. }
  71. /* 功能 */
  72. .functionalZone {
  73. display: flex;
  74. justify-content: space-around;
  75. height: 40rpx;
  76. width: 80vw;
  77. margin: 0 auto;
  78. padding-bottom: 26rpx;
  79. }
  80. .functionalZone image {
  81. height: 100%;
  82. }
  83. .multi-row {
  84. line-height: 44rpx;
  85. }
  86. .meme-box {
  87. width: 90vw;
  88. height: 385rpx;
  89. margin: 0 auto;
  90. padding-bottom: 15rpx;
  91. }
  92. .meme-item {
  93. float: left;
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. width: 12.5%;
  98. height: 80rpx;
  99. }
  100. .meme-item image {
  101. width: 50rpx;
  102. height: 50rpx;
  103. }
  104. .popup-class {
  105. width: 100vw;
  106. background-color: #F6F7F8;
  107. }
  108. /* 遮罩层 */
  109. .mask-layer {
  110. position: fixed;
  111. width: 100vw;
  112. height: 100vh;
  113. top: 0;
  114. left: 0;
  115. z-index: 9;
  116. }