rehabilitation_management.css 12 KB

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