index.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .SelectPackage {
  2. .topContent {
  3. padding: 20px 10px 4px;
  4. .title {
  5. width: 135px;
  6. display: inline-block;
  7. }
  8. }
  9. .content {
  10. width: 100%;
  11. display: flex;
  12. justify-content: flex-start;
  13. min-height: 200px;
  14. .left {
  15. width: 150px;
  16. padding-top: 10px;
  17. border-right: 1px solid #f0f0f0;
  18. box-sizing: border-box;
  19. .title {
  20. font-weight: 700;
  21. padding-left: 10px;
  22. box-sizing: border-box;
  23. }
  24. .accountIdList {
  25. max-height: 510px;
  26. overflow: hidden;
  27. overflow-y: auto;
  28. &::-webkit-scrollbar {
  29. width: 1px;
  30. height: 1px;
  31. }
  32. }
  33. .accItem {
  34. height: 32px;
  35. line-height: 32px;
  36. cursor: pointer;
  37. padding-left: 10px;
  38. padding-right: 10px;
  39. box-sizing: border-box;
  40. margin-bottom: 1px;
  41. box-sizing: border-box;
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. &:hover {
  46. background-color: #e6f7ff;
  47. color: #1890ff;
  48. }
  49. }
  50. .select {
  51. background-color: #e6f7ff;
  52. color: #1890ff;
  53. border-right: 2px solid #1890ff;
  54. }
  55. .alreadySelect {
  56. background-color: #d1f0ff;
  57. }
  58. }
  59. .right {
  60. padding: 10px;
  61. box-sizing: border-box;
  62. // width: calc(100% - 150px);
  63. flex: 1;
  64. overflow: hidden;
  65. }
  66. .center {
  67. width: 150px;
  68. border-left: 1px solid #e8e8e8;
  69. padding: 5px;
  70. box-sizing: border-box;
  71. .select_content {
  72. height: calc(100% - 28px);
  73. overflow: hidden;
  74. overflow-y: auto;
  75. > div {
  76. padding: 3px 4px;
  77. background-color: #ebebeb;
  78. margin-bottom: 2px;
  79. border-radius: 4px;
  80. display: flex;
  81. align-items: center;
  82. }
  83. }
  84. .marketingAssetName {
  85. flex: 1;
  86. overflow: hidden;
  87. }
  88. .close {
  89. width: 20px;
  90. cursor: pointer;
  91. color: red;
  92. }
  93. }
  94. }
  95. .refresh {
  96. display: flex;
  97. justify-content: flex-start;
  98. align-items: center;
  99. .tips {
  100. margin-left: 20px;
  101. div {
  102. font-size: 12px;
  103. }
  104. }
  105. }
  106. }