index.less 2.9 KB

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