cdssHorizontal.less 16 KB

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