index.wxss 1016 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* components/myOrderCard/index.wxss */
  2. .van-swipe-cell__left{
  3. background-color: seagreen;
  4. height: inherit;
  5. width: 100px;
  6. color: white;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. }
  11. .van-swipe-cell__right{
  12. background-color: red;
  13. height: inherit;
  14. width: 100px;
  15. color: white;
  16. display: flex;
  17. align-items: center;
  18. justify-content: center;
  19. }
  20. .commodity-card{
  21. display: flex;
  22. flex-direction: column;
  23. }
  24. .commodity-card-title{
  25. display: flex;
  26. flex-direction: row;
  27. }
  28. .commodity-card-title>van-cell{
  29. border-bottom: none;
  30. }
  31. .commodity-card-title-name{
  32. position: relative;
  33. left: 0px;
  34. font-weight: 400;
  35. text-align: left;
  36. width: 200px;
  37. }
  38. .commodity-card-title-status{
  39. position: relative;
  40. right: 0;
  41. font-weight: 400;
  42. text-align: right;
  43. width: 50px;
  44. }
  45. .commodity-card-body{
  46. display: flex;
  47. }
  48. .commodity-card-body-info{
  49. display: flex;
  50. flex-direction: column;
  51. }
  52. .commodity-card-body-info-title{
  53. font-weight: 400;
  54. text-align: left;
  55. }
  56. .commodity-card-footer-btn{
  57. margin: 2px;
  58. }