index.less 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. overflow: hidden;
  30. text-overflow: ellipsis;
  31. white-space: nowrap;
  32. }
  33. &:hover .selectorLabel {
  34. color: #1890ff;
  35. border-right: 1px solid #1890ff;
  36. }
  37. }
  38. .cardBody {
  39. margin-top: 24px;
  40. .content {
  41. border: 1px solid #f0f0f0;
  42. box-sizing: border-box;
  43. border-top: none;
  44. &>div {
  45. border-top: 1px solid #f0f0f0;
  46. }
  47. .conTitle {
  48. height: 38px;
  49. line-height: 38px;
  50. border-bottom: 1px solid #f0f0f0;
  51. padding: 0 10px;
  52. box-sizing: border-box;
  53. font-weight: 600;
  54. font-size: 16px;
  55. }
  56. .conRightBorder {
  57. border-right: 1px solid #f0f0f0;
  58. box-sizing: border-box;
  59. flex: 1;
  60. }
  61. .items {
  62. &>div {
  63. height: 380px;
  64. // padding: 10px;
  65. box-sizing: border-box;
  66. display: flex;
  67. flex-direction: column;
  68. position: relative;
  69. .top {
  70. height: 24px;
  71. display: flex;
  72. font-weight: 600;
  73. font-size: 15px;
  74. margin-bottom: 10px;
  75. justify-content: space-between;
  76. align-items: center;
  77. padding: 10px 10px 0;
  78. &>span {
  79. font-size: 12px;
  80. color: rgb(90, 90, 90);
  81. }
  82. >a {
  83. font-size: 12px;
  84. font-weight: 400;
  85. }
  86. }
  87. .center {
  88. height: calc(100% - 48px);
  89. overflow: hidden;
  90. overflow-y: auto;
  91. padding: 4px 0;
  92. box-sizing: border-box;
  93. padding: 0 10px;
  94. .centerContent {
  95. width: 100%;
  96. min-height: 200px;
  97. font-size: 12px;
  98. // span {
  99. // color: #3085ff;
  100. // }
  101. }
  102. .acc {
  103. margin-bottom: 14px;
  104. }
  105. .accName {
  106. margin: 0 0 4px;
  107. }
  108. .accCon {
  109. padding: 8px 5px;
  110. background-color: rgba(0, 0, 0, .04);
  111. margin-bottom: 2px;
  112. display: flex;
  113. justify-content: space-between;
  114. align-items: center;
  115. position: relative;
  116. >span.title {
  117. width: 90%;
  118. overflow: hidden;
  119. text-overflow: ellipsis;
  120. white-space: nowrap;
  121. }
  122. .close {
  123. cursor: pointer;
  124. margin-right: 4px;
  125. display: none;
  126. position: absolute;
  127. right: 4px;
  128. top: 50%;
  129. transform: translateY(-50%);
  130. color: #0e95f6;
  131. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  132. }
  133. &:hover {
  134. background-color: rgba(0, 0, 0, .08);
  135. &>.close {
  136. display: inline-block;
  137. }
  138. }
  139. }
  140. }
  141. .bottom {
  142. height: 40px;
  143. text-align: center;
  144. line-height: 40px;
  145. display: flex;
  146. justify-content: center;
  147. text-overflow: ellipsis;
  148. overflow: hidden;
  149. white-space: nowrap;
  150. span {
  151. cursor: pointer;
  152. color: #108ee9;
  153. }
  154. &:hover {
  155. box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.08);
  156. }
  157. }
  158. .noMaterial {
  159. position: absolute;
  160. background-color: rgba(0, 0, 0, .1);
  161. top: 0;
  162. left: 0;
  163. right: 0;
  164. bottom: 0;
  165. width: 100%;
  166. height: 100%;
  167. display: flex;
  168. justify-content: center;
  169. align-items: center;
  170. cursor: no-drop;
  171. color: red;
  172. }
  173. }
  174. }
  175. }
  176. .bts {
  177. width: 100%;
  178. margin-top: 20px;
  179. margin-bottom: 10px;
  180. justify-content: flex-end;
  181. }
  182. }
  183. .popoverContent {
  184. border: 1px solid #dcdee2;
  185. padding: 5px;
  186. border-radius: 4px;
  187. transition: all 0.5s;
  188. margin-top: 1px;
  189. margin-bottom: 5px;
  190. &:hover {
  191. border-color: rgb(24, 144, 255);
  192. box-shadow: 0 0 4px 1px rgba(24, 144, 255, 0.4);
  193. }
  194. }
  195. .popover {
  196. max-width: 450px;
  197. max-height: 150px;
  198. overflow: hidden;
  199. overflow-y: scroll;
  200. }
  201. .twoText {
  202. text-overflow: -o-ellipsis-lastline;
  203. overflow: hidden;
  204. text-overflow: ellipsis;
  205. display: -webkit-box;
  206. -webkit-line-clamp: 2;
  207. line-clamp: 2;
  208. -webkit-box-orient: vertical;
  209. }
  210. .group {
  211. display: flex;
  212. justify-content: space-between;
  213. gap: 5px;
  214. margin-bottom: 10px;
  215. >div {
  216. flex: 1;
  217. >img {
  218. width: 100%;
  219. }
  220. >video {
  221. width: 100%;
  222. }
  223. }
  224. }
  225. .otherGroup {
  226. display: flex;
  227. justify-content: space-between;
  228. flex-wrap: wrap;
  229. .group {
  230. width: 35%;
  231. >img {
  232. width: 100%;
  233. }
  234. >video {
  235. width: 100%;
  236. }
  237. }
  238. }