friendcircle.wxss 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. page {
  2. display: block;
  3. width: 100%;
  4. height: 100%;
  5. box-sizing: border-box;
  6. padding-top: 68rpx;
  7. }
  8. .pagetop {
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. background-color: #1598fc;
  13. width: 100%;
  14. z-index: 99;
  15. padding: 40rpx 24rpx 0;
  16. }
  17. .firendtitbox {
  18. display: block;
  19. width: 100%;
  20. white-space: nowrap;
  21. overflow-x: auto;
  22. padding-right: 40rpx;
  23. position: relative;
  24. /* border-bottom: 2rpx solid #f2f2f2; */
  25. }
  26. .firendtitbox view {
  27. display: inline-block;
  28. line-height: 32rpx;
  29. height: 32rpx;
  30. box-sizing: content-box;
  31. padding: 0 0 27rpx 0;
  32. margin-right: 24rpx;
  33. margin-left: 24rpx;
  34. font-size: 32rpx;
  35. }
  36. .firendtitbox view:first-child {
  37. padding-left: 0;
  38. }
  39. .pagetop view.filtratebox {
  40. display: block;
  41. position: absolute;
  42. top: 32rpx;
  43. right: 24rpx;
  44. width: 41rpx;
  45. height: 48rpx;
  46. /* background-color: #fff; */
  47. padding: 0;
  48. }
  49. .pagetop view.filtratebox image {
  50. display: block;
  51. width: 40rpx;
  52. height: 32rpx;
  53. position: relative;
  54. left: -6rpx;
  55. top: 8rpx;
  56. }
  57. .firendtitbox view.nowtag {
  58. font-family: PingFangSC-Medium, Source Han Sans CN Medium;
  59. font-size: 34rpx;
  60. color: #fff;
  61. position: relative;
  62. }
  63. .firendtitbox view.nowtag::before {
  64. content: " ";
  65. width: 32rpx;
  66. height: 8rpx;
  67. background-image: linear-gradient(-29deg, #fff 0%, #fff 38%, #fff 100%), linear-gradient(#e9eff5, #e9eff5);
  68. border-radius: 4rpx;
  69. position: absolute;
  70. bottom: 0;
  71. left: 50%;
  72. margin-left: -16rpx;
  73. }
  74. .searchListBox {
  75. display: block;
  76. width: 100%;
  77. padding: 36rpx 25rpx 0;
  78. }
  79. .everyfriendBox {
  80. display: block;
  81. width: 100%;
  82. padding: 29rpx 25rpx 45rpx;
  83. background-color: #ffffff;
  84. box-shadow: 0px 7rpx 21rpx 0px rgba(40, 40, 40, 0.1);
  85. border-radius: 10rpx;
  86. overflow: hidden;
  87. margin-bottom: 24rpx;
  88. }
  89. .friendRight {}
  90. .personMsg {
  91. position: relative;
  92. }
  93. .personMsg view {
  94. height: 74rpx;
  95. line-height: 74rpx;
  96. }
  97. .personMsg .name {
  98. font-family: PingFang-SC-Bold, Source Han Sans CN Bold;
  99. font-size: 32rpx;
  100. color: #384855;
  101. width: 400rpx;
  102. }
  103. .personMsg .time {
  104. font-family: PingFang-SC-Medium, Source Han Sans CN Medium;
  105. font-size: 24rpx;
  106. color: #b6cade;
  107. position: absolute;
  108. top: 0;
  109. right: 0;
  110. }
  111. .text {
  112. font-family: PingFangSC-Regular, Source Han Sans CN DemiLight;
  113. font-size: 28rpx;
  114. line-height: 40rpx;
  115. color: #384855;
  116. width: 100%;
  117. white-space: pre-wrap;
  118. }
  119. .text text {
  120. display: inline-block;
  121. background-color: #dcdcdc;
  122. line-height: 40rpx;
  123. padding: 0 4rpx;
  124. border-radius: 4rpx;
  125. }
  126. .video {
  127. display: block;
  128. width: 311rpx;
  129. height: 380rpx;
  130. background-color: #384855;
  131. border-radius: 10px;
  132. }
  133. .circleBox {
  134. overflow: hidden;
  135. margin-top: 32rpx;
  136. }
  137. .circleBox .useTime {
  138. float: left;
  139. height: 44rpx;
  140. line-height: 44rpx;
  141. font-family: PingFangSC-Regular, Source Han Sans CN DemiLight;
  142. font-size: 24rpx;
  143. color: #999999;
  144. }
  145. .buttonBox {
  146. float: right;
  147. }
  148. button.copy {
  149. display: block;
  150. float: left;
  151. height: 27rpx;
  152. background-color: #fff;
  153. }
  154. button.copy image {
  155. display: block;
  156. float: left;
  157. height: 27rpx;
  158. }
  159. button.copy view {
  160. float: left;
  161. margin-left: 10rpx;
  162. font-size: 24rpx;
  163. color: #009eff;
  164. line-height: 27rpx;
  165. font-family: PingFangSC-Medium, Source Han Sans CN Medium;
  166. }
  167. .otherline {
  168. float: left;
  169. width: 4rpx;
  170. height: 18rpx;
  171. font-size: 24rpx;
  172. color: #999999;
  173. position: relative;
  174. top: 4.5rpx;
  175. line-height: 18rpx;
  176. margin: 0 28rpx;
  177. }
  178. button.save {
  179. display: block;
  180. float: left;
  181. height: 27rpx;
  182. background-color: #fff;
  183. }
  184. button.save image {
  185. display: block;
  186. float: left;
  187. height: 27rpx;
  188. }
  189. button.save view {
  190. float: left;
  191. margin-left: 10rpx;
  192. font-size: 24rpx;
  193. color: #009eff;
  194. line-height: 27rpx;
  195. font-family: PingFangSC-Medium, Source Han Sans CN Medium;
  196. }
  197. .bg {
  198. background: #EAF0F4;
  199. width: 100%;
  200. height: 16rpx;
  201. }
  202. .iamgeBox {
  203. overflow: hidden;
  204. border-radius: 10rpx;
  205. width: 584rpx;
  206. }
  207. .iamgeBox image {
  208. float: left;
  209. width: 192rpx;
  210. height: 192rpx;
  211. margin-right: 5rpx;
  212. margin-bottom: 5rpx;
  213. max-height: 250rpx !important;
  214. }
  215. .iamgeBox image:nth-of-type(3n) {
  216. margin-right: 0;
  217. }
  218. view.oneImg image {
  219. display: block;
  220. max-height: unset !important;
  221. width: 390rpx;
  222. }
  223. view.fourImg image:nth-of-type(2n) {
  224. margin-right: 50rpx;
  225. }
  226. view.fourImg image:nth-of-type(3n) {
  227. margin-right: 5rpx;
  228. }
  229. button::after {
  230. border-width: 0px;
  231. }
  232. .downloadBox {
  233. display: block;
  234. width: 500rpx;
  235. position: fixed;
  236. top: 50%;
  237. left: 125rpx;
  238. height: 200rpx;
  239. border-radius: 12rpx;
  240. background-color: rgba(0,0,0,0.6);
  241. z-index: 99;
  242. box-shadow:unset;
  243. }
  244. .downTitle {
  245. display: block;
  246. text-align: center;
  247. width: 100%;
  248. line-height: 48rpx;
  249. font-size: 32rpx;
  250. padding-top: 16rpx;
  251. color: #fff;
  252. }
  253. .downnumbox {
  254. color: #fff;
  255. }
  256. .downnumbox cover-view {
  257. display: inline-block;
  258. margin-top: 36rpx;
  259. line-height: 40rpx;
  260. }
  261. .fixwordtitbox {
  262. box-shadow: 0 6rpx 12rpx 0 rgba(36, 158, 251, 0.41);
  263. }
  264. .filtrateview {
  265. display: block;
  266. position: fixed;
  267. top: 0;
  268. left: 0;
  269. width: 100%;
  270. height: 100%;
  271. z-index: 98;
  272. background-color: rgba(0, 0, 0, 0.50);
  273. }
  274. .filtrateview image {
  275. display: block;
  276. width: 62rpx;
  277. height: 62rpx;
  278. margin: 98rpx auto 0;
  279. z-index: 100;
  280. position: relative;
  281. }
  282. .filtratetop {
  283. display: block;
  284. width: 100%;
  285. margin-top: 68rpx;
  286. max-height: 60%;
  287. overflow: auto;
  288. padding: 40rpx 24rpx;
  289. background-color: #f9f9f9;
  290. border-radius: 0px 0px 20rpx 20rpx;
  291. }
  292. .filtratetop view {
  293. display: inline-block;
  294. height: 66rpx;
  295. padding: 0 24rpx;
  296. background-color: #fff;
  297. margin-right: 20rpx;
  298. margin-bottom: 20rpx;
  299. border-radius: 8rpx;
  300. line-height: 66rpx;
  301. border: 1px solid rgba(157, 182, 207, 1);
  302. font-size: 30rpx !important;
  303. }
  304. view.nowfiltrate {
  305. background-color: #009eff;
  306. color: #ffffff;
  307. }
  308. .colorfff {
  309. color: #fff;
  310. }
  311. .allstorebox {
  312. position: fixed;
  313. top: 0;
  314. left: 0;
  315. background-color: transparent;
  316. width: 100%;
  317. height: 100%;
  318. z-index: 101;
  319. }
  320. .alertallstorebox {
  321. display: block;
  322. position: fixed;
  323. left: 32rpx;
  324. top: 110rpx;
  325. background-color: #fff;
  326. box-shadow: 0 0 8rpx 0 rgba(36, 158, 251, 0.55);
  327. width: 130rpx;
  328. line-height: 40rpx;
  329. font-size: 32rpx;
  330. text-align: center;
  331. }
  332. .alertallstorebox view {
  333. line-height: 48rpx;
  334. font-size: 28rpx;
  335. text-align: center;
  336. }
  337. .friendHeader {
  338. position: fixed;
  339. top: 0;
  340. left: 0;
  341. background-color: #fff;
  342. width: 100%;
  343. z-index: 99;
  344. display: flex;
  345. padding: 0rpx 24rpx 0;
  346. box-shadow: 0px 4rpx 7rpx 0px rgba(62, 85, 255, 0.06);
  347. height: 68rpx;
  348. }
  349. .friendHeader image{
  350. display: block;
  351. width: 18rpx;
  352. height: 12rpx;
  353. position: relative;
  354. top: 16rpx;
  355. margin-left: 8rpx;
  356. }
  357. .tab-item {
  358. flex: 1;
  359. display: flex;
  360. align-items: center;
  361. justify-content: center;
  362. color: #333333;
  363. font-size: 30rpx;
  364. padding: 10rpx 0;
  365. height: 68rpx;
  366. }
  367. .tab-active {
  368. font-size: 30rpx;
  369. color: #333333;
  370. position: relative;
  371. color: #249efb;
  372. }
  373. /* .tab-active::before {
  374. content: " ";
  375. width: 32rpx;
  376. height: 8rpx;
  377. background-image: linear-gradient(-29deg, #fff 0%, #fff 38%, #fff 100%), linear-gradient(#e9eff5, #e9eff5);
  378. border-radius: 4rpx;
  379. position: absolute;
  380. bottom: 0;
  381. left: 50%;
  382. margin-left: -16rpx;
  383. } */