my-collection.css 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding-top: calc(260rpx + var(--status-bar-height));
  6. }
  7. .header {
  8. width: 100%;
  9. height: calc(260rpx + var(--status-bar-height));
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. z-index: 9999999;
  14. display: flex;
  15. flex-direction: column;
  16. box-sizing: border-box;
  17. padding: var(--status-bar-height) 0 0;
  18. background-color: #fff;
  19. }
  20. .header-top {
  21. width: 100%;
  22. height: 88rpx;
  23. display: flex;
  24. justify-content: space-between;
  25. align-items: center;
  26. background-color: #fff;
  27. position: relative;
  28. }
  29. .return {
  30. width: 19rpx;
  31. position: absolute;
  32. left: 24rpx;
  33. }
  34. .header-title {
  35. width: 100%;
  36. line-height: 88rpx;
  37. font-weight: 700;
  38. font-size: 16px;
  39. text-align: center;
  40. color: rgb(0, 0, 0);
  41. }
  42. .header-msg {
  43. line-height: 88rpx;
  44. color: #202020;
  45. font-size: 28rpx;
  46. position: absolute;
  47. right: 28rpx;
  48. }
  49. .header-center {
  50. width: 100%;
  51. height: 80rpx;
  52. border-top: 1px solid #F2F2F2;
  53. }
  54. .tab-list {
  55. width: 100%;
  56. height: 80rpx;
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. }
  61. .child {
  62. height: 80rpx;
  63. display: flex;
  64. align-items: center;
  65. font-size: 32rpx;
  66. color: #777777;
  67. margin-right: 120rpx;
  68. position: relative;
  69. }
  70. .child.active::after {
  71. content: "";
  72. width: 64rpx;
  73. height: 8rpx;
  74. position: absolute;
  75. bottom: 0;
  76. left: 50%;
  77. transform: translate(-50%, 0);
  78. background-color: #F2501A;
  79. border-radius: 10rpx;
  80. }
  81. .child:last-child {
  82. margin-right: 0;
  83. }
  84. .child.active {
  85. color: #F2501A;
  86. font-weight: bold;
  87. }
  88. .header-bottom {
  89. width: 100%;
  90. height: 92rpx;
  91. display: flex;
  92. align-items: center;
  93. background-color: #F2F2F2;
  94. padding: 0 54rpx;
  95. box-sizing: border-box;
  96. }
  97. .header-item {
  98. height: 92rpx;
  99. line-height: 92rpx;
  100. color: #A7A7A7;
  101. font-size: 30rpx;
  102. display: flex;
  103. align-items: center;
  104. margin-right: 70rpx;
  105. padding-bottom: 5rpx;
  106. box-sizing: border-box;
  107. }
  108. .header-item:last-child {
  109. margin-right: 0;
  110. }
  111. .sanjiao {
  112. width: 20rpx;
  113. margin-left: 8rpx;
  114. -webkit-filter: grayscale(100%);
  115. -moz-filter: grayscale(100%);
  116. -ms-filter: grayscale(100%);
  117. -o-filter: grayscale(100%);
  118. filter: grayscale(100%);
  119. filter: gray;
  120. opacity: 0.4;
  121. -webkit-transition: .25s;
  122. }
  123. .sanjiaoSelect {
  124. width: 20rpx;
  125. margin-left: 8rpx;
  126. -webkit-filter: grayscale(0%);
  127. -moz-filter: grayscale(0%);
  128. -ms-filter: grayscale(0%);
  129. -o-filter: grayscale(0%);
  130. filter: grayscale(0%);
  131. filter: gray;
  132. opacity: 1;
  133. -webkit-transform: rotate(180deg);
  134. -moz-transform: rotate(180deg);
  135. -ms-transform: rotate(180deg);
  136. -o-transform: rotate(180deg);
  137. transform: rotate(180deg);
  138. -webkit-transition: .25s;
  139. -moz-transition: .25s;
  140. -ms-transition: .25s;
  141. -o-transition: .25s;
  142. -webkit-transition: .25s;
  143. }
  144. .mask {
  145. position: fixed;
  146. left: 0;
  147. right: 0;
  148. top: 0;
  149. height: 100vh;
  150. background-color: rgba(0, 0, 0, 0.38);
  151. z-index: 100;
  152. }
  153. .collectionTime-window {
  154. position: fixed;
  155. width: 100%;
  156. top: calc(248rpx + var(--status-bar-height));
  157. left: 0;
  158. overflow: hidden;
  159. background-color: #fff;
  160. z-index: 99999999;
  161. display: flex;
  162. flex-wrap: wrap;
  163. border-radius: 16rpx;
  164. padding: 22rpx 40rpx 0;
  165. box-sizing: border-box;
  166. }
  167. .collectionTime-item {
  168. width: 31.3333%;
  169. height: 82rpx;
  170. background-color: #F2F2F2;
  171. border-radius: 100rpx;
  172. display: flex;
  173. justify-content: center;
  174. align-items: center;
  175. margin-right: 3%;
  176. margin-bottom: 38rpx;
  177. color: #777777;
  178. font-size: 28rpx;
  179. }
  180. .collectionTime-item:nth-child(3n) {
  181. margin-right: 0;
  182. }
  183. .allCategories-window {
  184. position: fixed;
  185. width: 100%;
  186. top: calc(248rpx + var(--status-bar-height));
  187. left: 0;
  188. overflow: hidden;
  189. background-color: #fff;
  190. z-index: 99999999;
  191. display: flex;
  192. flex-wrap: wrap;
  193. border-radius: 16rpx;
  194. padding: 26rpx 40rpx 0;
  195. box-sizing: border-box;
  196. }
  197. .allCategories-item {
  198. width: 25%;
  199. display: flex;
  200. flex-direction: column;
  201. align-items: center;
  202. color: #202020;
  203. font-size: 28rpx;
  204. margin-bottom: 40rpx;
  205. }
  206. .allCategories-item image {
  207. height: 40rpx;
  208. margin-bottom: 8rpx;
  209. }
  210. .listCount {
  211. width: 100%;
  212. display: flex;
  213. flex-direction: column;
  214. padding: 0 24rpx;
  215. box-sizing: border-box;
  216. }
  217. .listItem {
  218. width: 100%;
  219. padding: 14rpx;
  220. box-sizing: border-box;
  221. margin-bottom: 20rpx;
  222. background: #fff;
  223. position: relative;
  224. border-radius: 16rpx;
  225. }
  226. .listItem .content {
  227. display: flex;
  228. align-items: center;
  229. }
  230. .remove {
  231. width: 160rpx;
  232. height: 100%;
  233. background-color: red;
  234. color: white;
  235. position: absolute;
  236. top: 0;
  237. right: -160rpx;
  238. display: flex;
  239. justify-content: center;
  240. align-items: center;
  241. font-size: 26rpx;
  242. }
  243. .checkBox {
  244. padding-right: 10rpx;
  245. }
  246. .checkBox image {
  247. width: 40rpx;
  248. height: 40rpx;
  249. }
  250. .itemShow {
  251. flex: 1;
  252. display: flex;
  253. align-items: center;
  254. }
  255. .productImg {
  256. width: 200rpx;
  257. height: 200rpx;
  258. border-radius: 10rpx;
  259. }
  260. .itemCont {
  261. flex: 1;
  262. height: 180rpx;
  263. display: flex;
  264. flex-direction: column;
  265. justify-content: space-between;
  266. margin-left: 26rpx;
  267. }
  268. .itemName {
  269. width: 100%;
  270. color: #333333;
  271. font-size: 28rpx;
  272. }
  273. .item-bottom {
  274. width: 100%;
  275. display: flex;
  276. justify-content: space-between;
  277. align-items: center;
  278. }
  279. .price {
  280. color: #F86B1B;
  281. font-size: 30rpx;
  282. }
  283. .footer {
  284. width: 100%;
  285. height: 140rpx;
  286. background-color: #FFFFFF;
  287. display: flex;
  288. justify-content: space-between;
  289. align-items: center;
  290. position: fixed;
  291. bottom: 0;
  292. left: 0;
  293. z-index: 999;
  294. padding: 0 30rpx;
  295. box-sizing: border-box;
  296. }
  297. .check-row {
  298. display: flex;
  299. align-items: center;
  300. }
  301. .check-row image {
  302. width: 40rpx;
  303. height: 40rpx;
  304. }
  305. .check-row text {
  306. margin-left: 16rpx;
  307. color: #111111;
  308. font-size: 30rpx;
  309. font-weight: bold;
  310. }
  311. .footer-sidebar {
  312. flex: 1;
  313. display: flex;
  314. justify-content: flex-end;
  315. align-items: center;
  316. }
  317. .submit-btn {
  318. width: 140rpx;
  319. height: 60rpx;
  320. line-height: 60rpx;
  321. display: flex;
  322. justify-content: center;
  323. align-items: center;
  324. background-color: #FFFFFF;
  325. border: 1px solid #F2501A;
  326. border-radius: 100rpx;
  327. color: #F2501A;
  328. font-size: 24rpx;
  329. }
  330. .mask {
  331. position: fixed;
  332. left: 0;
  333. right: 0;
  334. top: 0;
  335. height: 100vh;
  336. background-color: rgba(0, 0, 0, 0.38);
  337. z-index: 9998;
  338. }
  339. .mask-other {
  340. position: fixed;
  341. left: 0;
  342. right: 0;
  343. top: 0;
  344. height: 100vh;
  345. background-color: rgba(0, 0, 0, 0.38);
  346. z-index: 9999999;
  347. }
  348. .window {
  349. position: fixed;
  350. width: calc(100% - 240rpx);
  351. top: 50%;
  352. left: 50%;
  353. transform: translate(-50%, -50%);
  354. border-radius: 20rpx;
  355. overflow: hidden;
  356. background-color: #fff;
  357. z-index: 99999999;
  358. display: flex;
  359. flex-direction: column;
  360. }
  361. .window-top {
  362. width: 100%;
  363. min-height: 128rpx;
  364. color: #202020;
  365. font-size: 32rpx;
  366. display: flex;
  367. justify-content: center;
  368. align-items: center;
  369. }
  370. .window-bottom {
  371. width: 100%;
  372. display: flex;
  373. align-items: center;
  374. border-top: 1px solid #E2E6E9;
  375. box-sizing: border-box;
  376. }
  377. .window-bottom button {
  378. width: 50%;
  379. height: 98rpx;
  380. line-height: 98rpx;
  381. display: flex;
  382. justify-content: center;
  383. align-items: center;
  384. color: #202020;
  385. font-size: 30rpx;
  386. border-radius: initial;
  387. border-right: 1px solid #E2E6E9;
  388. background-color: #fff;
  389. }
  390. .window-bottom button:last-child {
  391. border-right: none;
  392. color: #F2501A;
  393. }
  394. .product-item {
  395. flex: 1;
  396. display: flex;
  397. align-items: center;
  398. }
  399. .product-item-img {
  400. width: 248rpx;
  401. height: 248rpx;
  402. border-radius: 12rpx;
  403. margin-right: 16rpx;
  404. }
  405. .product-sidebar {
  406. flex: 1;
  407. height: 235rpx;
  408. display: flex;
  409. flex-direction: column;
  410. justify-content: space-between;
  411. }
  412. .product-name {
  413. width: 100%;
  414. display: -webkit-box;
  415. -webkit-line-clamp: 3;
  416. overflow: hidden;
  417. text-overflow: ellipsis;
  418. -webkit-box-orient: vertical;
  419. color: #202020;
  420. font-size: 26rpx;
  421. font-weight: bold;
  422. }
  423. .product-bottom {
  424. width: 100%;
  425. display: flex;
  426. flex-direction: column;
  427. }
  428. .product-price {
  429. color: #F2501A;
  430. font-size: 28rpx;
  431. }
  432. .product-price text {
  433. font-weight: bold;
  434. font-size: 32rpx;
  435. }
  436. .product-bottom-row {
  437. width: 100%;
  438. display: flex;
  439. justify-content: space-between;
  440. align-items: center;
  441. }
  442. .product-bottom-row text {
  443. color: #919191;
  444. font-size: 24rpx;
  445. text-decoration: line-through;
  446. }
  447. .product-bottom-row button {
  448. background-color: initial;
  449. border-radius: initial;
  450. display: flex;
  451. align-items: center;
  452. }
  453. .product-bottom-row button image {
  454. width: 40rpx;
  455. height: 40rpx;
  456. }
  457. .listItemInformation {
  458. padding: 28rpx 20rpx !important;
  459. }
  460. .information-item {
  461. width: 100%;
  462. display: flex;
  463. align-items: center;
  464. margin-left: 10rpx;
  465. }
  466. .information-sidebar {
  467. flex: 1;
  468. height: 160rpx;
  469. display: flex;
  470. flex-direction: column;
  471. justify-content: space-between;
  472. }
  473. .information-name {
  474. width: 100%;
  475. display: -webkit-box;
  476. -webkit-line-clamp: 2;
  477. overflow: hidden;
  478. text-overflow: ellipsis;
  479. -webkit-box-orient: vertical;
  480. color: #202020;
  481. font-size: 28rpx;
  482. font-weight: bold;
  483. }
  484. .information-msg {
  485. width: 100%;
  486. color: #919191;
  487. font-size: 24rpx;
  488. }
  489. .information-img {
  490. width: 210rpx;
  491. height: 168rpx;
  492. border-radius: 16rpx;
  493. margin-left: 70rpx;
  494. }
  495. .listItemVideo {
  496. padding: 20rpx 24rpx 0 !important;
  497. }
  498. .video-item {
  499. flex: 1;
  500. margin-left: 10rpx;
  501. display: flex;
  502. flex-direction: column;
  503. }
  504. .video-item-row {
  505. width: 100%;
  506. line-height: 78rpx;
  507. height: 78rpx;
  508. display: flex;
  509. justify-content: space-between;
  510. align-items: center;
  511. }
  512. .video-item-name {
  513. width: 80%;
  514. color: #000000;
  515. font-size: 32rpx;
  516. display: -webkit-box;
  517. -webkit-line-clamp: 1;
  518. overflow: hidden;
  519. text-overflow: ellipsis;
  520. -webkit-box-orient: vertical;
  521. }
  522. .video-item-time {
  523. color: #919191;
  524. font-size: 24rpx;
  525. }