index.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. .tui-line-cell {
  2. width: 100%;
  3. box-sizing: border-box;
  4. display: flex;
  5. align-items: center;
  6. }
  7. .tui-title {
  8. font-size: 24rpx;
  9. line-height: 24rpx;
  10. flex-shrink: 0;
  11. }
  12. .tui-lable {
  13. font-size: 24rpx;
  14. color: #333;
  15. padding-left: 20rpx;
  16. flex: 1;
  17. }
  18. .tui-input {
  19. font-size: 24rpx;
  20. color: #333;
  21. padding-left: 20rpx;
  22. flex: 1;
  23. }
  24. .phcolor {
  25. font-size: 24rpx;
  26. }
  27. page{
  28. height: 100vh;
  29. }
  30. .container {
  31. padding-bottom: env(safe-area-inset-bottom);
  32. height: 100%;
  33. }
  34. .v-nodata{
  35. height: 100%;
  36. display: flex;
  37. justify-content: center;
  38. align-items:center;
  39. text-align: center;
  40. flex-direction: column;
  41. }
  42. .v-nodata-img{
  43. width: 415rpx;
  44. height: 316rpx;
  45. }
  46. .v-nodata-txt{
  47. color:#999999;
  48. padding:20rpx 0;
  49. }
  50. .tui-msg-box {
  51. display: flex;
  52. align-items: center;
  53. }
  54. .tui-msg-pic {
  55. width: 100rpx;
  56. height: 100rpx;
  57. border-radius: 50%;
  58. display: block;
  59. margin-right: 24rpx;
  60. }
  61. .tui-msg-item {
  62. max-width: 500rpx;
  63. min-height: 80rpx;
  64. overflow: hidden;
  65. display: flex;
  66. flex-direction: column;
  67. justify-content: space-between;
  68. }
  69. .tui-msg-name {
  70. overflow: hidden;
  71. white-space: nowrap;
  72. text-overflow: ellipsis;
  73. font-size: 34rpx;
  74. line-height: 1;
  75. color: #262b3a;
  76. }
  77. .tui-msg-content {
  78. overflow: hidden;
  79. white-space: nowrap;
  80. text-overflow: ellipsis;
  81. font-size: 26rpx;
  82. line-height: 1;
  83. color: #9397a4;
  84. }
  85. .tui-msg-content2 {
  86. font-size: 26rpx;
  87. line-height: 1;
  88. color: #9397a4;
  89. }
  90. .tui-msg-right {
  91. max-width: 140rpx;
  92. height: 88rpx;
  93. margin-left: auto;
  94. text-align: right;
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: space-between;
  98. align-items: flex-end;
  99. }
  100. .tui-msg-right.tui-right-dot{
  101. height: 76rpx;
  102. padding-bottom: 10rpx;
  103. }
  104. .tui-msg-time {
  105. width: 100%;
  106. font-size: 24rpx;
  107. line-height: 24rpx;
  108. color: #9397a4;
  109. }
  110. .tui-badge{
  111. width:auto
  112. }
  113. .tui-msg::after{
  114. left: 154rpx !important
  115. }