业务交流通
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

listItem.wxss 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /* components/listItem/listItem.wxss */
  2. .fl {
  3. float: left;
  4. }
  5. .fr {
  6. float: right;
  7. }
  8. /* list块-头部 */
  9. .list-avatar {
  10. height: 60rpx;
  11. line-height: 60rpx;
  12. }
  13. .list-chatHeads{
  14. width: 60rpx;
  15. height: 60rpx;
  16. border-radius: 50%;
  17. background: #999;
  18. }
  19. .list-chatHeads .chatHeads-img{
  20. width: 100%;
  21. height: 100%;
  22. border-radius: 50%;
  23. }
  24. /* 平台认证 */
  25. .list-certification {
  26. position: absolute;
  27. right: 0;
  28. top: 22rpx;
  29. width: 130rpx;
  30. height: 40rpx;
  31. line-height: 40rpx;
  32. background-color: #fff0be;
  33. border-radius: 18rpx 0 0 18rpx;
  34. text-align: center;
  35. color: #ef6f10;
  36. font-size: 20rpx;
  37. font-style: italic;
  38. }
  39. .list-certification .certification-img{
  40. width: 26rpx;
  41. height: 27rpx;
  42. position: relative;
  43. top: 6rpx;
  44. }
  45. /* 名称 */
  46. .list-nick-name {
  47. margin-left: 15rpx;
  48. max-width: 300rpx;
  49. white-space:nowrap;
  50. overflow:hidden;
  51. text-overflow:ellipsis;
  52. font-weight: bold;
  53. }
  54. /* 主页 */
  55. .list-home {
  56. color: #827de5;
  57. border-radius: 16px;
  58. border: solid 1px #827de5;
  59. width: 106rpx;
  60. height: 40rpx;
  61. line-height: 38rpx;
  62. font-size: 22rpx;
  63. text-align: center;
  64. margin-top: 12rpx;
  65. margin-left: 15rpx;
  66. box-sizing: border-box;
  67. }
  68. .list-home .home-img{
  69. width: 22rpx;
  70. height: 23rpx;
  71. position: relative;
  72. top: 3rpx;
  73. }
  74. /* 内容容器 */
  75. .list-content {
  76. padding-left: 75rpx;
  77. padding-right: 15rpx;
  78. }
  79. /* 详情 */
  80. .list-details-text{
  81. margin: 15rpx 0;
  82. word-break: break-all;
  83. text-overflow: ellipsis;
  84. overflow: hidden;
  85. display: -webkit-box;
  86. }
  87. .list-details-text.need {
  88. -webkit-line-clamp: 3;
  89. -webkit-box-orient: vertical;
  90. }
  91. /* 标签 */
  92. .list-tag-view {
  93. margin-bottom: 20rpx;
  94. }
  95. .list-tag-view .list-tag{
  96. display: inline-block;
  97. width: 120rpx;
  98. height: 44rpx;
  99. border-radius: 20rpx;
  100. text-align: center;
  101. line-height: 44rpx;
  102. font-size: 22rpx;
  103. margin-right: 15rpx;
  104. }
  105. .list-tag-view .list-tag:nth-child(1){
  106. background-color: #e4f1f7;
  107. color: #3d97e6;
  108. }
  109. .list-tag-view .list-tag:nth-child(2){
  110. background-color: #f7eee4;
  111. color: #f29f61;
  112. }
  113. .list-tag-view .list-tag:nth-child(3){
  114. background-color: #eafee3;
  115. color: #80c269;
  116. }
  117. /* 底部 */
  118. .list-foot {
  119. height: 62rpx;
  120. line-height: 62rpx;
  121. }
  122. .list-foot-text-lf{
  123. color: #999;
  124. font-size: 22rpx;
  125. margin-right: 40rpx;
  126. }
  127. .list-foot-text-lf .browse-img{
  128. width: 24rpx;
  129. height: 18rpx;
  130. }
  131. .list-foot-text-lf .time-img{
  132. width: 24rpx;
  133. height: 24rpx;
  134. position: relative;
  135. top: 4rpx;
  136. }
  137. .list-foot-text-chat {
  138. height: 60rpx;
  139. width: 160rpx;
  140. background-color: #5e73e5;
  141. box-shadow: -1px 3px 12px 4px
  142. rgba(62, 95, 179, 0.14);
  143. border-radius: 31rpx;
  144. text-align: center;
  145. color: #fff;
  146. font-size: 24rpx;
  147. }
  148. .list-foot-text-chat .chat-img{
  149. width: 28rpx;
  150. height: 28rpx;
  151. position: relative;
  152. top: 4rpx;
  153. left: -10rpx;
  154. }
  155. .list-collect-view {
  156. color: #e16531;
  157. font-size: 22rpx;
  158. }
  159. .list-collect-view .collect-img {
  160. width: 26rpx;
  161. height: 23rpx;
  162. position: relative;
  163. top: 4rpx;
  164. }
  165. .is-details-page .list-foot-text-lf{
  166. margin-right: 16rpx;
  167. }
  168. /* 置顶 */
  169. .ontop-img {
  170. position: absolute;
  171. left: 0;
  172. top: 0;
  173. width: 67rpx;
  174. height: 62rpx;
  175. }
  176. .disabled-model-view .list-foot-text-chat{
  177. background-color: #818181!important;
  178. }
  179. .disabled-model-view .list-tag{
  180. background: #ededed!important;
  181. color: #9d9d9d!important;
  182. }
  183. .disabled-model-view .list-details-text{
  184. color: #999!important;
  185. }