index.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .main {
  2. height: 80.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:nth-child(2) {
  8. margin: 0 0 0 0;
  9. }
  10. .one {
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: space-between;
  14. padding: 2vw;
  15. width: 92vw;
  16. background-color: #fff;
  17. input {
  18. font-size: 14px;
  19. }
  20. }
  21. .two {
  22. flex-grow: 1;
  23. width: 100%;
  24. position: relative;
  25. .scroll-view {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. bottom: 0;
  31. .list-scroll-view {
  32. display: flex;
  33. flex-direction: column;
  34. .list {
  35. border-bottom: 1px solid #cccccc;
  36. padding: 2vw 0;
  37. display: flex;
  38. flex-direction: row;
  39. justify-content: space-between;
  40. .list_1 {
  41. padding: 8vw 0 0 0;
  42. .image {
  43. width: 60px;
  44. height: 60px;
  45. border-radius: 10px;
  46. }
  47. }
  48. .list_2 {
  49. display: flex;
  50. flex-direction: column;
  51. width: 80vw;
  52. padding: 0 0 0 2vw;
  53. .name {
  54. font-size: 16px;
  55. font-weight: bold;
  56. margin: 0 0 1vw 0;
  57. overflow: hidden;
  58. text-overflow: ellipsis;
  59. -webkit-line-clamp: 2;
  60. word-break: break-all;
  61. display: -webkit-box;
  62. -webkit-box-orient: vertical;
  63. .status {
  64. background-color: #ff0000;
  65. color: #fff;
  66. padding: 0 2vw;
  67. font-size: 14px;
  68. }
  69. }
  70. .other {
  71. .other_1 {
  72. margin: 0 0 1vw 0;
  73. color: #000000a6;
  74. font-size: 12px;
  75. overflow: hidden;
  76. text-overflow: ellipsis;
  77. -webkit-line-clamp: 2;
  78. word-break: break-all;
  79. display: -webkit-box;
  80. -webkit-box-orient: vertical;
  81. }
  82. }
  83. }
  84. }
  85. }
  86. }
  87. }
  88. }