index.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .inquiry_wrap {
  2. background-color: #f9fafb;
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. box-sizing: border-box;
  7. .list {
  8. flex: 1;
  9. height: calc(100vh - 100rpx);
  10. ::v-deep .uni-scroll-view {
  11. height:100%;
  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. // .uni-scroll-view-content{
  81. // height: calc(100% - 70px);
  82. // }
  83. }
  84. }
  85. }