index.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .index {
  2. .wish-list {
  3. padding-top: 82px;
  4. box-sizing: border-box;
  5. padding-right: 40px;
  6. .item {
  7. display: flex;
  8. .left {
  9. width: 160px;
  10. height: 100%;
  11. font-weight: 500;
  12. font-size: 60px;
  13. color: #FF6200;
  14. text-align: center;
  15. padding-top: 20px;
  16. box-sizing: border-box;
  17. }
  18. .right {
  19. flex: 1;
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. border-bottom: 1px solid #D8D8D8;
  24. height: 100%;
  25. padding: 30px 0;
  26. box-sizing: border-box;
  27. .left-text {
  28. display: flex;
  29. flex-direction: column;
  30. .title {
  31. font-weight: 500;
  32. font-size: 30px;
  33. color: #333333;
  34. }
  35. .price {
  36. font-weight: 500;
  37. font-size: 26px;
  38. color: #FC8C31;
  39. margin-top: 10px;
  40. }
  41. }
  42. .right-text {
  43. font-weight: 350;
  44. font-size: 24px;
  45. color: #999999;
  46. }
  47. }
  48. &:last-child {
  49. .right {
  50. border-bottom: none;
  51. }
  52. }
  53. }
  54. }
  55. }