index.wxss 2.7 KB

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