123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- @import "../../../../src/theme.less";
- :host {
- .quiltWashingTrendAnalysis ::ng-deep .ant-table-small > .ant-table-content > .ant-table-body{
- margin: 0;
- }
- .quiltWashingTrendAnalysis ::ng-deep thead{
- background-color: #F9F9FB;
- border-bottom: none;
- }
- .quiltWashingTrendAnalysis{
- min-height: 100%;
- background-color: #F1F2F2;
- .main{
- margin-left: 10px;
- .head{
- margin-top: 8px;
- height: 60px;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 16px;
- .search{
- display: flex;
- .searchItem{
- margin-left: 16px;
- &:first-of-type{
- margin-left: 0;
- }
- }
- }
- .btns{
- display: flex;
- }
- }
- .body{
- margin-top: 8px;
- background-color: #fff;
- padding-bottom: 30px;
- .body_tabs_wrap{
- display: flex;
- justify-content: space-between;
- align-items: center;
- .body_tabs{
- display: flex;
- .tab{
- width: 106px;
- height: 50px;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #F9FAFB;
- color: #6E6E6E;
- font-size: 22px;
- font-weight: bold;
- cursor: pointer;
- &.active{
- background-color: @primary-color;
- color: #fff;
- }
- }
- }
- .compareDate{
- font-size: 22px;
- font-weight: bold;
- margin-right: 24px;
- }
- }
- .total{
- height: 105px;
- padding: 0 16px;
- border-bottom: 1px solid #CECECE;
- display: flex;
- justify-content: space-between;
- align-items:center;
- .total_list{
- flex: 1;
- display: flex;
- justify-content: space-between;
- align-items:center;
- padding-right: 30px;
- position: relative;
- &:after{
- content: '';
- position:absolute;
- right: -1px;
- top: 50%;
- transform: translateY(-50%);
- width: 2px;
- height: 42px;
- background-color: #D9D9D9;
- }
- &:last-of-type{
- padding-left: 30px;
- &:after{
- display: none;
- }
- }
- .total_item{
- display: flex;
- flex-direction: column;
- align-items: center;
- .name{
- font-size: 32px;
- font-weight: bold;
- &.green{
- color: @primary-color;
- }
- }
- .value{
- font-size: 16px;
- color: #8F8F8F;
- }
- }
- }
- }
- .boxwrap{
- display: flex;
- .box{
- flex: 1;
- margin: 0 8px;
- .box-head{
- height: 46px;
- padding: 0 24px;
- display: flex;
- align-items: center;
- font-size: 16px;
- font-weight: bold;
- position: relative;
- &:before{
- content: '';
- width: 10px;
- height: 10px;
- border-radius: 50%;
- background-color: @primary-color;
- position: absolute;
- top: 50%;
- left: 8px;
- transform: translateY(-50%);
- }
- }
- .table{
- th,td{
- text-align: center;
- }
- }
- }
- }
- .echarts{
- flex: 1;
- margin: 0 8px;
- .echart-head{
- height: 46px;
- padding: 0 24px;
- display: flex;
- align-items: center;
- font-size: 16px;
- font-weight: bold;
- position: relative;
- &:before{
- content: '';
- width: 10px;
- height: 10px;
- border-radius: 50%;
- background-color: @primary-color;
- position: absolute;
- top: 50%;
- left: 8px;
- transform: translateY(-50%);
- }
- }
- .echart{
- }
- }
- }
- }
- }
- }
|