index.wxss 1.8 KB

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