index.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. .image-message{
  2. width: 300rpx;
  3. }
  4. .msg-img{
  5. width: 300rpx;
  6. border-radius: 2px 10px 10px 10px;
  7. }
  8. .video-message{
  9. width: 160px;
  10. height: 120px;
  11. background-color: rgba(0, 0, 0, 0.2);
  12. border-radius: 2px 10px 10px 10px;
  13. display: flex;
  14. justify-content: center;
  15. align-items: center;
  16. position: relative;
  17. overflow: hidden;
  18. }
  19. .poster{
  20. width: 100%;
  21. height: 100%;
  22. position: absolute;
  23. left: 0;
  24. right: 0;
  25. z-index: 1;
  26. }
  27. .video-icon {
  28. position: relative;
  29. z-index: 10;
  30. display: block;
  31. width: 32px;
  32. height: 32px;
  33. }
  34. .message-body-span {
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. /*justify-content: flex-start;*/
  39. flex-wrap: wrap;
  40. outline: none;
  41. font-size: 28rpx;
  42. color: #ffffff;
  43. position: relative;
  44. max-width: 60vw;
  45. }
  46. .message-body-span-text {
  47. width: 100%;
  48. display: inline;
  49. word-wrap: break-word;
  50. word-break: break-all;
  51. color: #ffffff;
  52. }
  53. .custom-content-text {
  54. font-family: PingFangSC-Regular;
  55. height: 25px;
  56. line-height: 25px;
  57. font-size: 28rpx;
  58. letter-spacing: 0;
  59. }
  60. .system-message{
  61. display: flex;
  62. flex-direction: column;
  63. justify-content: center;
  64. align-items: center;
  65. border-radius: 16rpx 4rpx 16rpx 16rpx;
  66. width:100vw;
  67. }
  68. .err-title{
  69. color: #ffffff;
  70. font-size: 28rpx;
  71. padding-top: 30rpx;
  72. text-align: center;
  73. padding: 30rpx 50rpx 0rpx 50rpx;
  74. }
  75. .err-line{
  76. width: 70%;
  77. padding: 20rpx 24rpx;
  78. margin: 0 auto;
  79. text-align: center;
  80. }
  81. .err-text{
  82. font-size: 20rpx;
  83. color: #ffffff;
  84. text-align: center;
  85. }