mess.less 3.1 KB

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