index.css 2.3 KB

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