index.less 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. @import "~@less/variables.less";
  2. .slideLi {
  3. // cursor: pointer;
  4. // color: #767676;
  5. position: relative;
  6. padding: 10px 0px 10px 0;
  7. border-bottom:1px dashed #989DA3;
  8. margin-top: 5px;
  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: 15px;
  30. height: 15px;
  31. margin-bottom: 11px;
  32. cursor: pointer;
  33. display: inline-block;
  34. position: absolute;
  35. right: -4px;
  36. top: 0px;
  37. background: @closeIcon;
  38. background-color: #fff;
  39. background-size: 100% 100%;
  40. }
  41. }
  42. .slideLi:hover{
  43. background:#F2F2F2;
  44. border-radius: 4px;
  45. .partDel{
  46. background: @closeHor;
  47. background-color: #fff;
  48. background-size: 100% 100%;
  49. }
  50. }
  51. .staticTagActive {
  52. cursor: pointer;
  53. color: #333;
  54. // display: inline-block;
  55. position: relative;
  56. vertical-align: top;
  57. padding: 2px 10px 10px 10px;
  58. box-sizing: border-box;
  59. width: 100%;
  60. float: left;
  61. span {
  62. border-bottom: 1px solid #666666 ;
  63. }
  64. }
  65. .staticTag {
  66. cursor: pointer;
  67. // color: #767676;
  68. color: @blue;
  69. padding-top: 10px;
  70. display: inline-block;
  71. position: relative;
  72. /* &:before {
  73. content: '\300C';
  74. }
  75. &:after {
  76. content: '\300D';
  77. } */
  78. }
  79. .table {
  80. color: #000;
  81. width: 100%;
  82. tr {
  83. line-height: 18px;
  84. height: 18px;
  85. width: 100%;
  86. font-size: unset;
  87. td {
  88. cursor: default;
  89. padding-top: 3px;
  90. font-size: unset;
  91. span {
  92. font-size: unset;
  93. }
  94. }
  95. }
  96. tr > td {
  97. padding: 0 10px;
  98. box-sizing: border-box;
  99. }
  100. }
  101. .searchResult {
  102. .searchResultT {
  103. img {
  104. float: right;
  105. }
  106. }
  107. }
  108. .excelDataLists {
  109. position: relative;
  110. background-color: #f1f1f1;
  111. border: 1px solid #ccc;
  112. .close {
  113. width: 13px;
  114. height: 13px;
  115. position: absolute;
  116. top: -5px;
  117. right: -5px;
  118. z-index: 30;
  119. background-color: #fff;
  120. border-radius: 50%;
  121. }
  122. .excelDataLis {
  123. padding: 2px 0px;
  124. border-bottom: 1px dashed #989DA3;
  125. .excelDataTitle {
  126. display: inline-block;
  127. width: 20%;
  128. vertical-align: top;
  129. padding-left: 10px;
  130. float: left;
  131. }
  132. table {
  133. width: 80%;
  134. tr {
  135. height: 16px;
  136. line-height: 16px;
  137. width: 100%;
  138. }
  139. td {
  140. text-align: left;
  141. padding-top: 6px;
  142. cursor: default;
  143. }
  144. .excelUnit {
  145. width: auto;
  146. margin-left: 5px;
  147. }
  148. }
  149. }
  150. }
  151. .center {
  152. text-align: center;
  153. font-size: 16px;
  154. padding-top: 10px;
  155. padding-bottom: 50px;
  156. }
  157. .slides {
  158. background-color: #EDEDED;
  159. text-align: center;
  160. height: 28px;
  161. line-height: 28px;
  162. margin: 10px 0 8px 0;
  163. cursor: pointer;
  164. span {
  165. color:#7d7d7d;
  166. }
  167. img{
  168. vertical-align: middle;
  169. }
  170. .num {
  171. color: @blue;
  172. }
  173. }
  174. .imgInfo {
  175. position: relative;
  176. }
  177. .imgInfo, .imgInfo1 {
  178. width: 15px;
  179. height: 17px;
  180. border-bottom: 0 none !important;
  181. background: url('../img/info2.png') no-repeat center center;
  182. background-size: 100% auto;
  183. position: absolute;
  184. top: -10px;
  185. left: 50%;
  186. margin-left: -8px;
  187. display: none;
  188. cursor: pointer;
  189. }
  190. .imgInfo1 {
  191. top: -13px;
  192. }
  193. .imgInfo:hover, .imgInfo1:hover {
  194. background: url('../img/info3.png') no-repeat center center;
  195. background-size: 100% auto;
  196. }
  197. .tagSpan {
  198. display: inline-block;
  199. position: relative;
  200. }
  201. .tagSpanS {
  202. font-weight: bold;
  203. color: #000;
  204. }
  205. .selectTagSpan {
  206. color: #000;
  207. font-weight: bold;
  208. }
  209. .tagSpan:hover {
  210. .imgInfo, .imgInfo1 {
  211. display: block;
  212. }
  213. }
  214. .iptValue {
  215. width: 60px;
  216. color: #3B9ED0;
  217. font-size: 12px;
  218. }
  219. .iptValueBtn {
  220. color: #3B9ED0;
  221. width: 60px;
  222. height: 22px;
  223. line-height: 22px;
  224. background-color: #EDF8FF;
  225. text-align: center;
  226. display: inline-block;
  227. font-size: 12px;
  228. border-radius: 4px;
  229. border-bottom: 0 !important;
  230. margin-left: 10px;
  231. }