staticSearch.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. @import "common.less";
  2. html{
  3. background: #fff;
  4. font-family: '微软雅黑', '宋体';
  5. }
  6. .staticContainer {
  7. width: 80%;
  8. background: #fff;
  9. margin: 0 auto;
  10. /* padding: 0 30px; */
  11. position: absolute;
  12. /* width: 80%; */
  13. left: 30px;
  14. right: 30px;
  15. height: 100%;
  16. overflow: hidden;
  17. /* box-sizing: border-box; */
  18. }
  19. .staticSearchT {
  20. position: relative;
  21. padding-right: 80px;
  22. padding-bottom: 10px;
  23. padding-top: 10px;
  24. }
  25. .container .ipt {
  26. width: 100%;
  27. height: 36px;
  28. padding: 6px 25px 6px 5px;
  29. border-radius: 4px 0px 0px 4px;
  30. vertical-align: top;
  31. display: inline-block;
  32. box-sizing: border-box;
  33. border: 1px #CECECE solid;
  34. }
  35. .container .ipt input {
  36. width: 100%;
  37. position: relative;
  38. top: 1px;
  39. font-size: 14px;
  40. font-family: '微软雅黑', '宋体';
  41. }
  42. .container .staticSearchT button {
  43. position: absolute;
  44. right: 0;
  45. top: 10px;
  46. width: 80px;
  47. height: 36px;
  48. line-height: 36px;
  49. color: #fff;
  50. font-size: 14px;
  51. background: @bgcBlue;
  52. border-radius: 0px 4px 4px 0px;
  53. text-align: center;
  54. border: none;
  55. }
  56. .container .staticSearchT i {
  57. position: absolute;
  58. width: 15px;
  59. height: 15px;
  60. right: 85px;
  61. top: 20px;
  62. display: inline-block;
  63. cursor: pointer;
  64. background: url(/images/del_nor.png) center center no-repeat;
  65. background-size:15px 15px;
  66. z-index: 100;
  67. }
  68. .staticSearchB .tip,.container .staticSearchT i,.staticSearchB .empty, .staticSearchB .searching,.staticSearchB .inputWarning{
  69. display: none;
  70. }
  71. .staticSearchB .empty, .staticSearchB .searching,.staticSearchB .inputWarning{
  72. color: #979797;
  73. text-align: center;
  74. /*line-height: 40px;*/ /**bug8689*/
  75. top: 70px;
  76. position: relative;
  77. }
  78. .staticSearchB .inputWarning{
  79. color: @fontClr;
  80. }
  81. .staticSearchB ul {
  82. position: absolute;
  83. height: 480px;
  84. /* width: 100%; */
  85. right: 18px;
  86. left: 22px;
  87. overflow: auto;
  88. padding: 0 30px;
  89. }
  90. .staticSearchB ul li {
  91. border-bottom: 1px #EFEFEF solid;
  92. line-height: 32px;
  93. padding-top: 5px;
  94. .diag-name{
  95. color: #333;
  96. font-size: 14px;
  97. display: inline-block;
  98. width: 92%;
  99. cursor: pointer;
  100. }
  101. .code-slide{
  102. display: inline-block;
  103. cursor: pointer;
  104. width: 10px;
  105. height: 7px;
  106. background: url("../images/icon_arrow_up.png") no-repeat;
  107. background-size: cover;
  108. margin-bottom: 0;
  109. }
  110. &.hide-codes{
  111. .codeDiv{
  112. display: none;
  113. }
  114. .code-slide{
  115. background: url("../images/icon_arrow_down.png") no-repeat;
  116. background-size: cover;
  117. }
  118. }
  119. }
  120. .staticSearchB ul li:hover {
  121. border-bottom: 2px solid #3589FF;
  122. }
  123. .staticSearchB ul p{
  124. position: relative;
  125. color: @fontClr;
  126. font-weight: bold;
  127. img{
  128. position: absolute;
  129. right: 2px;
  130. bottom: 10px;
  131. }
  132. }
  133. .staticSearchB .codeDiv{
  134. background: #EAEDF1;
  135. padding: 10px;
  136. margin-bottom: 10px;
  137. p,span{
  138. color: #444;
  139. font-size: 14px;
  140. font-weight: normal;
  141. line-height: 22px;
  142. }
  143. td{
  144. vertical-align: top;
  145. line-height: 20px;
  146. }
  147. .type-icon{
  148. border:1px #4F9FF3 solid;
  149. color: #4F9FF3;
  150. border-radius: 11px;
  151. display: inline-block;
  152. width: 58px;
  153. height: 22px;
  154. text-align: center;
  155. margin-right: 6px;
  156. &.type-l{
  157. border-color:#1ECEBD;
  158. color: #1ECEBD;
  159. }
  160. }
  161. .type-code{
  162. color:#999;
  163. word-break: break-all;
  164. }
  165. }
  166. .staticSearchB ul i {
  167. font-size: 14px;
  168. color: @linkColor;
  169. font-weight: normal;
  170. }
  171. .staticSearchB .tip {
  172. font-size: 16px;
  173. color: #979797;
  174. margin-bottom: 5px;
  175. img{
  176. width: 16px;
  177. height: 16px;
  178. vertical-align: middle;
  179. margin-right: 5px;
  180. }
  181. }
  182. .staticSearchB ul span {
  183. color: #979797;
  184. font-size: 12px;
  185. margin-bottom: 10px;
  186. line-height: 20px;
  187. }
  188. .searchTypeBox {
  189. margin: 10px 0 5px 0;
  190. }
  191. .medicalTypeItem{
  192. display: inline-block;
  193. margin: 0 20px 10px 0;
  194. cursor: pointer;
  195. color: @fontClr;
  196. }
  197. .medicalTypeItem img {
  198. vertical-align: text-bottom;
  199. margin: 0 3px 2px 0;
  200. }