123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760 |
- @import "../../../../src/theme.less";
- :host {
- width: 100%;
- height: 100%;
- display: flex;
- .patientStyle{
- i {
- color: @primary-color;
- font-size: 20px;
- font-weight: normal;
- margin-right: 4px;
- &.colorRed {
- color: red;
- }
- &.transport-te1 {
- font-size: 22px;
- }
- }
- }
- .bxForm {
- margin-top: 32px;
- }
- .bxFlex {
- flex: 1;
- }
- .bxTable {
- .moreBx{
- color: @primary-color;
- }
- margin-top: 16px;
- ::ng-deep .ant-table-body {
- margin: 0 !important;
- }
- tr {
- cursor: pointer;
- }
- th,
- td {
- text-align: center;
- }
- .thead {
- background-image: linear-gradient(to right, @bg-start, @bg-end);
- padding: 10px 0;
- th {
- background: transparent;
- color: #fff;
- text-align: center;
- font-size: 14px;
- &.txtL {
- text-align: left;
- }
- }
- }
- }
- .yyTime {
- display: flex;
- align-items: center;
- flex-direction: column;
- }
- .yyTimeError {
- ::ng-deep .ant-time-picker-input,
- ::ng-deep .ant-calendar-picker-input {
- border: 1px solid red !important;
- }
- }
- .pos {
- position: relative;
- .pos-item {
- position: absolute;
- left: 100px;
- top: -10px;
- z-index: 9;
- }
- }
- .addRemarks {
- color: @primary-color;
- cursor: pointer;
- }
- .orderThis {
- color: @primary-color;
- border: 1px solid @primary-color;
- margin-left: 8px;
- }
- .nzContent {
- position: absolute;
- top: 48px;
- bottom: 0;
- left: 0;
- right: 0;
- height: calc(100% - 48px);
- }
- .isKeyClass{
- height: 350px !important;
- }
- .modal {
- // 相对于 background 定位, 位置暂时设置为 0,0,0,0 在指令中将其位置水平垂直居中在页面中间
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- width: 280px;
- height: 300px;
- z-index: 3100;
- background: #f9fafb;
- box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
- border-radius: 30px;
- border: 1px solid @hs_border_color;
- overflow: hidden;
- cursor: move;
- .drag-title {
- height: 50px;
- line-height: 50px;
- position: relative;
- h2 {
- height: 100%;
- font-size: 18px;
- color: #333;
- text-align: center;
- margin: 0;
- }
- .icon-close {
- position: absolute;
- top: 0;
- right: 16px;
- font-size: 16px;
- cursor: pointer;
- color: @hs_border_color;
- }
- }
- .key{
- letter-spacing: 10px;
- font-weight: bold;
- font-size: 30px;
- text-align: center;
- color: #000;
- position: relative;
- top: -15px;
- height: 33px;
- }
- .dialog-center {
- width: 235px;
- height: 208px;
- background-color: #fff;
- border: 1px solid @hs_border_color;
- margin: 0 auto;
- border-radius: 30px;
- position: relative;
- .dialog-code {
- width: 180px;
- height: 200px;
- overflow: hidden;
- position: absolute;
- margin: auto;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- display: flex;
- align-items: center;
- img {
- width: 100%;
- }
- }
- }
- .dialog-operate {
- display: flex;
- height: 40px;
- justify-content: space-between;
- align-items: center;
- font-size: 14px;
- .dialog-refresh {
- color: @primary-color;
- margin-left: 40px;
- cursor: pointer;
- }
- span {
- color: #999;
- margin-right: 40px;
- }
- }
- }
- // }
- }
- .save {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- .modalBody-ga{
- width: 80% !important;
- .list-template__searchBox{
- margin-top: 10px;
- }
- .list-template__bottom{
- padding-bottom:20px !important;
- }
- .list-template__bottom{
- .list-template__nzTable{
- height: 510px !important;
- overflow-y: auto !important;
- }
- }
- .ant-select{
- width: 20%;
- }
- }
- .modalBody {
- width: 350px;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- .title {
- width: 100%;
- text-align: center;
- position: relative;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
-
- .new-title {
- width: 100%;
- text-align: center;
- position: relative;
- font-size: 14px;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
-
- .title-weight{
- font-weight: bold;
- font-size: 15px;
- }
- .content {
- width: 100%;
- // height: 117px;
- background: #f9fafb;
- border: 1px solid #e5e9ed;
- border-radius: 5px;
- overflow: hidden;
- margin-top: 12px;
- .weight{
- font-weight: 600;
- position: relative;
- top: -9px;
- }
- div {
- // text-align: center;
- margin: 0;
- &.icon {
- margin-top: 17px;
- i {
- color: #34b349;
- font-size: 30px !important;
- &.transport-wenhao {
- color: #f5a523;
- }
- &.transport-shibai {
- color: #ff3a52;
- }
- }
- }
- &.defeat {
- color: #333;
- font-size: 18px;
- }
- &:nth-child(3) {
- font-size: 14px;
- color: #666;
- }
- }
- }
- button {
- margin-top: 10px;
- &.btn {
- margin-left: 8px;
- }
- }
- }
- // 新增
- &.add {
- .modalBody {
- width: 420px;
- height: auto;
- .content {
- width: 100%;
- height: auto;
- padding: 19px 14px 0 14px;
- // max-height: 500px;
- // overflow-y: auto;
- .ant-select{
- width: 100%;
- }
- .ant-calendar-picker{
- width: 100% !important;
- }
- .list-template__bottom {
- background: #f9fafb;
- border: 1px solid #e5e9ed;
- border-radius: 8px;
- padding-bottom: 56px;
- position: relative;
- .list-template__nzTable {
- padding: 16px 16px 0;
- .thead {
- background-image: linear-gradient(to right, @bg-start, @bg-end);
- th {
- background: transparent;
- color: #fff;
- text-align: center;
- }
- }
- .ant-table-body {
- border-bottom: 1px solid #e5e9ed;
- }
- .ant-table-tbody {
- tr {
- text-align: center;
- color: #333;
- td {
- border: none;
- &.tab_hover:hover{
- text-decoration: underline;
- cursor: pointer;
- }
-
- .coop-btn{
- button{
- margin-top: 0 !important;
- color: #fff;
- &:nth-child(1) {
- margin-right: 0 !important;
- }
- }
- span,button {
- display: inline-block;
- cursor: pointer;
- position: relative;
-
- &::after {
- content: "|";
- position: absolute;
- top: 0;
- right: 0;
- }
-
- &:nth-last-child(1) {
- &::after {
- content: "";
- }
- }
- }
- }
-
- .coop {
- button{
- color: #333;
- }
- span,button {
- display: inline-block;
- padding: 0 8px;
- cursor: pointer;
- position: relative;
- &::after {
- content: "|";
- position: absolute;
- top: 0;
- right: 0;
- }
- &:hover,
- &:active {
- color: @primary-color;
- }
- &:nth-last-child(1) {
- &::after {
- content: "";
- }
- }
- }
- }
- }
- }
- }
- }
- .list-template__pagination {
- height: 56px;
- display: flex;
- align-items: center;
- position: absolute;
- right: 8px;
- }
- }
- .addForm {
- .ant-form-item {
- margin-bottom: 14px;
- .ant-form-item-label {
- line-height: 14px;
- text-align: left;
- }
- }
- }
- .editForm {
- .ant-form-item {
- margin-bottom: 14px;
- .ant-form-item-label {
- line-height: 0;
- text-align: left;
- }
- }
- }
- }
- button {
- &:nth-child(1) {
- margin-right: 20px;
- }
- }
- }
- }
- }
- // 查看标本详情 start
- .noData33 {
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: bold;
- }
- .loading33 {
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .detailModel {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 999999;
- .box {
- width: 1000px;
- height: 580px;
- border-radius: 8px;
- background-color: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- .transport-guanbi {
- position: absolute;
- right: 16px;
- top: 16px;
- font-size: 20px;
- color: #8e9d9e;
- cursor: pointer;
- }
- .title {
- height: 50px;
- line-height: 50px;
- text-align: center;
- font-size: 18px;
- color: #333;
- font-weight: bold;
- }
- .table {
- width: 960px;
- height: 474px;
- background-color: #f9fafb;
- border: 1px solid @hs_border_color;
- border-radius: 8px;
- display: flex;
- justify-content: center;
- align-items: center;
- .table-content {
- width: 896px;
- height: 420px;
- background-color: #fff;
- border-radius: 8px;
- border: 1px solid @hs_border_color;
- table {
- width: 100%;
- font-size: 14px;
- color: #333;
- th,
- td {
- text-align: center !important;
- width: 167px;
- height: 100%;
- &:first-of-type {
- width: 59px;
- }
- }
- thead {
- display: block;
- width: 100%;
- height: 40px;
- line-height: 40px;
- background-image: linear-gradient(
- 90deg,
- @bg-end 0%,
- @bg-start 100%
- );
- tr {
- height: 40px;
- color: #fff;
- }
- }
- tbody {
- display: block;
- width: 894px;
- height: 380px;
- overflow-x: hidden;
- overflow-y: auto;
- tr {
- height: 34px;
- line-height: 34px;
- td:last-child {
- position: relative;
- }
- td {
- .ji {
- position: absolute;
- right: 0;
- top: -3px;
- width: 41px;
- height: 42px;
- background: url(./../../../assets/images/icon_ji.png)
- no-repeat 3px 0;
- }
- }
- }
- }
- }
- }
- }
- .btns {
- flex: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- .btn {
- width: 120px;
- height: 34px;
- line-height: 34px;
- text-align: center;
- background-color: #f9fafb;
- border: 1px solid @hs_border_color;
- border-radius: 4px;
- font-size: 14px;
- color: @primary-color;
- cursor: pointer;
- }
- }
- }
- }
- // 查看标本详情 end
- .otherBox-nav {
- width: 20%;
- border-right: 1px solid @hs_border_color;
- display: flex;
- flex-direction: column;
- .otherBox-nav__head {
- height: 50px;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- padding-left: 8px;
- padding-right: 8px;
- input {
- height: 36px;
- }
- }
- .otherBox-nav__main {
- flex: 1;
- position: relative;
- ::ng-deep .os-content {
- height: 100% !important;
- }
- .otherBox-nav__mainInner {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 16px;
- &.noData,
- &.oLoading {
- position: absolute;
- width: 100%;
- justify-content: center;
- height: 100%;
- margin-top: 0;
- }
- .otherBox-nav__mainItem {
- line-height: 26px;
- color: #333;
- padding-left: 8px;
- margin-bottom: 8px;
- border-radius: 4px;
- cursor: pointer;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- &.active {
- color: @primary-color;
- background-color: #f0f6ed;
- }
- }
- }
- }
- }
- .nurse {
- width: 100%;
- height: 100%;
- .otherBox {
- position: absolute;
- width: 100%;
- height: 100%;
- padding: 16px;
- .otherBoxInner {
- height: 100%;
- border: 1px solid @hs_border_color;
- display: flex;
- .otherBox-nav {
- width: 20%;
- border-right: 1px solid @hs_border_color;
- display: flex;
- flex-direction: column;
- .otherBox-nav__head {
- height: 50px;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- padding-left: 8px;
- padding-right: 8px;
- input {
- height: 36px;
- }
- }
- .otherBox-nav__main {
- flex: 1;
- position: relative;
- ::ng-deep .os-content {
- height: 100% !important;
- }
- .otherBox-nav__mainInner {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 16px;
- &.noData,
- &.oLoading {
- position: absolute;
- width: 100%;
- justify-content: center;
- height: 100%;
- margin-top: 0;
- }
- .otherBox-nav__mainItem {
- line-height: 26px;
- color: #333;
- padding-left: 8px;
- margin-bottom: 8px;
- border-radius: 4px;
- cursor: pointer;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- &.active {
- color: @primary-color;
- background-color: #f0f6ed;
- }
- }
- }
- }
- }
- .otherBox-main {
- flex: 1;
- display: flex;
- flex-direction: column;
- .otherBox-main__main {
- position: relative;
- flex: 1;
- .modalBody {
- position: absolute;
- width: 100%;
- height: 100%;
- display: flex;
- }
- .modalBody_left {
- width: 50%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- &.nLoading,
- &.noData {
- justify-content: center;
- align-items: center;
- img {
- width: 24px;
- }
- div {
- display: inline-block;
- }
- }
- }
- .modalBody_left_box {
- min-height: calc(100vh - 279px);
- height: 100%;
- box-sizing: border-box;
- padding: 8px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .modalBody_right_head {
- font-size: 16px;
- font-weight: bold;
- border-bottom: 1px solid @hs_border_color;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .smallTab{
- display: flex;
- .s_tab {
- cursor: pointer;
- padding: 8px;
- border-right: 1px solid @hs_border_color;
- &:first-of-type{
- border-left: 1px solid @hs_border_color;
- }
- &.active{
- color: #fff;
- background-color: @primary-color;
- }
- }
- }
- span {
- font-weight: normal;
- font-size: 14px;
- color: @primary-color;
- }
- }
- .modalBody_right_box {
- box-sizing: border-box;
- padding: 0 8px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .modalBody_right {
- width: 50%;
- height: 100%;
- display: flex;
- flex-direction: column;
- // justify-content: center;
- border-left: 1px solid @hs_border_color;
- padding: 0 8px 8px;
- .modalBody_right_list {
- text-align: justify;
- border-bottom: 1px solid @hs_border_color;
- padding: 8px 0;
- b {
- color: @primary-color;
- }
- }
- }
- .modalBody_box {
- position: absolute;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .content {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- & > div {
- width: 100%;
- }
- .shortcutForm {
- width: 100%;
- .ant-form-item-label {
- text-align: left;
- }
- }
- }
- .btns {
- padding-bottom: 16px;
- padding-top: 16px;
- }
- }
- }
- }
- }
- }
- .layout {
- background: #fff;
- }
- .btn1 {
- background-image: linear-gradient(
- 90deg,
- @bg-start 0%,
- @bg-end 100%
- );
- border-radius: 4px;
- color: #fff;
- line-height: 28px;
- text-align: center;
- border-radius: 4px;
- cursor: pointer;
- border: none;
- }
- .app-layout {
- height: 100%;
- .menu-sidebar {
- position: relative;
- z-index: 8;
- min-height: 100vh;
- box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
- background: #0f2e3b;
- overflow-y: auto;
- .ant-layout-sider-children {
- width: 220px;
- }
- .sidebar-logo {
- height: 48px;
- overflow: hidden;
- line-height: 48px;
- background: #fff;
- transition: all 0.3s;
- border-bottom: 1px solid #fff;
- z-index: 10;
- position: relative;
- .logoTitle{
- padding: 0 8px;
- line-height: normal;
- height:100%;
- }
- .title {
- color: @primary-color;
- font-size: 16px;
- }
- }
- .mainInfo {
- width: 100%;
- height: 100%;
- color: #fff;
- position: absolute;
- top: 0;
- padding-top: 48px;
- overflow: hidden;
- .searchBox {
- width: 100%;
- padding: 8px;
- z-index: 1;
- position: relative;
- background: #001529;
- }
- .checkBanner {
- width: 100%;
- z-index: 1;
- .checkItem {
- width: 100%;
- text-align: center;
- color: #fff;
- background: #284450;
- line-height: 32px;
- border: none;
- &.checked {
- background: #48717f;
- }
- }
- }
- .checkedInfo {
- position: absolute;
- top: 0;
- height: 100%;
- width: 110%;
- padding-top: 130px;
- padding-bottom: 60px;
- overflow: hidden;
- padding-right: 10%;
- background: #0f2e3b;
- &.inspect {
- .item {
- min-height: 132px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- }
- .box {
- width: 100%;
- height: 100%;
- position: relative;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .loading {
- text-align: center;
- width: 100%;
- height: 100%;
- img {
- width: 20px;
- }
- }
- .item {
- padding: 8px;
- border-bottom: 1px solid #fff;
- .itemTit {
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 14px;
- border-bottom: 1px solid #284450;
- i {
- color: @primary-color;
- font-size: 20px;
- font-weight: normal;
- margin-right: 4px;
- &.colorRed {
- color: red;
- }
- &.transport-te1 {
- font-size: 22px;
- }
- }
- }
- .checkInfo {
- padding: 8px 0;
- .transport-zhongdianguanzhu {
- cursor: pointer;
- }
- }
- .btnNews{
- display: flex;
- justify-content: center;
- align-items: center;
- .btn{
- flex: 1;
- margin: 0 1%;
- cursor: pointer;
- }
- }
- .row {
- overflow: hidden;
- .col {
- line-height: 28px;
- }
- }
- .btn {
- background-image: linear-gradient(
- 90deg,
- @bg-start 0%,
- @bg-end 100%
- );
- line-height: 28px;
- text-align: center;
- border-radius: 4px;
- cursor: default;
- border: none;
- }
- }
- }
- .paging {
- width: 220px;
- position: absolute;
- bottom: 0;
- left: 0;
- background: rgb(72, 113, 127);
- padding: 16px 0;
- text-align: center;
- border-top: 1px solid #284450;
- }
- }
- // 暂未开通
- .notAvailable {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- z-index: 9;
- padding-top: 48px;
- background: rgba(0, 0, 0, 0.5);
- color: #fff;
- font-size: 20px;
- img {
- width: 80px;
- margin-bottom: 10px;
- }
- }
- }
- nz-header.ant-layout-header {
- padding: 0;
- width: 100%;
- z-index: 2;
- background: #fff;
- height: 48px;
- .app-header {
- position: relative;
- height: 48px;
- padding: 0;
- background: #fff;
- box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
- padding-left: 24px;
- .nurseTitle {
- display: flex;
- height: 48px;
- font-size: 20px;
- color: #333;
- flex: 1;
- .todayNum {
- font-size: 16px;
- margin-left: 16px;
- }
- .queuingInformation{
- margin-right: 16px;
- font-size: 16px;
- }
- .todayNumWrap{
- height: 100%;
- display: flex;
- align-items: center;
- }
- .updateTipsForNurses {
- word-break: break-all;
- margin: 0 16px;
- flex: 1;
- line-height: normal;
- font-size: 14px;
- }
- }
- .right {
- height: 100%;
- flex-shrink: 0;
- display: flex;
- align-items: center;
- .msg {
- float: left;
- width: 50px;
- height: 100%;
- border-left: 1px solid #e5e9ed;
- .msgBtn {
- width: 100%;
- height: 100%;
- i {
- font-size: 30px;
- }
- }
- }
- .userInfo {
- height: 100%;
- float: right;
- padding: 0 24px;
- box-sizing: border-box;
- font-size: 14px;
- // border-left: 1px solid #e5e9ed;
- .wel {
- line-height: 15px;
- white-space: nowrap;
- overflow: hidden;//文本超出隐藏
- text-overflow: ellipsis;//文本超出省略号替代
- }
- .user {
- overflow: hidden;
- height: 48px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 16px;
- cursor: pointer;
- img {
- width: 32px;
- height: 32px;
- margin-right: 8px;
- }
- span, .transport-xiala1 {
- height: 48px;
- line-height: 48px;
- }
- }
- .logOut {
- text-align: right;
- color: @primary-color;
- line-height: 20px;
- span {
- cursor: pointer;
- padding: 10px;
- }
- }
- }
- }
- }
- }
- .inner-content {
- background: #fff;
- height: 100% !important;
- // border-bottom: 1px solid @hs_border_color;
- .launch {
- width: 90px;
- height: 100%;
- border-right: 1px solid @hs_border_color;
- position: relative;
- overflow: hidden;
- z-index: 3;
- .laTit {
- width: 100%;
- line-height: 50px;
- color: #333;
- text-align: center;
- background: #fff;
- border-bottom: 1px solid @hs_border_color;
- position: absolute;
- z-index: 1;
- }
- .laItems {
- width: 110%;
- height: 100%;
- padding-right: 10%;
- position: relative;
- overflow-x: hidden;
- overflow-y: auto;
- padding-top: 60px;
- padding-bottom: 16px;
- .item {
- width: 100%;
- cursor: default;
- .img {
- width: 56px;
- height: 56px;
- margin-top: 6px;
- background: url(../../../assets/images/icon_hushebei2.png) center
- no-repeat;
- }
- &:nth-child(2n) {
- .img {
- background-image: url(../../../assets/images/icon_hubao2.png);
- }
- }
- &:nth-child(3n) {
- .img {
- background-image: url(../../../assets/images/icon_hubao.png);
- }
- }
- &:nth-child(4n) {
- .img {
- background-image: url(../../../assets/images/icon_hushebei.png);
- }
- }
- .txtC {
- display: inline-block;
- width: 100%;
- text-align: center;
- }
- }
- }
- }
- .mainInfo {
- width: 100%;
- height: 100%;
- display: flex;
- .cont{
- flex: 1;
- overflow: hidden;
- }
- .orders{
- width: 354px;
- flex-shrink: 1;
- }
- & > div {
- height: 100%;
- &:nth-child(1) {
- display: flex;
- flex-direction: column;
- border-right: 1px solid @hs_border_color;
- }
- }
- .cont {
- .top {
- box-sizing: content-box;
- position: relative;
- z-index: 9;
- .nums {
- height: 57px;
- position: relative;
- &.surgeryNums{
- height: 88px;
- }
- &.nurseNav{
- display: flex;
- align-items: center;
- .nav{
- height: 100%;
- flex: 1;
- display: flex;
- align-items: center;
- padding: 0 16px;
- overflow: auto hidden;
- .navItem{
- display: flex;
- align-items: center;
- cursor: pointer;
- margin-right: 24px;
- &:last-of-type{
- margin-right: 0;
- }
- .navContent{
- display: flex;
- flex-direction: column;
- height: 40px;
- flex: 1;
- }
- .navIcon{
- color: #fff;
- border-radius: 4px;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 40px;
- height: 40px;
- margin-right: 5px;
- .icon_transport{
- font-size: 32px;
- }
- &.specimen{
- background: linear-gradient( 41deg, #11BB87 0%, #2AC89D 47%, #45D8B5 100%);
- }
- &.blood{
- background: linear-gradient( 41deg, #FC985C 0%, #FAA471 50%, #FD9A5D 100%);
- }
- &.drugbag{
- background: linear-gradient( 41deg, #6D62FF 0%, #A089FF 100%);
- }
- &.incident{
- background: linear-gradient( 41deg, #2886ED 0%, #6DA5FC 100%);
- .icon_transport{
- font-size: 24px;
- }
- }
- }
- h2{
- font-size: 12px;
- font-weight: bold;
- white-space: nowrap;
- }
- .navSpecimen{
- font-size: 12px;
- display: flex;
- span{
- margin-right: 8px;
- &:last-of-type{
- margin-right: 0;
- }
- }
- }
- }
- }
- .nurseCode {
- height: 100%;
- flex-shrink: 1;
- padding: 0 16px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- cursor: pointer;
- border-left: 1px solid #ccc;
- .nurseCodeIcon {
- font-size: 32px;
- color: #929292;
- }
- }
- }
- div {
- .h33 {
- height: 33px;
- line-height: 32px;
- }
- .h53 {
- height: 54px;
- p {
- margin: 0;
- line-height: 28px;
- font-size: 24px;
- color: @primary-color;
- }
- }
- .quick {
- width: 100%;
- height: 100%;
- padding: 8px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- .btn {
- height: 48%;
- background-image: linear-gradient(
- 90deg,
- @bg-start 0%,
- @bg-end 100%
- );
- border-radius: 4px;
- color: #fff;
- padding: 0;
- border: none;
- border: none;
- &[disabled] {
- background: #999;
- cursor: not-allowed;
- }
- &:focus {
- outline: none;
- }
- }
- }
- }
- .swiperBox {
- width: 100%;
- height: 100%;
- position: relative;
- overflow: hidden;
- .swiper {
- width: 100%;
- position: relative;
- top: 0;
- left: 0;
- // transition: all 1s;
- .item {
- width: 100%;
- height: 44px;
- span {
- display: inline-block;
- width: 100%;
- text-align: center;
- }
- }
- }
- }
- .alignC {
- img {
- height: 48px;
- }
- }
- // 暂未开通
- .notAvailable {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 4;
- background: rgba(0, 0, 0, 0.5);
- color: #fff;
- font-size: 20px;
- img {
- width: 80px;
- margin-bottom: 10px;
- }
- }
- }
- .tab {
- height: 40px;
- line-height: 40px;
- cursor: default;
- overflow: hidden;
- font-size: 18px;
- & /deep/ .os-scrollbar-vertical{
- display: none!important;
- }
- .cur {
- height: 100%;
- position: relative;
- color: #333;
- }
- .checked {
- color: @primary-color;
- position: relative;
- &::after{
- content: '';
- position: absolute;
- left: 8px;
- right: 8px;
- bottom: 0;
- height: 2px;
- background-color: @primary-color;
- }
- }
- .btn {
- width: 104px;
- height: 34px;
- line-height: 34px;
- background-image: linear-gradient(
- 90deg,
- @bg-start 0%,
- @bg-end 100%
- );
- border-radius: 4px;
- color: #fff;
- border: none;
- }
- }
- }
- .searchBox {
- height: 56px;
- padding: 0 8px;
- position: relative;
- z-index: 9;
- .btns {
- button {
- width: 80px;
- height: 32px;
- &:nth-child(1) {
- color: @primary-color;
- border: solid 1px @primary-color;
- background: #f0f6ed !important;
- }
- &:nth-child(2) {
- background-image: linear-gradient(
- 135deg,
- @bg-start 0%,
- @bg-end 100%
- );
- border: solid 1px @primary-color;
- margin-left: 8px;
- }
- }
- }
- }
- .table {
- width: 100%;
- height: calc(100% - 56px);
- padding: 0 8px 8px;
- &.turn {
- padding-top: 162px;
- }
- .box {
- border-radius: 5px;
- background: #f9fafb;
- border: 1px solid @hs_border_color;
- padding-bottom: 60px;
- position: relative;
- height: 100%;
- .hospitalTable {
- padding: 24px 16px 0;
- height: 100%;
- overflow: auto;
- .ant-table-fixed-header .ant-table-scroll .ant-table-header {
- padding-bottom: 16px;
- overflow: hidden !important;
- }
- .thead {
- background-image: linear-gradient(
- to right,
- @bg-start,
- @bg-end
- );
- padding: 10px 0;
- th {
- background: transparent;
- color: #fff;
- text-align: center;
- font-size: 14px;
- &.txtL {
- text-align: left;
- }
- }
- }
- .ant-table-body {
- border-bottom: 1px solid @hs_border_color;
- }
- .ant-table-tbody {
- tr {
- text-align: center;
- font-size: 14px;
- border: none;
- color: #333;
- &.txtL {
- text-align: left;
- }
- td {
- border: none;
- .coop {
- button{
- color: #333;
- }
- span,button {
- display: inline-block;
- padding: 0 8px;
- cursor: pointer;
- position: relative;
- &::after {
- content: "|";
- position: absolute;
- top: 0;
- right: 0;
- }
- &:hover,
- &:active {
- color: @primary-color;
- }
- &:nth-last-child(1) {
- &::after {
- content: "";
- }
- }
- }
- }
- }
- }
- tr:nth-child(2n-1) {
- background: #f9fafb;
- }
- }
- }
- .pagination {
- margin-top: 14px;
- position: absolute;
- bottom: 12px;
- right: 5px;
- }
- }
- }
- }
- .orders {
- .orderTit {
- width: 100%;
- overflow: hidden;
- border-bottom: 1px solid @hs_border_color;
- padding: 8px;
- position: relative;
- height: 57px;
- background: #fff;
- z-index: 1;
- & > span {
- font-size: 16px;
- color: #666;
- font-weight: 500;
- }
- }
- .loading {
- text-align: center;
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- padding-top: 57px;
- img {
- width: 20px;
- }
- }
- .orderList {
- width: 100%;
- height: calc(100% - 114px);
- .box {
- position: relative;
- width: 100%;
- height: 100%;
- top: 0;
- overflow-x: hidden;
- .orderLisBox {
- width: 100%;
- padding-bottom: 10px;
- overflow-x: hidden;
- .orderLis {
- width: 100%;
- height: 100%;
- padding-bottom: 10px;
- overflow-x: hidden;
- .orderItem {
- width: 100%;
- overflow: hidden;
- position: relative;
- .icon_ji {
- position: absolute;
- right: -3px;
- top: -3px;
- width: 30px;
- }
- .info {
- width: 100%;
- padding: 10px;
- .row {
- width: 100%;
- word-break: break-all;
- line-height: normal;
- &:last-child {
- padding-bottom: 8px;
- border-bottom: 1px solid @hs_border_color;
- }
- .col {
- line-height: 28px;
- color: #333;
- &.toDetail {
- color: @primary-color;
- font-size: 12px;
- span {
- cursor: pointer;
- display: inline-block;
- padding: 0 10px;
- }
- }
- }
- }
- }
- .process {
- width: 100%;
- height: 70px;
- overflow-x: auto;
- overflow-y: hidden;
- position: relative;
- .box {
- width: 100%;
- justify-content: center;
- position: absolute;
- overflow: hidden;
- .steps {
- display: inline-block;
- &:nth-last-child(1) {
- .line {
- display: none !important;
- }
- }
- .step {
- .txt {
- width: 75px;
- text-align: center;
- display: inline-block;
- vertical-align: text-top;
- i {
- color: @hs_border_color;
- &.green {
- color: @primary-color;
- }
- }
- }
- p {
- margin: 0;
- font-size: 12px;
- &.time {
- padding: 0 2px;
- }
- }
- .line {
- display: inline-block;
- width: 40px;
- height: 2px;
- background: @hs_border_color;
- }
- }
- }
- }
- }
- .btns {
- width: 100%;
- .btn {
- text-align: center;
- font-size: 12px;
- color: @primary-color;
- cursor: default;
- background: #f9fafb;
- border: 1px solid @hs_border_color;
- border-left: 0;
- cursor: pointer;
- border-bottom: 0;
- line-height: 32px;
- border-radius: 0;
- &.primary{
- color: #fff;
- background-color: @primary-color;
- }
- }
- }
- }
- }
- }
- }
- .pageing {
- background: #fff;
- padding: 16px 0;
- text-align: center;
- border-top: 1px solid @hs_border_color;
- }
- }
- }
- }
- }
- }
- }
- .txtL {
- text-align: left;
- }
- .txtC {
- text-align: center;
- }
- .txtR {
- text-align: right;
- }
- .borderL {
- border-left: 1px solid @hs_border_color;
- }
- .borderR {
- border-right: 1px solid @hs_border_color;
- }
- .borderB {
- border-bottom: 1px solid @hs_border_color;
- }
- .h100p {
- height: 100%;
- }
- .h50p {
- height: 50%;
- }
- .alignC {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- align-items: center;
- }
- .alignR {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .color3 {
- color: #333;
- }
- .color6 {
- color: #666;
- }
- .color9 {
- color: #999;
- }
- .overAuto {
- overflow: auto;
- }
- .over {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- box-sizing: unset;
- }
- .save {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- .modalBody {
- width: 480px;
- min-height: 220px;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- &.sm {
- width: 350px;
- }
- .title {
- width: 100%;
- text-align: center;
- font-size: 18px;
- position: relative;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
- .content {
- width: 100%;
- min-height: 117px;
- background: #f9fafb;
- border: 1px solid @hs_border_color;
- border-radius: 5px;
- overflow: hidden;
- margin-top: 12px;
- padding: 16px 10px;
- &.bb {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .patientForm {
- padding-top: 15px;
- .ant-form-item {
- margin-bottom: 5px;
- .ant-form-item-label {
- line-height: 20px;
- text-align: left;
- }
- .goods {
- line-height: 40px;
- }
- .ant-form-item-control {
- line-height: 21px;
- }
- .datesGroup {
- padding-top: 10px;
- .linkCheckCheck {
- text-indent: 7px;
- margin-top: 0;
- .priority {
- color: #d81e06;
- }
- }
- }
- .radioGroup {
- line-height: 24px;
- padding-left: 14px;
- }
- .desc {
- margin-top: 5px;
- }
- }
- .linkCheckCheck {
- .ant-checkbox-wrapper {
- margin-left: 0 !important;
- }
- }
- }
- .shortcutForm {
- padding-top: 20px;
- .ant-form-item {
- margin-bottom: 15px;
- }
- .ant-form-item-label {
- text-align: left;
- line-height: 0;
- }
- .goods {
- line-height: 40px;
- }
- }
- .jiTit {
- text-align: center;
- color: #666;
- padding: 8px 0;
- &.jiTitB {
- color: @primary-color;
- font-size: 12px;
- font-weight: bold;
- }
- }
- & > div {
- margin: 0;
- &.title {
- text-align: left;
- color: #333;
- font-size: 14px;
- line-height: 30px;
- }
- &.icon {
- i {
- color: #34b349;
- font-size: 30px !important;
- &.transport-wenhao {
- color: #f5a523;
- }
- &.transport-shibai {
- color: #ff3a52;
- }
- }
- }
- &.defeat {
- color: #333;
- font-size: 16px;
- }
- &.otherInfo {
- color: @primary-color;
- font-size: 12px;
- }
- }
- // 评价
- .star {
- padding: 0 30px;
- font-size: 14px;
- color: #666;
- i {
- font-size: 20px;
- }
- }
- // 意见箱查看
- .conItem {
- padding-bottom: 50px;
- color: #333;
- &.noCon {
- padding-bottom: 0;
- }
- &:nth-child(1) {
- border-bottom: 1px solid @hs_border_color;
- }
- &:nth-child(2) {
- padding-top: 20px;
- }
- .defeat {
- padding-top: 10px;
- }
- }
- }
- .btns {
- &.patientBtns{
- button {
- margin-top: 16px;
- font-size: 18px;
- }
- }
- button {
- margin-top: 10px;
- &.btn {
- margin-left: 8px;
- }
- &.knowBtn {
- color: @primary-color;
- }
- }
- }
- }
- }
- .commonModal {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.4);
- z-index: 99;
- .bxFormAdd{
- padding: 8px 8px 4px;
- }
- ::ng-deep .ant-form-item{
- margin-bottom: 8px!important;
- }
- ::ng-deep .ant-form-item.last{
- margin-bottom: 0!important;
- .address{
- position: relative;
- .addressList{
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- max-height: 256px;
- z-index: 2;
- background: #fff;
- border: 1px solid #d9d9d9;
- border-radius: 4px;
- overflow: hidden auto;
- .addressItem{
- padding: 5px 12px;
- cursor: pointer;
- &:hover{
- background-color: #e9f7e9;
- }
- }
- }
- }
- }
- ::ng-deep .ant-form-item-label{
- text-align: left!important;
- }
- .modalBody {
- width: 590px;
- background: #fff;
- border-radius: 5px;
- padding: 10px 20px;
- color: #333;
- .title {
- width: 100%;
- text-align: center;
- font-size: 18px;
- position: relative;
- i {
- position: absolute;
- right: 0;
- top: 0;
- font-size: 20px;
- color: #666;
- cursor: pointer;
- padding: 0 5px;
- }
- }
- .content {
- width: 550px;
- background: #f9fafb;
- border: 1px solid @hs_border_color;
- border-radius: 5px;
- // overflow: hidden;
- margin-top: 12px;
- & > div {
- text-align: center;
- margin: 0;
- &.icon {
- margin-top: 17px;
- i {
- color: #34b349;
- font-size: 30px !important;
- &.transport-wenhao {
- color: #f5a523;
- }
- &.transport-shibai {
- color: #ff3a52;
- }
- }
- }
- &.defeat {
- color: #333;
- font-size: 18px;
- }
- &:nth-child(3) {
- font-size: 14px;
- color: #666;
- }
- }
- .roundRobinTips {
- font-size: 12px;
- }
- }
- button {
- margin-top: 10px;
- &.btn {
- margin-left: 8px;
- }
- }
- }
- }
- // 消息提醒
- .msgTemBox {
- .borderLeft {
- position: absolute;
- left: 0;
- top: 0;
- width: 10px;
- height: 100%;
- background-image: linear-gradient(90deg, @bg-start 0%, @bg-end 100%);
- }
- .icon {
- color: @primary-color;
- font-size: 26px;
- }
- .ant-notification-notice-message {
- margin-left: 34px;
- font-weight: 500;
- }
- .ant-notification-notice-description {
- margin-left: 34px;
- color: #333;
- }
- }
- // 右侧悬浮菜单
- .fixed {
- position: fixed;
- top: 40%;
- right: 0;
- z-index: 9;
- border-radius: 5px 0 0 5px;
- .fixedMark {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background: rgba(0, 0, 0, 0.2);
- z-index: 48;
- }
- & > .left {
- width: 480px;
- float: left;
- background: #fff;
- padding: 16px;
- border-radius: 5px;
- border: 1px solid @hs_border_color;
- position: relative;
- z-index: 98;
- .con {
- background: #f9fafb;
- width: 100%;
- height: 100%;
- border-radius: 5px;
- border: 1px solid @hs_border_color;
- padding: 16px 20px;
- &.tableCon {
- padding: 0;
- .table {
- font-size: 14px;
- tr {
- td {
- padding: 15px 6px;
- text-align: center;
- & > .tdiv {
- overflow: hidden;
- .name {
- float: left;
- }
- .num {
- float: right;
- font-size: 12px;
- span {
- color: @primary-color;
- font-size: 14px;
- }
- }
- }
- .notOpen {
- color: #666;
- font-size: 12px;
- img {
- margin-bottom: 8px;
- }
- }
- }
- }
- }
- }
- .title {
- color: #333;
- text-align: center;
- }
- .conditions {
- & > .ant-row {
- margin: 8px 0;
- .ant-row {
- .ant-col-6 {
- margin: 2px 0;
- }
- }
- .checkAll {
- width: 100%;
- border-bottom: 1px solid rgb(233, 233, 233);
- color: @primary-color;
- }
- }
- }
- .btns {
- padding: 5px 20px 0 20px;
- }
- }
- }
- .right {
- width: 80px;
- float: left;
- background: rgba(255, 255, 255, 0.5);
- border-radius: 5px 0 0 5px;
- position: relative;
- z-index: 98;
- .fixedMenu {
- border: 1px solid @hs_border_color;
- color: @primary-color;
- background: rgba(255, 255, 255, 0.5);
- text-align: center;
- border-radius: 5px 0 0 5px;
- &.hujiaozhongxin {
- margin-bottom: 5px;
- }
- .menuItems {
- .item {
- height: 35px;
- line-height: 35px;
- padding: 0 6px;
- cursor: default;
- border-bottom: 1px solid @hs_border_color;
- user-select: none;
- &.checked {
- background: #fff;
- color: #52ab77;
- opacity: 1;
- box-shadow: -3px 4px 7px #eae9e9;
- }
- }
- .others {
- transition: height 0.4s linear;
- overflow: hidden;
- }
- }
- .arrow {
- cursor: pointer;
- }
- }
- }
- }
- .mask-style{
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 999;
- display: flex;
- background: rgba(0,0,0,0.2);
- align-items: center;
- justify-content: center;
- }
- .spin-style{
- z-index:9999;
- }
- // 下拉列表
- .dropdown{
- position: relative;
- height: 48px;
- line-height: 48px;
- .dropdown-content {
- position: absolute;
- top: 48px;
- background-color: #fff;
- width: 156px;
- box-shadow: 0px 2px 4px 1px #D9D9D9;
- z-index: 999999;
- border-radius: 4px;
- border: 1px solid rgba(0,0,0,0.15);
- color: rgba(0,0,0,0.65);
- &.ct{
- left: 50%;
- transform: translateX(-50%);
- }
- &.r8{
- right: 8px;
- }
- }
- .dropdown-content .dropdownItem {
- height: 40px;
- cursor: pointer;
- display: flex;
- align-items: center;
- padding: 0 24px;
- }
- .dropdown-content .dropdownItem:hover {
- background-color: #e9f7e9;
- }
- }
- .tabPermissionItem{
- padding: 0 16px;
- }
- .patient ::ng-deep .ant-form label{
- font-size: 18px;
- margin-top: 8px;
- &.col6{
- width: 16.666%;
- }
- &.mt13{
- margin-top: 13px;
- }
- }
- .patient ::ng-deep .ant-radio-wrapper{
- margin-right: 0;
- padding-right: 8px;
- }
- .patient ::ng-deep .ant-form-item-control{
- line-height: normal;
- }
- .patient ::ng-deep .ant-radio-inner{
- top: -3px;
- }
- .patient ::ng-deep .ant-form-item-label{
- line-height: 32px!important;
- flex-shrink: 0;
- }
- .patient .top16bottom0{
- margin-top: 16px!important;
- margin-bottom: 0!important;
- }
- .patient{
- .modalBody{
- width: 950px;
- border-radius: 16px;
- padding: 16px 24px;
- .title{
- font-size: 22px;
- font-weight: bold;
- i{
- font-size: 24px;
- padding: 0;
- }
- }
- .content{
- margin-top: 16px;
- border-radius: 8px;
- padding: 0;
- .patientMsg{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 16px;
- border-bottom: 2px solid #D1D1D1;
- .patientMsgTips{
- font-size: 18px;
- color: #000000;
- }
- }
- .patientForm{
- padding: 16px 24px;
- .noInspect{
- font-size: 18px;
- }
- .addRemarks{
- font-size: 18px;
- }
- .goods{
- margin-top: 5px;
- }
- .isRemand{
- margin-right: 98px;
- }
- .allowUrgent{
- flex: 1;
- }
- .readonly{
- line-height: 32px;
- font-size: 18px;
- }
- .radioGroup{
- line-height: normal;
- }
- .pos-item{
- left: 125px;
- &.pos-tip{
- left: 100px;
- width: calc(100% - 100px);
- .pos-red{
- margin-top: 13px;
- display: inline-block;
- width: 100%;
- }
- }
- .pos-red{
- font-size: 18px;
- margin-top: 8px;
- display: inline-block;
- }
- }
- }
- }
- }
- }
- .noteSign{
- position: relative;
- .noteList{
- position: absolute;
- bottom: 100%;
- left: 0;
- width: 100%;
- max-height: 256px;
- z-index: 99;
- background: #fff;
- border: 1px solid #d9d9d9;
- border-radius: 4px;
- overflow: hidden auto;
- .noteItem{
- padding: 5px 12px;
- cursor: pointer;
- line-height: normal;
- &:hover{
- background-color: #e9f7e9;
- }
- }
- }
- }
|