index.less 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* nova-shop/pages/shopping-cart/index.wxss */
  2. page {
  3. background: #f6f6f6;
  4. }
  5. .browsing {
  6. .browsing_info {
  7. width: 93%;
  8. background: #ffffff;
  9. border-radius: 12rpx;
  10. margin: 20rpx auto;
  11. display: flex;
  12. .left_info {
  13. width: 38%;
  14. display: flex;
  15. align-items: center;
  16. .image {
  17. width: 240rpx;
  18. height: 240rpx;
  19. border-radius: 16rpx;
  20. }
  21. }
  22. .right_info {
  23. width: 58%;
  24. .title {
  25. font-size: 28rpx;
  26. margin: 20rpx 0;
  27. font-weight: 700;
  28. overflow: hidden;
  29. display: -webkit-box;
  30. -webkit-box-orient: vertical;
  31. -webkit-line-clamp: 1;
  32. }
  33. .desc {
  34. font-size: 24rpx;
  35. margin-bottom: 20rpx;
  36. color: #c2c2c2;
  37. overflow: hidden;
  38. display: -webkit-box;
  39. -webkit-box-orient: vertical;
  40. -webkit-line-clamp: 2;
  41. }
  42. .down_info {
  43. padding: 16rpx 0;
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. .price {
  48. font-size: 34rpx;
  49. color: #fd3030;
  50. font-weight: 700;
  51. }
  52. }
  53. }
  54. }
  55. .delete {
  56. background: #e42929;
  57. color: #fff;
  58. height: 100%;
  59. padding: 100rpx 34rpx;
  60. }
  61. .bottom {
  62. width: 100%;
  63. height: 100rpx;
  64. }
  65. }