cdssPlan.less 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. @import './common.less';
  2. body{
  3. overflow: hidden;
  4. position: relative;
  5. background: #fff;
  6. }
  7. .bodyWrap{
  8. position: fixed;
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .operaNameBox {
  13. padding: 5px 14px;
  14. }
  15. .iframeWrap {
  16. margin: 0 auto 50px;
  17. // padding: 0 20px 20px 20px;
  18. min-width: 340px;
  19. overflow-y: hidden;
  20. }
  21. .contentWrapper{
  22. position: relative;
  23. overflow-y: hidden;
  24. // overflow-y: auto;
  25. }
  26. .responsibility {
  27. text-align: center;
  28. font-size: 12px;
  29. color: #979797;
  30. padding-bottom: 5px;
  31. position: fixed;
  32. left: 0;
  33. width: 100%;
  34. bottom: 23px;
  35. background-color: #fff;
  36. z-index: 1;
  37. }
  38. .disclaimer {
  39. height: 24px;
  40. width: 100%;
  41. line-height: 24px;
  42. position: fixed;
  43. bottom: 0;
  44. background-color: #EFF1F6;
  45. left: 0;
  46. z-index: 98;
  47. .version-tip{
  48. margin-left: 20px;
  49. display: inline-block;
  50. font-size: 12px;
  51. line-height: 12px;
  52. padding-right: 34px;
  53. cursor: pointer;
  54. &.new-icon{
  55. // background: url(../images/new.png) 100% 0px no-repeat;
  56. // background-size: 27px;
  57. }
  58. }
  59. .version-txt,.disclaimerInfoTxt{
  60. font-size: 12px;
  61. color: #777;
  62. }
  63. .version-txt:hover{
  64. border-bottom: 1px solid #000;
  65. font-size: 12px;
  66. }
  67. .logo {
  68. // float: left;
  69. font-size: 12px;
  70. margin-left: 15px;
  71. color:#333;
  72. }
  73. .disclaimerInfo {
  74. float: right;
  75. font-size: 12px;
  76. margin-right: 20px;
  77. }
  78. }
  79. .disclaimerInfo {
  80. cursor: pointer;
  81. font-size: 12px;
  82. }
  83. .disclaimerInfoTxt:hover{
  84. border-bottom: 1px solid #000;
  85. font-size: 12px;
  86. }
  87. .moreInfo {
  88. display: inline-block;
  89. width:42px;
  90. height:20px;
  91. border-radius:4px;
  92. border:1px solid #267FD7;
  93. line-height:20px;
  94. color: #267FD7;
  95. text-align: center;
  96. margin-left: 20px;
  97. cursor: pointer;
  98. }
  99. .staticWin {
  100. color: #040428;
  101. text-decoration: underline;
  102. cursor: pointer;
  103. }
  104. .line {
  105. width: 100%;
  106. height: 1px;
  107. background: #D1D1D1;
  108. }
  109. .empty{
  110. position: relative;
  111. top: 100px;
  112. }
  113. .emptyImg{
  114. width: 120px;
  115. position: relative;
  116. left: 50%;
  117. margin-left: -60px;
  118. }
  119. .emptyImgSearch{
  120. width: 100px;
  121. }
  122. .emptyTxt{
  123. text-align: center;
  124. color: #AAA;
  125. font-size: 12px;
  126. margin-top: 15px;
  127. }
  128. // .titleIcon{
  129. // width: 16px;
  130. // margin: 0px 12px 0 12px;
  131. // position: relative;
  132. // top: 2px;
  133. // }
  134. // .warningbox{
  135. // .titleIcon{
  136. // width: 16px;
  137. // margin: 0px 12px 0 -5px;
  138. // position: relative;
  139. // top: 2px;
  140. // }
  141. // }
  142. .loading{
  143. position: fixed;
  144. width: 100%;
  145. height: 100%;
  146. left: 0;
  147. top: 0;
  148. z-index: 100;
  149. display: none;
  150. }
  151. .loadingMask{
  152. position: absolute;
  153. width: 100%;
  154. height: 100%;
  155. background-color: #fff;
  156. opacity: 0.5;
  157. filter:alpha(opacity=50);
  158. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50);";
  159. }
  160. .loadingImg{
  161. width: 40px;
  162. position: absolute;
  163. left: 50%;
  164. top: 50%;
  165. margin: -20px 0 0 -20px;
  166. }
  167. .emergency {
  168. position: fixed;
  169. right: 20px;
  170. top: 0;
  171. .disPub {
  172. width: 40px;
  173. height: 40px;
  174. line-height: 40px;
  175. position: absolute;
  176. left: 0;
  177. text-align: center;
  178. border-radius: 50%;
  179. color: #fff;
  180. background-color: #f93333;
  181. }
  182. .singleDis {
  183. left: -25px;
  184. display: none;
  185. }
  186. .allDis {
  187. display: none;
  188. z-index: 10;
  189. moz-user-select: -moz-none;
  190. -moz-user-select: none;
  191. -o-user-select: none;
  192. -webkit-user-select: none;
  193. -ms-user-select: none;
  194. user-select: none;
  195. position: fixed;
  196. top: 0;
  197. right: 5px;
  198. width: auto;
  199. height: 40px;
  200. line-height: 40px;
  201. border-radius: 22px;
  202. border: 2px solid #f93333;
  203. background-color: #fff;
  204. padding-left: 50px;
  205. padding-right: 30px;
  206. cursor: pointer;
  207. .right {
  208. position: absolute;
  209. right: 5px;
  210. top: 9px;
  211. }
  212. }
  213. }
  214. // CDSS6.0
  215. .tab{
  216. color: @tabColor;
  217. margin-right: 20px;
  218. display: inline-block;
  219. }
  220. .moduleItem{
  221. border: 1px solid #EAEDF1;
  222. margin: 0 0 0px 0;
  223. }
  224. .longBox,.shortBox{
  225. padding: 4px 10px;
  226. }
  227. .diag{
  228. .longBox,.shortBox{
  229. padding: 0 10px;
  230. }
  231. }
  232. .longBox{
  233. display: none;
  234. }
  235. .pushItemBox{
  236. position: relative;
  237. display: inline-block;
  238. padding-right: 18px;
  239. }
  240. .pushItemName{
  241. position: relative;
  242. display: inline-block;
  243. }
  244. .infoImg{
  245. width: 15px;
  246. position: absolute;
  247. top: 2px;
  248. cursor: pointer;
  249. display: none;
  250. right: 2px;
  251. }
  252. .pushItemBox:hover{
  253. .infoImg{
  254. display: block;
  255. }
  256. }
  257. .showMore,.showLess{
  258. display: inline-block;
  259. cursor: pointer;
  260. float: right;
  261. color: #3B9ED0;
  262. }
  263. .moduleTitle{
  264. height: 30px;
  265. line-height: 30px;
  266. font-size: 14px;
  267. font-weight: 600;
  268. .titleIcon{
  269. width: 20px;
  270. position: relative;
  271. top: 5px;
  272. margin: 0 8px;
  273. }
  274. }
  275. .casewriting .titleIcon{
  276. width:14px;
  277. }
  278. .iconArrowImg{
  279. width: 14px;
  280. }
  281. .moduleBox{
  282. padding: 5px 0;
  283. }
  284. .moduleBoxTitle{
  285. padding: 0 10px;
  286. line-height: 27px;
  287. font-weight: 600;
  288. }
  289. .iconMark{
  290. width: 4px;
  291. position: absolute;
  292. left: 20px;
  293. top: 3px;
  294. }
  295. .billingPushItem{
  296. padding: 0 10px 0 30px;
  297. position: relative;
  298. }
  299. .moduleItem{
  300. border-radius: 4px;
  301. .moduleBox{
  302. border-bottom: 1px solid #EAEDF1;
  303. }
  304. .moduleBox:last-child{
  305. border-bottom: 0;
  306. }
  307. }
  308. .tabList{
  309. line-height: 39px;
  310. margin-bottom: 4px;
  311. padding: 0 20px 0 20px;
  312. box-sizing: border-box;
  313. }
  314. .tab{
  315. font-size:14px;
  316. color: #777777;
  317. position: relative;
  318. cursor: pointer;
  319. }
  320. .activeTab{
  321. color:#3B9ED0;
  322. font-weight: 600;
  323. font-size:16px;
  324. .activeLine{
  325. display: inline-block;
  326. width: 34%;
  327. height: 3px;
  328. left: 32%;
  329. background: #3B9ED0;
  330. position: absolute;
  331. bottom: 0;
  332. }
  333. }
  334. .recommendWrap{
  335. position: absolute;
  336. box-sizing: border-box;
  337. width: 100%;
  338. height: 100%;
  339. overflow-y: auto;
  340. padding: 0 15px 50px 15px;
  341. }
  342. .staticSearchB ul{
  343. position: absolute;
  344. height: 480px;
  345. // width: 100%;
  346. /* right: 30px; */
  347. left: 0;
  348. overflow: auto;
  349. }
  350. .warning{
  351. background: #FF8042;
  352. color: #fff;
  353. padding: 10px 40px;
  354. }
  355. .warningTitImg{
  356. width: 24px;
  357. position: absolute;
  358. left: -28px;
  359. top: -3px;
  360. }
  361. .warningTitle{
  362. position: relative;
  363. margin-right: 15px;
  364. }
  365. .medicalKonwledgeWrap{
  366. padding: 0 30px;
  367. }
  368. .titleIcon{
  369. width: 20px;
  370. }
  371. .newIcon{
  372. width: 27px;
  373. position: relative;
  374. top: 2px;
  375. display: none;
  376. }
  377. .new-icon .newIcon{
  378. display: inline-block;
  379. }
  380. .generalTreatInfo{
  381. padding: 4px 10px;
  382. box-sizing: border-box;
  383. position: relative;
  384. ol li {
  385. list-style: inside;
  386. }
  387. ul {
  388. padding-left: 20px;
  389. li {
  390. list-style: decimal;
  391. }
  392. }
  393. }
  394. .isOverFlow{
  395. overflow: hidden;
  396. max-height: 65px;
  397. }
  398. .showMoreGeneralTreat{
  399. position: absolute;
  400. cursor: pointer;
  401. color: #3B9ED0;
  402. right: 10px;
  403. bottom: 3px;
  404. background: #fff;
  405. }
  406. .showLessGeneralTreat{
  407. display: inline-block;
  408. cursor: pointer;
  409. float: right;
  410. color: #3B9ED0;
  411. }
  412. .shortStrBox,.longStrBox{
  413. position: relative;
  414. padding: 4px 0;
  415. }
  416. .longStrBox{
  417. display: none;
  418. }
  419. .showMoreCaseWriting,.showLessCaseWriting{
  420. display: inline-block;
  421. cursor: pointer;
  422. float: right;
  423. color: #3B9ED0;
  424. img{
  425. margin-left: 4px;
  426. }
  427. }