index.less 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .add-customer {
  2. margin: 20rpx;
  3. padding: 20rpx 0;
  4. text-align: center;
  5. color: blue;
  6. background-color: #eee;
  7. border-radius: 40rpx;
  8. .add-icon {
  9. margin-right: 10rpx;
  10. }
  11. }
  12. .good {
  13. margin: 20rpx;
  14. display: flex;
  15. justify-content: space-between;
  16. // box-shadow: 0rpx 0rpx 10rpx rgb(180, 180, 180);
  17. // border-radius: 20rpx;
  18. .image {
  19. border-radius: 20rpx;
  20. width: 200rpx;
  21. height: 200rpx;
  22. }
  23. .info {
  24. padding: 10rpx 0;
  25. width: 480rpx;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: space-between;
  29. .up {
  30. .name {
  31. font-size: 28rpx;
  32. overflow: hidden;
  33. white-space: nowrap;
  34. text-overflow: ellipsis;
  35. }
  36. .tag {
  37. display: flex;
  38. flex-wrap: wrap;
  39. text {
  40. margin-top: 10rpx;
  41. font-size: 22rpx;
  42. color: rgb(90, 90, 90);
  43. margin-right: 15rpx;
  44. }
  45. }
  46. }
  47. .down {
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. .price {
  52. color: red;
  53. font-size: 22rpx;
  54. text {
  55. font-size: 25rpx;
  56. font-weight: bold;
  57. }
  58. }
  59. .btn {
  60. width: 200rpx;
  61. button {
  62. font-size: 25rpx;
  63. }
  64. }
  65. }
  66. }
  67. }