index.module.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .B3aTop {
  2. width: 100%;
  3. height: calc(100% - 70px);
  4. overflow-y: auto;
  5. :global {
  6. .B3aTit {
  7. font-size: 18px;
  8. font-weight: 700;
  9. padding-bottom: 10px;
  10. padding-left: 18px;
  11. border-bottom: 1px solid #ccc;
  12. margin-bottom: 17px;
  13. .ant-btn {
  14. margin-left: 15px;
  15. pointer-events: none;
  16. }
  17. }
  18. .B3aRow {
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: self-start;
  22. font-size: 16px;
  23. flex-wrap: wrap;
  24. overflow: hidden;
  25. .B3aR1 {
  26. width: 48%;
  27. display: flex;
  28. align-items: center;
  29. margin-bottom: 20px;
  30. .B3aRll {
  31. width: 100px;
  32. text-align: right;
  33. font-weight: 700;
  34. & > span {
  35. color: #ff4d4f;
  36. }
  37. }
  38. .B3aRrr {
  39. width: calc(100% - 100px);
  40. .ant-input-affix-wrapper {
  41. width: 300px;
  42. }
  43. }
  44. }
  45. .B3aR2 {
  46. align-items: self-start;
  47. .B3aRll {
  48. position: relative;
  49. top: 3px;
  50. }
  51. }
  52. .B3aFull {
  53. width: 100%;
  54. margin-top: -20px;
  55. align-items: self-start;
  56. margin-bottom: 0;
  57. .B3aRll {
  58. position: relative;
  59. top: 3px;
  60. }
  61. }
  62. }
  63. }
  64. }