index.less 3.0 KB

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