index.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .paramsSetPage {
  2. position: relative;
  3. width: 100%;
  4. overflow: hidden;
  5. .paramsSetBox {
  6. width: 100%;
  7. height: calc(100vh - 44px);
  8. overflow: auto;
  9. overflow-x: hidden;
  10. .deleteSpan {
  11. padding: 0 1em;
  12. color: #df5e4c;
  13. }
  14. .addSpan { color: #4d6add; }
  15. .addRow { height: 3em; line-height: 3em; text-align: center; }
  16. .vanInputRow {
  17. position: relative;
  18. &::after{
  19. position: absolute;
  20. box-sizing: border-box;
  21. content: " ";
  22. pointer-events: none;
  23. right: var(--van-padding-md);
  24. bottom: 0;
  25. left: var(--van-padding-md);
  26. border-bottom: 0.02667rem solid var(--van-cell-border-color);
  27. transform: scaleY(.5);
  28. }
  29. :deep(.van-cell) {
  30. &::after{ display: none; }
  31. }
  32. }
  33. .wrap2 {
  34. width: 100%;
  35. height: 54px;
  36. background-color: #fff;
  37. justify-content: center;
  38. position: relative;
  39. .outer1 {
  40. width: 162px;
  41. height: 20px;
  42. margin: 0 0 0 15px;
  43. .block1 {
  44. background-color: rgba(128, 150, 236, 1);
  45. border-radius: 2px;
  46. width: 4px;
  47. height: 12px;
  48. margin-top: 4px;
  49. }
  50. .txt2 {
  51. width: 150px;
  52. height: 20px;
  53. overflow-wrap: break-word;
  54. color: rgba(64, 77, 116, 1);
  55. font-size: 14px;
  56. font-family: PingFangSC-Medium;
  57. text-align: left;
  58. white-space: nowrap;
  59. line-height: 20px;
  60. display: block;
  61. }
  62. }
  63. .pic2 {
  64. z-index: 26;
  65. position: absolute;
  66. left: 0;
  67. top: 53px;
  68. width: 375px;
  69. height: 2px;
  70. }
  71. }
  72. .list{
  73. width: 100%;
  74. height: 54px;
  75. padding: 0 15px;
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. position: relative;
  80. .title {
  81. display: flex;
  82. .icon {
  83. width: 24px;
  84. padding-right: 10px;
  85. }
  86. .word3 {
  87. display: block;
  88. width: 78px;
  89. height: 13px;
  90. overflow-wrap: break-word;
  91. color: rgba(64, 77, 116, 1);
  92. font-size: 13px;
  93. text-align: left;
  94. white-space: nowrap;
  95. line-height: 13px;
  96. }
  97. .section4 {
  98. position: relative;
  99. width: 18px;
  100. height: 19px;
  101. margin-right: 10px;
  102. background: url(../../../assets/device/currency1.png) 100% no-repeat;
  103. .main4 {
  104. z-index: 34;
  105. position: absolute;
  106. left: 12px;
  107. top: -1px;
  108. width: 4px;
  109. height: 4px;
  110. background: url(../../../assets/device/currency2.png) 100% no-repeat;
  111. }
  112. }
  113. }
  114. .outer2 {
  115. width: 6px;
  116. height: 12px;
  117. background: url('../../../assets/right.png') top center no-repeat;
  118. background-size: 100%;
  119. margin-top: 4px;
  120. }
  121. }
  122. :deep(.van-cell) { align-items: center; }
  123. :deep(.van-field__control) {
  124. width: 60%;
  125. border: 1px solid var(--van-border-color);
  126. padding: 0.2em 0;
  127. }
  128. :deep(.updataButton) {
  129. background-color: transparent;
  130. color: var(--van-button-primary-background-color);
  131. padding: 0 0.5em;
  132. border-radius: 50px;
  133. }
  134. }
  135. }