index.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. align-items: center;
  37. gap: 10rpx;
  38. .price {
  39. display: flex;
  40. align-items: center;
  41. gap: 5rpx;
  42. }
  43. }
  44. .desc {
  45. font-size: 26rpx;
  46. color: #9ca3af;
  47. }
  48. }
  49. .top_right {
  50. display: flex;
  51. flex-direction: column;
  52. justify-content: flex-end;
  53. }
  54. }
  55. .imgs {
  56. margin: 20rpx 0;
  57. }
  58. .list_item_bottom {
  59. display: flex;
  60. justify-content: space-between;
  61. align-items: center;
  62. font-size: 26rpx;
  63. color: #9ca3af;
  64. font-weight: 550;
  65. .bottom {
  66. display: flex;
  67. align-items: center;
  68. gap: 8rpx;
  69. }
  70. }
  71. &:nth-of-type(1) {
  72. margin-top: 20rpx;
  73. }
  74. }
  75. }
  76. }