index.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:nth-child(2) {
  8. margin: 0;
  9. }
  10. .one {
  11. width: 92vw;
  12. padding: 2vw;
  13. background-color: #f1f1f1;
  14. input {
  15. font-size: 16px;
  16. }
  17. }
  18. .two {
  19. flex-grow: 1;
  20. position: relative;
  21. width: 96vw;
  22. .scroll-view {
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. .list-scroll-view {
  29. display: flex;
  30. flex-wrap: wrap;
  31. align-content: flex-start;
  32. justify-content: space-between;
  33. .list {
  34. background-color: #ffffff;
  35. margin: 0 0 2vw 0;
  36. padding: 2vw;
  37. display: flex;
  38. flex-direction: column;
  39. width: 96vw;
  40. .name {
  41. font-size: 18px;
  42. font-weight: bold;
  43. margin: 0 0 1vw 0;
  44. }
  45. .other {
  46. margin: 0 0 1vw 0;
  47. .other_1 {
  48. color: #858585;
  49. font-size: 15px;
  50. margin: 0 0 1vw 0;
  51. text:nth-child(1) {
  52. color: #000000;
  53. }
  54. }
  55. }
  56. .btn {
  57. text-align: center;
  58. button {
  59. margin: 0 2vw;
  60. font-size: 14px;
  61. }
  62. }
  63. }
  64. .list:last-child {
  65. margin: 0;
  66. }
  67. }
  68. }
  69. }
  70. }
  71. .dialog_one {
  72. display: flex;
  73. flex-direction: column;
  74. .one_1 {
  75. border-bottom: 1px solid #ccc;
  76. padding: 2vw 0;
  77. text {
  78. font-size: 16px;
  79. color: #858585;
  80. }
  81. text:nth-child(1) {
  82. color: #000000;
  83. }
  84. }
  85. }