index.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .TUI-message-input-container {
  2. background-color: #F1F1F1;
  3. padding-bottom: 20rpx;
  4. }
  5. .TUI-message-input {
  6. display: flex;
  7. padding-bottom: 16rpx;
  8. background-color: #F1F1F1;
  9. width: 100vw;
  10. }
  11. .TUI-commom-function {
  12. display: flex;
  13. flex-wrap: nowrap;
  14. width: 750rpx;
  15. height: 106rpx;
  16. background-color: #F1F1F1;
  17. align-items: center;
  18. }
  19. .TUI-commom-function-item {
  20. display: flex;
  21. width: 136rpx;
  22. justify-content: center;
  23. align-items: center;
  24. font-size: 24rpx;
  25. color: #FFFFFF;
  26. height: 48rpx;
  27. margin-left: 16rpx;
  28. border-radius: 24rpx;
  29. background-color: #018C39;
  30. }
  31. .TUI-commom-function-item:first-child {
  32. margin-left: 48rpx;
  33. }
  34. .TUI-message-input-functions {
  35. display: flex;
  36. align-items: center;
  37. }
  38. .TUI-message-input-main {
  39. background-color: #fff;
  40. flex: 1;
  41. height: 66rpx;
  42. margin: 0 10rpx;
  43. padding: 0 5rpx;
  44. border-radius: 5rpx;
  45. display: flex;
  46. align-items: center;
  47. }
  48. .TUI-message-input-area {
  49. width: 100%;
  50. height: 100%;
  51. }
  52. .TUI-icon {
  53. width: 56rpx;
  54. height: 56rpx;
  55. margin: 0 16rpx;
  56. }
  57. .TUI-Extensions {
  58. display: flex;
  59. flex-wrap: wrap;
  60. width: 100vw;
  61. height: 450rpx;
  62. margin-left: 14rpx;
  63. margin-right: 14rpx;
  64. }
  65. .TUI-Extension-slot {
  66. width: 128rpx;
  67. height: 170rpx;
  68. margin-left: 26rpx;
  69. margin-right: 26rpx;
  70. margin-top: 24rpx;
  71. }
  72. .TUI-Extension-icon {
  73. width: 128rpx;
  74. height: 128rpx;
  75. }
  76. .TUI-sendMessage-btn {
  77. display: flex;
  78. align-items: center;
  79. margin: 0 10rpx;
  80. }
  81. .TUI-Emoji-area {
  82. width: 100vw;
  83. height: 450rpx;
  84. }
  85. .TUI-Extension-slot-name {
  86. line-height: 34rpx;
  87. font-size: 24rpx;
  88. color: #333333;
  89. letter-spacing: 0;
  90. text-align: center;
  91. }
  92. .record-modal {
  93. height: 300rpx;
  94. width: 60vw;
  95. background-color: #000;
  96. opacity: 0.8;
  97. position: fixed;
  98. top: 670rpx;
  99. z-index: 9999;
  100. left: 20vw;
  101. border-radius: 24rpx;
  102. display: flex;
  103. flex-direction: column;
  104. }
  105. .record-modal .wrapper {
  106. display: flex;
  107. height: 200rpx;
  108. box-sizing: border-box;
  109. padding: 10vw;
  110. }
  111. .record-modal .wrapper .modal-loading {
  112. opacity: 1;
  113. width: 40rpx;
  114. height: 16rpx;
  115. border-radius: 4rpx;
  116. background-color: #006fff;
  117. animation: loading 2s cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
  118. }
  119. .modal-title {
  120. text-align: center;
  121. color: #fff;
  122. }
  123. @keyframes loading {
  124. 0% {
  125. transform: translate(0, 0)
  126. }
  127. 50% {
  128. transform: translate(30vw, 0);
  129. background-color: #f5634a;
  130. width: 40px;
  131. }
  132. 100% {
  133. transform: translate(0, 0);
  134. }
  135. }