index.wxss 950 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* components/productCard/index.wxss */
  2. .card {
  3. position: relative;
  4. padding: 10px;
  5. }
  6. .flex {
  7. display: flex;
  8. }
  9. .card image {
  10. width: 50px;
  11. height: 50px;
  12. margin-right: 10px;
  13. }
  14. .small {
  15. font-size: 24rpx;
  16. color: #999;
  17. line-height: 25px;
  18. }
  19. .deleteBtn {
  20. position: absolute;
  21. height: 25px;
  22. width: 25px;
  23. border-radius: 100%;
  24. font-size: 15rpx;
  25. color: #fff;
  26. background-color: #e34d59;
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-around;
  30. top: 80rpx;
  31. right:10rpx;
  32. }
  33. .flex-align-center {
  34. display: flex;
  35. align-items: center;
  36. }
  37. input {
  38. border-bottom: 1px solid #f1f2f3;
  39. width: 50px;
  40. margin-left: 5px;
  41. color: #333
  42. }
  43. .input {
  44. display: flex;
  45. margin-top: 16rpx;
  46. }
  47. .input .label {
  48. width: 140rpx;
  49. font-size: 28rpx;
  50. line-height: 48rpx;
  51. }
  52. .input input,
  53. .input textarea {
  54. height: 37rpx;
  55. width: 450rpx;
  56. border: 1rpx solid #ddd;
  57. margin: 0 !important;
  58. padding: 8rpx !important;
  59. }