123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887 |
- .flex-box {
- display: -webkit-box;
- /* OLD - iOS 6-, Safari 3.1-6 */
- /* OLD - Firefox 19- (buggy but mostly works) */
- display: -ms-flexbox;
- /* TWEENER - IE 10 */
- /* NEW - Chrome */
- display: flex;
- /* NEW, Spec - Opera 12.1, Firefox 20+ */
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .flex-box-item {
- -webkit-box-flex: 1;
- /* OLD - iOS 6-, Safari 3.1-6 */
- -moz-box-flex: 1;
- /* OLD - Firefox 19- */
- -webkit-flex: 1;
- /* Chrome */
- -ms-flex: 1;
- /* IE 10 */
- width: 50%;
- /* For old syntax, otherwise collapses. */
- flex: 1;
- /* NEW, Spec - Opera 12.1, Firefox 20+ */
- position: relative;
- }
- [flex-grow="2"] {
- -webkit-box-flex: 2;
- -ms-flex-positive: 2;
- flex-grow: 2;
- }
- [flex-grow="5"] {
- -webkit-box-flex: 5;
- -ms-flex-positive: 5;
- flex-grow: 5;
- }
- body,
- html,
- .c-container {
- height: 100%;
- }
- .rehabilition {
- /*height: 100%;*/
- overflow: hidden;
- /*overflow-y: scroll;*/
- /*padding-top: 49px;*/
- /*max-width: 1620px;*/
- margin: 0 auto;
- padding-bottom: 50px;
- }
- .nav-content-right {
- height: 100%;
- overflow: auto;
- }
- .search-left {
- border-right: solid 1px #d7dce6;
- background-color: #f5f5f5;
- height: 100%;
- }
- .mw400 {
- max-width: 400px;
- }
- .search-condition {
- padding: 20px 10px;
- border-bottom: solid 1px #d7dce6;
- }
- .search-condition p {
- font-size: 14px;
- margin-bottom: 15px;
- }
- .task-list {
- padding-left: 10px;
- overflow: hidden;
- }
- .task-list li {
- min-width: 90px;
- cursor: pointer;
- text-align: center;
- display: block;
- float: left;
- border-radius: 14px;
- font-size: 14px;
- margin-left: 20px;
- margin-bottom: 20px;
- color: #333333;
- border: solid 1px #d7dce6;
- padding: 3px 8px;
- }
- .task-list li.active {
- background-color: #12b7f5;
- color: #fff;
- }
- .btn-search {
- background-color: #12b7f5;
- color: #fff;
- border-radius: 0;
- width: 120px;
- margin-top: 30px;
- }
- .btn-search:hover,
- .btn-search:focus,
- .btn-search:active,
- .btn-search:hover:active {
- background-color: #1c9aca;
- color: #fff;
- outline: none;
- outline-color: transparent;
- }
- /*日历*/
- .calendar-content {
- margin: 0 auto;
- height: 100%;
- }
- /*图例注释*/
- .calendar-descript {
- padding: 15px 20px;
- background-color: #fff;
- }
- .calendar-descript span {
- vertical-align: middle;
- }
- .icon {
- width: 12px;
- height: 12px;
- vertical-align: middle;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- display: inline-block;
- }
- .icon-blue {
- background-color: #12b7f5;
- border-radius: 2px;
- }
- .icon-green {
- background-color: #2dbe55;
- border-radius: 2px;
- }
- .icon-flag {
- background-image: url(../images/woderenwu_icon.png);
- background-size: 100% 100%;
- }
- .icon-shuaxin {
- background-image: url(../images/icon/shuaxin.png);
- }
- .icon-shuaxin:hover {
- background-image: url(../images/icon/shuaxin1.png);
- }
- .icon-back {
- background-image: url(../images/icon/fanhui_icon.png);
- }
- .icon-back:hover {
- background-image: url(../images/icon/fanhui02_icon.png);
- }
- .icon-check {
- background-image: url(../images/wancheng_icon.png);
- background-size: 100% 100%;
- }
- .icon-prev {
- background-image: url(../images/icon/houtui_icon.png);
- }
- .icon-next {
- background-image: url(../images/icon/qianjing_icon.png);
- }
- .icon-rili {
- background-image: url(../images/icon/rilibiao02_icon.png);
- }
- .rili:hover .icon-rili,
- .active .icon-rili {
- background-image: url(../images/icon/rilibiao_icon.png);
- }
- .icon-liebiao {
- background-image: url(../images/icon/shijianzhou_icon.png);
- }
- .shijianzhou:hover .icon-liebiao,
- .active .icon-liebiao {
- background-image: url(../images/icon/shijianzhou02_icon.png);
- }
- .icon-20 {
- width: 20px;
- height: 20px;
- }
- .icon-16 {
- width: 16px;
- height: 16px;
- }
- /*周期*/
- .calendar-week {
- background-color: #ebebf5;
- border: solid 1px #d7dce6;
- padding: 11px;
- }
- /*日期*/
- .calendar-days>.flex-box {
- border-bottom: 1px solid #d7dce6;
- border-right: 1px solid #D7DCE6;
- /*border-left: 1px solid #D7DCE6;*/
- }
- .calendar-day {
- height: 135px;
- border-left: 1px solid #d7dce6;
- cursor: pointer;
- position: relative;
- padding: 5px;
- width: 14.28571428%;
- /*border-bottom: 1px solid #d7dce6;*/
- }
- .calendar-days .calendar-day:first-child {
- border-left-width: 0;
- }
- .calendar-day:hover {
- -webkit-box-shadow: 0 0 0 1px #12b7f5 inset;
- box-shadow: 0 0 0 1px #12b7f5 inset;
- }
- .calendar-day.current-day {
- background-color: #ddf6fe;
- }
- .no-server {
- text-align: center;
- top: 50%;
- position: absolute;
- left: 0;
- right: 0;
- color: #c8c8c8;
- font-size: 18px;
- }
- /*彩带*/
- .coloured-ribbon {
- font-size: 12px;
- width: 22px;
- text-align: center;
- height: 40px;
- display: inline-block;
- padding-top: 8px;
- line-height: 1;
- color: #fff;
- }
- .coloured-box {
- top: 0;
- position: absolute;
- right: 5px;
- }
- .coloured-ribbon-blue {
- background-image: url(../images/biaoqian-lanse_img.png);
- background-position: center center;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- }
- .coloured-ribbon-green {
- background-image: url(../images/biaoqian-lvse_img.png);
- background-position: center center;
- background-size: 100% 100%;
- background-repeat: no-repeat;
- margin-left: 5px;
- }
- .task-icon {
- position: absolute;
- left: 50px;
- top: 10px;
- min-height: 20px;
- }
- .task-icon .icon-check {
- position: absolute;
- right: -3px;
- bottom: 0;
- width: 15px;
- height: 15px;
- }
- .day-number {
- font-size: 28px;
- color: #999999;
- margin-bottom: 0;
- line-height: 1;
- }
- /*进度条*/
- .progress-box {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 10px 5px;
- text-align: center;
- }
- .progress-box .progress {
- margin-bottom: 9px;
- background-color: #d7dce6;
- border-radius: 10px;
- position: relative;
- }
- .progress-box .progress>span {
- position: absolute;
- left: 0;
- right: 0;
- text-align: center;
- color: #333333;
- top: 2px;
- }
- .progress-box .progress-bar {
- background-color: #12b7f5;
- border-radius: 10px;
- }
- .progress-box .progress-bar-success {
- background-color: #2dbe55;
- border-radius: 10px;
- }
- /*页头*/
- /*max-width: 1620px;*/
- .page-title {
- /*position: fixed;
- top: 0;
- left: 0;
- right: 0;*/
- padding: 9px;
- border-bottom: 1px solid #d7dce6;
- z-index: 5;
- /*margin: 0 auto;*/
- background-color: #fff
- }
- .page-title-name {
- padding-right: 15px;
- font-size: 14px;
- border-right: 1px solid #d7dce6;
- display: inline-block;
- margin-right: 10px;
- }
- .page-title span {
- vertical-align: middle;
- }
- .mr10 {
- margin-right: 10px;
- }
- .page-title .icon {
- cursor: pointer;
- }
- .currentDay {
- font-size: 16px;
- margin: 0 25px;
- vertical-align: middle;
- width: 100px;
- text-align: justify;
- text-align-last: justify;
- display: inline-block;
- }
- .switch-list {
- border: solid 1px #12b7f5;
- border-radius: 6px;
- overflow: hidden;
- }
- .switch-list .icon {
- position: relative;
- top: 3px;
- }
- .rili,
- .shijianzhou {
- width: 40px;
- height: 28px;
- display: inline-block;
- float: left;
- background-color: #fff;
- }
- .rili.active,
- .shijianzhou.active,
- .rili:hover,
- .shijianzhou:hover {
- background-color: #12b7f5;
- border-radius: 5px;
- }
- /*列表展示*/
- .time-axis::-webkit-scrollbar{
- width: 0;
- }
- .time-axis table>tr>th {
- border-top: 1px solid #e7eaec;
- line-height: 1.42857;
- padding: 8px;
- vertical-align: middle;
- }
- .time-axis td {
- border: none !important;
- color: inherit;
- }
- .time-axis th {
- background-color: #f5f5fa;
- border-bottom: solid 1px #d7dce6;
- }
- .time-axis td p {
- color: inherit;
- }
- .ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .time {
- position: relative;
- }
- .time-box {
- position: relative;
- padding: 8px 50px 8px 8px!important;
- }
- .cur-status {
- position: absolute;
- z-index: 3;
- right: 5px;
- top: 50%;
- padding: 8px;
- line-height: 1;
- margin-top: -12.5px;
- border-radius: 100%;
- color: #fff;
- }
- .cur-status:empty {
- margin-top: -8px;
- right: 12.5px;
- background-color: #d7dce6;
- }
- .time-axis [is-future="1"] {
- background-color: #dff5fc;
- color: #12b7f5;
- }
- /*.time-axis [is-future="1"] td p,.time-axis [is-future="1"] td{}*/
- .time-axis tr:hover {
- background-color: #f5f5fa;
- color: #333333;
- }
- /*.time-axis tr:hover p{}*/
- [is-future="1"] .cur-status,
- [is-future="2"] .cur-status {
- background-color: #12b7f5;
- }
- [is-future="-1"] .cur-status {
- background-color: #ff3b30;
- }
- .c-ff3b30 {
- color: #ff3b30!important;
- }
- [is-future="1"] .day-number {
- color: #12B6F4;
- }
- [is-future="2"] .day-number {
- color: #333;
- }
- [is-future="3"] .cur-status {
- background-color: #5cb85c;
- }
- .calendar-day[is-future="0"] {
- background-color: #f5f5fa;
- }
- .calendar-day[is-future="1"] {
- background-color: rgba(18, 182, 244, 0.25);
- }
- .calendar-day[is-future="3"] {
- background-color: #efefef;
- }
- .time-box:after {
- content: '';
- position: absolute;
- right: 0;
- z-index: 2;
- right: 19px;
- height: 100%;
- width: 1px;
- background-color: #d7dce6;
- top: 50%;
- }
- .time-axis tr:nth-last-of-type(1) .time-box:after {
- display: none;
- }
- .view-task {
- text-align: center;
- cursor: pointer;
- }
- .task-status {
- text-align: center;
- }
- [v-cloak] {
- display: none;
- }
- .visibility-hide {
- visibility: hidden;
- }
- .c-666 {
- color: #666!important;
- }
- .w-80 {
- width: 80%;
- margin: 0 auto;
- }
- .w400 {
- width: 400px;
- }
- .bgc-f5f5f5 {
- background-color: #f5f5f5;
- }
- .search-left {
- height: 100%;
- right: -400px;
- z-index: 999;
- }
- .tac{
- text-align: center;
- }
- .c-h100 {
- height: 100%;
- }
- .set-open {
- width: 40px;
- left: -40px;
- top: 0;
- cursor: pointer;
- }
- .set-close {
- width: 14px;
- height: 14px;
- top: 15px;
- right: 15px;
- background: url(../../../images/guanbi_icon.png) no-repeat no-repeat center center;
- background-size: 12px 12px;
- cursor: pointer;
- }
- .div-kuaisu-task {
- width: 98px;
- height: 28px;
- line-height: 28px;
- background-color: #ffffff;
- border-radius: 2px;
- border: solid 1px #d7dce6;
- position: absolute;
- right: 102px;
- cursor: pointer;
- }
- .calendar-descript {
- text-align: right;
- }
- .div-left {
- width: 460px;
- background-color: #ffffff;
- border-right: 1px solid #E1E1E1;
- }
- .div-right {
- width: calc(100% - 460px);
- }
- .rehabilition {
- height: calc(100% - 49px);
- padding-bottom: 0;
- }
- .tag {
- display: inline-block;
- /*background-image: url(../images/yuanjiao_biaoqian_img.png);*/
- background-repeat: no-repeat;
- background-size: 100%;
- width: 60px;
- height: 17px;
- line-height: 17px;
- font-size: 12px;
- color: #fff;
- padding-left: 15px;
- position: absolute;
- left: 191px;
- top: 46px;
- }
- .tag-1 {
- background-image: url(../images/yuanjiao_biaoqian02_img.png);
- }
- .tag-2 {
- background-image: url(../images/yuanjiao_biaoqian03_img.png);
- }
- .tag-3 {
- background-image: url(../images/yuanjiao_biaoqian04_img.png);
- }
- .tag-4 {
- background-image: url(../images/yuanjiao_biaoqian01_img.png);
- }
- .div-patient-home {
- width: 98px;
- height: 26px;
- line-height: 26px;
- text-align: center;
- border-radius: 2px;
- border: solid 1px #d7dce6;
- margin-top: 5px;
- cursor: pointer;
- }
- .div-patient-comfirm {
- width: 98px;
- height: 26px;
- line-height: 26px;
- text-align: center;
- border-radius: 2px;
- border: solid 1px #12b7f5;
- margin-top: -4px;
- cursor: pointer;
- }
- .progress-bar {
- position: relative;
- width: 100%;
- height: 28px;
- border-radius: 28px;
- background-color: #ebebf5;
- }
- .progress-bar .progress {
- display: block;
- position: absolute;
- top: 0;
- left: 0;
- height: 28px;
- border-radius: 28px;
- }
- .progress-bar .p-text {
- display: inline-block;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- text-align: center;
- font-size: 14px;
- height: 28px;
- line-height: 28px;
- z-index: 2;
- }
- .progress-bar.h15,
- .progress-bar.h15 .progress,
- .progress-bar.h15 .p-text {
- height: 15px;
- border-radius: 15px;
- line-height: 15px;
- font-size: 12px;
- }
- .bgc-ff9526 {
- background-color: #ff9526;
- }
- .bgc-12b7f5 {
- background-color: #12b7f5;
- }
- .ui-grid .ui-col-0 .i-icon{
- width: 20px;
- height: 20px;
- margin-left: 12px;
- }
- .faqi-btn{
- background: #12b7f5;
- display: inline-block;
- padding: 0px 4px;
- font-size: 12px;
- line-height: 21px;
- color: #fff;
- cursor: pointer;
- }
- .faqi-btn>img{
- width: 12px;
- vertical-align: initial;
- margin-right: 4px;
- }
- .wkp-end{
- -webkit-box-pack: end;
- }
- .w-row{
- width: 100%;
- }
- .flex {
- display: flex;
- }
- .flex1{
- flex: 1;
- }
- .vc{
- align-items: center;
- }
- .c-12b7f5 {
- color: #12b7f5;
- }
- .bg-f5f5fa{
- background-color: #f5f5fa;
- }
- .link-control{
- padding-right: 20px;
- position: relative;
- }
- .link-control::after{
- content: "";
- position: absolute;
- right: 10px;
- top: 50%;
- width: 6px;
- height: 6px;
- border-right: 1px solid #D7DCE6;
- border-bottom: 1px solid #D7DCE6;
- -webkit-transform: translateY(-50%) rotate(-45deg);
- -moz-transform: translateY(-50%) rotate(-45deg);
- -ms-transform: translateY(-50%) rotate(-45deg);
- -o-transform: translateY(-50%) rotate(-45deg);
- transform: translateY(-50%) rotate(-45deg);
- }
- .link-control.is-active{
- border-color: #12b7f5;
- }
- .zhibiao_icon{
- display: inline-block;
- padding-right: 10px;
- position: relative;
- }
- .zhibiao_icon::after{
- content: "";
- position: absolute;
- right: 0;
- top: 50%;
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -ms-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- width: 8px;
- height: 12px;
- }
- .zhibiao_icon.low::after{
- background: url('../images/zhibiao_di_icon.png') no-repeat;
- background-size: 100% 100%;
- }
- .zhibiao_icon.high::after{
- background: url('../images/zhibiao_gao_icon.png') no-repeat;
- background-size: 100% 100%;
- }
- .icon-group{position: absolute;top: 15px;right: 15px;z-index: 1;}
- .icon-edit{font-size: 22px; color: #12b7f5;}
- .icon-close{font-size: 22px;}
- .btn-yuyue{background-color: #02cfb9;color: #fff;}
- .btn-yuyue:hover,.btn-yuyue:link{color: #fff;background-color: #01c1ad;}
- .btn-12b7f5{color: #fff;background-color: #12b7f5;}
- .btn-12b7f5:hover,.btn-12b7f5:link{color: #fff;background-color: #12b7f5;}
- .btn-disabled{background-color: #eee;color: #999;}
- .btn-disabled:hover, .btn-disabled:link{background-color: #eee;color: #999;}
- .btn-fuwuma{background-color: #2dbe55;color: #fff;}
- .btn-fuwuma:hover,.btn-fuwuma:link{color: #fff;background-color: #209440;}
- .btn-zhidao{background-color: #12b7f5;color: #fff;}
- .btn-zhidao:hover,.btn-zhidao:link{color: #fff;background-color: #10a0d6;}
- .upload-box{margin-top:0;padding: 10px 0 10px 10px;overflow: hidden;border: 1px solid #d7dce6;}
- .upload-box li{width: 60px;height: 60px;position: relative;display: block;float: left;margin-right: 10px;}
- .upload-box li img{width: 100%;display: block;}
- .upload-img-box{width: 100%;height: 100%;overflow: hidden;}
- .delete-img{position: absolute;right: -5px;top: -5px;color: #fff;background-color: #ccc;border-radius: 100%;text-align: center;line-height: 15px;width: 15px;height: 15px;}
- .upload-img{position: absolute;left: 0;right: 0;top: 0;bottom: 0;opacity: 0;z-index: 3;font-size: 0;width: 100%;height: 100%;}
- .add-img{font-size: 40px;line-height: 60px;font-weight: 500;width: 60px;height: 60px;display: block;text-align: center;border: 1px dashed #d7dce6;color: #bec8d2;}
|