123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .calcPageTemplate {
- position: relative;
- padding: 16px;
- background: #FFFFFF;
- border-radius: 4px;
- .toolBar {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .filter {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- .filterItem {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- }
- .btnGroup {
-
- .calc,.reportDataBtn,.export {
- 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;
- margin-left: 8px;
- border-radius: 4px;
- }
- }
- }
- }
|