index.less 3.1 KB

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