index.wxss 2.1 KB

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