index.less 3.6 KB

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