group.wxss 2.2 KB

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