123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .OneBatch {
- position: relative;
- padding: 16px;
- // height: 100%;
- border-radius: 4px;
- background: #fff;
- .btnGroup {
- position: absolute;
- top: 16px;
- right: 16px;
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- .checkBtn {
- cursor: pointer;
- padding: 0 14px;
- height: 24px;
- line-height: 24px;
- background: #3376FE;
- border-radius: 4px;
- text-align: center;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #FFF;
- margin-left: 8px;
- }
- .caculateBtn {
- cursor: pointer;
- padding: 0 14px;
- height: 24px;
- line-height: 24px;
- background: #FAFCFF;
- border-radius: 4px;
- text-align: center;
- font-size: 14px;
- font-family: SourceHanSansCN-Normal, SourceHanSansCN;
- font-weight: 400;
- color: #17181A;
- border: 1px solid #DAE2F2;
- &.disabled {
- cursor: not-allowed;
- color: rgba(0, 0, 0, 0.5);
- background-color: #f0f2f5;
- }
- }
- }
- .content {
- position: relative;
- padding-top: 0;
- .bms-ant-tabs-nav {
- &::before {
- border-bottom: none !important;
- }
- }
- }
- }
|