chat.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .container {
  2. width: 100vw;
  3. height: 100vh;
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. right: 0;
  8. bottom: 0;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. .tui-chatroom-navigatorbar {
  13. position: relative;
  14. /*top: 0;*/
  15. flex-shrink: 0;
  16. width: 750rpx;
  17. height: 176rpx;
  18. background-color: #006EFF;
  19. }
  20. .tui-chatroom-navigatorbar-back {
  21. position: absolute;
  22. width: 48rpx;
  23. height: 48rpx;
  24. left: 24rpx;
  25. bottom: 20rpx;
  26. }
  27. .conversation-title {
  28. position: absolute;
  29. width: 350rpx;
  30. height: 88rpx;
  31. line-height: 56rpx;
  32. font-size: 36rpx;
  33. color: #FFFFFF;
  34. z-index: 100;
  35. bottom: 0;
  36. left: 200rpx;
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. }
  41. .message-list {
  42. flex: 1;
  43. width: 100vw;
  44. overflow-y: scroll;
  45. }
  46. .message-input {
  47. flex-shrink: 0;
  48. width: 100%;
  49. }
  50. .calling {
  51. position: fixed;
  52. z-index: 199;
  53. top: 0;
  54. /* #ifdef H5 */
  55. top: calc(88rpx + constant(safe-area-inset-top));
  56. top: calc(88rpx + env(safe-area-inset-top));
  57. /* #endif */
  58. bottom: 0;
  59. right: 0;
  60. }
  61. .group-profile {
  62. top: 176rpx;
  63. left: 0;
  64. z-index: 1111
  65. }
  66. .container-box {
  67. position: fixed;
  68. display: flex;
  69. justify-content: center;
  70. align-items: center;
  71. left: 0;
  72. right: 0;
  73. bottom: 0;
  74. top: 0;
  75. background-color: rgba(0, 0, 0, 0.5);
  76. }
  77. .video-message {
  78. width: 90vw;
  79. height: 300px;
  80. }