group.less 2.8 KB

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