add.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content {
  9. background-color: #f1f1f1;
  10. font-family: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
  11. }
  12. .content .info {
  13. display: flex;
  14. flex-direction: column;
  15. position: relative;
  16. flex-grow: 1;
  17. padding: 2vw;
  18. }
  19. .content .info .one {
  20. padding: 2vw;
  21. background-color: #ffffff;
  22. border-radius: 4vw;
  23. }
  24. .content .info .one .one_1 {
  25. display: flex;
  26. justify-content: space-between;
  27. align-items: center;
  28. background-color: #ffffff;
  29. border-radius: 3vw;
  30. padding: 4vw 2vw;
  31. border-bottom: 1px solid #f1f1f1;
  32. }
  33. .content .info .one .one_1 .left {
  34. font-size: 16px;
  35. font-weight: 600;
  36. }
  37. .content .info .one .one_1 .right {
  38. font-size: 14px;
  39. }
  40. .content .info .one .one_2 {
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. padding: 3vw 2vw;
  45. font-size: 14px;
  46. }
  47. .content .info .one .one_2 .right {
  48. display: flex;
  49. align-items: flex-end;
  50. color: #858585;
  51. }
  52. .content .info .one .one_2 .right input {
  53. text-align: right;
  54. }
  55. .content .info .two {
  56. margin: 2vw 0;
  57. padding: 2vw;
  58. background-color: #ffffff;
  59. border-radius: 4vw;
  60. }
  61. .content .info .two .two_1 {
  62. padding: 2vw 0;
  63. font-size: 16px;
  64. font-weight: 600;
  65. }
  66. .content .info .two .two_2 {
  67. position: relative;
  68. display: flex;
  69. flex-direction: column;
  70. height: 32vh;
  71. }
  72. .content .info .two .two_2 .list {
  73. display: flex;
  74. width: 88vw;
  75. margin: 0 0 2vw 0;
  76. padding: 2vw;
  77. box-shadow: 0 0 5px #f1f1f1;
  78. border-radius: 5px;
  79. }
  80. .content .info .two .two_2 .list .img {
  81. width: 30vw;
  82. }
  83. .content .info .two .two_2 .list .img .image {
  84. width: 30vw;
  85. height: 20vw;
  86. border-radius: 5px;
  87. }
  88. .content .info .two .two_2 .list .info {
  89. width: 40vw;
  90. padding: 0 0 0 2vw;
  91. }
  92. .content .info .two .two_2 .list .info .name {
  93. font-size: 16px;
  94. }
  95. .content .info .two .two_2 .list .info .spec {
  96. font-size: 12px;
  97. color: #858585;
  98. }
  99. .content .info .two .two_2 .list .money {
  100. display: flex;
  101. flex-direction: column;
  102. align-items: flex-end;
  103. width: 20vw;
  104. }
  105. .content .info .two .two_2 .list .money text:first-child {
  106. font-size: 14px;
  107. color: #FF8C00;
  108. }
  109. .content .info .two .two_3 {
  110. padding: 3vw;
  111. text-align: right;
  112. font-size: 14px;
  113. color: #858585;
  114. border-top: 1px solid #f1f1f1;
  115. }
  116. .content .info .two .two_3 text:first-child {
  117. color: #FF7800;
  118. }
  119. .content .info .two .two_3 text:last-child {
  120. color: #FF7800;
  121. font-size: 18px;
  122. }
  123. .content .foot {
  124. display: flex;
  125. justify-content: space-between;
  126. align-items: center;
  127. padding: 2vw 3vw;
  128. background-color: #ffffff;
  129. border-top: 1px solid #f1f1f1;
  130. }
  131. .content .foot .foot_1 {
  132. font-size: 14px;
  133. color: #858585;
  134. }
  135. .content .foot .foot_1 text:first-child {
  136. color: #FF7800;
  137. }
  138. .content .foot .foot_1 text:last-child {
  139. color: #FF7800;
  140. font-size: 18px;
  141. }
  142. .content .foot .foot_2 .button {
  143. background-color: #FF8C00;
  144. color: #ffffff;
  145. border-radius: 5vw;
  146. font-size: 16px;
  147. }
  148. .scroll-view {
  149. position: absolute;
  150. top: 0;
  151. left: 0;
  152. right: 0;
  153. bottom: 0;
  154. }
  155. .scroll-view .list-scroll-view {
  156. display: flex;
  157. flex-direction: column;
  158. }