add.wxss 1.6 KB

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