index.scss 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. .status {
  42. font-size: 24rpx;
  43. padding: 6rpx 12rpx;
  44. border-radius: 12rpx;
  45. border: 2rpx solid #2563eb;
  46. font-weight: 600;
  47. }
  48. .inquiry {
  49. color: #2563eb;
  50. background-color: #eff6ff;
  51. border-color: #dceafe;
  52. }
  53. .verification {
  54. color: #ed590e;
  55. background-color: #fff7ed;
  56. border-color: #fff2e2;
  57. }
  58. }
  59. }
  60. .imgs {
  61. margin: 20rpx 0;
  62. }
  63. .list_item_bottom {
  64. display: flex;
  65. justify-content: space-between;
  66. align-items: center;
  67. font-size: 26rpx;
  68. color: #9ca3af;
  69. font-weight: 550;
  70. .bottom {
  71. display: flex;
  72. align-items: center;
  73. gap: 8rpx;
  74. }
  75. }
  76. &:nth-of-type(1) {
  77. margin-top: 20rpx;
  78. }
  79. }
  80. }
  81. }