index.less 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. @import "~@less/variables.less";
  2. .labelWrap>li {
  3. // cursor: pointer;
  4. color: #767676;
  5. position: relative;
  6. padding-top: 10px;
  7. padding-bottom: 10px;
  8. border-bottom:1px dashed #989DA3;
  9. i {
  10. font-style: normal;
  11. display: inline-block;
  12. vertical-align: top;
  13. padding-top: 3px;
  14. &:before {
  15. content: '\300C';
  16. }
  17. &:after {
  18. content: '\300D';
  19. }
  20. }
  21. &>p {
  22. cursor: pointer;
  23. color: #767676;
  24. display: inline-block;
  25. position: relative;
  26. vertical-align: top;
  27. }
  28. .partDel {
  29. width: 13px;
  30. height: 13px;
  31. margin-bottom: 11px;
  32. cursor: pointer;
  33. display: inline-block;
  34. position: absolute;
  35. right: 0;
  36. top: 12px;
  37. background-color: #fff;
  38. }
  39. }
  40. .staticTagActive {
  41. cursor: pointer;
  42. color: #333;
  43. display: inline-block;
  44. position: relative;
  45. vertical-align: top;
  46. padding: 2px 10px;
  47. box-sizing: border-box;
  48. width: 20%;
  49. float: left;
  50. span {
  51. border-bottom: 1px solid #666666 ;
  52. }
  53. }
  54. .staticTag {
  55. cursor: pointer;
  56. // color: #767676;
  57. color: @blue;
  58. padding-top: 10px;
  59. display: inline-block;
  60. position: relative;
  61. /* &:before {
  62. content: '\300C';
  63. }
  64. &:after {
  65. content: '\300D';
  66. } */
  67. }
  68. .labelWrap {
  69. .table {
  70. color: #000;
  71. width: 80%;
  72. tr {
  73. line-height: 18px;
  74. height: 18px;
  75. width: 100%;
  76. td {
  77. padding-top: 3px;
  78. }
  79. }
  80. }
  81. }
  82. .wrapper {
  83. position: relative;
  84. }
  85. .fillWrap {
  86. display: none;
  87. }
  88. .searchLiUl {
  89. overflow-y: auto;
  90. max-height: 225px;
  91. min-height: 80px;
  92. }
  93. .searchLi {
  94. height: 36px;
  95. line-height: 36px;
  96. padding: 0 30px;
  97. padding-top: 0;
  98. box-sizing: border-box;
  99. overflow: hidden;
  100. text-overflow: ellipsis;
  101. white-space: nowrap;
  102. border: 1px solid transparent;
  103. cursor: pointer;
  104. }
  105. .searchLi:hover {
  106. border: 1px solid @blue;
  107. }
  108. .searchResult {
  109. .searchResultT {
  110. img {
  111. float: right;
  112. }
  113. }
  114. }
  115. .searchLis {
  116. padding-top: 10px;
  117. margin-top: 5px;
  118. margin-bottom: 5px;
  119. border-top: 1px solid #EAEDF1;
  120. overflow: hidden;
  121. box-sizing: border-box;
  122. }
  123. .itemPart {
  124. height: 28px;
  125. // line-height: 28px;
  126. overflow: hidden;
  127. padding-top: 0 !important;
  128. width: 330px;
  129. float: left;
  130. padding: 0 15px;
  131. box-sizing: border-box;
  132. span {
  133. display: inline-block;
  134. }
  135. .itemPartL {
  136. max-width: 180px;
  137. overflow: hidden;
  138. text-overflow: ellipsis;
  139. white-space: nowrap;
  140. float: left;
  141. }
  142. .itemPartR {
  143. width: 62px;
  144. outline: none;
  145. float: right;
  146. }
  147. .itemPartT {
  148. float: right;
  149. width: 110px;
  150. input {
  151. width: 40px;
  152. text-align: center;
  153. float: left;
  154. }
  155. .unit {
  156. display: inline-block;
  157. max-width: 70px;
  158. overflow: hidden;
  159. text-overflow: ellipsis;
  160. white-space: nowrap;
  161. }
  162. }
  163. }
  164. .itemPartOne {
  165. width: 100% !important;
  166. }
  167. .excelDataLists {
  168. position: relative;
  169. background-color: rgba(237,237,237,0.4);
  170. border: 1px solid #ccc;
  171. .close {
  172. width: 13px;
  173. height: 13px;
  174. position: absolute;
  175. top: -5px;
  176. right: -5px;
  177. z-index: 30;
  178. background-color: #fff;
  179. border-radius: 50%;
  180. }
  181. .excelDataLis {
  182. padding: 2px 0px;
  183. border-bottom: 1px dashed #989DA3;
  184. .excelDataTitle {
  185. display: inline-block;
  186. width: 20%;
  187. vertical-align: top;
  188. padding-left: 10px;
  189. float: left;
  190. }
  191. table {
  192. width: 80%;
  193. tr {
  194. height: 16px;
  195. line-height: 16px;
  196. width: 100%;
  197. }
  198. td {
  199. text-align: left;
  200. padding-top: 6px;
  201. }
  202. .excelUnit {
  203. width: auto;
  204. margin-left: 5px;
  205. }
  206. }
  207. }
  208. }
  209. .center {
  210. text-align: center;
  211. font-size: 16px;
  212. padding-top: 10px;
  213. padding-bottom: 50px;
  214. }
  215. .slides {
  216. background-color: #ccc;
  217. text-align: center;
  218. height: 28px;
  219. line-height: 28px;
  220. margin: 10px 0 8px 0;
  221. cursor: pointer;
  222. span {
  223. color:#7d7d7d;
  224. }
  225. img{
  226. vertical-align: middle;
  227. }
  228. }