web.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .replies {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 400Px;
  6. overflow-y: auto;
  7. border-radius: 2Px 0 0 2Px;
  8. position: absolute;
  9. right: 0;
  10. height: calc(100% - 54Px);
  11. z-index: 2;
  12. top: 54Px;
  13. background: #ffffff;
  14. box-shadow: 0 1Px 10Px 0 rgb(2 16 43 / 15%);
  15. .header {
  16. display: flex;
  17. flex-direction: row;
  18. align-items: center;
  19. height: 30Px;
  20. padding: 10Px 0;
  21. &-title {
  22. width: calc(100% - 40Px);
  23. text-align: left;
  24. height: 30Px;
  25. font-family: PingFangSC-Medium;
  26. font-weight: 500;
  27. font-size: 16Px;
  28. color: #333333;
  29. line-height: 30Px;
  30. }
  31. &-close {
  32. width: 20Px;
  33. i {
  34. width: 12Px;
  35. height: 12Px;
  36. }
  37. }
  38. &-back {
  39. width: 20Px;
  40. }
  41. }
  42. .body {
  43. padding: 10Px 0;
  44. width: 100%;
  45. flex: 1 1 auto;
  46. display: flex;
  47. flex-direction: column;
  48. overflow: hidden;
  49. .body-message {
  50. border-bottom: 1Px dashed #e0e0e0;
  51. }
  52. .body-list {
  53. width: 100%;
  54. flex: 1 1 auto;
  55. overflow-y: auto;
  56. &-item {
  57. display: flex;
  58. flex: 1 1 auto;
  59. flex-direction: row;
  60. flex-wrap: nowrap;
  61. align-items: center;
  62. .replies-item {
  63. flex: 1;
  64. }
  65. .avatar {
  66. width: 36Px;
  67. height: 36Px;
  68. margin: 10Px 10Px 10Px 0Px;
  69. border-radius: 10%;
  70. }
  71. .name {
  72. width: calc(100% - 60Px);
  73. height: 20Px;
  74. display: inline-block;
  75. overflow: hidden;
  76. text-overflow: ellipsis;
  77. white-space: nowrap;
  78. line-height: 20Px;
  79. font-family: PingFangSC-Regular;
  80. font-weight: 400;
  81. font-size: 14Px;
  82. color: #000000;
  83. letter-spacing: 0;
  84. }
  85. }
  86. .more {
  87. text-align: center;
  88. color: rgba(0, 0, 0, 0.3);
  89. font-size: 12Px;
  90. padding: 10Px;
  91. }
  92. }
  93. }
  94. }
  95. ::-webkit-scrollbar {
  96. width: 4Px;
  97. height: 140Px;
  98. background-color: transparent;
  99. }
  100. ::-webkit-scrollbar-track {
  101. border-radius: 10Px;
  102. }
  103. ::-webkit-scrollbar-thumb {
  104. border-radius: 10Px;
  105. background-color: #d8d8d8;
  106. }