h5.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. .read-receipt-H5 {
  2. z-index: 5;
  3. box-sizing: border-box;
  4. display: flex;
  5. flex-direction: column;
  6. transform: none;
  7. box-shadow: 0 11px 20px 0 rgba(0, 0, 0, 0.3);
  8. background: #ffffff;
  9. border-radius: 8px;
  10. overflow: hidden;
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 100%;
  16. padding: 0;
  17. .header {
  18. padding-left: 20px;
  19. padding-right: 20px;
  20. }
  21. .body {
  22. padding: 0;
  23. .body-tab,
  24. .body-list {
  25. width: 100%;
  26. }
  27. .body-list-item {
  28. background-color: #ffffff;
  29. padding-left: 10px;
  30. display: flex;
  31. flex-direction: row;
  32. .avatar {
  33. border-radius: 10%;
  34. padding: 0;
  35. margin: 10px;
  36. }
  37. .name {
  38. width: calc(100% - 40px);
  39. height: 56px;
  40. line-height: 56px;
  41. border-bottom: 1px solid #EFEFEF;
  42. }
  43. }
  44. .body-tab {
  45. height: 22px;
  46. padding: 15px;
  47. width: calc(100% - 30px);
  48. border-bottom: none;
  49. .tab-item {
  50. display: flex;
  51. flex-direction: row-reverse;
  52. justify-content: center;
  53. align-items: center;
  54. font-size: 16px;
  55. height: 22px;
  56. font-family: PingFangSC-Medium;
  57. &-title,
  58. &-count {
  59. height: 22px;
  60. font-size: 15px;
  61. letter-spacing: 0;
  62. text-align: center;
  63. line-height: 20px;
  64. font-weight: 400;
  65. color: #8D8D8D;
  66. }
  67. &-count {
  68. font-size: 17px;
  69. font-weight: 800;
  70. }
  71. &-now {
  72. color: #147AFF;
  73. padding-bottom: 3px;
  74. border-bottom: 2.6px solid #147AFF;
  75. .tab-item-title,
  76. .tab-item-count {
  77. color: #147AFF;
  78. }
  79. }
  80. }
  81. }
  82. .body-message {
  83. background-color: #F7F8FA;
  84. .message {
  85. margin: 10px 0;
  86. background-color: #ffffff;
  87. padding: 5px;
  88. .message-info {
  89. span {
  90. padding-left: 10px;
  91. padding-right: 10px;
  92. width: 94px;
  93. height: 30px;
  94. font-family: PingFangSC-Regular;
  95. font-weight: 400;
  96. font-size: 12px;
  97. color: #999999;
  98. letter-spacing: 0;
  99. text-align: center;
  100. line-height: 30px;
  101. }
  102. }
  103. .message-cont {
  104. padding: 0 10px 10px 10px;
  105. font-family: PingFangSC-Regular;
  106. font-weight: 400;
  107. font-size: 14px;
  108. color: #111111;
  109. letter-spacing: 0;
  110. max-height: 100px;
  111. p {
  112. overflow: hidden;
  113. text-overflow: ellipsis;
  114. white-space: nowrap;
  115. }
  116. &-img {
  117. max-height: 70px;
  118. }
  119. }
  120. }
  121. }
  122. }
  123. }