qcScore.less 20 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. @import "./reset.less";
  2. .main-part {
  3. height: 100%;
  4. }
  5. .ellipsis {
  6. overflow: hidden;
  7. text-overflow: ellipsis;
  8. white-space: nowrap;
  9. }
  10. #loading {
  11. text-align: center;
  12. height: 2000px;
  13. margin-top: 30px;
  14. }
  15. .waring {
  16. color: #ff4d4f;
  17. margin-top: 18px;
  18. height: 18px;
  19. }
  20. .patient-info {
  21. /*height: 50px;*/
  22. background: #fff;
  23. line-height: 50px;
  24. border-bottom: 10px #eff1f6 solid;
  25. text-align: center;
  26. /*margin-bottom: 20px;*/
  27. padding-right: 80px;
  28. span {
  29. color: #333;
  30. margin-right: 40px;
  31. display: inline-block;
  32. }
  33. .check,
  34. .ywCheck {
  35. display: inline-block;
  36. padding: 0px 13px;
  37. background: #00a1ff;
  38. color: #fff;
  39. border-radius: 4px;
  40. height: 30px;
  41. line-height: 30px;
  42. position: absolute;
  43. right: 0;
  44. top: 10px;
  45. margin-right: 25px;
  46. cursor: pointer;
  47. }
  48. .ywCheck {
  49. display: none;
  50. }
  51. }
  52. .sub-menu {
  53. position: relative;
  54. width: @menuWt+15px;
  55. height: 100%;
  56. float: left;
  57. /*overflow-y: auto;*/
  58. overflow: hidden;
  59. background: @themeColor;
  60. border-right: 1px @frameBdColor solid;
  61. .logo {
  62. margin: 8px 0 44px;
  63. text-indent: 22px;
  64. height: 42px;
  65. }
  66. & > a {
  67. position: absolute;
  68. top: 50%;
  69. right: 0;
  70. z-index: 100;
  71. }
  72. & > ul,
  73. .subMenu {
  74. overflow-x: hidden;
  75. overflow-y: auto;
  76. white-space: nowrap;
  77. height: calc(100% - 140px);
  78. }
  79. & > ul > li,
  80. .subMenu > li {
  81. color: @fstColor;
  82. margin-bottom: 10px;
  83. &.menu-0 {
  84. background: url("../images/total.png") 20px 9px no-repeat;
  85. &.active {
  86. background: url("../images/total_a.png") 20px 9px no-repeat;
  87. }
  88. &.slide-up {
  89. background-color: @activeBg;
  90. }
  91. }
  92. &.menu-6 {
  93. background: url("../images/index.png") 20px 11px no-repeat;
  94. &.active {
  95. background: url("../images/index_a.png") 20px 11px no-repeat;
  96. }
  97. &.slide-up {
  98. background-color: @activeBg;
  99. }
  100. }
  101. &.menu-1 {
  102. background: url("../images/inhis.png") 19px 11px no-repeat;
  103. &.active {
  104. background: url("../images/inhis_a.png") 19px 11px no-repeat;
  105. }
  106. &.slide-up {
  107. background-color: @activeBg;
  108. }
  109. }
  110. &.menu-37 {
  111. background: url("../images/prod.png") 20px 10px no-repeat;
  112. &.active {
  113. background: url("../images/prod_a.png") 20px 10px no-repeat;
  114. }
  115. &.slide-up {
  116. background-color: @activeBg;
  117. }
  118. }
  119. &.menu-5 {
  120. background: url("../images/out.png") 20px 11px no-repeat;
  121. &.active {
  122. background: url("../images/out_a.png") 20px 11px no-repeat;
  123. }
  124. &.slide-up {
  125. background-color: @activeBg;
  126. }
  127. }
  128. }
  129. .slide-up {
  130. background-color: @activeBg !important;
  131. }
  132. .active {
  133. color: @activeColor;
  134. /*background: @activeBg;
  135. border-right: 3px @activeColor solid;*/
  136. }
  137. .subMenu > .active {
  138. color: @activeColor;
  139. /*background: @activeBg;
  140. border-right: 3px @activeColor solid;*/
  141. }
  142. .page:hover {
  143. color: @activeColor;
  144. }
  145. .list-1 {
  146. position: relative;
  147. p {
  148. color: @fstColor;
  149. &:hover {
  150. color: @activeColor;
  151. }
  152. }
  153. &:after {
  154. content: " ";
  155. display: inline-block;
  156. position: absolute;
  157. left: @menuWt+ (-30px);
  158. top: 18px;
  159. width: 10px;
  160. height: 6px;
  161. background: url("../images/icon_down.png") no-repeat;
  162. }
  163. &.slide-up:after {
  164. transform: rotate(180deg);
  165. -webkit-transform: rotate(180deg);
  166. }
  167. ul {
  168. display: none;
  169. li.page {
  170. text-indent: 55px;
  171. color: @greyColor;
  172. &.active {
  173. color: @activeColor;
  174. }
  175. &:hover {
  176. color: @activeColor;
  177. }
  178. }
  179. }
  180. }
  181. li {
  182. line-height: @menuLiHt;
  183. text-indent: 45px;
  184. cursor: pointer;
  185. }
  186. .copy-right {
  187. /*position: fixed;
  188. bottom: 0px;*/
  189. width: @menuWt+15;
  190. text-align: center;
  191. background: @themeColor;
  192. padding: 10px 0 20px;
  193. border-top: 1px @themeBorderClr solid;
  194. p {
  195. font-size: 12px;
  196. color: @trdColor;
  197. white-space: nowrap;
  198. }
  199. }
  200. }
  201. .menu-mini {
  202. display: none;
  203. width: 60px;
  204. height: 100%;
  205. background: @themeColor;
  206. position: relative;
  207. .logo {
  208. height: 50px;
  209. line-height: 50px;
  210. text-align: center;
  211. color: #dee5ef;
  212. margin-bottom: 44px;
  213. }
  214. & > a {
  215. position: absolute;
  216. top: 50%;
  217. right: 0;
  218. z-index: 1;
  219. }
  220. & > ul > li {
  221. width: 100%;
  222. height: 40px;
  223. line-height: 40px;
  224. background: url("../images/module.png") center no-repeat;
  225. cursor: pointer;
  226. margin-bottom: 10px;
  227. &:hover {
  228. &:after {
  229. // content: "";
  230. // display: inline-block;
  231. // width: 8px;
  232. // height: 32px;
  233. // background: url("../images/ar.png") no-repeat;
  234. // position: absolute;
  235. // left: 56px;
  236. // top: 4px;
  237. }
  238. .arrow-left {
  239. content: "";
  240. display: inline-block;
  241. width: 8px;
  242. height: 32px;
  243. background: url("../images/ar.png") no-repeat;
  244. position: relative;
  245. left: 56px;
  246. top: 4px;
  247. z-index: 2;
  248. }
  249. ul {
  250. display: block;
  251. }
  252. }
  253. & ul {
  254. display: none;
  255. left: 60px;
  256. position: absolute;
  257. width: 186px;
  258. background: @themeColor;
  259. border-radius: 4px;
  260. box-shadow: 1px 2px 20px -3px #000512;
  261. margin-left: 3px;
  262. z-index: 9;
  263. height: calc(100% - 80px);
  264. top: 60px;
  265. &:before {
  266. // content: "";
  267. // display: inline-block;
  268. // width: 8px;
  269. // height: 32px;
  270. // background: url("../images/ar.png") no-repeat;
  271. // position: absolute;
  272. // left: -8px;
  273. }
  274. li {
  275. height: 40px;
  276. line-height: 40px;
  277. color: @greyColor;
  278. text-indent: 30px;
  279. border-radius: 4px;
  280. &:hover,
  281. &.active {
  282. background: @activeBg;
  283. color: @activeColor;
  284. }
  285. }
  286. }
  287. &.menu-0 {
  288. background: url("../images/total.png") 20px 9px no-repeat;
  289. &:hover,
  290. &.active {
  291. background: url("../images/total_a.png") @activeBg 20px 9px no-repeat;
  292. }
  293. }
  294. &.menu-6 {
  295. background: url("../images/index.png") 20px 11px no-repeat;
  296. &:hover,
  297. &.active {
  298. background: url("../images/index_a.png") @activeBg 20px 11px no-repeat;
  299. }
  300. }
  301. &.menu-1 {
  302. background: url("../images/inhis.png") 19px 11px no-repeat;
  303. &:hover,
  304. &.active {
  305. background: url("../images/inhis_a.png") @activeBg 19px 11px no-repeat;
  306. }
  307. }
  308. &.menu-37 {
  309. background: url("../images/prod.png") 20px 10px no-repeat;
  310. &:hover,
  311. &.active {
  312. background: url("../images/prod_a.png") @activeBg 20px 10px no-repeat;
  313. }
  314. }
  315. &.menu-5 {
  316. background: url("../images/out.png") 21px 11px no-repeat;
  317. &:hover,
  318. &.active {
  319. background: url("../images/out_a.png") @activeBg 21px 11px no-repeat;
  320. }
  321. }
  322. }
  323. }
  324. .tab-container {
  325. margin-left: @menuWt+15px;
  326. background: @disColor;
  327. /*height: 100%;*/
  328. .content-box {
  329. display: none;
  330. width: 78%;
  331. height: 100%;
  332. background: #fff;
  333. position: relative;
  334. overflow-y: auto;
  335. border-right: 10px #eff1f6 solid;
  336. border-left: 10px #eff1f6 solid;
  337. box-sizing: border-box;
  338. }
  339. .content-item {
  340. display: none;
  341. /*height: 100%;*/
  342. .content-item-wrapper {
  343. margin-bottom: 50px;
  344. }
  345. /**********危急值记录*************/
  346. &.danger-record {
  347. height: auto;
  348. .title {
  349. /*position: unset;*/
  350. }
  351. }
  352. .title {
  353. /*position: absolute;
  354. top: 0;*/
  355. width: 100%;
  356. color: #333333;
  357. font-size: 16px;
  358. text-align: center;
  359. font-weight: bold;
  360. height: 44px;
  361. line-height: 44px;
  362. border-bottom: 1px #e2e5ef solid;
  363. text-indent: 20px;
  364. }
  365. .container {
  366. /*margin-top: 45px;*/
  367. padding: 20px 30px 0;
  368. height: 100%;
  369. /*overflow-y: auto;*/
  370. }
  371. .info-table {
  372. margin: 0 0 15px;
  373. }
  374. table {
  375. width: 100%;
  376. border: 1px @tableBorderColor solid;
  377. }
  378. .inline-table {
  379. display: inline;
  380. border: none;
  381. td {
  382. border: none;
  383. }
  384. }
  385. .inner-table table {
  386. border: none;
  387. td {
  388. border: none;
  389. text-align: left;
  390. vertical-align: text-bottom;
  391. width: 41%;
  392. &[rowspan] {
  393. // font-weight: bold;
  394. width: 100px;
  395. padding-left: 0;
  396. }
  397. &.active {
  398. background: @anchorBg;
  399. }
  400. }
  401. }
  402. .embed-table {
  403. border: 1px @tableBorderColor solid;
  404. & > tbody > tr:first-child > td {
  405. padding: 0;
  406. border: none;
  407. & > table td {
  408. border: 1px @tableBorderColor solid;
  409. line-height: 20px;
  410. padding: 7px 8px;
  411. white-space: nowrap;
  412. }
  413. }
  414. .table-tip {
  415. text-align: left;
  416. }
  417. }
  418. th {
  419. table {
  420. border: none;
  421. }
  422. border: 1px @tableBorderColor solid;
  423. background: @thBgColor;
  424. line-height: 20px;
  425. padding: 7px 8px;
  426. white-space: nowrap;
  427. }
  428. td {
  429. text-align: center;
  430. border: 1px @tableBorderColor solid;
  431. padding: 2px 8px;
  432. height: 20px;
  433. table,
  434. td {
  435. border: none;
  436. }
  437. }
  438. .info-item {
  439. border-bottom: 1px @borderColor solid;
  440. .text-left {
  441. width: 100%;
  442. text-align: right;
  443. }
  444. .cont {
  445. display: inline-block;
  446. min-width: 33%;
  447. margin-bottom: 5px;
  448. box-sizing: border-box;
  449. // padding-left: 5px;
  450. &.active {
  451. background: @anchorBg;
  452. }
  453. span {
  454. line-height: 20px;
  455. vertical-align: middle;
  456. }
  457. .text-indent {
  458. text-indent: 28px;
  459. }
  460. .text-bold {
  461. font-weight: bold;
  462. }
  463. .label {
  464. display: inline-block;
  465. /*min-width: 70px;*/
  466. font-weight: bold;
  467. overflow-x: hidden;
  468. }
  469. .revisitPlanTan {
  470. border: none;
  471. td {
  472. border: none;
  473. }
  474. }
  475. }
  476. &.cont-2 .cont {
  477. min-width: 48%;
  478. }
  479. &.cont-4 .cont {
  480. min-width: 23%;
  481. }
  482. &.cont-5 .cont {
  483. min-width: 19%;
  484. }
  485. &.no-border {
  486. border-bottom: none;
  487. margin-bottom: 0;
  488. }
  489. margin-bottom: 5px;
  490. .info-title {
  491. font-weight: bold;
  492. margin-bottom: 10px;
  493. }
  494. }
  495. }
  496. .operation {
  497. width: calc(22% - 12px);
  498. height: 100%;
  499. margin-right: 10px;
  500. position: relative;
  501. background: #fff;
  502. display: none;
  503. .flaw-title {
  504. position: absolute;
  505. top: 0;
  506. width: 100%;
  507. height: 44px;
  508. color: #333333;
  509. font-weight: bold;
  510. line-height: 44px;
  511. border-bottom: 1px #e2e5ef solid;
  512. /*margin-bottom: 20px;*/
  513. span {
  514. font-size: 16px;
  515. margin-left: 15px;
  516. }
  517. a {
  518. float: right;
  519. width: 66px;
  520. height: 28px;
  521. margin: 10px 20px 0 0;
  522. line-height: 28px;
  523. text-align: center;
  524. border-radius: 4px;
  525. color: @activeColor;
  526. font-weight: normal;
  527. border: 1px @activeColor solid;
  528. }
  529. }
  530. .flaw-box {
  531. margin-top: 45px;
  532. padding-top: 5px;
  533. height: 100%;
  534. overflow-y: auto;
  535. }
  536. .flaw-item {
  537. display: none;
  538. position: relative;
  539. margin: 0 12px 10px 12px;
  540. /*border-bottom:1px #E2E5EF solid;*/
  541. padding-bottom: 6px;
  542. &:after {
  543. display: block;
  544. content: "";
  545. width: 98%;
  546. height: 1px;
  547. background: @borderColor;
  548. position: absolute;
  549. bottom: -5px;
  550. left: 1%;
  551. }
  552. p {
  553. text-indent: 5px;
  554. }
  555. .opers {
  556. padding-right: 5px;
  557. }
  558. .info {
  559. p {
  560. font-size: 12px;
  561. }
  562. .name {
  563. max-width: 100px;
  564. }
  565. }
  566. .delete {
  567. text-decoration: line-through;
  568. }
  569. .title {
  570. box-sizing: border-box;
  571. padding: 5px;
  572. img {
  573. vertical-align: middle;
  574. }
  575. }
  576. &.active .title {
  577. background: @anchorBg;
  578. }
  579. }
  580. }
  581. .oper {
  582. text-align: right;
  583. }
  584. }
  585. .empty {
  586. /*display: none;*/
  587. margin-top: 120px;
  588. text-align: center;
  589. img {
  590. width: 140px;
  591. }
  592. p {
  593. margin-top: 15px;
  594. font-size: 12px;
  595. text-indent: 10px;
  596. color: #aaa;
  597. }
  598. }
  599. .empty2 {
  600. margin-top: 60px;
  601. text-align: center;
  602. height: 170px;
  603. td {
  604. width: 100%;
  605. }
  606. img {
  607. width: 140px;
  608. }
  609. p {
  610. // margin-top: 15px;
  611. font-size: 12px;
  612. text-indent: 10px;
  613. color: #aaa;
  614. }
  615. }
  616. .edit-box {
  617. p {
  618. margin-bottom: 10px;
  619. .red {
  620. display: inline-block;
  621. width: auto;
  622. text-indent: 5px;
  623. }
  624. }
  625. .warning {
  626. display: none;
  627. }
  628. input {
  629. border: 1px @borderColor solid;
  630. width: 300px;
  631. height: 38px;
  632. text-indent: 10px;
  633. line-height: 38px;
  634. border-radius: 2px;
  635. box-sizing: border-box;
  636. }
  637. .flaw-drop-input {
  638. padding-right: 28px;
  639. box-sizing: border-box;
  640. }
  641. #addQcMsg {
  642. padding-right: 0;
  643. }
  644. span {
  645. display: inline-block;
  646. width: 70px;
  647. margin-right: 12px;
  648. text-align: right;
  649. }
  650. }
  651. .add-box,
  652. .edit-box {
  653. .drop-box {
  654. position: relative;
  655. margin-bottom: 10px;
  656. &:after {
  657. content: "";
  658. display: inline-block;
  659. width: 13px;
  660. height: 7px;
  661. background: url("../images/arrow_down.png") no-repeat;
  662. background-size: 13px 7px;
  663. position: absolute;
  664. left: 365px;
  665. top: 16px;
  666. }
  667. }
  668. ul {
  669. display: none;
  670. position: absolute;
  671. right: 40px;
  672. width: 300px;
  673. background: #fff;
  674. border: 1px @tableBorderColor solid;
  675. max-height: 158px;
  676. overflow: auto;
  677. box-sizing: border-box;
  678. li {
  679. line-height: 25px;
  680. padding: 0 5px;
  681. cursor: pointer;
  682. white-space: nowrap;
  683. overflow: hidden;
  684. text-overflow: ellipsis;
  685. &:hover {
  686. background: @tableBorderColor;
  687. }
  688. }
  689. }
  690. .show {
  691. ul {
  692. display: block;
  693. }
  694. &:after {
  695. background-image: url("../images/arrow_up.png");
  696. }
  697. }
  698. }
  699. .standard_table {
  700. tr {
  701. td.standard_fst {
  702. width: 160px;
  703. }
  704. }
  705. }
  706. /*******手术知情同意书*********/
  707. .surgery-book {
  708. .book-item {
  709. margin-bottom: 15px;
  710. :not(:first-child) {
  711. text-indent: 15px;
  712. }
  713. .intent {
  714. text-indent: 30px;
  715. }
  716. .intent-1 {
  717. margin-left: 48px;
  718. text-indent: 0;
  719. }
  720. &.clearfix {
  721. p {
  722. width: 100%;
  723. }
  724. }
  725. .fr {
  726. margin-top: 25px;
  727. text-align: right;
  728. }
  729. }
  730. }
  731. /********术后首次病程记录及谈话记录*******/
  732. .textR {
  733. text-align: right;
  734. }
  735. .textL {
  736. text-align: left;
  737. }
  738. .textPreLine {
  739. white-space: pre-line;
  740. }
  741. .textIndent30 {
  742. text-indent: 30px;
  743. }
  744. .textBold {
  745. font-weight: bold;
  746. }
  747. .padL30 {
  748. padding-left: 30px;
  749. }
  750. .displayInlineBlock {
  751. display: inline-block;
  752. }
  753. /********缺陷总览*********/
  754. .flaw-table {
  755. display: none;
  756. height: 97%;
  757. background: #fff;
  758. margin: 0 10px 10px;
  759. overflow-y: auto;
  760. /*overflow-y: auto;
  761. margin: 0 30px 0 20px;*/
  762. .slide-up {
  763. cursor: pointer;
  764. color: @activeColor;
  765. &:before {
  766. display: inline-block;
  767. width: 14px;
  768. height: 14px;
  769. content: "";
  770. font-size: 18px;
  771. color: @activeColor;
  772. text-align: center;
  773. vertical-align: middle;
  774. margin-right: 4px;
  775. background: url("../images/slice.png") no-repeat;
  776. }
  777. &.down:before {
  778. background: url("../images/add.png") no-repeat;
  779. }
  780. }
  781. .page-item {
  782. display: none;
  783. h2 {
  784. height: 44px;
  785. line-height: 44px;
  786. border-bottom: 1px @tableBorderColor solid;
  787. font-size: 16px;
  788. margin-bottom: 20px;
  789. text-indent: 20px;
  790. font-weight: bold;
  791. }
  792. }
  793. .interval-color {
  794. tr:nth-child(2n) {
  795. background: #eff1f6;
  796. }
  797. }
  798. table {
  799. width: 97%;
  800. border: 1px solid #e2e5ef;
  801. border-collapse: collapse; /*关键代码*/
  802. /*margin-bottom: 40px;*/
  803. margin: 0 30px 40px 20px;
  804. thead {
  805. background: #eff0f9;
  806. }
  807. /*tr[code]{
  808. display: none;
  809. }*/
  810. th,
  811. td {
  812. height: 32px;
  813. box-sizing: border-box;
  814. padding: 0 20px;
  815. border: 1px solid #e2e5ef;
  816. border-collapse: collapse; /*关键代码*/
  817. }
  818. th {
  819. font-size: 14px;
  820. font-weight: 500;
  821. }
  822. td {
  823. font-size: 14px;
  824. font-weight: 400;
  825. &.red {
  826. text-align: center;
  827. }
  828. }
  829. }
  830. }
  831. .high-light {
  832. background: @highlighBg;
  833. &.active {
  834. background: none;
  835. }
  836. }
  837. .scroll-table {
  838. thead,
  839. tbody {
  840. display: block;
  841. width: 100%;
  842. box-sizing: border-box;
  843. th,
  844. td {
  845. width: 49%;
  846. display: inline-block;
  847. box-sizing: border-box;
  848. border: none;
  849. line-height: 32px;
  850. &:first-child {
  851. width: 30%;
  852. border-right: 1px @tableBorderColor solid;
  853. }
  854. &:last-child {
  855. width: 20%;
  856. border-left: 1px @tableBorderColor solid;
  857. }
  858. }
  859. td[colspan] {
  860. border-right: none;
  861. border-left: none;
  862. }
  863. }
  864. thead {
  865. border-bottom: 1px @tableBorderColor solid;
  866. tr {
  867. width: calc(100% - 18px);
  868. border-bottom: none;
  869. }
  870. }
  871. tbody {
  872. overflow-y: auto;
  873. }
  874. tr {
  875. display: block;
  876. border-bottom: 1px @tableBorderColor solid;
  877. &:last-child {
  878. border-bottom: none;
  879. }
  880. }
  881. tr,
  882. td[colspan] {
  883. width: 100%;
  884. box-sizing: border-box;
  885. }
  886. }
  887. // .modal .modal-footer a.cancel {
  888. // display: none;
  889. // color: #ff4d4f;
  890. // border-color: #ff4d4f;
  891. // margin-right: 16px;
  892. // }
  893. .checkTipsBox {
  894. width: 184px;
  895. height: 112px;
  896. }
  897. .page-anchor-hover:hover {
  898. color: #00a1ff;
  899. }
  900. .page-anchor {
  901. overflow: hidden;
  902. text-overflow: ellipsis;
  903. white-space: nowrap;
  904. max-width: 450px;
  905. display: inline-block;
  906. min-width: 100px;
  907. }
  908. .checkImg {
  909. width: 40px;
  910. position: relative;
  911. top: 20px;
  912. left: 50%;
  913. margin-left: -20px;
  914. }
  915. .checkTxt {
  916. color: #fff;
  917. top: 10px;
  918. margin-top: 10px;
  919. text-align: center;
  920. position: relative;
  921. width: 100%;
  922. opacity: 0.5;
  923. }
  924. .liExtend {
  925. position: absolute;
  926. left: -3px;
  927. width: 3px;
  928. height: 100%;
  929. }
  930. // 缺陷总览
  931. .titleSpecial {
  932. overflow: hidden;
  933. cursor: pointer;
  934. text-align: center;
  935. span {
  936. float: left;
  937. width: 77px;
  938. height: 28px;
  939. line-height: 28px;
  940. border: 1px solid #777;
  941. color: #777;
  942. text-indent: 0;
  943. margin-top: 7px;
  944. font-weight: normal;
  945. }
  946. .titlePay {
  947. border-radius: 4px 0px 0px 4px;
  948. margin-left: 20px;
  949. background-color: #00a1ff;
  950. color: #fff;
  951. border-color: #00a1ff;
  952. border-right: 0;
  953. }
  954. .titleNo {
  955. border-radius: 0px 4px 4px 0px;
  956. border-left: 0;
  957. }
  958. }
  959. #contentIframeIn,
  960. #pacsIframeIn,
  961. #assistIframeIn,
  962. #pacsDetailIframeIn,
  963. #contentNursing {
  964. //医嘱信息
  965. width: 100%;
  966. height: 100%;
  967. }
  968. .appeal,
  969. .examine,
  970. .reject {
  971. width: 44px;
  972. height: 20px;
  973. background: #fff2c8;
  974. border-radius: 3px;
  975. border: 1px solid #ebdaa9;
  976. font-size: 12px;
  977. color: #a07906;
  978. line-height: 20px;
  979. display: inline-block;
  980. text-align: center;
  981. cursor: pointer;
  982. }
  983. .examine {
  984. background: #d3f7ed;
  985. border: 1px solid #7ee7d5;
  986. color: #04af9c;
  987. }
  988. .reject {
  989. background: #ffebeb;
  990. border: 1px solid #fbacae;
  991. color: #ca0c0f;
  992. }
  993. .show-box {
  994. /*.check-item{
  995. display: none;
  996. }*/
  997. .line {
  998. width: 100%;
  999. border-top: 1px #e2e5ef solid;
  1000. }
  1001. &.refuse {
  1002. background: url("../images/refuse.png") no-repeat;
  1003. background-position: 300px 174px;
  1004. .check-status {
  1005. color: #e3505b;
  1006. width: auto;
  1007. }
  1008. }
  1009. &.pass {
  1010. background: url("../images/pass.png") no-repeat;
  1011. background-position: 300px 174px;
  1012. .check-status {
  1013. color: #22ac76;
  1014. width: auto;
  1015. }
  1016. }
  1017. }
  1018. .modal .modal-body{
  1019. padding:20px 22px 10px;
  1020. max-height: 360px;
  1021. overflow-y: auto;
  1022. }
  1023. .modal-box{
  1024. width: 470px;
  1025. }