cdssHorizontal.less 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835
  1. @import "./common.less";
  2. .bodyWrap {
  3. padding: 0 0 0 43px;
  4. position: relative;
  5. min-height: 244px;
  6. border-bottom: 1px solid #ebebeb;
  7. min-width: 1127px;
  8. box-shadow: 1px 1px 5px 2px #ebebeb;
  9. }
  10. .versionWrapper {
  11. display: inline-block;
  12. width: 43px;
  13. height: 100%;
  14. position: absolute;
  15. background: @bgcBlue;
  16. color: #fff;
  17. font-size: 12px;
  18. left: 0px;
  19. }
  20. .versionTop {
  21. position: absolute;
  22. width: 100%;
  23. height: 160px;
  24. cursor: pointer;
  25. }
  26. .versionBottom {
  27. position: absolute;
  28. width: 100%;
  29. height: 70px;
  30. bottom: 0;
  31. font-size: 12px;
  32. cursor: pointer;
  33. }
  34. .pushDisclaimer {
  35. display: inline-block;
  36. width: 13px;
  37. position: absolute;
  38. top: 10px;
  39. left: 7px;
  40. font-size: 12px;
  41. }
  42. .logoTxt {
  43. display: inline-block;
  44. width: 10px;
  45. position: absolute;
  46. left: 25px;
  47. top: 10px;
  48. font-size: 12px;
  49. }
  50. .versionTxt {
  51. display: inline-block;
  52. width: 10px;
  53. position: absolute;
  54. font-size: 12px;
  55. left: 7px;
  56. }
  57. .tabList {
  58. width: 100%;
  59. height: 34px;
  60. background-color: #fff;
  61. color: #333333;
  62. // box-sizing: border-box;
  63. z-index: 99;
  64. border-bottom: 8px solid #e6e7e8;
  65. }
  66. .tab {
  67. position: relative;
  68. width: 106px;
  69. height: 34px;
  70. line-height: 34px;
  71. background: #ffffff;
  72. cursor: pointer;
  73. text-align: center;
  74. float: left;
  75. }
  76. .tabName {
  77. display: inline-block;
  78. text-align: center;
  79. }
  80. .activeTab {
  81. font-weight: 500;
  82. background: #e3f0ff;
  83. color: @bgcBlue;
  84. }
  85. .activeLine {
  86. display: none;
  87. position: absolute;
  88. left: 0;
  89. bottom: 0;
  90. width: 106px;
  91. height: 4px;
  92. background: #4f9ff3;
  93. }
  94. .contentBox {
  95. position: absolute;
  96. height: 100%;
  97. left: 43px;
  98. // overflow-y: auto;
  99. }
  100. .moduleWrapper {
  101. position: absolute;
  102. width: 100%;
  103. height: 202px;
  104. }
  105. .leftWrapper,
  106. .rightWrapper {
  107. position: relative;
  108. height: 202px;
  109. display: inline-block;
  110. box-sizing: border-box;
  111. overflow-y: auto;
  112. /* chrome & safari 浏览器 */
  113. /*滚动条整体部分,必须要设置*/
  114. &::-webkit-scrollbar {
  115. width: 10px;
  116. height: 10px;
  117. background-color: #fff;
  118. }
  119. /*滚动条的轨道*/
  120. &::-webkit-scrollbar-track {
  121. background-color: #fff;
  122. }
  123. /*滚动条的轨道*/
  124. &::-webkit-scrollbar-track {
  125. background-color: none;
  126. }
  127. /*滚动条的滑块按钮*/
  128. &::-webkit-scrollbar-thumb {
  129. width: 8px;
  130. height: 63px;
  131. background: #4f9ff3;
  132. border-radius: 14px;
  133. // box-shadow: inset 0 0 5px #f00;
  134. }
  135. /*滚动条的上下两端的按钮*/
  136. // .right_content::-webkit-scrollbar-button,
  137. // ul::-webkit-scrollbar-button {
  138. // height: 0;
  139. // background-color: #fff;
  140. // }
  141. }
  142. .leftWrapper {
  143. width: 58.5%;
  144. // border-right: 1px solid #E6E6E6;
  145. float: left;
  146. padding: 10px 10px 0 10px;
  147. box-sizing: border-box;
  148. }
  149. .rightWrapper {
  150. width: 40%;
  151. padding: 0px 10px;
  152. display: none;
  153. margin: 0 10px;
  154. border-left: 1px solid #e6e6e6;
  155. }
  156. .leftBox,
  157. .rightBox {
  158. position: relative;
  159. }
  160. .moduleWrapper {
  161. display: none;
  162. }
  163. .moduleItem {
  164. padding: 0 0 0 110px;
  165. box-sizing: border-box;
  166. line-height: 27px;
  167. &:hover {
  168. background: #f6f6f6;
  169. }
  170. }
  171. .moduleItemTitBox {
  172. display: inline-block;
  173. width: 110px;
  174. height: 27px;
  175. box-sizing: border-box;
  176. position: absolute;
  177. left: 0;
  178. margin-top: -1px;
  179. }
  180. .casewriting .moduleItemTitBox .moduleTitle {
  181. color: @colorWaring;
  182. }
  183. .titleIcon {
  184. width: 18px;
  185. margin: 0px 5px 0 5px;
  186. position: relative;
  187. top: 4px;
  188. }
  189. .treatIcon {
  190. width: 20px;
  191. position: relative;
  192. top: 4px;
  193. margin-right: 6px;
  194. }
  195. .infoImg {
  196. width: 15px;
  197. }
  198. .moduleTitle {
  199. font-size: 14px;
  200. font-weight: 500;
  201. color: @bgcBlue;
  202. }
  203. .diag .moduleTitle {
  204. // color: #ff656b;
  205. }
  206. .rightBox .moduleTitle {
  207. color: #1e1e1e;
  208. }
  209. .warning .moduleTitle {
  210. color: #fff;
  211. background: #ff7f5b;
  212. width: 83px;
  213. height: 21px;
  214. line-height: 21px;
  215. margin-top: 4px;
  216. img {
  217. width: 16px;
  218. vertical-align: top;
  219. margin-top: -1.5px;
  220. margin-right: 13px;
  221. }
  222. }
  223. .warning {
  224. margin-bottom: 10px;
  225. }
  226. .warning .moduleItemTitBox {
  227. width: 83px;
  228. }
  229. .pushItemBox {
  230. padding-right: 18px;
  231. position: relative;
  232. display: inline-block;
  233. // color: #1677FF;
  234. }
  235. .infoImg {
  236. width: 15px;
  237. position: absolute;
  238. top: 7px;
  239. cursor: pointer;
  240. display: none;
  241. right: 2px;
  242. }
  243. .pushItemBox:hover {
  244. .infoImg {
  245. display: block;
  246. }
  247. }
  248. .searchBox {
  249. margin: 30px 0 0 30px;
  250. }
  251. .search {
  252. color: @bgcBlue;
  253. border-bottom: 1px solid @bgcBlue;
  254. cursor: pointer;
  255. }
  256. .tips-cont {
  257. position: relative;
  258. background: #fff7f2;
  259. max-height: 81px;
  260. overflow: hidden;
  261. .moduleTitle {
  262. position: absolute;
  263. top: 0;
  264. font-size: 14px;
  265. font-weight: 600;
  266. color: @colorWaring;
  267. }
  268. }
  269. .moduleItem.crivalue,
  270. .moduleItem.rationali,
  271. .moduleItem.highrisk,
  272. .moduleItem.otherremind {
  273. max-height: 81px;
  274. overflow-y: hidden;
  275. // background: #FFE8DD;
  276. position: relative;
  277. .moduleTitle {
  278. color: @colorWaring;
  279. }
  280. .moduleBox {
  281. padding: 0 0 0 90px;
  282. position: relative;
  283. }
  284. .moduleBoxName {
  285. position: absolute;
  286. left: 0;
  287. font-size: 12px;
  288. color: @colorWaring;
  289. display: inline-block;
  290. border: 1px solid @colorWaring;
  291. line-height: 18px;
  292. top: 5px;
  293. padding: 0 7px;
  294. border-radius: 9px;
  295. }
  296. }
  297. .billingPushItem {
  298. color: @fontColor;
  299. }
  300. .shortBox {
  301. color: @fontColor;
  302. }
  303. .showMore,
  304. .showLess {
  305. display: inline-block;
  306. cursor: pointer;
  307. float: right;
  308. line-height: 27px;
  309. color: #3b9ed0;
  310. position: relative;
  311. right: 5px;
  312. }
  313. .showMoreNewPage,
  314. .showMoreCaseWrite {
  315. display: inline-block;
  316. cursor: pointer;
  317. position: absolute;
  318. line-height: 27px;
  319. color: @bgcBlue;
  320. right: 5px;
  321. bottom: 0;
  322. }
  323. .longStrBox {
  324. max-height: 180px;
  325. position: absolute;
  326. width: 100%;
  327. left: 0;
  328. top: 5px;
  329. background: #fff;
  330. border: 1px solid #3b9ed0;
  331. box-sizing: border-box;
  332. border-radius: 1px;
  333. padding: 0 0 0 80px;
  334. display: none;
  335. z-index: 1;
  336. overflow: auto;
  337. &::-webkit-scrollbar {
  338. width: 10px;
  339. height: 10px;
  340. background-color: #fff;
  341. }
  342. /*滚动条的轨道*/
  343. &::-webkit-scrollbar-track {
  344. background-color: #fff;
  345. }
  346. /*滚动条的轨道*/
  347. &::-webkit-scrollbar-track {
  348. background-color: none;
  349. }
  350. /*滚动条的滑块按钮*/
  351. &::-webkit-scrollbar-thumb {
  352. width: 8px;
  353. height: 63px;
  354. background: #4f9ff3;
  355. border-radius: 14px;
  356. // box-shadow: inset 0 0 5px #f00;
  357. }
  358. /*滚动条的上下两端的按钮*/
  359. // .right_content::-webkit-scrollbar-button,
  360. // ul::-webkit-scrollbar-button {
  361. // height: 0;
  362. // background-color: #fff;
  363. // }
  364. }
  365. .longStrBoxTitle {
  366. position: absolute;
  367. left: 0;
  368. display: inline-block;
  369. width: 80px;
  370. text-align: right;
  371. font-weight: 600;
  372. }
  373. .diag .moduleBox {
  374. padding: 0 0 0 78px;
  375. position: relative;
  376. }
  377. .diag .moduleBoxName {
  378. position: absolute;
  379. left: 0;
  380. font-size: 12px;
  381. color: @bgcBlue;
  382. // background: #e2eaf2;
  383. border: 0px;
  384. display: inline-block;
  385. line-height: 16px;
  386. border-radius: 2px;
  387. top: 4px;
  388. padding: 2px 5px;
  389. border-radius: 9px;
  390. border: 1px solid @bgcBlue;
  391. }
  392. .rightBoxTitle {
  393. height: 36px;
  394. line-height: 36px;
  395. color: #2fc6c7;
  396. border-bottom: 1px solid #e6e6e6;
  397. font-weight: 600;
  398. }
  399. .versionIcon {
  400. width: 12px;
  401. position: absolute;
  402. left: 25px;
  403. bottom: 8px;
  404. display: none;
  405. }
  406. .new-icon .versionIcon {
  407. display: inline-block;
  408. }
  409. .iconArrowImg {
  410. width: 10px;
  411. }
  412. .showLess .iconArrowImg {
  413. position: relative;
  414. top: -5px;
  415. }
  416. /*.medicine .titleIcon, .operation .titleIcon, .general .titleIcon, .nurse .titleIcon {
  417. width: 13px;
  418. position: relative;
  419. top: 2px;
  420. }*/
  421. .moduleItem.casewriting {
  422. padding: 0 0 0 160px;
  423. // background: rgba(60,172,228,.17);
  424. // filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#333CACE4,endColorstr=#333CACE4);
  425. background: #fff7f2;
  426. margin-top: 7px;
  427. max-height: 81px;
  428. overflow-y: hidden;
  429. position: relative;
  430. }
  431. .casewriting .moduleItemTitBox {
  432. width: 160px;
  433. color: @colorWaring;
  434. }
  435. // .casewriting .moduleTitle {
  436. // color: @colorWaring;
  437. // }
  438. .casewriting {
  439. position: relative;
  440. box-sizing: border-box;
  441. max-height: 65px;
  442. overflow: hidden;
  443. }
  444. .isOverFlow {
  445. overflow: hidden;
  446. max-height: 88px;
  447. }
  448. .showMoreGeneralTreat {
  449. position: absolute;
  450. cursor: pointer;
  451. color: #3b9ed0;
  452. right: 0px;
  453. bottom: 0px;
  454. background: #fff;
  455. }
  456. .generalTreatInfo {
  457. position: relative;
  458. padding: 0 28px 0 0;
  459. color: @fontColor;
  460. ol li {
  461. list-style: decimal;
  462. list-style-position: inside;
  463. height: 28px;
  464. line-height: 28px;
  465. }
  466. ul {
  467. padding-left: 15px;
  468. li {
  469. list-style: inside;
  470. list-style-position: inside;
  471. height: 28px;
  472. line-height: 28px;
  473. }
  474. }
  475. }
  476. .disName {
  477. font-size: 14px;
  478. color: #1e1e1e;
  479. margin: 10px 0;
  480. font-weight: 600;
  481. }
  482. .followUpWrap {
  483. position: absolute;
  484. height: 202px;
  485. padding: 10px 20px;
  486. box-sizing: border-box;
  487. overflow-y: auto;
  488. /* chrome & safari 浏览器 */
  489. /*滚动条整体部分,必须要设置*/
  490. &::-webkit-scrollbar {
  491. width: 10px;
  492. height: 10px;
  493. background-color: #fff;
  494. }
  495. /*滚动条的轨道*/
  496. &::-webkit-scrollbar-track {
  497. background-color: #fff;
  498. }
  499. /*滚动条的轨道*/
  500. &::-webkit-scrollbar-track {
  501. background-color: none;
  502. }
  503. /*滚动条的滑块按钮*/
  504. &::-webkit-scrollbar-thumb {
  505. width: 8px;
  506. height: 63px;
  507. background: #4f9ff3;
  508. border-radius: 14px;
  509. // box-shadow: inset 0 0 5px #f00;
  510. }
  511. /*滚动条的上下两端的按钮*/
  512. // .right_content::-webkit-scrollbar-button,
  513. // ul::-webkit-scrollbar-button {
  514. // height: 0;
  515. // background-color: #fff;
  516. // }
  517. }
  518. .operaNameBox {
  519. background-color: #eff1f6;
  520. height: 27px;
  521. line-height: 27px;
  522. color: #777777;
  523. padding-left: 10px;
  524. }
  525. .operaNameBold {
  526. color: #333;
  527. font-weight: bold;
  528. font-size: 12px;
  529. }
  530. .infoWrap {
  531. // max-height: 175px;
  532. // overflow: auto;
  533. // padding-top: 8px;
  534. box-sizing: border-box;
  535. color: @fontColor;
  536. .infoBox {
  537. padding-left: 10px;
  538. padding-top: 8px;
  539. box-sizing: border-box;
  540. &:hover {
  541. background-color: #fff;
  542. }
  543. }
  544. .infoBox p {
  545. color: #1e1e1e;
  546. font-weight: bold;
  547. margin-bottom: 10px;
  548. }
  549. }
  550. .medicalKonwledgeWrap {
  551. height: 202px;
  552. overflow: auto;
  553. }
  554. .readMorePlan {
  555. margin-top: 20px;
  556. padding-left: 10px;
  557. width: 116px;
  558. height: 28px;
  559. line-height: 28px;
  560. background: #e7f1ff;
  561. border-radius: 2px;
  562. cursor: pointer;
  563. a {
  564. list-style: none;
  565. display: inline-block;
  566. color: @bgcBlue;
  567. }
  568. img {
  569. width: 5px;
  570. height: 9px;
  571. margin-left: 7px;
  572. }
  573. }
  574. .checkFront {
  575. position: relative;
  576. padding-left: 92px;
  577. margin: 5px 0;
  578. .lisStrFront,
  579. .pacsStrFront {
  580. position: absolute;
  581. left: 0;
  582. top: 0px;
  583. width: 62px;
  584. height: 22px;
  585. line-height: 22px;
  586. border-radius: 4px;
  587. color: @bgcBlue;
  588. border: 1px solid @bgcBlue;
  589. text-align: center;
  590. font-size: 12px;
  591. img {
  592. width: 15px;
  593. height: 15px;
  594. margin-bottom: -1.5px;
  595. }
  596. }
  597. }
  598. .circle {
  599. display: inline-block;
  600. width: 5px;
  601. height: 5px;
  602. background: @bgcBlue;
  603. border-radius: 50%;
  604. position: absolute;
  605. left: -10px;
  606. top: 7px;
  607. }
  608. .lisBox {
  609. // position: absolute;
  610. // left: 50px;
  611. }
  612. .qcWrap {
  613. overflow-y: auto;
  614. }
  615. /*******中医********/
  616. .tcm-item {
  617. display: none;
  618. .title {
  619. float: left;
  620. height: 30px;
  621. padding: 0 12px;
  622. margin-top: 9px;
  623. border-radius: 8px 8px 0px 0px;
  624. img {
  625. vertical-align: middle;
  626. width: 20px;
  627. height: 20px;
  628. margin-top: -1.5px;
  629. }
  630. .h2 {
  631. font-size: 14px;
  632. color: @bgcBlue;
  633. }
  634. .go {
  635. margin-right: 10px;
  636. font-size: 14px;
  637. color: #1677ff;
  638. text-decoration: none;
  639. cursor: pointer;
  640. img {
  641. width: 5px;
  642. height: 9px;
  643. vertical-align: middle;
  644. }
  645. }
  646. }
  647. .go-btn,
  648. .go-push {
  649. display: inline-block;
  650. width: 80px;
  651. height: 25px;
  652. line-height: 25px;
  653. border-radius: 4px;
  654. text-align: center;
  655. background: #e7f1ff;
  656. text-decoration: none;
  657. color: #1677ff;
  658. }
  659. .content {
  660. .infos {
  661. .label {
  662. color: #333;
  663. }
  664. .val {
  665. color: #666;
  666. }
  667. li {
  668. float: left;
  669. overflow: hidden;
  670. text-overflow: ellipsis;
  671. white-space: nowrap;
  672. width: 150px;
  673. &:first-child {
  674. width: 262px;
  675. }
  676. }
  677. }
  678. .infos {
  679. height: 24px;
  680. }
  681. .detail {
  682. padding: 0 8px 27px 4px;
  683. margin-right: 20px;
  684. max-height: 125px;
  685. overflow-y: hidden;
  686. position: relative;
  687. .go-push {
  688. cursor: pointer;
  689. width: 60px;
  690. position: absolute;
  691. left: 502px;
  692. bottom: 4px;
  693. }
  694. li {
  695. margin-bottom: 6px;
  696. &:hover {
  697. background: #f6f6f6;
  698. }
  699. }
  700. .label {
  701. float: left;
  702. border-left: 4px solid #267fd7;
  703. padding-left: 5px;
  704. line-height: 12px;
  705. margin-top: 4px;
  706. }
  707. .val {
  708. margin-left: 65px;
  709. .name {
  710. color: #333;
  711. }
  712. .desc {
  713. color: #666;
  714. width: 494px;
  715. overflow: hidden;
  716. text-overflow: ellipsis;
  717. white-space: nowrap;
  718. font-size: 12px;
  719. /*&:nth-child(2) { //ie8不兼容,用jquery
  720. width: 420px;
  721. }*/
  722. }
  723. }
  724. }
  725. .a-link {
  726. display: inline-block;
  727. width: 100%;
  728. border: 1px @bgcBlue solid;
  729. color: @bgcBlue;
  730. height: 30px;
  731. line-height: 30px;
  732. border-radius: 4px;
  733. cursor: pointer;
  734. background: url("../images/go.png") 94% center no-repeat;
  735. text-indent: -8px;
  736. text-decoration: none;
  737. }
  738. }
  739. }
  740. .recipe {
  741. .title {
  742. width: 124px;
  743. margin-top: 9px;
  744. }
  745. .content {
  746. margin-left: 146px;
  747. padding-top: 9px;
  748. }
  749. }
  750. .idea {
  751. .val {
  752. border: 1px #3b9ed0 solid;
  753. padding: 1px 4px;
  754. color: #3b9ed0;
  755. border-radius: 2px;
  756. cursor: pointer;
  757. &.active {
  758. background: #3b9ed0;
  759. color: #fff;
  760. }
  761. }
  762. .go-text {
  763. color: #49a3d2;
  764. font-size: 14px;
  765. text-decoration: none;
  766. }
  767. .zhifa {
  768. display: inline-block;
  769. .val {
  770. margin-right: 10px;
  771. }
  772. }
  773. img {
  774. vertical-align: middle;
  775. }
  776. }
  777. .knowledge .content p {
  778. display: inline-block;
  779. width: 88px;
  780. margin-top: 8px;
  781. margin-right: 10px;
  782. text-align: center;
  783. }
  784. .evaluationtitle {
  785. color: #1677ff;
  786. }
  787. .evaluationtitle:hover {
  788. // text-decoration: underline;
  789. // color: #0000ff;
  790. cursor: pointer;
  791. }
  792. .rightBox .moduleTitle {
  793. color: #333333;
  794. font-weight: 500;
  795. }
  796. .tcmWarp {
  797. padding-bottom: 10px;
  798. box-sizing: border-box;
  799. overflow: auto;
  800. /* chrome & safari 浏览器 */
  801. /*滚动条整体部分,必须要设置*/
  802. &::-webkit-scrollbar {
  803. width: 10px;
  804. height: 10px;
  805. background-color: #fff;
  806. }
  807. /*滚动条的轨道*/
  808. &::-webkit-scrollbar-track {
  809. background-color: #fff;
  810. }
  811. /*滚动条的轨道*/
  812. &::-webkit-scrollbar-track {
  813. background-color: none;
  814. }
  815. /*滚动条的滑块按钮*/
  816. &::-webkit-scrollbar-thumb {
  817. width: 8px;
  818. height: 63px;
  819. background: #4f9ff3;
  820. border-radius: 14px;
  821. // box-shadow: inset 0 0 5px #f00;
  822. }
  823. /*滚动条的上下两端的按钮*/
  824. // .right_content::-webkit-scrollbar-button,
  825. // ul::-webkit-scrollbar-button {
  826. // height: 0;
  827. // background-color: #fff;
  828. // }
  829. }