index.scss 2.1 KB

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