index.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .inquiry_wrap {
  2. background-color: #f9fafb;
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. box-sizing: border-box;
  7. overflow: hidden;
  8. .list_wrap {
  9. flex: 1;
  10. height: 100%;
  11. overflow: hidden;
  12. padding: 20rpx 0;
  13. ::v-deep .uni-scroll-view {
  14. height: 100%;
  15. }
  16. .list_item {
  17. margin: 0 20rpx;
  18. margin-bottom:20rpx;
  19. padding: 30rpx;
  20. background-color: #fff;
  21. border-radius: 20rpx;
  22. box-shadow: 2px 2px 11px 1px #e7e7e7;
  23. .list_item_top {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: flex-start;
  27. .top_left {
  28. display: flex;
  29. flex-direction: column;
  30. justify-content: flex-start;
  31. .name {
  32. font-size: 32rpx;
  33. font-weight: bold;
  34. color: #111827;
  35. display: flex;
  36. flex-wrap: wrap;
  37. align-items: center;
  38. gap: 10rpx;
  39. .price {
  40. display: flex;
  41. align-items: center;
  42. gap: 5rpx;
  43. .price-desc {
  44. font-size: 24rpx;
  45. color: #9ca3af;
  46. font-weight: normal;
  47. }
  48. }
  49. .my-price {
  50. font-size: 26rpx;
  51. color: #2563eb;
  52. font-weight: normal;
  53. display: flex;
  54. align-items: center;
  55. gap: 5rpx;
  56. }
  57. }
  58. .desc {
  59. font-size: 26rpx;
  60. color: #9ca3af;
  61. }
  62. }
  63. .top_right {
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: flex-end;
  67. }
  68. }
  69. .imgs {
  70. margin: 20rpx 0;
  71. }
  72. .list_item_bottom {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. font-size: 26rpx;
  77. color: #9ca3af;
  78. font-weight: 550;
  79. .bottom {
  80. display: flex;
  81. align-items: center;
  82. gap: 8rpx;
  83. }
  84. }
  85. &:nth-of-type(1) {
  86. margin-top: 20rpx;
  87. }
  88. }
  89. }
  90. }