index.less 3.7 KB

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