index.wxss 769 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .slider-left-item {
  2. overflow: hidden;
  3. background-color: #fff;
  4. /* movable-area重置默认高度 */
  5. height: auto;
  6. }
  7. .slider-left-content {
  8. display: flex;
  9. align-items: center;
  10. height: 100%;
  11. background: inherit;
  12. color: inherit;
  13. /* movable-view重置默认绝对定位 */
  14. position: relative;
  15. z-index: 1;
  16. }
  17. .slider-left-handle {
  18. height: 100%;
  19. display: flex;
  20. justify-content: flex-end;
  21. position:absolute;
  22. top:0;
  23. left:0;
  24. right:0;
  25. z-index: 0;
  26. }
  27. .handle-delete {
  28. background-color: #FF4E4E;
  29. width: 150rpx;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. font-size: 14px;
  34. font-family: PingFangSC-Regular, PingFang SC;
  35. font-weight: 400;
  36. color: #FFFFFF;
  37. line-height: 20px;
  38. padding-right: 15px;
  39. }