leadslist.wxss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. .page-layout {
  2. background: #f4f4f4;
  3. }
  4. .loading {
  5. width: 120rpx;
  6. height: auto;
  7. position: fixed;
  8. top: 50%;
  9. left: 50%;
  10. transform: translate(-50%, -50%);
  11. display: block;
  12. }
  13. .card {
  14. background-color: #fff;
  15. margin-bottom: 16rpx;
  16. padding: 24rpx 0;
  17. }
  18. .item-top-wrap {
  19. padding-bottom: 24rpx;
  20. border-bottom: 2rpx solid #f4f4f4;
  21. margin-bottom: 24rpx;
  22. }
  23. .item-top-wrap .card-top {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. margin-bottom: 30rpx;
  28. }
  29. .card-top .title {
  30. font-size: 32rpx;
  31. color: #000;
  32. }
  33. .card-top .new-tag {
  34. font-size: 28rpx;
  35. color: #ff523d;
  36. }
  37. .item {
  38. display: flex;
  39. align-items: center;
  40. margin-top: 10rpx;
  41. padding: 0 40rpx;
  42. justify-content: flex-start;
  43. }
  44. .item-left {
  45. font-size: 30rpx;
  46. color: #999;
  47. margin-right: 20rpx;
  48. width: 185rpx;
  49. }
  50. .item-left.icon {
  51. width: 40rpx;
  52. height: 40rpx;
  53. font-size: 20rpx;
  54. text-align: center;
  55. line-height: 40rpx;
  56. border-radius: 100%;
  57. }
  58. .item-left.icon.icon-hooli-wechatx {
  59. background-color: #02dd64;
  60. color: #fff;
  61. }
  62. .item-left.icon.icon-hooli-phonex {
  63. background-color: #eee;
  64. color: #999;
  65. }
  66. .item-left.icon.icon-hooli-qqx {
  67. background-color: #88cbf5;
  68. color: #fff;
  69. }
  70. .item-left.icon.icon-hooli-emailx {
  71. background-color: #eee;
  72. color: #999;
  73. }
  74. .item-right {
  75. font-size: 30rpx;
  76. color: #666;
  77. flex: 1;
  78. overflow: hidden;
  79. white-space: nowrap;
  80. text-overflow: ellipsis;
  81. display: block;
  82. width: 0;
  83. }
  84. .item-right .icon.icon-hooli-copyx {
  85. margin-left: 22rpx;
  86. font-size: 30rpx;
  87. color: #666;
  88. }
  89. .total-count {
  90. text-align: center;
  91. font-size: 26rpx;
  92. color: #999;
  93. padding: 12rpx 0;
  94. /* height: 60rpx;
  95. line-height: 60rpx; */
  96. }
  97. .search-wrap {
  98. display: flex;
  99. align-items: center;
  100. padding: 20rpx 40rpx;
  101. background: #fff;
  102. }
  103. .search-wrap .search-left {
  104. flex: 1;
  105. background-color: #f4f4f4;
  106. padding: 15rpx 20rpx;
  107. border-radius: 10rpx;
  108. display: flex;
  109. align-items: center;
  110. }
  111. .search-wrap .search-left .icon {
  112. font-size: 30rpx;
  113. color: #999;
  114. margin-right: 18rpx;
  115. }
  116. .search-wrap .search-left .tips {
  117. font-size: 28rpx;
  118. color: #999;
  119. flex: 1;
  120. }
  121. .search-wrap .search-right {
  122. display: flex;
  123. }
  124. .search-wrap .search-right .icon {
  125. font-size: 36rpx;
  126. color: #666;
  127. margin-left: 30rpx;
  128. }
  129. .clue-type-wrap {
  130. padding: 24rpx 150rpx;
  131. background-color: #fff;
  132. display: flex;
  133. align-items: center;
  134. justify-content: space-between;
  135. }
  136. .clue-type-wrap {
  137. font-size: 32rpx;
  138. color: #000;
  139. border-top: 1rpx solid #f5f5f5;
  140. }
  141. .clue-type-wrap .active {
  142. color: #ff523d;
  143. position: relative;
  144. }
  145. .clue-type-wrap .active::after {
  146. content: "";
  147. position: absolute;
  148. left: 0;
  149. right: 0;
  150. bottom: -24rpx;
  151. height: 4rpx;
  152. background-color: #ff523d;
  153. }
  154. .noMoreData,
  155. .noData {
  156. position: relative;
  157. text-align: center;
  158. padding: 12rpx 0;
  159. font-size: 28rpx;
  160. color: #999;
  161. margin-top: 50rpx;
  162. margin-bottom: 100rpx;
  163. }
  164. .noData::before {
  165. content: "暂无数据";
  166. }
  167. .noMoreData::before {
  168. content: "我是有底线的";
  169. }
  170. .noMoreData::before,
  171. .noData::before {
  172. position: relative;
  173. z-index: 2;
  174. padding: 0 20rpx;
  175. background-color: #f5f5f5;
  176. }
  177. .noMoreData::after,
  178. .noData::after {
  179. content: "";
  180. position: absolute;
  181. left: 0;
  182. right: 0;
  183. top: 50%;
  184. height: 2rpx;
  185. z-index: 1;
  186. transform: translateY(-50%);
  187. border-bottom: 2rpx dashed #ccc;
  188. }
  189. .head-fixation {
  190. position: fixed;
  191. top: 0;
  192. left: 0;
  193. right: 0;
  194. z-index: 3;
  195. }
  196. .content-area {
  197. padding-top: 115rpx;
  198. overflow: hidden;
  199. }
  200. .action-sheet-item {
  201. font-size: 32rpx;
  202. padding: 28rpx 0;
  203. color: #000;
  204. font-weight: normal;
  205. }
  206. .action-sheet-item:before {
  207. border-top: 2rpx solid #f5f5f5;
  208. }
  209. .action-sheet-item-active {
  210. color: #ff523d;
  211. }
  212. /* 新建 */
  213. .add-outer {
  214. position: relative;
  215. z-index: 99;
  216. }
  217. .add-outer .add-btn {
  218. color: #fff;
  219. position: fixed;
  220. width: 100rpx;
  221. height: 100rpx;
  222. border-radius: 100%;
  223. line-height: 100rpx;
  224. text-align: center;
  225. background-color: #ff523d;
  226. box-shadow: 0 6rpx 30rpx 0 rgba(255, 82, 61, 0.4);
  227. right: 20rpx;
  228. bottom: 300rpx;
  229. font-size: 44rpx;
  230. }
  231. .add-outer .add-wrap {
  232. position: fixed;
  233. left: 0;
  234. right: 0;
  235. bottom: 0;
  236. top: 0;
  237. background: rgba(255, 255, 255, 1);
  238. opacity: 0.96;
  239. filter: blur(0px);
  240. }
  241. .add-outer .add-wrap .add-inner {
  242. position: fixed;
  243. right: 20rpx;
  244. bottom: 300rpx;
  245. }
  246. .add-outer .add-wrap .add-inner .add-item {
  247. margin-top: 40rpx;
  248. display: flex;
  249. justify-content: flex-end;
  250. align-items: center;
  251. position: relative;
  252. z-index: 2;
  253. }
  254. .add-outer .add-wrap .add-inner .add-item .desc {
  255. font-size: 26rpx;
  256. color: #999;
  257. margin-right: 20rpx;
  258. display: block;
  259. }
  260. .add-outer .add-wrap .add-inner .add-item .icon {
  261. display: block;
  262. width: 100rpx;
  263. height: 100rpx;
  264. background-color: #f5f5f5;
  265. border-radius: 100%;
  266. text-align: center;
  267. line-height: 100rpx;
  268. font-size: 44rpx;
  269. color: #666;
  270. }
  271. .add-outer .add-wrap .add-inner .add-item .icon.ercode-wx {
  272. background-color: #00c75f;
  273. color: #fff;
  274. }
  275. .add-outer .add-wrap .add-inner .add-item .close-btn {
  276. text-align: center;
  277. background-color: #ff523d;
  278. box-shadow: 0 6rpx 30rpx 0 rgba(255, 82, 61, 0.4);
  279. width: 100rpx;
  280. height: 100rpx;
  281. border-radius: 100%;
  282. line-height: 100rpx;
  283. color: #fff;
  284. }
  285. .slideInUp {
  286. animation-name: slideInUp;
  287. animation-duration: 300ms;
  288. animation-fill-mode: both;
  289. }
  290. @keyframes slideInUp {
  291. from {
  292. -webkit-transform: translate3d(0, 100%, 0);
  293. transform: translate3d(0, 100%, 0);
  294. visibility: visible;
  295. }
  296. to {
  297. -webkit-transform: translate3d(0, 0, 0);
  298. transform: translate3d(0, 0, 0);
  299. }
  300. }
  301. /* 分享按钮 */
  302. .button {
  303. background: transparent;
  304. border: none;
  305. padding: 0;
  306. }
  307. .button::after {
  308. display: none;
  309. }
  310. .button-hover {
  311. background: none;
  312. }