123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- .LeftAndRighrStructure {
- width: 100%;
- padding: 16px;
- .line {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- height: 40px;
- background: #F0FCFC;
- border-radius: 4px;
- margin-bottom: 16px;
- padding: 0 12px;
- .info {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- font-weight: 500;
- font-size: 16px;
- color: #17181A;
- &>img {
- width: 16px;
- height: 16px;
- margin-right: 8px;
- }
- &>span {
- font-weight: 500;
- font-size: 16px;
- color: #00B3B3;
- padding-left: 4px;
- }
- }
- .lineBtnGroup {
- &>span {
- display: inline-block;
- height: 24px;
- padding: 0 14px;
- line-height: 24px;
- background: #FFFFFF;
- border-radius: 4px;
- text-align: center;
- font-weight: 400;
- font-size: 14px;
- color: #00B3B3;
- cursor: pointer;
- &:first-child {
- margin-right: 8px;
- }
- }
- }
- }
- .contentWrapper {
- display: flex;
- width: 100%;
- flex-direction: row;
- justify-content: space-between;
- align-items: flex-start;
- .left {
- width: 220px;
- border-radius: 4px;
- padding-top: 16px;
- border: 1px solid #DAE2F2;
- .leftTab {
- display: flex;
- margin: 0 16px;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- border-radius: 4px;
- margin-bottom: 4px;
- border: 1px solid #DAE2F2;
- overflow: hidden;
- .tab {
- flex: 1;
- cursor: pointer;
- text-align: center;
- height: 24px;
- line-height: 24px;
- font-weight: 400;
- font-size: 14px;
- color: #17181A;
- &.on {
- color: #FFFFFF;
- background: #3377FF;
- }
- }
- }
- }
- .right {
- width: calc(100% - 236px);
- .cost-ant-pro-page-container {
- border:none !important;
- }
- .toolBar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 12px;
- .leftTool {
- font-weight: 500;
- font-size: 14px;
- color: #17181A;
- &>span {
- color: #3477FF;
- }
- &::before {
- position: relative;
- display: inline-block;
- content: '';
- width: 8px;
- height: 8px;
- background: #3377FF;
- border-radius: 2px;
- margin-right: 8px;
- margin-left: 4px;
- }
- }
- .rightTool {
- .filterItem {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- }
- .btnGroup {
- .import,
- .normal {
- cursor: pointer;
- display: inline-block;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 24px;
- padding: 0 14px;
- background: #3377FF;
- border-radius: 4px;
- }
- .normal {
- display: inline-block;
- color: #17181A;
- border: 1px solid #DAE2F2;
- background: #FAFCFF;
- margin-right: 8px;
- }
- }
- }
- }
- }
- }
|