index.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. .container {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-content: center;
  6. align-items: center;
  7. .topView {
  8. position: sticky;
  9. top: 0;
  10. z-index: 999;
  11. width: 100%;
  12. }
  13. .goods-info, .perform-info, .perexcute-info {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: flex-start;
  17. align-items: center;
  18. align-content: center;
  19. margin: 10px 5px;
  20. width: 100%;
  21. text:nth-child(1) {
  22. font-size: 20px;
  23. color: #333;
  24. font-weight: bold;
  25. }
  26. text:nth-child(2) {
  27. color: #666;
  28. font-size: 14px;
  29. }
  30. }
  31. .title-view, .item-view {
  32. margin: 0px 10px;
  33. background-color: #f0f0f0;
  34. border-radius: 10px;
  35. display: flex;
  36. align-items: center;
  37. align-content: center;
  38. flex-direction: column;
  39. padding: 10px 10px;
  40. width: 90%;
  41. .title-view-up, .title-view-dwn, .item-view-up, .item-view-dwn {
  42. display: flex;
  43. flex-direction: row;
  44. justify-content: space-between;
  45. align-items: center;
  46. width: 100%;
  47. align-content: center;
  48. margin: 5px 0px;
  49. text {
  50. color: #666;
  51. font-size: 13px;
  52. text-align: center;
  53. }
  54. :first-child {
  55. text-align: left;
  56. }
  57. :last-child {
  58. width: 30%;
  59. text-align: right;
  60. }
  61. }
  62. .title-view-up, .item-view-up {
  63. border-bottom: 1px solid #ddd;
  64. padding-bottom: 5px;
  65. }
  66. }
  67. .item-view {
  68. background-color: #fff;
  69. border: 1px solid #eee;
  70. margin: 5px 0px;
  71. margin-left: 10px;
  72. }
  73. .perform-detail-info {
  74. width: 90%;
  75. background-color: #f0f0f0;
  76. padding: 10px;
  77. display: flex;
  78. flex-direction: column;
  79. align-content: center;
  80. border-radius: 10px;
  81. .item {
  82. width: 100%;
  83. display: flex;
  84. flex-direction: row;
  85. justify-content: space-between;
  86. margin: 5px 0px;
  87. text {
  88. color: #333;
  89. font-size: 14px;
  90. text-align: left;
  91. }
  92. text:nth-child(2) {
  93. width: 45%;
  94. }
  95. }
  96. }
  97. .planstep-info {
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: center;
  102. align-content: center;
  103. border: 1px solid #387BDC;
  104. width: 90%;
  105. border-radius: 10px;
  106. margin: 5px 0px;
  107. color: #333;
  108. font-size: 14px;
  109. &__up, &__mid, &__dwn {
  110. width: 100%;
  111. display: flex;
  112. flex-direction: row;
  113. justify-content: space-between;
  114. align-items: center;
  115. align-content: center;
  116. text-align: center;
  117. padding: 10px 0px;
  118. text:nth-child(1) {
  119. margin-left: 15px;
  120. }
  121. text:nth-last-child(1) {
  122. margin-right: 15px;
  123. }
  124. }
  125. &__up {
  126. color: #fff;
  127. border-radius: 10px 10px 0px 0px;
  128. }
  129. .stepindex {
  130. width: 30px;
  131. height: 30px;
  132. border-radius: 15px;
  133. background-color: #fff;
  134. color: #666;
  135. text-align: center;
  136. }
  137. }
  138. .button-view {
  139. border-radius: 10px;
  140. width: 95%;
  141. padding-top: 15px;
  142. display: flex;
  143. flex-direction: row;
  144. align-content: center;
  145. align-items: center;
  146. justify-content: space-between;
  147. van-button {
  148. width: 48%;
  149. }
  150. }
  151. }