123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- @import "../../../../../src/theme.less";
- :host{
- background-color: #F0F2F5;
- width: 100%;
- height: 100vh;
- font-size: 14px;
- display: flex;
- flex-direction: column;
- ::ng-deep .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab{
- height: 36px!important;
- line-height: 34px!important;
- padding: 0 12px!important;
- }
- ::ng-deep .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container{
- height: 36px!important;
- }
- ::ng-deep .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab{
- background: #E9EAEC;
- }
- ::ng-deep .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab-active{
- background: #fff;
- }
- .header{
- height: 48px;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- .title{
- margin-right: 16px;
- cursor: pointer;
- &:last-of-type{
- margin-right: 0;
- }
- &.active{
- color: @primary-color;
- }
- }
- .hospital{
- position: absolute;
- right: 24px;
- top: 50%;
- transform: translateY(-50%);
- color: #666666;
- font-size: 16px;
- display: flex;
- align-items: center;
- cursor: pointer;
- .icon_transport{
- color: #666666;
- font-size: 24px;
- }
- }
- }
- .content{
- margin-top: 8px;
- display: flex;
- flex: 1;
- min-height: 0;
- overflow-x: hidden;
- height: 100%;
- .secondMenu{
- width: 175px;
- height: 100%;
- background-color: #fff;
- margin-right: 8px;
- flex-shrink: 0;
- .secondMenuItem{
- height: 44px;
- line-height: 44px;
- padding: 0 36px;
- border-bottom: 1px solid #E9E9E9;
- cursor: pointer;
- &.active{
- background-color: #E9F7E9;
- border-color: #E9F7E9;
- position: relative;
- &::after{
- content: '';
- position: absolute;
- right: 0;
- top: 0;
- width: 5px;
- height: 100%;
- background-color: @primary-color;
- }
- }
- }
- }
- .main{
- flex: 1;
- height: calc(100% - 36px);
- background-color: #fff;
- position: relative;
- top: 36px;
- }
- }
- }
|