index.wxss 635 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* components/productCard/index.wxss */
  2. .card{
  3. display: flex;
  4. align-items: center;
  5. padding: 10px;
  6. }
  7. .flex{
  8. flex: 1;
  9. display: flex;
  10. }
  11. .card image{
  12. width: 50px;
  13. height: 50px;
  14. margin-right: 10px;
  15. }
  16. .small{
  17. font-size: 24rpx;
  18. color:#999;
  19. line-height: 25px;
  20. }
  21. .deleteBtn {
  22. height: 25px;
  23. width: 25px;
  24. border-radius: 100%;
  25. font-size: 15rpx;
  26. color:#fff;
  27. background-color: #e34d59;
  28. display: flex;
  29. align-items: center;
  30. justify-content: space-around;
  31. }
  32. .flex-align-center{
  33. display: flex;
  34. align-items: center;
  35. }
  36. input{
  37. border-bottom:1px solid #f1f2f3 ;
  38. width: 50px;
  39. margin-left: 5px;
  40. color:#333
  41. }