index.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. .container{
  2. background-color: #F7F7F7;
  3. width: 100vw;
  4. min-height: 100vh;
  5. .nav{
  6. padding-top: 60px;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. position: sticky;
  11. top: 0;
  12. background-color: #F7F7F7;
  13. .nav-item{
  14. flex: 1;
  15. height: 45px;
  16. line-height: 45px;
  17. font-size: 15px;
  18. font-family: PingFangSC-Regular, PingFang SC;
  19. font-weight: 400;
  20. text-align: center;
  21. }
  22. .nav-line{
  23. width: 22px;
  24. height: 4px;
  25. background: #9580FF;
  26. position: absolute;
  27. bottom: 0;
  28. transition: all .3s;
  29. }
  30. }
  31. .list{
  32. padding: 0px 16px 0px 16px;
  33. background-color: #ffffff;
  34. .list-item{
  35. background-color: #ffffff;
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: flex-start;
  39. .li-head{
  40. width: 35px;
  41. height: 35px;
  42. border-radius: 35px;
  43. background-color: #CCCCCC;
  44. margin: 16px 10px 0px 0px;
  45. }
  46. .li-panel{
  47. flex: 1;
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: flex-start;
  51. padding: 16px 0px;
  52. border-top: 1px solid #eeeeee;
  53. .li-left{
  54. .li-user{
  55. display: flex;
  56. justify-content: flex-start;
  57. align-items: center;
  58. .li-user-name{
  59. font-size: 13px;
  60. font-family: PingFangSC-Regular, PingFang SC;
  61. font-weight: 400;
  62. color: #999999;
  63. max-width: 160px;
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. white-space:nowrap;
  67. }
  68. .li-user-tag{
  69. padding: 0px 5px;
  70. height: 16px;
  71. background: #F7F7F7;
  72. border-radius: 8px;
  73. margin-left: 5px;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. .sex-icon{
  78. width: 12px;
  79. height: 12px;
  80. margin: 0 2px 0 0;
  81. }
  82. .sex-num{
  83. font-size: 10px;
  84. font-family: PingFangSC-Regular, PingFang SC;
  85. font-weight: 400;
  86. padding-right: 5px;
  87. line-height: 13px;
  88. }
  89. }
  90. }
  91. .li-title{
  92. font-size: 13px;
  93. font-family: PingFangSC-Regular, PingFang SC;
  94. font-weight: 400;
  95. color: #999999;
  96. }
  97. .li-info{
  98. font-size: 15px;
  99. font-family: PingFangSC-Regular, PingFang SC;
  100. font-weight: 400;
  101. color: #333333;
  102. margin-top: 5px;
  103. }
  104. .li-time{
  105. font-size: 13px;
  106. font-family: PingFangSC-Regular, PingFang SC;
  107. font-weight: 400;
  108. color: #999999;
  109. margin-top: 6px;
  110. }
  111. }
  112. .li-right{
  113. display: flex;
  114. flex-direction: column;
  115. justify-content: flex-end;
  116. align-items: flex-end;
  117. .lir-tag{
  118. font-size: 13px;
  119. font-family: PingFangSC-Regular, PingFang SC;
  120. font-weight: 400;
  121. color: #FA8C53;
  122. margin-bottom: 3px;
  123. }
  124. .lir-num{
  125. font-size: 18px;
  126. font-family: PingFangSC-Medium, PingFang SC;
  127. font-weight: bolder;
  128. }
  129. }
  130. }
  131. }
  132. }
  133. .null{
  134. width: 100%;
  135. display: flex;
  136. justify-content: center;
  137. align-items: center;
  138. flex-direction: column;
  139. margin-top: 150px;
  140. .null-img{
  141. width: 147px;
  142. height: 100px;
  143. }
  144. .null-text{
  145. font-size: 12px;
  146. font-family: PingFangSC-Regular, PingFang SC;
  147. font-weight: 400;
  148. color: #CCCCCC;
  149. margin-top: 10px;
  150. }
  151. }
  152. .no-more{
  153. font-size: 12px;
  154. font-family: PingFangSC-Regular, PingFang SC;
  155. font-weight: 400;
  156. color: #AAAAAA;
  157. text-align: center;
  158. padding: 20px 0px;
  159. }
  160. }