index.wxss 615 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .wrap {
  2. position: relative;
  3. }
  4. .wrap .content {
  5. position: relative;
  6. z-index: 1;
  7. overflow: hidden;
  8. }
  9. .wrap .content.animate {
  10. transition: transform 0.3s;
  11. background: #F6F8FB;
  12. }
  13. .wrap .action-wrap {
  14. position: absolute;
  15. display: flex;
  16. width: 120rpx;
  17. top: 0;
  18. bottom: 0;
  19. right: 0;
  20. overflow: hidden;
  21. border-radius: 0 24rpx 24rpx 0;
  22. }
  23. .wrap .action {
  24. display: flex;
  25. width: 120rpx;
  26. height: 100%;
  27. justify-content: center;
  28. align-items: center;
  29. color: white;
  30. background: #327BF9;
  31. }
  32. .wrap .delete {
  33. background: #FF8200;
  34. }
  35. .wrap .action text {
  36. font-size: 24rpx;
  37. color: #fff;
  38. }