rehabilitation_management.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  1. .flex-box {
  2. display: -webkit-box;
  3. /* OLD - iOS 6-, Safari 3.1-6 */
  4. /* OLD - Firefox 19- (buggy but mostly works) */
  5. display: -ms-flexbox;
  6. /* TWEENER - IE 10 */
  7. /* NEW - Chrome */
  8. display: flex;
  9. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  10. -webkit-box-pack: center;
  11. -ms-flex-pack: center;
  12. justify-content: center;
  13. -webkit-box-align: center;
  14. -ms-flex-align: center;
  15. align-items: center;
  16. -ms-flex-wrap: wrap;
  17. flex-wrap: wrap;
  18. }
  19. .flex-box-item {
  20. -webkit-box-flex: 1;
  21. /* OLD - iOS 6-, Safari 3.1-6 */
  22. -moz-box-flex: 1;
  23. /* OLD - Firefox 19- */
  24. -webkit-flex: 1;
  25. /* Chrome */
  26. -ms-flex: 1;
  27. /* IE 10 */
  28. width: 50%;
  29. /* For old syntax, otherwise collapses. */
  30. flex: 1;
  31. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  32. position: relative;
  33. }
  34. [flex-grow="2"] {
  35. -webkit-box-flex: 2;
  36. -ms-flex-positive: 2;
  37. flex-grow: 2;
  38. }
  39. [flex-grow="5"] {
  40. -webkit-box-flex: 5;
  41. -ms-flex-positive: 5;
  42. flex-grow: 5;
  43. }
  44. body,
  45. html,
  46. .c-container {
  47. height: 100%;
  48. }
  49. .rehabilition {
  50. /*height: 100%;*/
  51. overflow: hidden;
  52. /*overflow-y: scroll;*/
  53. /*padding-top: 49px;*/
  54. /*max-width: 1620px;*/
  55. margin: 0 auto;
  56. padding-bottom: 50px;
  57. }
  58. .nav-content-right {
  59. height: 100%;
  60. overflow: auto;
  61. }
  62. .search-left {
  63. border-right: solid 1px #d7dce6;
  64. background-color: #f5f5f5;
  65. height: 100%;
  66. }
  67. .mw400 {
  68. max-width: 400px;
  69. }
  70. .search-condition {
  71. padding: 20px 10px;
  72. border-bottom: solid 1px #d7dce6;
  73. }
  74. .search-condition p {
  75. font-size: 14px;
  76. margin-bottom: 15px;
  77. }
  78. .task-list {
  79. padding-left: 10px;
  80. overflow: hidden;
  81. }
  82. .task-list li {
  83. width: 90px;
  84. cursor: pointer;
  85. text-align: center;
  86. display: block;
  87. float: left;
  88. border-radius: 14px;
  89. font-size: 14px;
  90. margin-left: 20px;
  91. margin-bottom: 20px;
  92. color: #333333;
  93. border: solid 1px #d7dce6;
  94. padding: 3px;
  95. }
  96. .task-list li.active {
  97. background-color: #12b7f5;
  98. color: #fff;
  99. }
  100. .btn-search {
  101. background-color: #12b7f5;
  102. color: #fff;
  103. border-radius: 0;
  104. width: 120px;
  105. margin-top: 30px;
  106. }
  107. .btn-search:hover,
  108. .btn-search:focus,
  109. .btn-search:active,
  110. .btn-search:hover:active {
  111. background-color: #1c9aca;
  112. color: #fff;
  113. outline: none;
  114. outline-color: transparent;
  115. }
  116. /*日历*/
  117. .calendar-content {
  118. margin: 0 auto;
  119. }
  120. /*图例注释*/
  121. .calendar-descript {
  122. padding: 15px 20px;
  123. background-color: #fff;
  124. }
  125. .calendar-descript span {
  126. vertical-align: middle;
  127. }
  128. .icon {
  129. width: 12px;
  130. height: 12px;
  131. vertical-align: middle;
  132. background-size: 100% 100%;
  133. background-repeat: no-repeat;
  134. display: inline-block;
  135. }
  136. .icon-blue {
  137. background-color: #12b7f5;
  138. border-radius: 2px;
  139. }
  140. .icon-green {
  141. background-color: #2dbe55;
  142. border-radius: 2px;
  143. }
  144. .icon-flag {
  145. background-image: url(../images/woderenwu_icon.png);
  146. background-size: 100% 100%;
  147. }
  148. .icon-shuaxin {
  149. background-image: url(../images/icon/shuaxin.png);
  150. }
  151. .icon-shuaxin:hover {
  152. background-image: url(../images/icon/shuaxin1.png);
  153. }
  154. .icon-back {
  155. background-image: url(../images/icon/fanhui_icon.png);
  156. }
  157. .icon-back:hover {
  158. background-image: url(../images/icon/fanhui02_icon.png);
  159. }
  160. .icon-check {
  161. background-image: url(../images/wancheng_icon.png);
  162. background-size: 100% 100%;
  163. }
  164. .icon-prev {
  165. background-image: url(../images/icon/houtui_icon.png);
  166. }
  167. .icon-next {
  168. background-image: url(../images/icon/qianjing_icon.png);
  169. }
  170. .icon-rili {
  171. background-image: url(../images/icon/rilibiao02_icon.png);
  172. }
  173. .rili:hover .icon-rili,
  174. .active .icon-rili {
  175. background-image: url(../images/icon/rilibiao_icon.png);
  176. }
  177. .icon-liebiao {
  178. background-image: url(../images/icon/shijianzhou_icon.png);
  179. }
  180. .shijianzhou:hover .icon-liebiao,
  181. .active .icon-liebiao {
  182. background-image: url(../images/icon/shijianzhou02_icon.png);
  183. }
  184. .icon-20 {
  185. width: 20px;
  186. height: 20px;
  187. }
  188. .icon-16 {
  189. width: 16px;
  190. height: 16px;
  191. }
  192. /*周期*/
  193. .calendar-week {
  194. background-color: #ebebf5;
  195. border: solid 1px #d7dce6;
  196. padding: 11px;
  197. }
  198. /*日期*/
  199. .calendar-days>.flex-box {
  200. border-bottom: 1px solid #d7dce6;
  201. border-right: 1px solid #D7DCE6;
  202. /*border-left: 1px solid #D7DCE6;*/
  203. }
  204. .calendar-day {
  205. height: 135px;
  206. border-left: 1px solid #d7dce6;
  207. cursor: pointer;
  208. position: relative;
  209. padding: 5px;
  210. width: 14.28571428%;
  211. /*border-bottom: 1px solid #d7dce6;*/
  212. }
  213. .calendar-days .calendar-day:first-child {
  214. border-left-width: 0;
  215. }
  216. .calendar-day:hover {
  217. -webkit-box-shadow: 0 0 0 1px #12b7f5 inset;
  218. box-shadow: 0 0 0 1px #12b7f5 inset;
  219. }
  220. .calendar-day.current-day {
  221. background-color: #ddf6fe;
  222. }
  223. .no-server {
  224. text-align: center;
  225. top: 50%;
  226. position: absolute;
  227. left: 0;
  228. right: 0;
  229. color: #c8c8c8;
  230. font-size: 18px;
  231. }
  232. /*彩带*/
  233. .coloured-ribbon {
  234. font-size: 12px;
  235. width: 22px;
  236. text-align: center;
  237. height: 40px;
  238. display: inline-block;
  239. padding-top: 8px;
  240. line-height: 1;
  241. color: #fff;
  242. }
  243. .coloured-box {
  244. top: 0;
  245. position: absolute;
  246. right: 5px;
  247. }
  248. .coloured-ribbon-blue {
  249. background-image: url(../images/biaoqian-lanse_img.png);
  250. background-position: center center;
  251. background-size: 100% 100%;
  252. background-repeat: no-repeat;
  253. }
  254. .coloured-ribbon-green {
  255. background-image: url(../images/biaoqian-lvse_img.png);
  256. background-position: center center;
  257. background-size: 100% 100%;
  258. background-repeat: no-repeat;
  259. margin-left: 5px;
  260. }
  261. .task-icon {
  262. position: absolute;
  263. left: 50px;
  264. top: 10px;
  265. min-height: 20px;
  266. }
  267. .task-icon .icon-check {
  268. position: absolute;
  269. right: -3px;
  270. bottom: 0;
  271. width: 15px;
  272. height: 15px;
  273. }
  274. .day-number {
  275. font-size: 28px;
  276. color: #999999;
  277. margin-bottom: 0;
  278. line-height: 1;
  279. }
  280. /*进度条*/
  281. .progress-box {
  282. position: absolute;
  283. bottom: 0;
  284. left: 0;
  285. right: 0;
  286. padding: 10px 5px;
  287. text-align: center;
  288. }
  289. .progress-box .progress {
  290. margin-bottom: 9px;
  291. background-color: #d7dce6;
  292. border-radius: 10px;
  293. position: relative;
  294. }
  295. .progress-box .progress>span {
  296. position: absolute;
  297. left: 0;
  298. right: 0;
  299. text-align: center;
  300. color: #333333;
  301. top: 2px;
  302. }
  303. .progress-box .progress-bar {
  304. background-color: #12b7f5;
  305. border-radius: 10px;
  306. }
  307. .progress-box .progress-bar-success {
  308. background-color: #2dbe55;
  309. border-radius: 10px;
  310. }
  311. /*页头*/
  312. /*max-width: 1620px;*/
  313. .page-title {
  314. /*position: fixed;
  315. top: 0;
  316. left: 0;
  317. right: 0;*/
  318. padding: 9px;
  319. border-bottom: 1px solid #d7dce6;
  320. z-index: 5;
  321. /*margin: 0 auto;*/
  322. background-color: #fff
  323. }
  324. .page-title-name {
  325. padding-right: 15px;
  326. font-size: 14px;
  327. border-right: 1px solid #d7dce6;
  328. display: inline-block;
  329. margin-right: 10px;
  330. }
  331. .page-title span {
  332. vertical-align: middle;
  333. }
  334. .mr10 {
  335. margin-right: 10px;
  336. }
  337. .page-title .icon {
  338. cursor: pointer;
  339. }
  340. .currentDay {
  341. font-size: 16px;
  342. margin: 0 25px;
  343. vertical-align: middle;
  344. width: 100px;
  345. text-align: justify;
  346. text-align-last: justify;
  347. display: inline-block;
  348. }
  349. .switch-list {
  350. border: solid 1px #12b7f5;
  351. border-radius: 6px;
  352. overflow: hidden;
  353. }
  354. .switch-list .icon {
  355. position: relative;
  356. top: 3px;
  357. }
  358. .rili,
  359. .shijianzhou {
  360. width: 40px;
  361. height: 28px;
  362. display: inline-block;
  363. float: left;
  364. background-color: #fff;
  365. }
  366. .rili.active,
  367. .shijianzhou.active,
  368. .rili:hover,
  369. .shijianzhou:hover {
  370. background-color: #12b7f5;
  371. border-radius: 5px;
  372. }
  373. /*列表展示*/
  374. .time-axis td {
  375. border: none !important;
  376. color: inherit;
  377. }
  378. .time-axis th {
  379. background-color: #f5f5fa;
  380. border-bottom: solid 1px #d7dce6;
  381. }
  382. .time-axis td p {
  383. color: inherit;
  384. }
  385. .ellipsis {
  386. white-space: nowrap;
  387. overflow: hidden;
  388. text-overflow: ellipsis;
  389. }
  390. .time {
  391. position: relative;
  392. }
  393. .time-box {
  394. position: relative;
  395. padding: 8px 50px 8px 8px!important;
  396. }
  397. .cur-status {
  398. position: absolute;
  399. z-index: 3;
  400. right: 5px;
  401. top: 50%;
  402. padding: 8px;
  403. line-height: 1;
  404. margin-top: -12.5px;
  405. border-radius: 100%;
  406. color: #fff;
  407. }
  408. .cur-status:empty {
  409. margin-top: -8px;
  410. right: 12.5px;
  411. background-color: #d7dce6;
  412. }
  413. .time-axis [is-future="1"] {
  414. background-color: #dff5fc;
  415. color: #12b7f5;
  416. }
  417. /*.time-axis [is-future="1"] td p,.time-axis [is-future="1"] td{}*/
  418. .time-axis tr:hover {
  419. background-color: #f5f5fa;
  420. color: #333333;
  421. }
  422. /*.time-axis tr:hover p{}*/
  423. [is-future="1"] .cur-status,
  424. [is-future="2"] .cur-status {
  425. background-color: #12b7f5;
  426. }
  427. [is-future="-1"] .cur-status {
  428. background-color: #ff3b30;
  429. }
  430. .c-ff3b30 {
  431. color: #ff3b30!important;
  432. }
  433. [is-future="1"] .day-number {
  434. color: #12B6F4;
  435. }
  436. [is-future="2"] .day-number {
  437. color: #333;
  438. }
  439. [is-future="3"] .cur-status {
  440. background-color: #5cb85c;
  441. }
  442. .calendar-day[is-future="0"] {
  443. background-color: #f5f5fa;
  444. }
  445. .calendar-day[is-future="1"] {
  446. background-color: rgba(18, 182, 244, 0.25);
  447. }
  448. .calendar-day[is-future="3"] {
  449. background-color: #efefef;
  450. }
  451. .time-box:after {
  452. content: '';
  453. position: absolute;
  454. right: 0;
  455. z-index: 2;
  456. right: 19px;
  457. height: 100%;
  458. width: 1px;
  459. background-color: #d7dce6;
  460. top: 50%;
  461. }
  462. .time-axis tr:nth-last-of-type(1) .time-box:after {
  463. display: none;
  464. }
  465. .view-task {
  466. text-align: center;
  467. cursor: pointer;
  468. }
  469. .task-status {
  470. text-align: center;
  471. }
  472. [v-cloak] {
  473. display: none;
  474. }
  475. .visibility-hide {
  476. visibility: hidden;
  477. }
  478. .c-666 {
  479. color: #666!important;
  480. }
  481. .w-80 {
  482. width: 80%;
  483. margin: 0 auto;
  484. }
  485. .w400 {
  486. width: 400px;
  487. }
  488. .bgc-f5f5f5 {
  489. background-color: #f5f5f5;
  490. }
  491. .search-left {
  492. height: 100%;
  493. right: -400px;
  494. z-index: 999;
  495. }
  496. .tac{
  497. text-align: center;
  498. }
  499. .c-h100 {
  500. height: 100%;
  501. }
  502. .set-open {
  503. width: 40px;
  504. left: -40px;
  505. top: 0;
  506. cursor: pointer;
  507. }
  508. .set-close {
  509. width: 14px;
  510. height: 14px;
  511. top: 15px;
  512. right: 15px;
  513. background: url(../../../images/guanbi_icon.png) no-repeat no-repeat center center;
  514. background-size: 12px 12px;
  515. cursor: pointer;
  516. }
  517. .div-kuaisu-task {
  518. width: 98px;
  519. height: 28px;
  520. line-height: 28px;
  521. background-color: #ffffff;
  522. border-radius: 2px;
  523. border: solid 1px #d7dce6;
  524. position: absolute;
  525. right: 102px;
  526. }
  527. .calendar-descript {
  528. text-align: right;
  529. }
  530. .div-left {
  531. width: 460px;
  532. background-color: #ffffff;
  533. border-right: 1px solid #E1E1E1;
  534. }
  535. .div-right {
  536. width: calc(100% - 460px);
  537. }
  538. .rehabilition {
  539. height: calc(100% - 49px);
  540. padding-bottom: 0;
  541. }
  542. .tag {
  543. display: inline-block;
  544. /*background-image: url(../images/yuanjiao_biaoqian_img.png);*/
  545. background-repeat: no-repeat;
  546. background-size: 100%;
  547. width: 60px;
  548. height: 17px;
  549. line-height: 17px;
  550. font-size: 12px;
  551. color: #fff;
  552. padding-left: 15px;
  553. position: absolute;
  554. left: 191px;
  555. top: 46px;
  556. }
  557. .tag-1 {
  558. background-image: url(../images/yuanjiao_biaoqian02_img.png);
  559. }
  560. .tag-2 {
  561. background-image: url(../images/yuanjiao_biaoqian03_img.png);
  562. }
  563. .tag-3 {
  564. background-image: url(../images/yuanjiao_biaoqian04_img.png);
  565. }
  566. .tag-4 {
  567. background-image: url(../images/yuanjiao_biaoqian01_img.png);
  568. }
  569. .div-patient-home {
  570. width: 98px;
  571. height: 26px;
  572. line-height: 26px;
  573. text-align: center;
  574. border-radius: 2px;
  575. border: solid 1px #d7dce6;
  576. margin-top: 5px;
  577. cursor: pointer;
  578. }
  579. .div-patient-comfirm {
  580. width: 98px;
  581. height: 26px;
  582. line-height: 26px;
  583. text-align: center;
  584. border-radius: 2px;
  585. border: solid 1px #12b7f5;
  586. margin-top: -4px;
  587. cursor: pointer;
  588. }
  589. .progress-bar {
  590. position: relative;
  591. width: 100%;
  592. height: 28px;
  593. border-radius: 28px;
  594. background-color: #ebebf5;
  595. }
  596. .progress-bar .progress {
  597. display: block;
  598. position: absolute;
  599. top: 0;
  600. left: 0;
  601. height: 28px;
  602. border-radius: 28px;
  603. }
  604. .progress-bar .p-text {
  605. display: inline-block;
  606. position: absolute;
  607. top: 0;
  608. left: 0;
  609. width: 100%;
  610. text-align: center;
  611. font-size: 14px;
  612. height: 28px;
  613. line-height: 28px;
  614. z-index: 2;
  615. }
  616. .progress-bar.h15,
  617. .progress-bar.h15 .progress,
  618. .progress-bar.h15 .p-text {
  619. height: 15px;
  620. border-radius: 15px;
  621. line-height: 15px;
  622. font-size: 12px;
  623. }
  624. .bgc-ff9526 {
  625. background-color: #ff9526;
  626. }
  627. .bgc-12b7f5 {
  628. background-color: #12b7f5;
  629. }