index.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .inquiry_wrap {
  2. background-color: #f9fafb;
  3. // height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. box-sizing: border-box;
  7. .list_wrap {
  8. flex: 1;
  9. ::v-deep .uni-scroll-view {
  10. height: calc(100vh - 250rpx);
  11. }
  12. .list_item {
  13. margin: 0 20rpx;
  14. padding: 30rpx;
  15. background-color: #fff;
  16. border-radius: 20rpx;
  17. margin-bottom: 20rpx;
  18. box-shadow: 2px 2px 11px 1px #e7e7e7;
  19. .list_item_top {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: flex-start;
  23. .top_left {
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: flex-start;
  27. .name {
  28. font-size: 32rpx;
  29. font-weight: bold;
  30. color: #111827;
  31. }
  32. .desc {
  33. font-size: 26rpx;
  34. color: #9ca3af;
  35. }
  36. }
  37. .top_right {
  38. display: flex;
  39. flex-direction: column;
  40. justify-content: flex-end;
  41. }
  42. }
  43. .imgs {
  44. margin: 20rpx 0;
  45. }
  46. .list_item_bottom {
  47. display: flex;
  48. justify-content: space-between;
  49. align-items: center;
  50. font-size: 26rpx;
  51. color: #9ca3af;
  52. font-weight: 550;
  53. .bottom {
  54. display: flex;
  55. align-items: center;
  56. gap: 8rpx;
  57. }
  58. }
  59. &:nth-of-type(1) {
  60. margin-top: 20rpx;
  61. }
  62. }
  63. }
  64. }