index.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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;
  58. box-sizing: border-box;
  59. width: 20%;
  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: 80%;
  82. tr {
  83. line-height: 18px;
  84. height: 18px;
  85. width: 100%;
  86. td {
  87. cursor: default;
  88. padding-top: 3px;
  89. }
  90. }
  91. }
  92. .searchResult {
  93. .searchResultT {
  94. img {
  95. float: right;
  96. }
  97. }
  98. }
  99. .excelDataLists {
  100. position: relative;
  101. background-color: #f1f1f1;
  102. border: 1px solid #ccc;
  103. .close {
  104. width: 13px;
  105. height: 13px;
  106. position: absolute;
  107. top: -5px;
  108. right: -5px;
  109. z-index: 30;
  110. background-color: #fff;
  111. border-radius: 50%;
  112. }
  113. .excelDataLis {
  114. padding: 2px 0px;
  115. border-bottom: 1px dashed #989DA3;
  116. .excelDataTitle {
  117. display: inline-block;
  118. width: 20%;
  119. vertical-align: top;
  120. padding-left: 10px;
  121. float: left;
  122. }
  123. table {
  124. width: 80%;
  125. tr {
  126. height: 16px;
  127. line-height: 16px;
  128. width: 100%;
  129. }
  130. td {
  131. text-align: left;
  132. padding-top: 6px;
  133. cursor: default;
  134. }
  135. .excelUnit {
  136. width: auto;
  137. margin-left: 5px;
  138. }
  139. }
  140. }
  141. }
  142. .center {
  143. text-align: center;
  144. font-size: 16px;
  145. padding-top: 10px;
  146. padding-bottom: 50px;
  147. }
  148. .slides {
  149. background-color: #EDEDED;
  150. text-align: center;
  151. height: 28px;
  152. line-height: 28px;
  153. margin: 10px 0 8px 0;
  154. cursor: pointer;
  155. span {
  156. color:#7d7d7d;
  157. }
  158. img{
  159. vertical-align: middle;
  160. }
  161. .num {
  162. color: @blue;
  163. }
  164. }
  165. .imgInfo {
  166. position: relative;
  167. }
  168. .imgInfo, .imgInfo1 {
  169. width: 15px;
  170. height: 17px;
  171. border-bottom: 0 none !important;
  172. background: url('../img/info2.png') no-repeat center center;
  173. background-size: 100% auto;
  174. position: absolute;
  175. top: -10px;
  176. left: 50%;
  177. margin-left: -8px;
  178. display: none;
  179. cursor: pointer;
  180. }
  181. .imgInfo1 {
  182. top: -13px;
  183. }
  184. .imgInfo:hover, .imgInfo1:hover {
  185. background: url('../img/info3.png') no-repeat center center;
  186. background-size: 100% auto;
  187. }
  188. .tagSpan {
  189. position: relative;
  190. }
  191. .tagSpan:hover {
  192. .imgInfo, .imgInfo1 {
  193. display: block;
  194. }
  195. }