index.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. .main {
  2. height: 88.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:last-child {
  8. margin: 0;
  9. }
  10. .one {
  11. display: flex;
  12. flex-direction: column;
  13. .one_1 {
  14. width: 92vw;
  15. padding: 2vw;
  16. margin: 0 0 1vw 0;
  17. background-color: #f1f1f1;
  18. }
  19. .one_2 {
  20. text-align: center;
  21. display: flex;
  22. flex-direction: row;
  23. justify-content: space-around;
  24. width: 96vw;
  25. button {
  26. width: 100%;
  27. margin: 0 2vw;
  28. font-size: 14px;
  29. }
  30. }
  31. }
  32. .two {
  33. flex-grow: 1;
  34. position: relative;
  35. .scroll-view {
  36. position: absolute;
  37. top: 0;
  38. left: 0;
  39. right: 0;
  40. bottom: 0;
  41. .list-scroll-view {
  42. display: flex;
  43. flex-wrap: wrap;
  44. align-content: flex-start;
  45. justify-content: space-between;
  46. .list {
  47. background-color: #ffffff;
  48. border-bottom: 1px solid #cccccc;
  49. width: 96vw;
  50. padding: 2vw;
  51. .name {
  52. font-size: 18px;
  53. margin: 0 0 1vw 0;
  54. font-weight: bold;
  55. text {
  56. color: #ff0000;
  57. font-size: 20px;
  58. padding: 0 2vw;
  59. }
  60. }
  61. .other {
  62. margin: 0 0 1vw 0;
  63. .other_1 {
  64. margin: 0 0 1vw 0;
  65. font-size: 15px;
  66. text {
  67. color: #000000;
  68. }
  69. text:nth-child(1) {
  70. color: #858585;
  71. }
  72. }
  73. }
  74. .btn {
  75. text-align: center;
  76. button {
  77. margin: 0 2vw;
  78. font-size: 14px;
  79. }
  80. }
  81. }
  82. .list:last-child {
  83. border-bottom: none;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. .dialog_one {
  90. width: 80vw;
  91. .content {
  92. background-color: #ffffff;
  93. border-bottom: 1px solid #cccccc;
  94. display: flex;
  95. flex-direction: row;
  96. justify-content: space-between;
  97. padding: 2vw;
  98. width: 76vw;
  99. .label {
  100. width: 25vw;
  101. text-align: left;
  102. font-size: 14px;
  103. }
  104. .value {
  105. width: 65vw;
  106. text-align: right;
  107. font-size: 14px;
  108. textarea {
  109. width: 65vw;
  110. }
  111. }
  112. }
  113. .btn {
  114. margin: 2vw 0 0 0;
  115. text-align: center;
  116. }
  117. }