index.less 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. .createAd {
  2. border-radius: 8px;
  3. .cardTitle {
  4. font-weight: 600;
  5. }
  6. }
  7. // #page_tabs,#ad_tabs{
  8. // >div>div>div>div{
  9. // padding: 5px;
  10. // }
  11. // }
  12. .selector {
  13. border: 1px solid #dcdee2;
  14. border-radius: 4px;
  15. display: flex;
  16. justify-content: flex-start;
  17. align-items: center;
  18. transition: all .3s;
  19. &:hover {
  20. border: 1px solid #1890ff;
  21. }
  22. .selectorLabel {
  23. flex: 1;
  24. display: inline-block;
  25. height: 100%;
  26. padding: 0 10px;
  27. border-right: 1px solid #dcdee2;
  28. color: #333;
  29. }
  30. &:hover .selectorLabel {
  31. color: #1890ff;
  32. border-right: 1px solid #1890ff;
  33. }
  34. }
  35. .cardBody {
  36. margin-top: 24px;
  37. .content {
  38. border: 1px solid #f0f0f0;
  39. box-sizing: border-box;
  40. .conTitle {
  41. height: 38px;
  42. line-height: 38px;
  43. border-bottom: 1px solid #f0f0f0;
  44. padding: 0 10px;
  45. box-sizing: border-box;
  46. font-weight: 600;
  47. font-size: 16px;
  48. }
  49. .conRightBorder {
  50. border-right: 1px solid #f0f0f0;
  51. box-sizing: border-box;
  52. flex: 1;
  53. }
  54. .items {
  55. &>div {
  56. height: 380px;
  57. // padding: 10px;
  58. box-sizing: border-box;
  59. display: flex;
  60. flex-direction: column;
  61. .top {
  62. height: 24px;
  63. display: flex;
  64. font-weight: 600;
  65. font-size: 15px;
  66. margin-bottom: 10px;
  67. justify-content: space-between;
  68. align-items: center;
  69. padding: 10px 10px 0;
  70. &>span {
  71. font-size: 12px;
  72. color: rgb(90, 90, 90);
  73. }
  74. >a{
  75. font-size: 12px;
  76. font-weight: 400;
  77. }
  78. }
  79. .center {
  80. height: calc(100% - 48px);
  81. overflow: hidden;
  82. overflow-y: auto;
  83. padding: 4px 0;
  84. box-sizing: border-box;
  85. padding: 0 10px;
  86. .centerContent {
  87. width: 100%;
  88. min-height: 200px;
  89. font-size: 12px;
  90. // span {
  91. // color: #3085ff;
  92. // }
  93. }
  94. .acc {
  95. margin-bottom: 14px;
  96. }
  97. .accName {
  98. margin: 0 0 4px;
  99. }
  100. .accCon {
  101. padding: 8px 5px;
  102. background-color: rgba(0, 0, 0, .04);
  103. margin-bottom: 2px;
  104. display: flex;
  105. justify-content: space-between;
  106. align-items: center;
  107. position: relative;
  108. >span.title {
  109. width: 90%;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. white-space: nowrap;
  113. }
  114. .close {
  115. cursor: pointer;
  116. margin-right: 10px;
  117. display: none;
  118. position: absolute;
  119. right: 4px;
  120. top: 50%;
  121. transform: translateY(-50%);
  122. }
  123. &:hover {
  124. background-color: rgba(0, 0, 0, .08);
  125. &>.close {
  126. display: inline-block;
  127. }
  128. }
  129. }
  130. }
  131. .bottom {
  132. height: 40px;
  133. text-align: center;
  134. line-height: 40px;
  135. display: flex;
  136. justify-content: center;
  137. span {
  138. cursor: pointer;
  139. color: #108ee9;
  140. }
  141. &:hover {
  142. box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
  143. }
  144. }
  145. }
  146. }
  147. }
  148. .bts {
  149. width: 100%;
  150. margin-top: 20px;
  151. margin-bottom: 10px;
  152. justify-content: flex-end;
  153. }
  154. }
  155. .popoverContent {
  156. border: 1px solid #dcdee2;
  157. padding: 5px;
  158. border-radius: 4px;
  159. transition: all 0.5s;
  160. margin-top: 1px;
  161. margin-bottom: 5px;
  162. &:hover {
  163. border-color: rgb(24, 144, 255);
  164. box-shadow: 0 0 4px 1px rgba(24, 144, 255, 0.4);
  165. }
  166. }
  167. .popover {
  168. max-width: 450px;
  169. max-height: 150px;
  170. overflow: hidden;
  171. overflow-y: scroll;
  172. }
  173. .twoText {
  174. text-overflow: -o-ellipsis-lastline;
  175. overflow: hidden;
  176. text-overflow: ellipsis;
  177. display: -webkit-box;
  178. -webkit-line-clamp: 2;
  179. line-clamp: 2;
  180. -webkit-box-orient: vertical;
  181. }