applist.wxss 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .ad-box.data-v-2d6ca29c {
  28. margin: 40rpx;
  29. display: -webkit-box;
  30. display: -webkit-flex;
  31. display: flex;
  32. -webkit-box-pack: center !important;
  33. -webkit-justify-content: center !important;
  34. justify-content: center !important;
  35. -webkit-box-align: center;
  36. -webkit-align-items: center;
  37. align-items: center;
  38. }
  39. .content.data-v-2d6ca29c {
  40. padding-bottom: 1rpx;
  41. }
  42. .swiper-box.data-v-2d6ca29c {
  43. width: 100vw;
  44. height: 56.25vw;
  45. }
  46. .swiper-box .image.data-v-2d6ca29c {
  47. width: 100%;
  48. height: 100%;
  49. }
  50. .sticky.data-v-2d6ca29c {
  51. position: -webkit-sticky;
  52. position: sticky;
  53. top: 0rpx;
  54. left: 0;
  55. background-color: #fff;
  56. z-index: 9;
  57. }
  58. .sticky .grid.data-v-2d6ca29c {
  59. display: -webkit-box;
  60. display: -webkit-flex;
  61. display: flex;
  62. -webkit-flex-wrap: wrap;
  63. flex-wrap: wrap;
  64. -webkit-box-pack: start;
  65. -webkit-justify-content: flex-start;
  66. justify-content: flex-start;
  67. overflow: auto;
  68. }
  69. .sticky .grid .grid-item.data-v-2d6ca29c {
  70. -webkit-flex-shrink: 0;
  71. flex-shrink: 0;
  72. width: 20%;
  73. height: 130rpx;
  74. display: -webkit-box;
  75. display: -webkit-flex;
  76. display: flex;
  77. -webkit-box-pack: center;
  78. -webkit-justify-content: center;
  79. justify-content: center;
  80. -webkit-box-orient: vertical;
  81. -webkit-box-direction: normal;
  82. -webkit-flex-direction: column;
  83. flex-direction: column;
  84. -webkit-box-align: center;
  85. -webkit-align-items: center;
  86. align-items: center;
  87. text-align: center;
  88. font-size: 34rpx;
  89. padding: 10rpx;
  90. box-sizing: border-box;
  91. position: relative;
  92. }
  93. .sticky .grid .grid-item .text.data-v-2d6ca29c {
  94. font-size: .8em;
  95. margin-top: 5rpx;
  96. color: #999999;
  97. font-weight: 400;
  98. }
  99. .sticky .grid .border.data-v-2d6ca29c::after {
  100. content: '';
  101. position: absolute;
  102. bottom: 5rpx;
  103. width: 30rpx;
  104. height: 5rpx;
  105. background-color: red;
  106. }
  107. .list-item.data-v-2d6ca29c {
  108. display: -webkit-box;
  109. display: -webkit-flex;
  110. display: flex;
  111. -webkit-box-align: center;
  112. -webkit-align-items: center;
  113. align-items: center;
  114. -webkit-box-pack: justify;
  115. -webkit-justify-content: space-between;
  116. justify-content: space-between;
  117. background-color: #FFFFFF;
  118. padding: 20rpx;
  119. margin: 24rpx 30rpx;
  120. border-radius: 20rpx;
  121. position: relative;
  122. }
  123. .list-item .avatar.data-v-2d6ca29c {
  124. -webkit-flex-shrink: 0;
  125. flex-shrink: 0;
  126. width: 100rpx;
  127. height: 100rpx;
  128. border-radius: 50%;
  129. border: 1px solid #1989FA;
  130. margin-right: 16rpx;
  131. }
  132. .list-item .top.data-v-2d6ca29c {
  133. display: -webkit-box;
  134. display: -webkit-flex;
  135. display: flex;
  136. -webkit-box-pack: end;
  137. -webkit-justify-content: flex-end;
  138. justify-content: flex-end;
  139. position: absolute;
  140. top: 10rpx;
  141. right: 0;
  142. }
  143. .list-item .top .icon.data-v-2d6ca29c {
  144. margin-top: -20rpx;
  145. padding: 20rpx;
  146. }
  147. .list-item .item-right.data-v-2d6ca29c {
  148. -webkit-box-flex: 1;
  149. -webkit-flex: 1;
  150. flex: 1;
  151. display: -webkit-box;
  152. display: -webkit-flex;
  153. display: flex;
  154. -webkit-box-orient: vertical;
  155. -webkit-box-direction: normal;
  156. -webkit-flex-direction: column;
  157. flex-direction: column;
  158. -webkit-box-pack: justify;
  159. -webkit-justify-content: space-between;
  160. justify-content: space-between;
  161. }
  162. .list-item .item-right .center.data-v-2d6ca29c {
  163. -webkit-align-self: flex-start;
  164. align-self: flex-start;
  165. }
  166. .list-item .item-right .center .details.data-v-2d6ca29c {
  167. width: 436rpx;
  168. font-size: 26rpx;
  169. font-family: PingFang SC;
  170. font-weight: 400;
  171. color: #999999;
  172. display: -webkit-box;
  173. margin-bottom: 20rpx;
  174. overflow: hidden;
  175. text-overflow: ellipsis;
  176. word-wrap: break-word;
  177. white-space: normal !important;
  178. -webkit-line-clamp: 2;
  179. -webkit-box-orient: vertical;
  180. }
  181. .list-item .item-right .bottom.data-v-2d6ca29c {
  182. display: -webkit-box;
  183. display: -webkit-flex;
  184. display: flex;
  185. -webkit-box-pack: start;
  186. -webkit-justify-content: flex-start;
  187. justify-content: flex-start;
  188. -webkit-box-align: center;
  189. -webkit-align-items: center;
  190. align-items: center;
  191. margin: 20rpx 0;
  192. }
  193. .list-item .item-right .bottom .title.data-v-2d6ca29c {
  194. max-width: 300rpx;
  195. white-space: nowrap;
  196. text-overflow: ellipsis;
  197. overflow: hidden;
  198. word-break: break-all;
  199. font-family: PingFang SC;
  200. font-weight: 400;
  201. }
  202. .list-item .item-right .bottom .type.data-v-2d6ca29c {
  203. margin-left: 10rpx;
  204. padding: 3rpx 12rpx;
  205. height: 30rpx;
  206. border: 2rpx solid #999999;
  207. border-radius: 20rpx;
  208. font-size: 20rpx;
  209. color: #999999;
  210. line-height: 20rpx;
  211. display: -webkit-box;
  212. display: -webkit-flex;
  213. display: flex;
  214. -webkit-box-pack: center;
  215. -webkit-justify-content: center;
  216. justify-content: center;
  217. -webkit-box-align: center;
  218. -webkit-align-items: center;
  219. align-items: center;
  220. }
  221. .list-item .item-right .bottom .right.data-v-2d6ca29c {
  222. width: 170rpx;
  223. display: -webkit-box;
  224. display: -webkit-flex;
  225. display: flex;
  226. -webkit-box-pack: justify;
  227. -webkit-justify-content: space-between;
  228. justify-content: space-between;
  229. -webkit-box-align: center;
  230. -webkit-align-items: center;
  231. align-items: center;
  232. font-size: 22rpx;
  233. font-family: PingFang SC;
  234. font-weight: 400;
  235. color: #999999;
  236. line-height: 35rpx;
  237. }
  238. .list-item .item-right .bottom .right .flex.data-v-2d6ca29c {
  239. display: -webkit-box;
  240. display: -webkit-flex;
  241. display: flex;
  242. -webkit-box-pack: center;
  243. -webkit-justify-content: center;
  244. justify-content: center;
  245. }
  246. .list-item .item-right .bottom .right .flex .icon.data-v-2d6ca29c {
  247. margin-right: 5rpx;
  248. }