mplus.tablet.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915
  1. /*
  2. M-Care Plus Tablet CSS
  3. 1. 공통 CSS는 mplus.common.css에 설정
  4. */
  5. @charset "UTF-8";
  6. @import "mplus.common.css";
  7. @media all and (min-width: 720px) {
  8. /* html, body {
  9. width: 100%;
  10. height: 100%;
  11. -webkit-text-size-adjust: none;
  12. -moz-text-size-adjust: none;
  13. -ms-text-size-adjust: none;
  14. -webkit-overflow-scrolling: touch;
  15. }
  16. body, ul, ol, li {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. ul, ol {
  21. list-style: none;
  22. }
  23. body {
  24. font-family: Arial, 맑은 고딕, malgun gothic, AppleGothicNeoSD, Apple SD 산돌고딕 Neo, Microsoft NeoGothic, Droid sans, sans-serif;
  25. font-size: 15px;
  26. font-weight: 400;
  27. letter-spacing: -0.02em;
  28. margin: 0;
  29. padding: 0;
  30. color: #777;
  31. }
  32. div, td{
  33. -ms-user-select: none;
  34. -moz-user-select: -moz-none;
  35. -khtml-user-select: none;
  36. -webkit-user-select: none;
  37. user-select: none;
  38. }
  39. a,
  40. a:hover,
  41. a:focus {
  42. color: inherit;
  43. text-decoration: none;
  44. transition: all 0.3s;
  45. }
  46. .navbar {
  47. padding: 15px 10px;
  48. background: #fff;
  49. border: none;
  50. border-radius: 0;
  51. margin-bottom: 40px;
  52. box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  53. }
  54. .navbar-btn {
  55. box-shadow: none;
  56. outline: none !important;
  57. border: none;
  58. }
  59. .line {
  60. width: 100%;
  61. height: 1px;
  62. border-bottom: 1px dashed #ddd;
  63. margin: 40px 0;
  64. }
  65. */
  66. /* ---------------------------------------------------
  67. Main Menu
  68. ----------------------------------------------------- */
  69. /* #divMainMenu {
  70. width: 300px;
  71. position: fixed;
  72. top: 0;
  73. right: -1000px;
  74. height: 100vh;
  75. z-index: 999;
  76. background: #7386D5;
  77. color: #fff;
  78. transition: all 0.3s;
  79. overflow-y: scroll;
  80. box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  81. }
  82. #divMainMenu.active {
  83. right: 0;
  84. }
  85. #dismiss {
  86. width: 35px;
  87. height: 35px;
  88. line-height: 35px;
  89. text-align: center;
  90. background: #7386D5;
  91. position: absolute;
  92. top: 10px;
  93. right: 10px;
  94. cursor: pointer;
  95. -webkit-transition: all 0.3s;
  96. -o-transition: all 0.3s;
  97. transition: all 0.3s;
  98. }
  99. #dismiss:hover {
  100. background: #fff;
  101. color: #7386D5;
  102. }
  103. .overlay {
  104. display: none;
  105. position: fixed;
  106. width: 100vw;
  107. height: 100vh;
  108. background: rgba(0, 0, 0, 0.7);
  109. z-index: 998;
  110. opacity: 0;
  111. transition: all 0.5s ease-in-out;
  112. }
  113. .overlay.active {
  114. display: block;
  115. opacity: 1;
  116. } */
  117. /* ---------------------------------------------------
  118. CONTENT STYLE
  119. ----------------------------------------------------- */
  120. /* #divContent {
  121. padding: 10px;
  122. min-height: 100vh;
  123. transition: all 0.3s;
  124. top: 0;
  125. right: 0;
  126. margin-left: 150px;
  127. }
  128. */
  129. /* ---------------------------------------------------
  130. quick menu
  131. ----------------------------------------------------- */
  132. /* #divQuickMenu {
  133. min-width: 200px;
  134. max-width: 200px;
  135. top: 0px;
  136. height: 1000px;
  137. background: #7386D5;
  138. color: #fff;
  139. transition: all 0.3s;
  140. float:left;
  141. width: 150px;
  142. }
  143. #divQuickMenu.active {
  144. margin-left: -250px;
  145. }
  146. */
  147. /* ---------------------------------------------------
  148. modal fullscreen
  149. ----------------------------------------------------- */
  150. .modal-full {
  151. min-width: 100%;
  152. min-height: 100%;
  153. background-color: rgba(255,255,255,1);
  154. margin: 0;
  155. }
  156. .modal-full .modal-content {
  157. min-height: 100vh;
  158. }
  159. /* .modal-full .modal-body {
  160. margin-bottom: 75px;
  161. } */
  162. /* ---------------------------------------------------
  163. loading ...
  164. ----------------------------------------------------- */
  165. .wrap-loading{
  166. z-index: 9999;
  167. position: absolute;
  168. padding: auto;
  169. width: 100%;
  170. height: 100vh;
  171. background-color: rgba(0,0,0,0.1);
  172. top: 0px;
  173. }
  174. .loader {
  175. position: absolute;
  176. top:50%;
  177. left:50%;
  178. margin-left: -25px;
  179. margin-top: -25px;
  180. }
  181. /*---- 환자목록 환자명 ----*/
  182. .lbl_patient_name { color: #ffa71c; font-weight: bold;}
  183. /*---- 환자목록 생년월일 ----*/
  184. .lbl_patient_birth { color: #01aa01; font-weight: bold;}
  185. } /* end of @media all and (min-width: 769px) */
  186. /* ---- Publishing CSS { ---- */
  187. /* 기 본 공 통 영 역 */
  188. *{ box-sizing: border-box; font-family: 'NSR', Sans-serif; letter-spacing: -0.5px }
  189. body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,legend,input,textarea,button,select{margin:0;padding:0}
  190. /*html{overflow-y:scroll}*/
  191. html,body{background: #f8f8f8;position:relative;height:auto}
  192. body{color:#444444;}
  193. img{ vertical-align: middle;}
  194. img,fieldset{border:0}
  195. ul,ol{list-style:none}
  196. em,address{font-style:normal}
  197. table { width: 100%; border-collapse: collapse; }
  198. a{text-decoration:none;color:#444444}
  199. a:hover,a:active,a:focus{text-decoration:none}
  200. hr{display:none}
  201. legend{visibility:hidden;overflow:hidden;position:absolute;top:0;left:0;width:1px;height:1px;font-size:0;line-height:0}
  202. caption{visibility:hidden;overflow:hidden;width:1px;height:1px;font-size:0;line-height:0}
  203. img,button{border:0}
  204. label,button,a{cursor:pointer}
  205. a:active{background-color:transparent}
  206. /* main ------------------ */
  207. /*body{overflow:auto;}*/
  208. html{background: #f8f8f8;overflow-x:hidden;}
  209. body{position: relative;overflow-x:hidden;width: 100%;}
  210. *{font-family: NSR}
  211. *,
  212. :after,
  213. :before {box-sizing: border-box}
  214. header{background:#0067a1}
  215. .container{padding:0;margin:0 !important;width:calc( 100% - 129px);float:right}
  216. .fix{position:fixed;top:0;left:0;z-index:100;}
  217. .main_fixed_wrap .select_toggle {width:calc( 100% - 129px ); padding:8px 16px 0;background:#ececec;font-size:1.5em;color:#545454;margin-top:0}
  218. .select_toggle.inner{background: none;}
  219. .select_toggle button, .select_toggle input, .select_toggle select{width:100%;height: 45px;padding:0;box-sizing: border-box;border-top: 1px solid #9a9a9a;font-size:16px ;border:none;border-radius: 3px!important;
  220. vertical-align:middle;background:#fff;color:#545454 !important;font-family:"NSB";text-align:left;line-height: 45px;border-top:1px solid #a6a6a6;border-left:1px solid #a6a6a6;text-indent: 2px;}
  221. .select_toggle select{background: #fff url(../images/publishing/select_arrow.png) no-repeat right 15px center;background-size: 22px;-webkit-appearance: none;}
  222. .select_toggle div:nth-child(2) div:nth-child(3) select{background-position:right 5px center}
  223. .select_toggle input::placeholder {color:#545454 !important; }
  224. .select_toggle .row, .select_toggle .row .btn{line-height:2.2rem}
  225. .select_toggle .row .btn:focus{box-shadow:0 0 0 0.16px rgba(0, 123, 255, 0.25)}
  226. .select_toggle .row,.chart-info .row{margin:0;}
  227. .chart-info.pix{position:fixed}
  228. .collapse .row:last-child{margin-top:4px}
  229. .collapse .row div{padding:0 4px 0 0}
  230. .container-fluid .main_fixed_wrap .collapse{transition:all 0.2s}
  231. .complete{position:absolute;bottom:5%;right:5%;color:#405ab7;font-size:13.03px;font-family:"NSB"}
  232. .dropdown{position:relative;width:calc( 100% - 129px );background:#ececec;box-shadow: 1px 3px 8px 0px #e2e2e2;margin-bottom:15px;border-bottom:1px solid #dddddd;padding:10px 20px;text-align:center;}
  233. .dropdown::after{display: block;position: absolute;left:0;bottom:-18px;;width: 100%;height: 18px;background: #f8f8f8;content: "";z-index: -1;}
  234. .dropdown button{background: none;}
  235. .dropdown button strong{display: inline-block;font-size:0;text-indent: -99999px;}
  236. .dropdown button.dropdown_btn{width: 19px;height: 24px;background: url(../images/publishing/dropdown_up.png) no-repeat center; background-size:19px; }
  237. .dropdown button.dropdown_btn.on{background: url(../images/publishing/dropdown_down.png) no-repeat center;background-size:19px; }
  238. .dropdown button.submit{position: absolute;right:20px;bottom:5px;line-height: 34px;font-size:15px;color:#0067a1;font-family: "NSB"}
  239. .dropdown button.reset{position: absolute;left:20px;bottom:5px;line-height: 34px;font-size:15px;color:#8e8e8e;font-family: "NSB"}
  240. .chart-info{background:#f8f8f8;}
  241. .chart-info.list{padding-top:300px;transition: all 0.5s;width:100%}
  242. .chart-info.list.up{padding-top:196px;}
  243. .main_fixed_wrap .collapse{height:102px;transition: all 0.5s;overflow: hidden;}
  244. .main_fixed_wrap .collapse.up{height: 0;}
  245. .chart-info div p{display: inline-block;margin:0;vertical-align: middle}
  246. .chart-info .well{padding:0;border:0;margin-bottom:4px;}
  247. .chart-title, .chart-content{position:relative;background:#fff;box-shadow:0px 3px 15px 3px #e2e2e2;border-radius:5px!important}
  248. .chart-title .row div{padding:16px 0;color:#7b98b0;line-height:1.3em;font-size:15px;font-family: "NSB"}
  249. .chart-content .row div{line-height:20px;font-size:15px;}
  250. .chart-content .row div:nth-child(odd){font-family:"NSB";padding:16px 0;}
  251. .chart-content .row div:nth-child(even){font-family:"NSR";padding:16px 0;}
  252. .chart-content .row div.p-info-02, .chart-content .row div.p-info-04{color:#545454;}
  253. .chart-info .chart-content .row div.p-info-02,.chart-info .chart-content .row div.p-info-03,.chart-info .chart-content .row div.p-info-04{padding:16px 0}
  254. .chart-content .row div.p-info-03 p:first-child{font-weight: normal;}
  255. .chart-content.same-name .row:before{background:#98bb57;}
  256. .chart-content.same-name .row:before{content:"";position:absolute;left:0;top:0;width:4px;height:52px;background:#98bb57;border-top-left-radius: .25rem!important; border-bottom-left-radius: .25rem!important;}
  257. .chart-content .col-xs-3:nth-child(odd){font-weight:600;}
  258. .p-info-01 p:first-child{color:#ffa71c}
  259. .chart-content div p:last-child:before{content:"/";display:inline-block;font-weight:normal;margin-right:3px}
  260. .p-info-03 p.start{color:#ff6b6b}
  261. .p-info-03 p.restart{color:#4888d2}
  262. .selector-for-some-widget {box-sizing: content-box;}
  263. #datepicker{background: #fff url(../images/publishing/cal.png) no-repeat right 15px center;background-size: 20px;}
  264. /*상단 네비*/
  265. .fixed_navi_wrap{width:100%}
  266. .fixed_navi_wrap.main{position:fixed;width:calc( 100% - 129px);z-index: 11;box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.35);}
  267. .navigation h1{font-size:25px;color:#fff;font-family:"NSB";margin-bottom:0;line-height:1.2}
  268. .navigation{overflow:visible;position:relative;padding:18px 0;text-align:center;background:#0067a1;}
  269. .navi_menu_wrap{position: absolute;width: 100%;top: 0;}
  270. .navi_menu_wrap button{position: absolute;background: none;font-size:44px;color:#fff;text-align: center;top:20px;height: 49px;outline: 0 !important;}
  271. .navi_menu_wrap button.main{left:94%}
  272. .navi_menu_wrap button.main i{display: inline-block;text-indent: -9999px;}
  273. .navi_menu_wrap button.left_menu_btn{width: 28px;height: 23px;background: url(../images/publishing/ico_menu_2.png) no-repeat left center;background-size: 26px;}
  274. .navi_menu_wrap button.right_menu_btn{display:none;width: 50px;height: 50px;background: url(../images/publishing/ico_doctor.png) no-repeat left center;background-size: 36px;}
  275. .navi_menu_wrap .left_menu_btn{left:26px;}
  276. .navi_menu_wrap .right_menu_btn{right:26px;}
  277. .navi_menu_wrap .page_close_btn{right:26px;}
  278. .main_fixed_wrap{position: fixed;width: 100%;padding-top:66px;z-index: 10;}
  279. .chart-info{width:calc( 100% - 129px );padding:0 16px 4px 16px; }
  280. .container .main_fixed_wrap{position: fixed;width: 100%;padding-top:66px;z-index: 10;}
  281. /*right-menu*/
  282. body.menu_on{overflow-y: hidden;}
  283. .side-right{opacity:1;}
  284. .side-right.active{opacity:1;}
  285. .side-right .side-right-content,
  286. .side-right .side-right-overlay {top: 0;left: 0;bottom: 0;position: fixed;transition: all .3s ease-in-out 0s}
  287. .side-right .side-right-overlay {right: 0;opacity: 0;width: 100%;z-index: 999;transform: scale(0);background: rgba(0, 0, 0, 0)}
  288. .side-right .side-right-content {padding-left:0;transform: translateX(0);z-index: 1000;}
  289. .side-right .side-right-content .inner{width:129px;height:100%;color: #333;z-index: 1000;background-color: rgba(255, 255, 255, 1);}
  290. .side-right.active .side-right-content {transform: translateX(0);}
  291. .side-right.active .side-right-overlay {opacity: 1;transform: scale(1);height:100vh;}
  292. .html.chats,.html.search,.html.compose,.html.credits,.html.settings,.html.welcome {margin-top: 50px}
  293. .side-right .nav-right.list-group div{padding:15% 0}
  294. .side-right .nav-right.list-group div a{vertical-align: bottom}
  295. .nav-right-title{height:7%;margin:0;padding:0 !important;font-size:14px;font-weight: normal;line-height:3em;color:#fff;border-bottom:2px solid #3b5cb5;text-align: center;background:#005e9b;}
  296. .nav-right-title span{display:inline-block;letter-spacing:1px ;}
  297. .nav-right a{display:block;padding: 15px 0;font-size:18px;border:0;border-bottom:1px solid #d7d7d7;text-align:center;font-weight: bold;}
  298. .nav-right a i{position:absolute;top:34%;left:25%;display:inline-block;font-size:0;vertical-align: middle}
  299. /* .list-group-item.item-4 i{font-size:36px;} */
  300. .nav-right a span{display: inline-block;margin-left:10px;font-size:15px;font-style:normal;vertical-align: bottom;line-height:1.8em}
  301. .nav-right-bar{background:#70aaca;font-size:15px;color:#fff;text-align: center;padding:5px 0}
  302. .nav-right.list-group{padding-bottom:18px;height:100%;}
  303. .nav-right.list-group div{text-align:center}
  304. .list-group .list-group-item{height:13%;background-color:rgba(255, 255, 255, 0);color:#333333;border-right: 2px solid #e5e5e5;}
  305. .list-group .list-group-item.on{position: relative;background: #98bb57;color:#fff;border-bottom:1px solid #98bb57; box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);;}
  306. .list-group .list-group-item.on::before{position: absolute;top: 50%;left: -20px;width: 0;height: 0;border-right: 15px solid transparent;border-bottom: 17px solid #98bb57;border-left: 15px solid transparent;border-radius: 10px;content: "";transform: rotate(-90deg);margin-top: -10px;}
  307. .list-group .list-group-item.search span{font-size:0;}
  308. .list-group .list-group-item.search i{display: inline-block;width: 50px;height: 50px;border:1px solid #dddddd;border-radius: 5px;}
  309. .list-group .list-group-item.search i::before{margin-top:9px;}
  310. .list-group .list-group-item p{margin:0}
  311. .list-group-item.item-1{color:#30aae2}
  312. .list-group-item.item-2{color:#3088e2;}
  313. .list-group-item.item-3{color:#535ae1}
  314. .list-group-item.item-4{color:#8553e1}
  315. .list-group-item.item-5{color:#e153aa}
  316. .list-group-item.item-6{color:#e68e4e}
  317. .list-group-item.item-1 i:before{font-size:22px}
  318. .list-group-item.item-2 i:before,.list-group-item.item-3 i:before,.list-group-item.item-4 i:before,.list-group-item.item-5 i:before,.list-group-item.item-6 i:before{font-size:27px}
  319. .list-group-item.search{display: inline-block;width: 36px;height: 36px;border:none;margin:0 auto;margin-top:4px;}
  320. .list-group-item.item-7{background: url(../images/publishing/ico_nfc.png) no-repeat;background-size:100%;margin-top:0;}
  321. .list-group-item.item-8{background: url(../images/publishing/ico_qr.png) no-repeat;background-size:100%;}
  322. .list-group-item.item-9{background: url(../images/publishing/ico_bar.png) no-repeat;background-size:100%;}
  323. .navbar-text{float:none}
  324. .list-group .list-group-item.on{border-right:none}
  325. .list-group .list-group-item.on::before{left:94%;transform:rotate(90deg)}
  326. /*left-menu*/
  327. .side-left{opacity:0;}
  328. .side-left.active{opacity:1;}
  329. .side-left .side-left-content,
  330. .side-left .side-left-overlay {top: 0;left: 0;bottom: 0;position: fixed;transition: all .1s ease-in-out 0s}
  331. .side-left .side-left-overlay {left: 0;opacity: 0;width: 100%;z-index: 1000;transform: opacity 0.3s;background: rgba(0, 0, 0, 0.45)}
  332. .side-left .side-left-content {overflow-y:scroll;width:75%;height:100%;color: #333;padding: 0;z-index: 1000;transform: translateX(112%);background:#fff;border: 1px solid #dcdcdc;border-top-left-radius:0.5em;border-bottom-left-radius: 0.5em;}
  333. .side-left.active .side-left-content {transform: translateX(34%);box-shadow:0px 3px 15px 3px rgba(0, 0, 0, 0.4);}
  334. /* .side-left.active .side-left-content .nav-left{min-height: 800px;} */
  335. .side-left.active .side-left-overlay {opacity: 0;height:100vh;transform: opacity 0.3s;}
  336. .side-left .side-content .nav-left>a {color: #333;display: block;font-size: 16px;padding: 10px 0;line-height: 24px;vertical-align: top;text-decoration: none}
  337. .side-left .side-content .nav-left>a>span {color: #aaa;font-size: 24px;min-width: 40px;display: inline-block}
  338. .side-left .panel{border:0;box-shadow:none}
  339. .logout{overflow:hidden;}
  340. .logout button{background:none;font-size:13.03px;font-weight:600;color:#a4a4a4;}
  341. .logout button.out{color:#405ab7;}
  342. .setup{display:inline-block;background:#fff;outline:none}
  343. .close{display:inline-block;background:#fff;outline:none}
  344. #mainMenu .menu_top{height: 90px;font-size:0;box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);}
  345. #mainMenu .menu_top h5{display: inline-block;width: 16%;margin:0;background: #0067a1;color:#fff;font-size:38px;line-height: 110px;vertical-align: top;text-align:center;line-height: 86px;padding-top:4px;box-shadow:0px 5px 15px rgba(0, 0, 0, 0.1)}
  346. #mainMenu .menu_top div{display: inline-block;padding:10px 20px;}
  347. #mainMenu .menu_top .name p{margin-bottom:0;color:#000;font-size:22px;line-height:40px;font-weight: bold;}
  348. #mainMenu .menu_top .name span{display: inline-block;color:#545454;font-size:16px;font-weight: bold;}
  349. #mainMenu .menu_top .name span a{display: inline-block;margin-left:5px;width: 34px;height: 34px;background: url(../images/publishing/ico_pen.png) no-repeat;background-size: 18px;}
  350. #mainMenu .menu_top .name span a i{display: inline-block;text-indent: -9999px;}
  351. #mainMenu .menu_top .btn{float:right;padding-top:33px;}
  352. #mainMenu .menu_top .btn button{color:#333333;font-size:40px;background: none;opacity: 1;}
  353. #mainMenu .menu_top .btn button.close{width: 28px;height: 28px;background: url(../images/publishing/ico_close_main.png) no-repeat;background-size: 27px;}
  354. #mainMenu .menu_top .btn button.setting{width: 32px;height: 32px;background: url(../images/publishing/ico_setting.png) no-repeat;background-size: 30px;margin-right:22px;}
  355. #mainMenu .menu_top .btn button i{display: inline-block;text-indent: -9999px;}
  356. #mainMenu .menu_item{display:flex;width:100%;font-size:0;border-bottom:1px solid #dfdfdf;}
  357. #mainMenu .menu_item h5{display: inline-block;margin-bottom:0;width: 16%;font-size:20px;color:#545454;vertical-align: top;background: #f6f6f6;text-align:center;}
  358. #mainMenu .menu_item.treatment{padding-top:0}
  359. #mainMenu .menu_item.treatment h5{padding: 116px 0px;}
  360. #mainMenu .menu_item.schedule h5{padding: 37px 0;}
  361. #mainMenu .menu_item.search h5{padding:51px 0;}
  362. #mainMenu .menu_item ul{display: inline-block;width: 84%;vertical-align: top;font-size:0;margin-bottom:0;}
  363. #mainMenu .menu_item ul li{display: inline-block;padding:37px 0 28px 0;width: 33.3333%;height: 100%;border-left:1px solid #f1f1f1;box-sizing: border-box;text-align: center;vertical-align: top;height: 130px;}
  364. #mainMenu .menu_item ul li:nth-child(n+4){border-top:1px solid #f1f1f1;}
  365. #mainMenu .menu_item ul i{display: block;font-size:30px;}
  366. #mainMenu .menu_item ul span{display: block;font-size:18px;margin-top:-7px;color:#545454;}
  367. #mainMenu .menu_item i.icon-hospital{color:#30aae2;}
  368. #mainMenu .menu_item i.icon-ambulatory{color:#3088e2;}
  369. #mainMenu .menu_item i.icon-surgery{color:#535ae1;}
  370. #mainMenu .menu_item i.icon-medical{color:#8553e1;}
  371. #mainMenu .menu_item i.icon-emergency{color:#e153aa;}
  372. #mainMenu .menu_item i.icon-cooper{color:#e9904f;}
  373. #mainMenu .menu_item i.icon-medi_sch{color:#39d4aa;}
  374. #mainMenu .menu_item i.icon-calendar{color:#39a7d4;}
  375. #mainMenu .menu_item.search i{color:#333333;}
  376. #mainMenu .menu_item.search i{height: 50px;}
  377. #mainMenu .menu_item.search .nfc i{background: url(../images/publishing/ico_nfc_main.png) no-repeat center top;background-size:40px;}
  378. #mainMenu .menu_item.search .qr i{background: url(../images/publishing/ico_qr_main.png) no-repeat center 5px;background-size:40px;}
  379. #mainMenu .menu_item.search .bar i{background: url(../images/publishing/ico_bar_main.png) no-repeat center 10px;background-size:46px;}
  380. .nav-left .btn_wrap{padding:20px 7%;margin-bottom:80px}
  381. .nav-left .btn_wrap button{font-size:20px;background: none;font-weight: bold;}
  382. .nav-left .btn_wrap button.help{float:left;color:#a4a4a4;}
  383. .nav-left .btn_wrap button.logout{float:right;color:#0067a1;}
  384. /* 당직일정 */
  385. /* common */
  386. .duty .close{position: absolute;top:15px;right:30px;margin: auto;width: 40px;height:40px;cursor: pointer;opacity:1;background:transparent}
  387. .duty .close button{width: inherit; text-align: center;}
  388. .duty .close button:before, .duty .close button:after{position: absolute;content: '';height: 3px;width: inherit;background: #FFC107;left: 0;}
  389. .duty .close button:before{top: 48%;transform: rotate(45deg); }
  390. .duty .close button:after{bottom: 48%;transform: rotate(-45deg); }
  391. /*.container.container-fluid.duty{width:100%}*/
  392. /*.container.container-fluid.duty .main_fixed_wrap .select_toggle{width:100%}*/
  393. .container.container-fluid.duty .main_fixed_wrap .collapse.up{height: 0;}
  394. /*.container.container-fluid.duty .dropdown{width:100%}*/
  395. /*.container.container-fluid.duty .chart-info{width:100%}*/
  396. /*.container.container-fluid.duty .fixed_navi_wrap{width:100%}*/
  397. .container.container-fluid.duty .main_fixed_wrap .select_toggle{padding:20px 16px}
  398. .container-fluid.duty .main_fixed_wrap .collapse{height:183px}
  399. .container-fluid.duty .select_toggle .col-xs-2 button{display:inline-block;width:48px;height:48px;background:none;border:none;text-indent:0}
  400. .container-fluid.duty .select_toggle .col-xs-2, .container.container-fluid.duty .select_toggle .col-xs-8{float:none;text-align:center}
  401. .container-fluid.duty .select_toggle .col-xs-2 button img{width:100%}
  402. .container-fluid.duty .select_toggle .row{display:flex;line-height:2em}
  403. .container-fluid.duty .select_toggle .row:first-child{align-items:flex-end;}
  404. .container-fluid.duty .select_toggle .row:last-child{margin-top:15px}
  405. .starting-date, .wave, .ending-date{display:inline-block;}
  406. .starting-date .data-year, .ending-date .data-year{color:#000;font-size:20px;text-align:left;}
  407. .starting-date .data-day, .ending-date .data-day{color:#000;font-size:35px;font-weight:bold}
  408. .wave{padding:0;margin:0 20px;color:#000;font-size:30px;font-weight:bold}
  409. .duty-schedule .row{display:flex;margin:0}
  410. .duty-schedule{padding-top:300px;padding-left:16px;padding-right:16px;transition: all 0.5s;}
  411. .duty-schedule.up{padding-top:115px;transition: all 0.5s;}
  412. .duty-tit{overflow:hidden;height:142px;padding:20px 0;color:#555;border-bottom:2px solid #dddddd}
  413. .duty-tit:first-child p span{display:block}
  414. .duty-tit:first-child p, .duty-tit button{width:100%;padding:20px 0;background:transparent;font-size:17px;outline:none;border:2px solid #f8f8f8}
  415. .duty-tit:first-child p, .duty-tit .styleVer2 button{width:100%;padding:20px 0;background:transparent;font-size:17px;outline:none;border:2px solid white}
  416. .duty-tit button.today{border:2px solid #a7c570}
  417. .duty-tit div{padding:0 3px;text-align:center}
  418. .duty-tit div button span,.container-fluid.duty.personal .duty-tit div p span{display:block;font-weight:bold;font-size:22px;color:#000}
  419. .duty-tit div.sun, .duty-tit div.sun span{color:#e0171c}
  420. .duty-tit div.sat, .duty-tit div.sat span{color:#0c76a8}
  421. .duty-person{overflow:hidden;padding:15px 0;border-bottom:2px solid #dddddd}
  422. .duty-person p{height:30px;display: table-cell;vertical-align: middle;width:40px;}
  423. .duty-person div{padding:0;margin:0 1px}
  424. .duty-person div p{margin-bottom:5px;font-size:19px;padding:10px 0;color:#fff;font-weight:normal;text-align:center}
  425. .duty-person div p:last-child{margin-bottom:0;}
  426. .duty-person div:first-child{text-align:center;font-weight:bold;font-size:30px;line-height:0.8em;background:transparent;padding-top: 3px}
  427. .duty-person div:first-child span{display:block;font-weight:normal;font-size:19px;}
  428. .duty-schedule .duty-person.D-type .dutyon p{background:#fff;color:#81b8e2}
  429. .duty-schedule .duty-person.N-type .dutyon p{background:#fff;color:#cbae5d}
  430. .duty-schedule .duty-person.ICU .dutyon p{background:#fff;color:#f0a397}
  431. .duty-person.dutyDoctorId div:first-child{color:#000;}
  432. /*.duty-person.D-type div:first-child{color:#3d94d6;}
  433. .duty-person.N-type div:first-child{color:#c29929}
  434. .duty-person.ICU div:first-child{color:#f26d7d;}*/
  435. .D-type {background:#81b8e2;border:1px solid #81b8e2;}
  436. .N-type {background:#cbae5d;border:1px solid #cbae5d;}
  437. .ICU {background:#f0a397;border:1px solid #f0a397;}
  438. .spanD-type {color:#81b8e2;}
  439. .spanN-type {color:#cbae5d;}
  440. .spanICU {color:#f0a397;}
  441. .duty-person.ICU div:first-child{font-size:30px}
  442. .duty-person.ICU{border-bottom: 2px solid #dddddd;}
  443. /*건대용 스케줄 색상*/
  444. .duty-person .pBlue {background:#e9c77b;border:1px solid #e9c77b;}
  445. .duty-person .pYellow {background:#e2b49a;border:1px solid #e2b49a;}
  446. .duty-person .pRed {background:#c2d4de;border:1px solid #c2d4de;}
  447. .duty-person .pGrey {background:#E6E6E6;border:1px solid #E6E6E6;}
  448. .duty-person .pGreen {background:#99abb5;border:1px solid #99abb5;}
  449. /* personal */
  450. .personal .duty-tit{height:100%;padding:10px 0;border-bottom:0;}
  451. .personal .duty-schedule .duty-tit .row{height:100%}
  452. .personal .duty-tit p{padding:0;font-size:17px}
  453. .personal .duty-schedule .row{height:100px;}
  454. .duty-calendar p{font-size:22px;}
  455. .personal .duty-schedule{padding-top:330px}
  456. .personal .duty-schedule.up{padding-top:125px}
  457. .personal .duty-schedule .row div{height:100%;text-align:center}
  458. .personal .duty-schedule .row div:first-child p{color:#e0171c}
  459. .personal .duty-schedule .row div:last-child p{color:#0c76a8}
  460. .personal .duty-schedule .row div.disable:first-child p{color:#ffdcdd}
  461. .personal .duty-schedule .row div.disable:last-child p{color:#c2dfec}
  462. .personal .duty-schedule .row div p{font-weight:bold}
  463. .personal .duty-schedule .row .disable p{color:#ddd}
  464. /* 1203 */
  465. .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.back-to-main{background:transparent}
  466. .back-to-main span.swiper-pagination-bullet:first-child{display:block;background:#ff0000;width:20px;height:20px;}
  467. .back-to-main.swiper-pagination{top:95%;left:90%}
  468. .back-to-main span.swiper-pagination-bullet{display:none}
  469. .side-left .swiper-pagination-clickable .swiper-pagination-bullet{display:inline-block;float:left;width:5.5rem;height:5.3rem;background:transparent}
  470. .side-left .swiper-pagination{overflow:hidden;top:10%;left:20%;width:auto;}
  471. .side-left .swiper-pagination-clickable .swiper-pagination-bullet:first-child{display:none;}
  472. .chart-content{cursor: pointer;}
  473. .sinhan{position: relative;display: block;min-height: 1.5rem;box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.2);border-radius: 5px;text-align: right;background: transparent;}
  474. .custom-control.shinhan{height:45px;padding:0 !important;text-align:left;font-size: 16px;vertical-align: top;background: transparent;color: #545454 !important;font-family: "NSB";line-height: 45px;border:none;text-indent: 10px;box-shadow: none}
  475. .shinhan .cst-control-label{padding-left:25px;transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;color:#333;font-size:16px;}
  476. .shinhan .cst-control-label::before{position: absolute;top:6px;left:4px;display: block;width: 30px;height: 30px;pointer-events: none;content: "";-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;background-color: #e4e4e4;}
  477. .shinhan .cst-control-label::after{left:14px;top:10px}
  478. .shinhan .custom-control-input{margin:0;left:0;text-align:center}
  479. .sub_page{position: absolute;top:0;right:-100%;width: 100%;height: auto;overflow: hidden;z-index:12;background: #f8f8f8;transition: right 0.5s;}
  480. .sub_page.on{right:0%;box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.4);}
  481. .sub_page .fixed_navi_wrap{position: fixed;left:inherit;right:-100%;transition: right 0.5s;}
  482. .sub_page.on .fixed_navi_wrap{right:0%;}
  483. .sub_wrap{padding-top:10px;}
  484. /* sub */
  485. .container-fluid.sub{padding-top:110px;}
  486. .bottom-fixed-menu{display: block;position:fixed;bottom:0;left:0;width: 100%;}
  487. .bottom-fixed-menu button{width: 50%;float:left;padding:0;font-size:26px;line-height:80px;color:#fff;font-weight:bold;border-radius: 0;}
  488. .btn-blue-green{background:#12b8ba;}
  489. .btn-sky{background:#3086c9;}
  490. .chart-view-top{overflow: hidden;padding-top:20px;background: #fff;box-shadow: 2px 2px 5px #dfdfdf;}
  491. p.patient-name{margin:0;padding-left:55px;color:#000;font-size:30px;font-weight: bold;text-align: left;line-height: 60px;background: url(../images/publishing/patient_icon01.png) no-repeat;background-size: 40px;float:left;}
  492. .patient-name + .patient-info{float: right;padding-top:20px;}
  493. .patient-info{margin:0;font-size:21px;text-align:left;}
  494. .patient-info span:first-child{display: inline-block;color:#747478;}
  495. .patient-info span:last-child{display: inline-block;color:#545454;font-weight: bold;float:right;line-height: 32px;}
  496. .patient-info span:last-child a{display: inline-block;vertical-align: top;margin-top:-4px;}
  497. .patient-info span:last-child a:first-child{margin-left:10px;}
  498. .patient-info span:last-child a i{display: inline-block;text-indent: -9999px;}
  499. .patient-info span:last-child a.sms{width: 32px;height: 32px;background: url(../images/publishing/ico_talk.png) no-repeat center;background-size: 32px;margin-right:10px;}
  500. .patient-info span:last-child a.tel{width: 32px;height: 32px;background: url(../images/publishing/ico_phone.png) no-repeat center;background-size: 32px;}
  501. .patient-info span.description{display: block;padding:10px 0 0 0;color:#545454;font-weight: bold;float:inherit;text-align:left;}
  502. .row.description{border-top:1px solid #eeeeee;}
  503. .chart-view-item{margin-top:10px;background: #fafafa; box-shadow: 2px 2px 5px #dfdfdf;}
  504. .chart-view-item + .chart-view-item{margin-top:10px;}
  505. .chart-view-item .btn{width: 100%;padding:13px 0;color:#545454;font-size:20px;background: #fff;box-shadow: 2px 2px 5px #dfdfdf;}
  506. .chart-view-item .btn.on{color:#fff;background: #98bb57;font-weight: bold;}
  507. .chart-view-item .icon-btn{padding-top:90px;}
  508. .chart-view-item .icon-btn.camera-icon{background: #fff url(../images/publishing/patient_icon02.png) no-repeat center 20px;background-size:50px; }
  509. .chart-view-item .icon-btn.eye-icon{background: #fff url(../images/publishing/patient_icon03.png) no-repeat center 20px;background-size:65px; }
  510. .chart-view-item .icon-btn.medicine-icon{background: #fff url(../images/publishing/patient_icon04.png) no-repeat center 15px;background-size:47px; }
  511. .chart-view-item .view-item-title{padding-top:15px;font-size:26px;color:#000;font-weight: bold;text-align: left;}
  512. .chart-view-item .view-item-title span{display: inline-block;vertical-align: top;}
  513. .chart-view-item .view-item-title i{font-size:30px;margin-right:5px;}
  514. .chart-view-item .view-item-title i.icon-patient01{color:#12b8ba;}
  515. .chart-view-item .view-item-title i.icon-patient02{color:#3086c9;margin-right:10px;}
  516. .chart-notice{margin-bottom:20px;padding:30px 0;background: #fff;box-shadow: 2px 3px 15px #dfdfdf;}
  517. .chart-notice .notice{font-size:20px;color:#747478;text-align:left;margin-bottom:0;}
  518. .chart-notice .text{font-size:20px;color:#545454;text-align:left;}
  519. .notice-more-btn{display: block;padding-left:50px;background: url(../images/publishing/more_btn.png) no-repeat left center; background-size:40px;font-size:22px;line-height: 40px;color:#222222;margin:0 auto;}
  520. .go-top-btn{position: absolute;bottom: 24px;right: 22px;display: inline-block;height: 60px;width: 60px;background: #fff url(../images/publishing/top_btn.png) no-repeat center; background-size: 26px;border-radius: 4px;box-shadow: 2px 3px 15px #dfdfdf;text-indent: -9999px;}
  521. .chart-view-history-top{margin:10px 0;background: #e9efdf;box-shadow: 2px 2px 5px #dfdfdf;}
  522. .view-history-text{margin:0;text-align:left;font-size:20px;line-height: 30px;}
  523. .inquiry-btn{display: block;position:relative;width: 100%;background: #f9f9f9;font-size:20px;line-height: 68px;color:#747478;border-top:1px solid #9f9f9f;border-bottom:1px solid #eeeeee;border-left:1px solid #eeeeee;}
  524. .inquiry-btn.date{border-top:0;}
  525. .inquiry-btn.first-btn{border-left:0;}
  526. .inquiry-btn.on::after{position: absolute;top:0;left:0;width: 100%;height: 100%;border:2px solid #98bb57;box-sizing:border-box;content: "";color:#98bb57;}
  527. .input-date-wrap{overflow: hidden;position: relative;padding:15px 0;border-bottom:1px solid #eeeeee;border-left:1px solid #eeeeee;background: #f9f9f9;font-size:20px;}
  528. .input-date-wrap.first-wrap{border-left:0;}
  529. .input-date-wrap span{width: 40%;float:left;color:#545454;}
  530. .input-date-wrap input{display: block;width: 85%;margin:0 auto;border:0;color:#747478;background: none;}
  531. .input-date-wrap .date{background: url(../images/publishing/cal.png) no-repeat right 15px center;background-size: 30px;}
  532. .inquiry-slide-btn{font-size:23px;color:#000;font-weight: bold;float:left;background: none;outline: none !important;}
  533. .inquiry-slide-btn::after{display: inline-block;margin-left:20px;width: 15px;height: 15px;border-left: 4px solid #c1c2c4;border-top: 4px solid #c1c2c4;content: "";transform: rotate(225deg);margin-bottom: 3px;}
  534. .history-card{padding:20px 15px 10px 15px;background: #fff;border-radius: 5px;box-shadow: 2px 2px 5px #dfdfdf;}
  535. .history-card p{margin-bottom:0;text-align:left;font-size:18px;padding-bottom:6px;color:#545454;}
  536. .history-card p span{float:right;color:#98bb57;}
  537. .history-card .icon-wrap{padding-top:10px;font-size:20px;font-weight: bold;text-align:center;}
  538. .history-card .icon-wrap i{display: block;margin:0 auto;margin-bottom:3px;font-size: 30px;
  539. width: auto;
  540. height: auto;}
  541. .icon-wrap.inpatient{color:#30aae2;}
  542. .icon-wrap.outpatient{color:#3088e2}
  543. .icon-wrap.surgery{color:#535ae1;}
  544. .procedure-detail{margin-top:10px;background: #fff;overflow: hidden; box-shadow: 2px 2px 5px #dfdfdf;}
  545. /* .modal-dialog {margin:0 1.5rem} */
  546. .modal-header{padding:0.7rem 1.5rem !important}
  547. .custom-control.wide{padding:20px 7px 20px 60px !important}
  548. .navi_menu_wrap button.page_close_btn{top:16px;width: 30px;height: 30px;background: url(../images/publishing/ico_close.png) no-repeat center;background-size:30px;}
  549. .navi_menu_wrap button.page_close_btn i{display: none;text-indent: -9999px;}
  550. a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus{background-color:transparent}
  551. /*서브수정*/
  552. .px-0{padding-left: 0 !important;padding-right:0 !important;}
  553. .modal{padding:0 !important;}
  554. .custom-control {
  555. position: relative;
  556. display: block;
  557. min-height: 1.5rem;
  558. padding: 1rem 1rem 1rem 6rem !important;
  559. box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.2);
  560. border-radius: 5px;
  561. text-align: left;
  562. background: #fff;
  563. }
  564. .custom-control + .custom-control{margin-top:15px;}
  565. .custom-control-input {
  566. margin: 0;
  567. position: absolute;
  568. z-index: -1;
  569. opacity: 0;
  570. }
  571. .cst-control-label {
  572. position: relative;
  573. margin-bottom: 0;
  574. display: block;
  575. font-size:20px;font-weight: normal;
  576. }
  577. .custom-checkbox .custom-control-input:checked ~ .cst-control-label::before {
  578. background-color: #98bb57;
  579. }
  580. .custom-checkbox .cst-control-label::before {
  581. border-radius: 100%;
  582. }
  583. .cst-control-label::before, .custom-file-label, .custom-select {
  584. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  585. }
  586. .cst-control-label::before {
  587. position: absolute;
  588. top: -4px;
  589. left: -50px;
  590. display: block;
  591. width: 36px;
  592. height: 36px;
  593. pointer-events: none;
  594. content: "";
  595. -webkit-user-select: none;
  596. -moz-user-select: none;
  597. -ms-user-select: none;
  598. user-select: none;
  599. background-color: #e4e4e4;
  600. }
  601. .custom-checkbox .custom-control-input:checked ~ .cst-control-label::after {
  602. /* background-image: url(data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' v…M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E); */
  603. display: block;
  604. }
  605. .cst-control-label::after {
  606. position: absolute;
  607. top: 2px;
  608. left: -37px;
  609. display: block;
  610. width: 11px;
  611. height: 18px;
  612. border: solid white;
  613. border-width: 0 3px 3px 0;
  614. -webkit-transform: rotate(45deg);
  615. -ms-transform: rotate(45deg);
  616. transform: rotate(45deg);
  617. content: "";
  618. background: none;
  619. background-image: none !important;
  620. background-repeat: no-repeat;
  621. background-position: center center;
  622. background-size: 50% 50%;
  623. }
  624. .custom-control-input {
  625. position: absolute;
  626. z-index: -1;
  627. opacity: 0;
  628. }
  629. .custom-radio .custom-control-input:checked ~ .cst-control-label::before {
  630. background-color: #fff;
  631. }
  632. .custom-radio .cst-control-label::after {
  633. border-width: 5px;
  634. border-radius: 100%;
  635. background: #ffffff;
  636. transform: none;
  637. width: 36px;
  638. height: 36px;
  639. border: 8px solid #e4e4e4;
  640. box-sizing: border-box;
  641. top: -4px;
  642. left: -50px;
  643. }
  644. .custom-radio .custom-control-input:checked ~ .cst-control-label::after {
  645. /* background-image: url(data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E); */
  646. display: block;
  647. border: 8px solid #98bb57;
  648. }
  649. .custom-control-input:active ~ .cst-control-label::before {
  650. color: #fff;
  651. background-color: rgba(152, 187, 87, 0.4);
  652. }
  653. .custom-radio .cst-control-label::before {
  654. border-radius: 100%;
  655. }
  656. .modal-dialog-centered {
  657. display: -ms-flexbox;
  658. display: flex;
  659. -ms-flex-align: center;
  660. align-items: center;
  661. min-height: calc(100% - (0.5rem * 2));
  662. }
  663. .modal-content {
  664. position: relative;
  665. display: -ms-flexbox;
  666. display: flex;
  667. -ms-flex-direction: column;
  668. flex-direction: column;
  669. width: 100%;
  670. margin:0 auto;
  671. pointer-events: auto;
  672. background-color: #fff;
  673. background-clip: padding-box;
  674. border: 1px solid rgba(0, 0, 0, 0.2);
  675. border-radius: 0.3rem;
  676. outline: 0
  677. }
  678. .modal-header {
  679. display: -ms-flexbox;
  680. display: flex;
  681. -ms-flex-align: start;
  682. align-items: flex-start;
  683. -ms-flex-pack: justify;
  684. justify-content: space-between;
  685. padding: 1rem 1.5rem !important;
  686. border-bottom: 1px solid #e9ecef;
  687. border-top-left-radius: 0.3rem;
  688. border-top-right-radius: 0.3rem;
  689. background: #f5f5f5;
  690. }
  691. .modal-header .close {
  692. padding: 0.8rem;
  693. margin: -1rem -1rem -1rem auto;
  694. font-size: 34px;
  695. color: #000 !important;
  696. opacity: 1;
  697. }
  698. button.close {
  699. padding: 0;
  700. background-color: transparent;
  701. border: 0;
  702. -webkit-appearance: none;
  703. }
  704. .modal-title {
  705. font-size: 22px;
  706. font-weight: bold;
  707. margin-bottom: 0;
  708. line-height: 1.5;
  709. }
  710. .modal-body {
  711. position: relative;
  712. -ms-flex: 1 1 auto;
  713. flex: 1 1 auto;
  714. padding: 3rem 1.5rem !important;
  715. text-align: center;
  716. font-size: 18px;
  717. line-height: 26px;
  718. color: #222222;
  719. }
  720. .modal-footer {
  721. display: -ms-flexbox;
  722. display: flex;
  723. -ms-flex-align: center;
  724. align-items: center;
  725. -ms-flex-pack: end;
  726. justify-content: flex-end;
  727. padding: 0.5rem 1.5rem !important;
  728. border-top: 1px solid #e9ecef;
  729. background: #f5f5f5;
  730. border-bottom-left-radius: .3rem;
  731. border-bottom-right-radius: .3rem;
  732. }
  733. .btn-dialog {
  734. color: #747478;
  735. background: none;
  736. opacity: 1;
  737. font-weight: bold;
  738. padding:5px 15px;
  739. }
  740. .btn-dialog-blue {
  741. color: #405ab7;
  742. background: none;
  743. opacity: 1;
  744. font-weight: bold;
  745. }
  746. .modal-header::after, .modal-header::before{display: none;}
  747. .chart-view-item{margin-top:10px;padding:20px 15px 20px 15px;;}
  748. .chart-view-item + .chart-view-item{margin-bottom:30px;}
  749. .chart-view-top{padding:20px 15px;}
  750. .patient-info{padding-top:18px;}
  751. .row.description{margin-top:20px;}
  752. .chart-view-item .btn{margin-bottom:10px;}
  753. .chart-notice{padding:30px 15px;}
  754. .notice-more-btn{margin-top:15px;}
  755. .chart-view-history-top{padding:10px 15px 22px 15px;}
  756. .procedure-detail{padding: 5px 15px 20px 15px;margin-bottom:30px;}
  757. .select_toggle{margin-top:10px;}
  758. .inquiry-slide-btn{margin-top:20px;}
  759. .inquiry-slide-wrap{padding:15px;}
  760. .history-card{margin-top:15px;}
  761. .history-card + .history-card{margin-top:5px;}
  762. .sub_wrap{padding:15px;}
  763. /*로그인*/
  764. .login_wrap{display: flex;background-image: linear-gradient(#fff, #fff);}
  765. .login_wrap .inner{width:calc(100% - 25%);margin:0 auto;position:relative; min-height:100%;}
  766. .login_wrap .logo_wrap{text-align:center;padding-top: 32%;width:100%;}
  767. .login_wrap .logo_wrap img{max-width: 80%;}
  768. .login_wrap .footer{padding:20px 0 35px 0;color:#226f4a;font-size:15px;text-align:center;opacity: 0.5;}
  769. .login_wrap button{width: 100%;box-sizing: border-box;margin-bottom:40px;padding:18px 0;border:3px solid #226f4a;color:#226f4a;font-size:24px;background: none;border-radius: 5px;font-weight: bold;}
  770. .login_wrap button.fido{color:#98bb57;border:3px solid #98bb57;}
  771. .login_wrap .input_wrap{/* position:absolute; */width:100%;bottom:0;left:0;}
  772. .login_wrap .input_line{overflow: hidden;display: block;position: relative;border-bottom:4px solid #98bb57;border-radius: 1px;}
  773. .login_wrap .input_line + .input_line{margin-top:40px;}
  774. .login_wrap .input_line label{display: inline-block;width:23%;float:left;font-size:24px;color:#226f4a;font-weight: bold;text-indent:12px; line-height: 44px;}
  775. .login_wrap .input_line input{display: inline-block;border:0;background: none;width: 75%;float:right;line-height: 44px;outline: none;color:#000000;font-size:24px; }
  776. .login_wrap .input_line input[type="password"]{font-family:Sans-serif;}
  777. .login_wrap .checkbox_wrap{margin:24px 0;overflow: hidden;}
  778. .login_wrap .checkbox_wrap .custom-control{margin-top:0;background: none;box-shadow: none;box-sizing: border-box;width: auto;float:left;}
  779. .login_wrap .checkbox_wrap .custom-control:first-child{margin-left: -10px;}
  780. .login_wrap .checkbox_wrap .custom-control.right{width: auto;float:right;}
  781. .login_wrap .cst-control-label{color:#226f4a;}
  782. .often_use_login{margin: -20px -20px 0 -20px;padding:55px 0;background: #fff;text-align:center;box-shadow: 1px 3px 15px #dfdfdf;}
  783. .often_use_login h5{color:#000;font-size:22px;font-weight: bold;padding-bottom:20px;}
  784. .often_use_login p{color:#545454;font-size:18px;line-height: 30px;}
  785. .often_use_login .pic{padding:25px 0;}
  786. .often_use_login .pic img{width: 130px;}
  787. .radio_wrap{margin-top:30px;}
  788. .radio_wrap .custom-control{background: none;box-shadow: none;}
  789. .radio_wrap .custom-control + .custom-control{margin-top:0;}
  790. .prescription .chart-content div p:last-child:before{display: none;}
  791. .prescription .chart-content{margin-bottom:5px;}
  792. .prescription .chart-content .row{display: flex;}
  793. .prescription .chart-content .row::before{display: none;}
  794. .prescription .chart-content .row div{margin: auto 0;}
  795. .prescription .chart-content .row div:nth-child(odd){font-family: "NSL";font-weight: normal;}
  796. .prescription .chart-content .row div:last-child{color:#98bb57;}
  797. .chart-info.prescription div p{position: relative;}
  798. .chart-info.prescription span.ascending, .chart-info.prescription span.descending{position: absolute;}
  799. .chart-info.prescription span.ascending em, .chart-info.prescription span.descending em{display: inline-block;text-indent: -99999px;}
  800. .chart-info.prescription span.ascending::before{display: inline-block;vertical-align: top;margin:4px 0 0 6px;border-bottom: solid 12px #0067a1;border-left: solid 7px transparent;border-right: solid 7px transparent;content: "";}
  801. .chart-info.prescription span.descending::before{display: inline-block;vertical-align: top;margin:5px 0 0 6px;border-top: solid 12px #0067a1;border-left: solid 7px transparent;border-right: solid 7px transparent;content: "";}
  802. .prescription_slide_wrap{display: none;position:relative;border-top:1px solid #dddddd;background: #f7f9fb;}
  803. .prescription_slide_wrap dl{padding:30px;}
  804. .prescription_slide_wrap dl dt{padding-bottom:5px;color:#888888;font-size:15px;}
  805. .prescription_slide_wrap dl dd + dt{padding-top:20px;}
  806. .prescription_slide_wrap dl dd{font-size:15px;color:#000000;}
  807. .prescription_slide_wrap dl dd strong{font-size:18px;}
  808. .prescription_slide_wrap .btn_wrap{overflow: hidden;background: #fff;width: 100%;}
  809. .prescription_slide_wrap .btn_wrap button{float:left;width: 50%;border:0;border-radius: 0;background: #fff;border-top:1px solid #dddddd;font-size:15px;padding:15px 0;font-weight: bold;}
  810. .chart-info.prescription div p{display: block;}
  811. .prescription_slide_wrap .btn_wrap button:first-child{border-right:1px solid #dddddd;}
  812. .prescription_slide_wrap .btn_wrap.one_btn button{width: 100%;border-right:0;}
  813. .prescription_slide_wrap .btn_wrap button.optionA{color:#0067a1;}
  814. .prescription_slide_wrap .btn_wrap button.optionB{color:#98bb57;}
  815. .main_fixed_wrap.prescription{position: inherit;width: 100%;background:#ececec;padding-top:7px;}
  816. .main_fixed_wrap.prescription .chart-view-top{margin: 10px 15px 0px 15px;}
  817. .container-fluid .chart-info.list.prescription{padding-top:0;}
  818. .main_fixed_wrap.prescription .select_toggle{width: 100%;}
  819. .prescription .dropdown, .prescription .chart-info{width: 100%;margin-bottom:0;}
  820. .collapse .row div:last-child{padding-right:0;}
  821. .chart-info.prescription{padding-top:15px;}
  822. .container-fluid .main_fixed_wrap.prescription{padding-top:5px;}
  823. .chart-info.prescription.list.up{padding-top:0;}
  824. .chart-info.list.prescription{padding-top:3px;}
  825. .sub_wrap.layout_has_fixed_bottom{padding-bottom:100px;}
  826. /* ---- Publishing CSS } ---- */
  827. /* ---- 3줄 collapse 설정 { ---- */
  828. .select_toggle .row,.chart-info2 .row{margin:0;}
  829. .chart-info2.pix{position:fixed}
  830. .chart-info2{background:#f8f8f8;}
  831. .chart-info2.list{padding-top:352px;transition: all 0.5s;width:100%}
  832. .chart-info2.list.up{padding-top:196px;}
  833. .chart-info2 div p{display: inline-block;margin:0;vertical-align: middle}
  834. .chart-info2 .well{padding:0;border:0;margin-bottom:4px;}
  835. .chart-info2 .chart-content .row div.p-info-02,.chart-info2 .chart-content .row div.p-info-03,.chart-info2 .chart-content .row div.p-info-04{padding:16px 0}
  836. .chart-info2{width:calc( 100% - 129px );padding:0 16px 4px 16px; }
  837. .chart-info2.prescription div p{position: relative;}
  838. .chart-info2.prescription span.ascending, .chart-info2.prescription span.descending{position: absolute;}
  839. .chart-info2.prescription span.ascending em, .chart-info2.prescription span.descending em{display: inline-block;text-indent: -99999px;}
  840. .chart-info2.prescription span.ascending::before{display: inline-block;vertical-align: top;margin:4px 0 0 6px;border-bottom: solid 12px #0067a1;border-left: solid 7px transparent;border-right: solid 7px transparent;content: "";}
  841. .chart-info2.prescription span.descending::before{display: inline-block;vertical-align: top;margin:5px 0 0 6px;border-top: solid 12px #0067a1;border-left: solid 7px transparent;border-right: solid 7px transparent;content: "";}
  842. .chart-info2.prescription div p{display: block;}
  843. .container-fluid .chart-info2.list.prescription{padding-top:0;}
  844. .prescription .dropdown, .prescription .chart-info2{width: 100%;margin-bottom:0;}
  845. .chart-info2.prescription{padding-top:15px;}
  846. .chart-info2.prescription.list.up{padding-top:0;}
  847. .chart-info2.list.prescription{padding-top:3px;}
  848. .collapse2 .row:last-child{margin-top:4px}
  849. .collapse2 .row div{padding:0 4px 0 0}
  850. .container-fluid .main_fixed_wrap .collapse2{transition:all 0.2s}
  851. .main_fixed_wrap .collapse2{height:147px;transition: all 0.5s;overflow: hidden;}
  852. .main_fixed_wrap .collapse2.up{height: 0;}
  853. .collapse2 .row div:last-child{padding-right:0;}
  854. input[type=date]{
  855. -webkit-appearance:none;
  856. }
  857. /* ---- 3줄 collapse 설정 } ---- */