style.less 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .OneBatch {
  2. position: relative;
  3. padding: 16px;
  4. // height: 100%;
  5. border-radius: 4px;
  6. background: #fff;
  7. .btnGroup {
  8. position: absolute;
  9. top: 16px;
  10. right: 16px;
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: center;
  14. align-items: center;
  15. .checkBtn {
  16. cursor: pointer;
  17. padding: 0 14px;
  18. height: 24px;
  19. line-height: 24px;
  20. background: #3376FE;
  21. border-radius: 4px;
  22. text-align: center;
  23. font-size: 14px;
  24. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  25. font-weight: 400;
  26. color: #FFF;
  27. margin-left: 8px;
  28. }
  29. .caculateBtn {
  30. cursor: pointer;
  31. padding: 0 14px;
  32. height: 24px;
  33. line-height: 24px;
  34. background: #FAFCFF;
  35. border-radius: 4px;
  36. text-align: center;
  37. font-size: 14px;
  38. font-family: SourceHanSansCN-Normal, SourceHanSansCN;
  39. font-weight: 400;
  40. color: #17181A;
  41. border: 1px solid #DAE2F2;
  42. &.disabled {
  43. cursor: not-allowed;
  44. color: rgba(0, 0, 0, 0.5);
  45. background-color: #f0f2f5;
  46. }
  47. }
  48. }
  49. .content {
  50. position: relative;
  51. padding-top: 0;
  52. .bms-ant-tabs-nav {
  53. &::before {
  54. border-bottom: none !important;
  55. }
  56. }
  57. }
  58. }