cart.wxss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737
  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. /* 图片尺寸 */
  23. /* Border Radius */
  24. /* 水平间距 */
  25. /* 垂直间距 */
  26. /* 透明度 */
  27. /* 文章场景相关 */
  28. page {
  29. background: #f7f7f7;
  30. height: auto;
  31. }
  32. .cart-content {
  33. position: relative;
  34. }
  35. .container-cart-main.none {
  36. display: none;
  37. }
  38. .container-cart-main.show {
  39. display: block;
  40. }
  41. .cart-content.empty.none {
  42. display: none;
  43. }
  44. .cart-content.empty.show {
  45. display: block;
  46. }
  47. .container-cart.show {
  48. display: block;
  49. }
  50. .container-cart.none {
  51. display: none;
  52. }
  53. .empty-container.none {
  54. display: none;
  55. }
  56. .empty-container.show {
  57. display: flex;
  58. }
  59. .foot-check-delbtn {
  60. width: 100%;
  61. height: 80rpx;
  62. position: fixed;
  63. top: 0;
  64. left: 0;
  65. box-sizing: border-box;
  66. padding: 15rpx 24rpx;
  67. background-color: #F7F7F7;
  68. z-index: 990;
  69. }
  70. .foot-check-delbtn .foot-text {
  71. font-size: 26rpx;
  72. height: 50rpx;
  73. line-height: 50rpx;
  74. color: #666666;
  75. float: left;
  76. padding-left: 10rpx;
  77. }
  78. .foot-check-delbtn .foot-text text {
  79. margin: 0 6rpx;
  80. }
  81. .foot-check-delbtn .delBtn {
  82. width: 100rpx;
  83. display: inline-block;
  84. padding: 0 15rpx;
  85. font-size: 26rpx;
  86. height: 50rpx;
  87. line-height: 50rpx;
  88. border-radius: 30rpx;
  89. background: #FFFFFF;
  90. border: 1px solid #ff457b;
  91. color: #ff457b;
  92. float: right;
  93. text-align: center;
  94. }
  95. .foot-check-delbtn .delBtn.none {
  96. display: none;
  97. }
  98. .checkbox-box {
  99. display: flex;
  100. align-items: center;
  101. }
  102. .checkbox-box .checkbox {
  103. display: flex;
  104. margin: 0;
  105. padding: 0 5rpx;
  106. display: flex;
  107. flex-direction: column;
  108. align-items: center;
  109. box-sizing: border-box;
  110. text-align: center;
  111. text-decoration: none;
  112. border-radius: 0;
  113. -webkit-tap-highlight-color: transparent;
  114. overflow: hidden;
  115. background-color: #FFFFFF;
  116. font-size: 36rpx;
  117. color: #999999;
  118. }
  119. .checkbox-box .checkbox.icon-xuanze {
  120. color: #FF457B;
  121. }
  122. .checkbox-box.disabled .checkbox {
  123. color: #999999;
  124. }
  125. .checkbox-box .text {
  126. font-size: 24rpx;
  127. margin-left: 10rpx;
  128. }
  129. .goods-list {
  130. width: 100%;
  131. height: auto;
  132. background-color: #F7F7F7;
  133. }
  134. .goods-list .goods-item {
  135. width: 702rpx;
  136. padding: 0 24rpx;
  137. background: #FFFFFF;
  138. margin-bottom: 24rpx;
  139. }
  140. .goods-list .shoptitle {
  141. display: flex;
  142. align-items: center;
  143. height: 80rpx;
  144. line-height: 80rpx;
  145. }
  146. .goods-list .shoptitle .checkbox-box {
  147. padding: 10rpx;
  148. }
  149. .goods-list .shoptitle .text {
  150. width: 450rpx;
  151. display: block;
  152. overflow: hidden;
  153. text-overflow: ellipsis;
  154. white-space: nowrap;
  155. margin-left: 20rpx;
  156. font-size: 28rpx;
  157. color: #333333;
  158. text-align: left;
  159. font-weight: bold;
  160. }
  161. .goods-list .goods-pros {
  162. width: 100%;
  163. height: auto;
  164. margin-bottom: 20rpx;
  165. }
  166. .goods-list .goods-pros-t {
  167. display: flex;
  168. align-items: center;
  169. width: 100%;
  170. height: 210rpx;
  171. padding: 0 0 26rpx 0;
  172. }
  173. .goods-list .goods-pros-t .checkbox-box {
  174. padding: 10rpx;
  175. }
  176. .goods-list .goods-pros-t .pros-img {
  177. width: 210rpx;
  178. height: 100%;
  179. border-radius: 10rpx;
  180. margin: 0 20rpx;
  181. border: 1px solid #f3f3f3;
  182. }
  183. .goods-list .goods-pros-t .pros-img image {
  184. width: 100%;
  185. height: 100%;
  186. border-radius: 10rpx;
  187. }
  188. .goods-list .goods-pros-b {
  189. width: 100%;
  190. height: auto;
  191. padding: 0 0 24rpx 0;
  192. box-sizing: border-box;
  193. }
  194. .goods-list .goods-pros-b.show {
  195. display: block;
  196. }
  197. .goods-list .goods-pros-b.none {
  198. display: none;
  199. }
  200. .goods-list .goods-pros-b .sum-none {
  201. width: 100%;
  202. height: 48rpx;
  203. line-height: 48rpx;
  204. color: #333333;
  205. float: left;
  206. text-align: right;
  207. }
  208. .goods-list .goods-pros-b .sum-none .money {
  209. font-size: 26rpx;
  210. color: #999999;
  211. text-decoration: line-through;
  212. }
  213. .goods-list .goods-pros-b .sum-none .money-sign {
  214. font-size: 26rpx;
  215. color: #999999;
  216. text-decoration: line-through;
  217. }
  218. .goods-list .goods-pros-b .sum-none .money-reduced {
  219. margin-left: 10rpx;
  220. font-size: 26rpx;
  221. color: #FF457B;
  222. }
  223. .goods-list .goods-pros-b .sum-none .money-reduced .iconfont {
  224. font-size: 34rpx;
  225. }
  226. .goods-list .goods-pros-b .sum {
  227. width: 100%;
  228. height: 40rpx;
  229. font-size: 26rpx;
  230. line-height: 40rpx;
  231. color: #333333;
  232. float: left;
  233. display: flex;
  234. justify-content: flex-end;
  235. font-weight: bold;
  236. }
  237. .goods-list .goods-pros-b .sum .money {
  238. color: #FF457B;
  239. font-size: 26rpx;
  240. }
  241. .goods-list .goods-pros-b .sum .money-sign {
  242. font-size: 24rpx;
  243. color: #FF457B;
  244. }
  245. .goods-list .pros-product {
  246. width: 416rpx;
  247. height: 100%;
  248. line-height: 36rpx;
  249. font-size: 28rpx;
  250. position: relative;
  251. }
  252. .goods-list .pros-product .producttitle {
  253. width: 100%;
  254. display: inline-block;
  255. height: auto;
  256. text-overflow: ellipsis;
  257. display: -webkit-box;
  258. word-break: break-all;
  259. -webkit-box-orient: vertical;
  260. -webkit-line-clamp: 2;
  261. overflow: hidden;
  262. margin-bottom: 15rpx;
  263. }
  264. .goods-list .pros-product .producttitle .no-text {
  265. display: inline-block;
  266. height: 36rpx;
  267. padding: 0 12rpx;
  268. line-height: 36rpx;
  269. background: linear-gradient(315deg, #e70000 0%, #ff6801 100%);
  270. border-radius: 18rpx;
  271. text-align: center;
  272. color: #FFFFFF;
  273. font-size: 28rpx;
  274. margin-right: 24rpx;
  275. }
  276. .goods-list .pros-product .productspec {
  277. height: 36rpx;
  278. color: #999999;
  279. font-size: 26rpx;
  280. }
  281. .goods-list .pros-product .productprice {
  282. width: 100%;
  283. height: 48rpx;
  284. margin: 30rpx 0 0 0;
  285. }
  286. .goods-list .pros-product .productprice .price {
  287. line-height: 48rpx;
  288. font-size: 26rpx;
  289. width: 48%;
  290. color: #FF457B;
  291. float: left;
  292. font-weight: bold;
  293. }
  294. .goods-list .pros-product .productprice .price.disabled {
  295. color: #999999;
  296. text-decoration: line-through;
  297. }
  298. .goods-list .pros-product .productprice .price .money-sign {
  299. font-size: 24rpx;
  300. color: #FF457B;
  301. }
  302. .goods-list .pros-product .productprice .count {
  303. height: 100%;
  304. float: right;
  305. position: relative;
  306. }
  307. .goods-list .pros-product .productprice .count.show {
  308. display: block;
  309. }
  310. .goods-list .pros-product .productprice .count.none {
  311. display: none;
  312. }
  313. .goods-list .pros-product .productprice .count .count-tips {
  314. width: auto;
  315. display: inline-block;
  316. padding: 0 15rpx;
  317. line-height: 44rpx;
  318. height: 44rpx;
  319. border-radius: 22rpx;
  320. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  321. font-size: 24rpx;
  322. text-align: center;
  323. color: #FFFFFF;
  324. position: absolute;
  325. top: -60rpx;
  326. left: -5rpx;
  327. z-index: 5;
  328. }
  329. .goods-list .pros-product .productprice .count .count-tips.step {
  330. left: -217rpx;
  331. }
  332. .goods-list .pros-product .productprice .count .count-tips::before {
  333. content: "";
  334. position: absolute;
  335. bottom: -30rpx;
  336. right: 15rpx;
  337. z-index: 1;
  338. width: 0;
  339. height: 0;
  340. border-width: 18rpx;
  341. border-style: solid;
  342. border-color: #FF457B transparent transparent transparent;
  343. }
  344. .goods-list .pros-product .productprice .count .number-box {
  345. display: flex;
  346. justify-content: center;
  347. align-items: center;
  348. border: 2rpx solid #e1e1e1;
  349. border-radius: 30rpx;
  350. height: 48rpx;
  351. margin-left: 20rpx;
  352. }
  353. .goods-list .pros-product .productprice .count .number-box .iconfont {
  354. font-size: 24rpx;
  355. padding: 0 14rpx;
  356. color: #666666;
  357. text-align: center;
  358. line-height: 48rpx;
  359. font-weight: bold;
  360. background: #ffffff;
  361. }
  362. .goods-list .pros-product .productprice .count .number-box .iconfont.icon-jianhao {
  363. border-radius: 30rpx 0 0 30rpx;
  364. }
  365. .goods-list .pros-product .productprice .count .number-box .iconfont.icon-jiahao {
  366. border-radius: 0 30rpx 30rpx 0;
  367. }
  368. .goods-list .pros-product .productprice .count .number-box .btn-input {
  369. width: 56rpx;
  370. height: 44rpx;
  371. line-height: 44rpx;
  372. border-radius: 4rpx;
  373. text-align: center;
  374. font-size: 24rpx;
  375. color: #333333;
  376. background-color: #f7f7f7;
  377. }
  378. .goods-list .pros-product .productprice .count .uni-numbox {
  379. position: absolute;
  380. left: 45rpx;
  381. bottom: 0;
  382. }
  383. .goods-list .pros-product .productprice .count .uni-numbox .uni-numbox-minus, .goods-list .pros-product .productprice .count .uni-numbox .uni-numbox-plus {
  384. width: 50rpx;
  385. line-height: 40rpx;
  386. }
  387. .goods-list .pros-product .productprice .count .uni-numbox .uni-numbox-value {
  388. font-size: 28rpx;
  389. width: 60rpx;
  390. }
  391. .goods-list .pros-product .floor-item-act {
  392. width: 100%;
  393. height: 30rpx;
  394. margin-top: 8rpx;
  395. float: left;
  396. }
  397. .goods-list .pros-product .floor-item-act .tag {
  398. display: inline-block;
  399. height: 32rpx;
  400. font-size: 22rpx;
  401. line-height: 30rpx;
  402. text-align: center;
  403. color: #f83c6c;
  404. float: left;
  405. margin-right: 10rpx;
  406. }
  407. .goods-list .pros-product .floor-item-act .tag.tag-02 {
  408. width: 80rpx;
  409. background: url(https://static.caimei365.com/app/mini-hehe/icon/icon-active.png) top center no-repeat;
  410. background-size: contain;
  411. }
  412. .goods-list .pros-product .floor-item-act .tag.tag-01 {
  413. width: 56rpx;
  414. color: #fff;
  415. background-color: #f83c6c;
  416. border-radius: 4rpx;
  417. }
  418. .failure-list {
  419. width: 702rpx;
  420. height: auto;
  421. padding: 0 24rpx;
  422. margin-top: 20rpx;
  423. background: #FFFFFF;
  424. }
  425. .failure-list .failure-title {
  426. width: 100%;
  427. height: 82rpx;
  428. line-height: 82rpx;
  429. font-size: 28rpx;
  430. border-bottom: 1px solid #EBEBEB;
  431. }
  432. .failure-list .failure-title .title-txt {
  433. float: left;
  434. color: #666666;
  435. text-align: left;
  436. }
  437. .failure-list .failure-title .title-btn {
  438. float: right;
  439. color: #FF457B;
  440. text-align: right;
  441. line-height: 80rpx;
  442. }
  443. .failure-list .failure-title .title-btn .butto {
  444. display: inline-block;
  445. padding: 0 15rpx;
  446. font-size: 26rpx;
  447. height: 50rpx;
  448. line-height: 50rpx;
  449. border-radius: 30rpx;
  450. background: #fff8fd;
  451. border: 1px solid #ff457b;
  452. color: #ff457b;
  453. margin-top: 15rpx;
  454. }
  455. .failure-list .productlist {
  456. padding-top: 10rpx;
  457. }
  458. .failure-list .productlist .goods-pros {
  459. width: 100%;
  460. height: auto;
  461. padding: 20rpx 0;
  462. }
  463. .failure-list .productlist .goods-pros-t {
  464. display: flex;
  465. align-items: center;
  466. width: 100%;
  467. height: 210rpx;
  468. position: relative;
  469. }
  470. .failure-list .productlist .goods-pros-t .img-tip {
  471. display: block;
  472. width: 72rpx;
  473. height: 36rpx;
  474. line-height: 36rpx;
  475. font-size: 24rpx;
  476. text-align: center;
  477. color: #FFFFFF;
  478. border-radius: 24rpx;
  479. background: rgba(51, 51, 51, 0.3);
  480. }
  481. .failure-list .productlist .goods-pros-t .checkbox-box {
  482. padding: 10rpx;
  483. }
  484. .failure-list .productlist .goods-pros-t .pros-img {
  485. width: 180rpx;
  486. height: 100%;
  487. border-radius: 10rpx;
  488. margin: 0 20rpx;
  489. border: 1px solid #f3f3f3;
  490. position: relative;
  491. }
  492. .failure-list .productlist .goods-pros-t .pros-img image {
  493. width: 100%;
  494. height: 100%;
  495. border-radius: 10rpx;
  496. }
  497. .failure-list .productlist .goods-pros-t .pros-marks {
  498. width: 730rpx;
  499. height: 250rpx;
  500. z-index: 90;
  501. background: rgba(0, 0, 0, 0.05);
  502. position: absolute;
  503. left: -20rpx;
  504. top: -20rpx;
  505. }
  506. .failure-list .productlist .goods-pros-b {
  507. width: 622rpx;
  508. margin-left: 84rpx;
  509. height: 40rpx;
  510. padding: 0 0 26rpx 0;
  511. }
  512. .failure-list .productlist .goods-pros-b.show {
  513. display: block;
  514. }
  515. .failure-list .productlist .goods-pros-b.none {
  516. display: none;
  517. }
  518. .failure-list .productlist .goods-pros-b .sum {
  519. font-size: 28rpx;
  520. line-height: 40rpx;
  521. color: #333333;
  522. display: flex;
  523. justify-content: flex-end;
  524. }
  525. .failure-list .productlist .goods-pros-b .sum .money {
  526. color: #FF2A2A;
  527. font-size: 28rpx;
  528. }
  529. .failure-list .productlist .goods-pros-b .sum .money-sign {
  530. font-size: 24rpx;
  531. color: #FF2A2A;
  532. }
  533. .failure-list .productlist .pros-product {
  534. width: 402rpx;
  535. height: 100%;
  536. line-height: 36rpx;
  537. font-size: 28rpx;
  538. position: relative;
  539. }
  540. .failure-list .productlist .pros-product .producttitle {
  541. width: 100%;
  542. display: inline-block;
  543. height: auto;
  544. text-overflow: ellipsis;
  545. display: -webkit-box;
  546. word-break: break-all;
  547. -webkit-box-orient: vertical;
  548. -webkit-line-clamp: 2;
  549. overflow: hidden;
  550. margin-bottom: 8rpx;
  551. }
  552. .failure-list .productlist .pros-product .producttitle .no-text {
  553. display: inline-block;
  554. height: 36rpx;
  555. padding: 0 12rpx;
  556. line-height: 36rpx;
  557. background: linear-gradient(315deg, #e70000 0%, #ff6801 100%);
  558. border-radius: 18rpx;
  559. text-align: center;
  560. color: #FFFFFF;
  561. font-size: 28rpx;
  562. margin-right: 24rpx;
  563. }
  564. .failure-list .productlist .pros-product .productspec {
  565. height: 36rpx;
  566. color: #999999;
  567. font-size: 26rpx;
  568. margin-top: 20rpx;
  569. }
  570. .failure-list .productlist .pros-product .productstate {
  571. font-size: 28rpx;
  572. height: 44rpx;
  573. color: #FF2A2A;
  574. position: absolute;
  575. bottom: 0;
  576. left: 0;
  577. }
  578. .footer {
  579. width: 100%;
  580. background-color: #FFFFFF;
  581. height: 100rpx;
  582. position: fixed;
  583. bottom: 0rpx;
  584. z-index: 100;
  585. }
  586. .footer .footer-le {
  587. width: 520rpx;
  588. height: 100%;
  589. padding: 10rpx 24rpx;
  590. float: left;
  591. box-sizing: border-box;
  592. }
  593. .footer .footer-le .foot-check {
  594. width: 100rpx;
  595. float: left;
  596. line-height: 80rpx;
  597. font-size: 24rpx;
  598. }
  599. .footer .footer-le .foot-check .checkbox {
  600. width: 40rpx;
  601. text-align: center;
  602. }
  603. .footer .footer-le .foot-check .text {
  604. width: 60rpx;
  605. float: right;
  606. }
  607. .footer .footer-le .sum {
  608. width: 360rpx;
  609. height: 100%;
  610. float: right;
  611. box-sizing: border-box;
  612. padding: 0 10rpx;
  613. }
  614. .footer .footer-le .sum .sum-price {
  615. text-align: right;
  616. width: 100%;
  617. height: 80rpx;
  618. line-height: 80rpx;
  619. font-size: 30rpx;
  620. color: #333333;
  621. float: left;
  622. font-weight: normal;
  623. }
  624. .footer .footer-le .sum .sum-price .money {
  625. color: #FF457B;
  626. }
  627. .footer .footer-le .sum .sum-price .money-sign {
  628. font-size: 24rpx;
  629. color: #FF457B;
  630. }
  631. .footer .footer-ri {
  632. width: 230rpx;
  633. height: 100%;
  634. float: right;
  635. display: flex;
  636. justify-content: space-between;
  637. align-items: center;
  638. z-index: 999;
  639. box-sizing: border-box;
  640. padding: 13rpx 15rpx;
  641. }
  642. .footer .footer-ri.none {
  643. display: none;
  644. }
  645. .footer .footer-ri .btn {
  646. width: 200rpx;
  647. height: 100%;
  648. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  649. font-size: 28rpx;
  650. line-height: 80rpx;
  651. color: #FFFFFF;
  652. display: flex;
  653. border-radius: 40rpx;
  654. justify-content: center;
  655. align-items: center;
  656. }
  657. .footer .footer-del {
  658. width: 420rpx;
  659. height: 100rpx;
  660. position: absolute;
  661. padding-left: 200rpx;
  662. background: #FFFFFF;
  663. right: 0;
  664. top: 0;
  665. z-index: 1000;
  666. box-sizing: border-box;
  667. padding: 10rpx 0;
  668. display: flex;
  669. }
  670. .footer .footer-del.show {
  671. -webkit-animation: showDelbtn 0s linear both;
  672. animation: showDelbtn 0s linear both;
  673. }
  674. .footer .footer-del.none {
  675. -webkit-animation: hideDelbtn 0s linear both;
  676. animation: hideDelbtn 0s linear both;
  677. }
  678. .footer .footer-del .btn {
  679. flex: 1;
  680. margin: 0 8rpx;
  681. height: 100%;
  682. line-height: 80rpx;
  683. font-size: 28rpx;
  684. color: #FFFFFF;
  685. text-align: center;
  686. float: left;
  687. border-radius: 40rpx;
  688. }
  689. .footer .footer-del .btn.btn-cancel {
  690. background: #f7f7f7;
  691. color: #B2B2B2;
  692. }
  693. .footer .footer-del .btn.btn-confirm {
  694. background: linear-gradient(270deg, #f83c6c 0%, #fc32b4 100%);
  695. color: #FFFFFF;
  696. }
  697. @-webkit-keyframes showDelbtn {
  698. 0% {
  699. -webkit-transform: translateX(0);
  700. transform: translateX(0);
  701. }
  702. 100% {
  703. -webkit-transform: translateX(-100%);
  704. transform: translateX(-100%);
  705. }
  706. }
  707. @keyframes showDelbtn {
  708. 0% {
  709. -webkit-transform: translateX(0);
  710. transform: translateX(0);
  711. }
  712. 100% {
  713. -webkit-transform: translateX(-100%);
  714. transform: translateX(-100%);
  715. }
  716. }
  717. @-webkit-keyframes hideDelbtn {
  718. 0% {
  719. -webkit-transform: translateX(-100%);
  720. transform: translateX(-100%);
  721. }
  722. 100% {
  723. -webkit-transform: translateX(0);
  724. transform: translateX(0);
  725. }
  726. }
  727. @keyframes hideDelbtn {
  728. 0% {
  729. -webkit-transform: translateX(-100%);
  730. transform: translateX(-100%);
  731. }
  732. 100% {
  733. -webkit-transform: translateX(0);
  734. transform: translateX(0);
  735. }
  736. }