index.less 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. .wrPostionList {
  5. .mydiamon {
  6. padding: 5px 10px;
  7. font-size: 16px;
  8. color: #333;
  9. text-align: center;
  10. }
  11. .title-view {
  12. margin: 10px;
  13. background-color: #f0f0f0;
  14. border-radius: 10px;
  15. display: flex;
  16. align-items: center;
  17. align-content: center;
  18. flex-direction: column;
  19. padding: 5px 10px;
  20. .title-view-up, .title-view-mid, .title-view-dwn {
  21. display: flex;
  22. flex-direction: row;
  23. justify-content: space-between;
  24. align-items: center;
  25. width: 100%;
  26. align-content: center;
  27. height: 25px;
  28. text {
  29. color: #666;
  30. font-size: 13px;
  31. text-align: center;
  32. }
  33. :first-child {
  34. text-align: left;
  35. }
  36. :last-child {
  37. text-align: right;
  38. }
  39. }
  40. .title-view-up {
  41. border-bottom: 1px solid #ddd;
  42. padding-bottom: 5px;
  43. }
  44. .title-view-mid {
  45. padding: 5px 0px;
  46. }
  47. }
  48. .item-view {
  49. margin: 10px;
  50. border-radius: 10px;
  51. display: flex;
  52. align-items: center;
  53. align-content: center;
  54. flex-direction: column;
  55. padding: 5px 10px;
  56. border: 1px solid #ddd;
  57. &__step {
  58. display: flex;
  59. flex-direction: row;
  60. justify-content: start;
  61. align-items: center;
  62. align-content: center;
  63. width: 100%;
  64. margin: 5px 0px;
  65. &__item {
  66. display: flex;
  67. flex-direction: column;
  68. align-items: center;
  69. align-content: center;
  70. padding: 5px 0px;
  71. text {
  72. font-size: 12px;
  73. padding: 2.5px 5px;
  74. text-align: center;
  75. }
  76. }
  77. }
  78. .item-view-up, .item-view-dwn {
  79. display: flex;
  80. flex-direction: row;
  81. justify-content: space-between;
  82. align-items: center;
  83. height: 50%;
  84. width: 100%;
  85. align-content: center;
  86. height: 25px;
  87. text {
  88. color: #333;
  89. font-size: 13px;
  90. /*超出隐藏*/
  91. overflow: hidden;
  92. /*溢出不换行*/
  93. white-space: nowrap;
  94. /*溢出显示用省略号*/
  95. text-overflow: ellipsis;
  96. text-align: center;
  97. }
  98. :first-child {
  99. text-align: left;
  100. }
  101. :last-child {
  102. text-align: right;
  103. }
  104. }
  105. .item-view-dwn {
  106. padding-top: 5px;
  107. }
  108. .item-view-up {
  109. border-bottom: 1px solid #ddd;
  110. padding-bottom: 5px;
  111. text {
  112. width: 25%;
  113. }
  114. }
  115. }
  116. /* 选中时添加这个 样式 */
  117. .active {
  118. background: #E6F1FF;
  119. }
  120. }
  121. &__operator {
  122. width: 95%;
  123. }
  124. .button-view {
  125. display: flex;
  126. justify-content: space-between;
  127. margin-top: 30px;
  128. justify-content: center;
  129. justify-items: center;
  130. width: 100%;
  131. van-button {
  132. height: 40px;
  133. width: 90%;
  134. }
  135. }
  136. }