index.module.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .AddObject6 {
  2. :global {
  3. .objectSonMain {
  4. padding: 10px 30px;
  5. .addInfoTop {
  6. .row {
  7. display: flex;
  8. justify-content: space-between;
  9. height: 50px;
  10. &>div {
  11. width: 45%;
  12. height: 50px;
  13. align-items: center;
  14. display: flex;
  15. &>span {
  16. width: 80px;
  17. }
  18. .bs {
  19. position: relative;
  20. &::before {
  21. content: '*';
  22. position: absolute;
  23. z-index: 10;
  24. top: 2px;
  25. left: -10px;
  26. color: #ff4d4f;
  27. }
  28. }
  29. }
  30. }
  31. .rowAll {
  32. display: flex;
  33. margin-top: 6px;
  34. &>span {
  35. width: 80px;
  36. }
  37. .ant-input-textarea {
  38. width: calc(100% - 80px);
  39. }
  40. }
  41. }
  42. .addTableBox {
  43. margin-top: 30px;
  44. width: 100%;
  45. height: 485px;
  46. .addTableBox_Tit {
  47. height: 40px;
  48. display: flex;
  49. align-items: center;
  50. justify-content: space-between;
  51. .addTableBox_TitL {
  52. display: flex;
  53. align-items: center;
  54. color: var(--themeColor);
  55. font-size: 20px;
  56. font-weight: 700;
  57. }
  58. }
  59. .addTableBox_table {
  60. width: 100%;
  61. height: calc(100% - 90px);
  62. }
  63. .addTableBox_btn {
  64. width: 100%;
  65. height: 40px;
  66. display: flex;
  67. justify-content: center;
  68. margin-top: 10px;
  69. }
  70. }
  71. }
  72. }
  73. }