chat.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. bottom: 0;
  55. right: 0;
  56. }
  57. .group-profile {
  58. top: 176rpx;
  59. left: 0;
  60. z-index: 1111
  61. }
  62. .container-box {
  63. position: fixed;
  64. display: flex;
  65. justify-content: center;
  66. align-items: center;
  67. left: 0;
  68. right: 0;
  69. bottom: 0;
  70. top: 0;
  71. background-color: rgba(0, 0, 0, 0.5);
  72. }
  73. .video-message {
  74. width: 90vw;
  75. height: 300px;
  76. }