index.less 848 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. Page {
  2. background-color: #f6f6f6;
  3. }
  4. .top-view {
  5. position: sticky;
  6. z-index: 999;
  7. top: 0;
  8. }
  9. .goodscard {
  10. display: flex;
  11. flex-direction: row;
  12. justify-content: space-between;
  13. flex-wrap: wrap;
  14. align-items: center;
  15. align-content: center;
  16. margin: 5px;
  17. .goodscard-item {
  18. width: 48%;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: space-between;
  22. background-color: white;
  23. border-radius: 10px;
  24. margin-top: 5px;
  25. box-shadow: 10px 10px 10px #ddd;
  26. margin-bottom: 10px;
  27. .goods-icon {
  28. width: 100%;
  29. border-radius: 10px 10px 0px 0px;
  30. }
  31. .goods-title {
  32. font-size: 13px;
  33. color: #333;
  34. margin: 10px 10px 0px 10px;
  35. text-align: left;
  36. }
  37. .goods-price {
  38. font-size: 16px;
  39. color: #F55656;
  40. margin: 10px 0px 10px 10px;
  41. }
  42. }
  43. }